'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 Clock8Props = IconProps; const animations = { default: { circle: {}, line1: { initial: { rotate: 0, transition: { ease: 'easeInOut', duration: 0.6 }, }, animate: { transformOrigin: 'top right', rotate: [0, 20, 0], transition: { ease: 'easeInOut', duration: 0.6 }, }, }, line2: { initial: { rotate: 0, transition: { ease: 'easeInOut', duration: 0.6 }, }, animate: { transformOrigin: 'bottom left', rotate: 360, transition: { ease: 'easeInOut', duration: 0.6 }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: Clock8Props) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Clock8(props: Clock8Props) { return ; } export { animations, Clock8, Clock8 as Clock8Icon, type Clock8Props, type Clock8Props as Clock8IconProps, };