16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
const ArrowUp = () => {
|
|
return (
|
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M5.99992 10.6673V1.33398M5.99992 1.33398L1.33325 6.00065M5.99992 1.33398L10.6666 6.00065"
|
|
stroke="currentColor"
|
|
strokeWidth="1.33333"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default ArrowUp;
|