Files
IRTH-Touch/client/src/components/icons/LeftArrowSliderIcon.tsx
T
2024-06-14 13:54:55 +05:00

22 lines
432 B
TypeScript

const LeftArrowSliderIcon = () => {
return (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M5 10L15 10M5 10L10.303 5M5 10L10.303 15"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
);
};
export default LeftArrowSliderIcon;