'use client';
import * as React from 'react';
import { motion, type Variants } from 'motion/react';
import {
getVariants,
useAnimateIconContext,
IconWrapper,
type IconProps,
} from '@/components/animate-ui/icons/icon';
type RefreshCwOffProps = IconProps<keyof typeof animations>;
const animations = {
default: {
group: {
initial: {
x: 0,
},
animate: {
x: [0, '-7%', '7%', '-7%', '7%', 0],
transition: { duration: 0.6, ease: 'easeInOut' },
},
},
path1: {},
path2: {},
path3: {},
path4: {},
path5: {},
path6: {},
path7: {},
} satisfies Record<string, Variants>,
off: {
path1: {},
path2: {},
path3: {},
path4: {},
path5: {},
path6: {},
path7: {
initial: {
opacity: 0,
pathLength: 0,
},
animate: {
opacity: 1,
pathLength: 1,
transition: { duration: 0.6, ease: 'easeInOut' },
},
},
} satisfies Record<string, Variants>,
} as const;
function IconComponent({ size, ...props }: RefreshCwOffProps) {
const { controls } = useAnimateIconContext();
const variants = getVariants(animations);
return (
<motion.svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
variants={variants.group}
initial="initial"
animate={controls}
{...props}
>
<motion.path
d="M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"
variants={variants.path1}
initial="initial"
animate={controls}
/>
<motion.path
d="M8 16H3v5"
variants={variants.path2}
initial="initial"
animate={controls}
/>
<motion.path
d="M3 12C3 9.51 4 7.26 5.64 5.64"
variants={variants.path3}
initial="initial"
animate={controls}
/>
<motion.path
d="m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"
variants={variants.path4}
initial="initial"
animate={controls}
/>
<motion.path
d="M21 12c0 1-.16 1.97-.47 2.87"
variants={variants.path5}
initial="initial"
animate={controls}
/>
<motion.path
d="M21 3v5h-5"
variants={variants.path6}
initial="initial"
animate={controls}
/>
<motion.path
d="m2 2 20 20"
variants={variants.path7}
initial="initial"
animate={controls}
/>
</motion.svg>
);
}
function RefreshCwOff(props: RefreshCwOffProps) {
return <IconWrapper icon={IconComponent} {...props} />;
}
export {
animations,
RefreshCwOff,
RefreshCwOff as RefreshCwOffIcon,
type RefreshCwOffProps,
type RefreshCwOffProps as RefreshCwOffIconProps,
};