'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 MessageCircleCodeProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, }, animate: { transformOrigin: 'bottom left', rotate: [0, 8, -8, 2, 0], transition: { ease: 'easeInOut', duration: 0.8, times: [0, 0.4, 0.6, 0.8, 1], }, }, }, path1: {}, path2: { initial: { x: 0, }, animate: { x: [0, -1.5, 0.75, 0], transition: { ease: 'easeInOut', duration: 0.6, }, }, }, path3: { initial: { x: 0, }, animate: { x: [0, 1.5, -0.75, 0], transition: { ease: 'easeInOut', duration: 0.6, }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageCircleCodeProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageCircleCode(props: MessageCircleCodeProps) { return ; } export { animations, MessageCircleCode, MessageCircleCode as MessageCircleCodeIcon, type MessageCircleCodeProps, type MessageCircleCodeProps as MessageCircleCodeIconProps, };