'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 CloudDownloadProps = 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 }: CloudDownloadProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function CloudDownload(props: CloudDownloadProps) { return ; } export { animations, CloudDownload, CloudDownload as CloudDownloadIcon, type CloudDownloadProps, type CloudDownloadProps as CloudDownloadIconProps, };