packages/icons/src/components/RefreshCcw.tsx
import * as React from 'react';
import type { SVGProps } from 'react';
const RefreshCcw = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M3 2v6h6"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M21 12A9 9 0 0 0 6 5.3L3 8M21 22v-6h-6"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M3 12a9 9 0 0 0 15 6.7l3-2.7"
/>
</svg>
);
export default RefreshCcw;