You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
352 B

import React from 'react'
const SvgBigArrowRight = props => (
<svg viewBox="0 0 40 28" width="1em" height="1em" {...props}>
<path
d="M1 14h38M24 27l15-13L24 1"
fill="none"
fillRule="evenodd"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)
export default SvgBigArrowRight