Files
graff.estate-nextjs-updated/src/components/icons/ArrowLeftIcon.tsx
T
2025-01-09 19:39:59 +05:00

13 lines
402 B
TypeScript

export function ArrowLeftIcon() {
return (
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M8.12124 12.707L19.707 12.707L17.707 10.707L8.12124 10.707L13.4141 5.41406L11.9999 3.99985L4.29282 11.707L11.9999 19.4141L13.4141 17.9998L8.12124 12.707Z"
fill="white"
/>
</svg>
);
}