99 lines
2.2 KiB
TypeScript
99 lines
2.2 KiB
TypeScript
'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<keyof typeof animations>;
|
|
|
|
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<string, Variants>,
|
|
'default-loop': {
|
|
group: {
|
|
initial: {
|
|
y: 0,
|
|
},
|
|
animate: {
|
|
y: [0, -2, 0],
|
|
transition: { duration: 0.6, ease: 'easeInOut' },
|
|
},
|
|
},
|
|
path1: {},
|
|
path2: {},
|
|
path3: {},
|
|
} satisfies Record<string, Variants>,
|
|
} as const;
|
|
|
|
function IconComponent({ size, ...props }: CloudUploadProps) {
|
|
const { controls } = useAnimateIconContext();
|
|
const variants = getVariants(animations);
|
|
|
|
return (
|
|
<motion.svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
{...props}
|
|
>
|
|
<motion.g variants={variants.group} initial="initial" animate={controls}>
|
|
<motion.path
|
|
d="M12 13v8"
|
|
variants={variants.path1}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="m8 17 4-4 4 4"
|
|
variants={variants.path2}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
</motion.g>
|
|
<motion.path
|
|
d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"
|
|
variants={variants.path3}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
</motion.svg>
|
|
);
|
|
}
|
|
|
|
function CloudUpload(props: CloudUploadProps) {
|
|
return <IconWrapper icon={IconComponent} {...props} />;
|
|
}
|
|
|
|
export {
|
|
animations,
|
|
CloudUpload,
|
|
CloudUpload as CloudUploadIcon,
|
|
type CloudUploadProps,
|
|
type CloudUploadProps as CloudUploadIconProps,
|
|
};
|