Files
protocol/sites/dev0x-portal/app/icons/RefreshCcw01.tsx
2023-03-30 18:18:14 +02:00

28 lines
872 B
TypeScript

import { forwardRef } from 'react';
import type { IconProps } from './types';
export const RefreshCcw01 = forwardRef<SVGSVGElement, IconProps>(function RefreshCcw01(
{ color = 'currentColor', ...props },
forwardedRef,
) {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
ref={forwardedRef}
>
<path
d="M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
});