101 lines
2.2 KiB
TypeScript
101 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 WifiHighProps = IconProps<keyof typeof animations>;
|
|
|
|
const animations = {
|
|
default: (() => {
|
|
const animation: Record<string, Variants> = {};
|
|
|
|
for (let i = 1; i <= 3; i++) {
|
|
animation[`path${i}`] = {
|
|
initial: { opacity: 1, scale: 1 },
|
|
animate: {
|
|
opacity: 0,
|
|
scale: 0,
|
|
transition: {
|
|
opacity: {
|
|
duration: 0.2,
|
|
ease: 'easeInOut',
|
|
repeat: 1,
|
|
repeatType: 'reverse',
|
|
repeatDelay: 0.2,
|
|
delay: 0.2 * (i - 1),
|
|
},
|
|
scale: {
|
|
duration: 0.2,
|
|
ease: 'easeInOut',
|
|
repeat: 1,
|
|
repeatType: 'reverse',
|
|
repeatDelay: 0.2,
|
|
delay: 0.2 * (i - 1),
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
return animation;
|
|
})() satisfies Record<string, Variants>,
|
|
} as const;
|
|
|
|
function IconComponent({ size, ...props }: WifiHighProps) {
|
|
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.path
|
|
d="M12 20h.01"
|
|
variants={variants.path1}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="M8.5 16.429a5 5 0 0 1 7 0"
|
|
variants={variants.path2}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="M5 12.859a10 10 0 0 1 14 0"
|
|
variants={variants.path3}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
</motion.svg>
|
|
);
|
|
}
|
|
|
|
function WifiHigh(props: WifiHighProps) {
|
|
return <IconWrapper icon={IconComponent} {...props} />;
|
|
}
|
|
|
|
export {
|
|
animations,
|
|
WifiHigh,
|
|
WifiHigh as WifiHighIcon,
|
|
type WifiHighProps,
|
|
type WifiHighProps as WifiHighIconProps,
|
|
};
|