'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 MessageSquareShareProps = 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], }, }, }, group2: {}, path1: {}, path2: {}, path3: {}, } satisfies Record, 'arrow-up': { group: {}, group2: { initial: { x: 0, y: 0, transition: { ease: 'easeInOut', duration: 0.3 }, }, animate: { x: 2, y: -2, transition: { ease: 'easeInOut', duration: 0.3 }, }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, 'arrow-up-loop': { group: {}, group2: { initial: { x: 0, y: 0, }, animate: { x: [0, 2, 0], y: [0, -2, 0], transition: { ease: 'easeInOut', duration: 0.6 }, }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageSquareShareProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageSquareShare(props: MessageSquareShareProps) { return ; } export { animations, MessageSquareShare, MessageSquareShare as MessageSquareShareIcon, type MessageSquareShareProps, type MessageSquareShareProps as MessageSquareShareIconProps, };