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
353 B
17 lines
353 B
6 years ago
|
import React from 'react'
|
||
|
|
||
|
const SvgBigArrowLeft = props => (
|
||
|
<svg viewBox="0 0 16 12" width="1em" height="1em" {...props}>
|
||
|
<path
|
||
|
d="M1 6h14m-8.474 5L1 6l5.526-5"
|
||
|
fill="none"
|
||
|
fillRule="evenodd"
|
||
|
stroke="currentColor"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|
||
|
|
||
|
export default SvgBigArrowLeft
|