'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 MessageCircleProps = IconProps; const animations = { default: { path: { 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], }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageCircleProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageCircle(props: MessageCircleProps) { return ; } export { animations, MessageCircle, MessageCircle as MessageCircleIcon, type MessageCircleProps, type MessageCircleProps as MessageCircleIconProps, };