'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 TimerProps = IconProps; const animations = { default: { circle: {}, line1: { initial: { rotate: 0, transition: { ease: 'easeInOut', duration: 0.6 }, }, animate: { transformOrigin: 'bottom left', rotate: 360, transition: { ease: 'easeInOut', duration: 0.6, delay: 0.15 }, }, }, line2: { initial: { y: 0, }, animate: { y: [0, 1.5, 0], transition: { ease: 'easeInOut', duration: 0.3 }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: TimerProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Timer(props: TimerProps) { return ; } export { animations, Timer, Timer as TimerIcon, type TimerProps, type TimerProps as TimerIconProps, };