import React from 'react'
const Backward = (props) => (
<svg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' {...props}>
<g id='Symbols' stroke='none' strokeWidth='1' fill='none' fillRule='evenodd' strokeLinecap='round' strokeLinejoin='round'>
<g id='backward' stroke='#424955'>
<g transform='translate(12.000000, 12.000000) scale(-1, 1) translate(-12.000000, -12.000000) ' id='Stroke-7'>
<polyline points='8.5 8.5 11.5 12.5 8.5 16.5' />
<polyline points='12.5 8.5 15.5 12.5 12.5 16.5' />
</g>
</g>
</g>
</svg>
)
export default Backward
|