'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 CogProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, }, animate: { rotate: [0, 90, 180], transition: { duration: 1.25, ease: 'easeInOut', }, }, }, path1: {}, path2: {}, path3: {}, path4: {}, path5: {}, path6: {}, path7: {}, path8: {}, path9: {}, path10: {}, path11: {}, path12: {}, path13: {}, path14: {}, } satisfies Record, 'default-loop': { group: { initial: { rotate: 0, }, animate: { rotate: [0, 90, 180, 270, 360], transition: { duration: 2.5, ease: 'easeInOut', repeat: Infinity, repeatType: 'loop', }, }, }, path1: {}, path2: {}, path3: {}, path4: {}, path5: {}, path6: {}, path7: {}, path8: {}, path9: {}, path10: {}, path11: {}, path12: {}, path13: {}, path14: {}, } satisfies Record, rotate: { group: { initial: { rotate: 0, }, animate: { rotate: 360, transition: { duration: 2, ease: 'linear', repeat: Infinity, repeatType: 'loop', }, }, }, path1: {}, path2: {}, path3: {}, path4: {}, path5: {}, path6: {}, path7: {}, path8: {}, path9: {}, path10: {}, path11: {}, path12: {}, path13: {}, path14: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: CogProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Cog(props: CogProps) { return ; } export { animations, Cog, Cog as CogIcon, type CogProps, type CogProps as CogIconProps, };