'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 ArrowLeftProps = IconProps; const animations = { default: { group: { initial: { x: 0, transition: { ease: 'easeInOut', duration: 0.3 }, }, animate: { x: '-25%', transition: { ease: 'easeInOut', duration: 0.3 }, }, }, path1: {}, path2: {}, } satisfies Record, 'default-loop': { group: { initial: { x: 0, }, animate: { x: [0, '-25%', 0], transition: { ease: 'easeInOut', duration: 0.6 }, }, }, path1: {}, path2: {}, } satisfies Record, pointing: { group: {}, path1: { initial: { d: 'M19 12H5', transition: { ease: 'easeInOut', duration: 0.3 }, }, animate: { d: 'M19 12H10', transition: { ease: 'easeInOut', duration: 0.3 }, }, }, path2: { initial: { d: 'm12 19-7-7 7-7', transition: { ease: 'easeInOut', duration: 0.3 }, }, animate: { d: 'm15.5 19-7-7 7-7', transition: { ease: 'easeInOut', duration: 0.3 }, }, }, } satisfies Record, 'pointing-loop': { group: {}, path1: { initial: { d: 'M19 12H5', }, animate: { d: ['M19 12H5', 'M19 12H10', 'M19 12H5'], transition: { ease: 'easeInOut', duration: 0.6 }, }, }, path2: { initial: { d: 'm12 19-7-7 7-7', }, animate: { d: ['m12 19-7-7 7-7', 'm15.5 19-7-7 7-7', 'm12 19-7-7 7-7'], transition: { ease: 'easeInOut', duration: 0.6 }, }, }, } satisfies Record, out: { group: { initial: { x: 0, }, animate: { x: [0, '-150%', '150%', 0], transition: { default: { ease: 'easeInOut', duration: 0.8 }, x: { ease: 'easeInOut', duration: 0.8, times: [0, 0.5, 0.5, 1], }, }, }, }, path1: {}, path2: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: ArrowLeftProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function ArrowLeft(props: ArrowLeftProps) { return ; } export { animations, ArrowLeft, ArrowLeft as ArrowLeftIcon, type ArrowLeftProps, type ArrowLeftProps as ArrowLeftIconProps, };