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