31 lines
628 B
JavaScript
31 lines
628 B
JavaScript
function ArrowLeftC() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="21"
|
|
height="20"
|
|
viewBox="0 0 21 20"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M8.4724 4.94168L3.41406 10L8.4724 15.0583"
|
|
stroke="#EFEFEF"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M17.5797 10H3.55469"
|
|
stroke="#EFEFEF"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ArrowLeftC;
|