'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 TimerOffProps = 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: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: TimerOffProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function TimerOff(props: TimerOffProps) { return ; } export { animations, TimerOff, TimerOff as TimerOffIcon, type TimerOffProps, type TimerOffProps as TimerOffIconProps, };