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.
17 lines
343 B
17 lines
343 B
6 years ago
|
import React from 'react'
|
||
|
|
||
|
const SvgBigArrowRight = props => (
|
||
|
<svg viewBox="0 0 9 4" width="1em" height="1em" {...props}>
|
||
|
<path
|
||
|
d="M1 2h6M6 4l2-2-2-2"
|
||
|
fill="none"
|
||
|
fillRule="evenodd"
|
||
|
stroke="currentColor"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|
||
|
|
||
|
export default SvgBigArrowRight
|