'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 ChevronLeftRightProps = IconProps; const animations = { default: { path1: { initial: { x: 0, transition: { duration: 0.3, ease: 'easeInOut' }, }, animate: { x: -3, transition: { duration: 0.3, ease: 'easeInOut' }, }, }, path2: { initial: { x: 0, transition: { duration: 0.3, ease: 'easeInOut' }, }, animate: { x: 3, transition: { duration: 0.3, ease: 'easeInOut' }, }, }, } satisfies Record, 'default-loop': { path1: { initial: { x: 0, }, animate: { x: [0, -3, 0], transition: { duration: 0.6, ease: 'easeInOut' }, }, }, path2: { initial: { x: 0, }, animate: { x: [0, 3, 0], transition: { duration: 0.6, ease: 'easeInOut' }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: ChevronLeftRightProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function ChevronLeftRight(props: ChevronLeftRightProps) { return ; } export { animations, ChevronLeftRight, ChevronLeftRight as ChevronLeftRightIcon, type ChevronLeftRightProps, type ChevronLeftRightProps as ChevronLeftRightIconProps, };