1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import React from 'react' const Forward = (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='forward' stroke='#424955'> <g 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 Forward |