14 lines
433 B
TypeScript
14 lines
433 B
TypeScript
export function ChevronExtraSmallDown({ className }: { className?: string }) {
|
|
return (
|
|
<svg className={className} viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M15 6L9.75926 12.1142C9.36016 12.5798 8.63984 12.5798 8.24074 12.1142L3 6"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeMiterlimit="1.00244"
|
|
strokeLinecap="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|