mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
18 lines
336 B
TypeScript
18 lines
336 B
TypeScript
export function ChevronUpIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
className={className}
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M4.5 15.75l7.5-7.5 7.5 7.5"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|