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