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