20 lines
579 B
TypeScript
20 lines
579 B
TypeScript
const ResetIcon = () => {
|
|
return (
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M12.8984 1.66674L9.99984 3.36571M9.99984 3.36571L11.739 6.00402M9.99984 3.36571C13.6817 3.36571 16.6665 6.34325 16.6665 10.0162C16.6665 13.6892 13.6817 16.6667 9.99984 16.6667C6.31794 16.6667 3.33317 13.6892 3.33317 10.0162C3.33317 8.06883 4.17222 6.31692 5.50936 5.10063"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default ResetIcon;
|