'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 ChevronRightProps = IconProps; const animations = { default: { path: { initial: { x: 0, transition: { duration: 0.3, ease: 'easeInOut' }, }, animate: { x: 4, transition: { duration: 0.3, ease: 'easeInOut' }, }, }, } satisfies Record, 'default-loop': { path: { initial: { x: 0, }, animate: { x: [0, 4, 0], transition: { duration: 0.6, ease: 'easeInOut' }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: ChevronRightProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function ChevronRight(props: ChevronRightProps) { return ; } export { animations, ChevronRight, ChevronRight as ChevronRightIcon, type ChevronRightProps, type ChevronRightProps as ChevronRightIconProps, };