16 lines
331 B
TypeScript
16 lines
331 B
TypeScript
function ChevronDownIcon() {
|
|
return (
|
|
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="m5 8 5 5 5-5"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ChevronDownIcon;
|