26 lines
893 B
TypeScript
26 lines
893 B
TypeScript
interface Props {
|
|
className?: string;
|
|
}
|
|
|
|
function RestartIcon({ className }: Props) {
|
|
return (
|
|
<svg
|
|
width={24}
|
|
height={24}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M14.2607 3.58307L15.8575 2.64711L15.099 1.35303L10.9387 3.79155L13.4608 7.61759L14.7131 6.79204L13.494 4.94248C16.7823 5.62938 19.25 8.53817 19.25 12.0195C19.25 16.0111 16.0058 19.2501 12 19.2501C7.99422 19.2501 4.75 16.0111 4.75 12.0195C4.75 9.90286 5.66096 7.99916 7.11609 6.67555L6.10676 5.56593C4.35276 7.1614 3.25 9.46229 3.25 12.0195C3.25 16.843 7.16922 20.7501 12 20.7501C16.8308 20.7501 20.75 16.843 20.75 12.0195C20.75 7.97647 17.9965 4.57728 14.2607 3.58307Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default RestartIcon;
|