'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 MessageCirclePlusProps = 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: { rotate: 0, }, animate: { rotate: [0, 45, 0], transition: { ease: 'easeInOut', duration: 0.6, }, }, }, path3: { initial: { rotate: 0, }, animate: { rotate: [0, 45, 0], transition: { ease: 'easeInOut', duration: 0.6, delay: 0.05, }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageCirclePlusProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageCirclePlus(props: MessageCirclePlusProps) { return ; } export { animations, MessageCirclePlus, MessageCirclePlus as MessageCirclePlusIcon, type MessageCirclePlusProps, type MessageCirclePlusProps as MessageCirclePlusIconProps, };