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