'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 SendProps = IconProps; const animations = { default: { group: { initial: { scale: 1, x: 0, y: 0, }, animate: { scale: [1, 0.8, 1, 1, 1], x: [0, '-10%', '100%', '-125%', 0], y: [0, '10%', '-100%', '125%', 0], transition: { default: { ease: 'easeInOut', duration: 1.2 }, x: { ease: 'easeInOut', duration: 1.2, times: [0, 0.25, 0.5, 0.5, 1], }, y: { ease: 'easeInOut', duration: 1.2, times: [0, 0.25, 0.5, 0.5, 1], }, }, }, }, path1: {}, path2: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: SendProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Send(props: SendProps) { return ; } export { animations, Send, Send as SendIcon, type SendProps, type SendProps as SendIconProps, };