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