Files
graffestate.ae-new/src/components/icons/ArrowDownIcon.tsx
T
2025-07-23 10:24:19 +05:00

15 lines
367 B
TypeScript

function ArrowDownIcon() {
return (
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M10.96 16.05V4l2.08 2.08v9.97l5.504-5.505 1.471 1.47L12 20.031l-8.016-8.016 1.471-1.47z"
fill="currentColor"
/>
</svg>
);
}
export default ArrowDownIcon;