'use client'; import * as React from 'react'; import { motion, type Variants } from 'motion/react'; import { getVariants, useAnimateIconContext, IconWrapper, type IconProps, } from '@/registry/icons/icon'; type RefreshCwOffProps = IconProps; 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, } as const; function IconComponent({ size, ...props }: RefreshCwOffProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function RefreshCwOff(props: RefreshCwOffProps) { return ; } export { animations, RefreshCwOff, RefreshCwOff as RefreshCwOffIcon, type RefreshCwOffProps, type RefreshCwOffProps as RefreshCwOffIconProps, };