'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 MessageSquareTextProps = 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: { opacity: 1, pathLength: 1, pathOffset: 0, }, animate: { opacity: [1, 0, 1], pathLength: [1, 0, 1], pathOffset: [0, 1, 0], transition: { duration: 0.6, ease: 'easeInOut', opacity: { duration: 0.01 }, }, }, }, path3: { initial: { opacity: 1, pathLength: 1, pathOffset: 0, }, animate: { opacity: [1, 0, 1], pathLength: [1, 0, 1], pathOffset: [0, 1, 0], transition: { duration: 0.6, ease: 'easeInOut', opacity: { duration: 0.01 }, }, }, }, } satisfies Record, write: { group: {}, path1: {}, path2: { initial: { opacity: 1, pathLength: 1, pathOffset: 0, }, animate: { opacity: [0, 1], pathLength: [0, 1], pathOffset: [1, 0], transition: { duration: 0.3, ease: 'easeInOut', opacity: { duration: 0.01 }, }, }, }, path3: { initial: { opacity: 1, pathLength: 1, pathOffset: 0, }, animate: { opacity: [0, 1], pathLength: [0, 1], pathOffset: [1, 0], transition: { duration: 0.6, ease: 'easeInOut', opacity: { duration: 0.01 }, }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageSquareTextProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageSquareText(props: MessageSquareTextProps) { return ; } export { animations, MessageSquareText, MessageSquareText as MessageSquareTextIcon, type MessageSquareTextProps, type MessageSquareTextProps as MessageSquareTextIconProps, };