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
353 B
16 lines
353 B
import React from 'react'
|
|
|
|
const SvgBigArrowLeft = props => (
|
|
<svg width="1em" height="1em" viewBox="0 0 16 12" {...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
|
|
|