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.

18 lines
366 B

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