23 lines
480 B
JavaScript
23 lines
480 B
JavaScript
function ArrowLeftList() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="26"
|
|
height="24"
|
|
viewBox="0 0 26 24"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M16.1237 19.92L9.33203 13.4C8.52995 12.63 8.52995 11.37 9.33203 10.6L16.1237 4.08002"
|
|
stroke="#616161"
|
|
strokeWidth="2"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ArrowLeftList;
|