'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 BotProps = IconProps; const animations = { default: { path1: {}, rect: {}, path2: {}, path3: {}, path4: { initial: { x: 0, y: 0, }, animate: { x: [0, -1.5, 1.5, 0], y: [0, 1.5, 1.5, 0], transition: { ease: 'easeInOut', duration: 1.3, }, }, }, path5: { initial: { x: 0, y: 0, }, animate: { x: [0, -1.5, 1.5, 0], y: [0, 1.5, 1.5, 0], transition: { ease: 'easeInOut', duration: 1.3, }, }, }, } satisfies Record, blink: { path1: {}, rect: {}, path2: {}, path3: {}, path4: { initial: { scaleY: 1, }, animate: { scaleY: [1, 0.5, 1], transition: { ease: 'easeInOut', duration: 0.6, }, }, }, path5: { initial: { scaleY: 1, }, animate: { scaleY: [1, 0.5, 1], transition: { ease: 'easeInOut', duration: 0.6, }, }, }, } satisfies Record, wink: { path1: {}, rect: {}, path2: {}, path3: {}, path4: { initial: { scaleY: 1, }, animate: { scaleY: [1, 0.5, 1], transition: { ease: 'easeInOut', duration: 0.6, }, }, }, path5: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: BotProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Bot(props: BotProps) { return ; } export { animations, Bot, Bot as BotIcon, type BotProps, type BotProps as BotIconProps, };