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