'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 MessageSquareDiffProps = 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, }, }, }, path4: { initial: { y: 0, }, animate: { y: [0, 1, -1, 0], transition: { ease: 'easeInOut', duration: 0.7, }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageSquareDiffProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageSquareDiff(props: MessageSquareDiffProps) { return ; } export { animations, MessageSquareDiff, MessageSquareDiff as MessageSquareDiffIcon, type MessageSquareDiffProps, type MessageSquareDiffProps as MessageSquareDiffIconProps, };