87 lines
2.0 KiB
TypeScript
87 lines
2.0 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 Volume1Props = IconProps<keyof typeof animations>;
|
|
|
|
const animations = {
|
|
default: {
|
|
path1: {
|
|
initial: { opacity: 1, scale: 1 },
|
|
animate: {
|
|
opacity: 0,
|
|
scale: 0,
|
|
transition: {
|
|
opacity: {
|
|
duration: 0.2,
|
|
ease: 'easeInOut',
|
|
repeat: 1,
|
|
repeatType: 'reverse',
|
|
repeatDelay: 0.2,
|
|
},
|
|
scale: {
|
|
duration: 0.2,
|
|
ease: 'easeInOut',
|
|
repeat: 1,
|
|
repeatType: 'reverse',
|
|
repeatDelay: 0.2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} satisfies Record<string, Variants>,
|
|
} as const;
|
|
|
|
function IconComponent({ size, ...props }: Volume1Props) {
|
|
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="M16 9a5 5 0 0 1 0 6"
|
|
variants={variants.path1}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"
|
|
variants={variants.path2}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
</motion.svg>
|
|
);
|
|
}
|
|
|
|
function Volume1(props: Volume1Props) {
|
|
return <IconWrapper icon={IconComponent} {...props} />;
|
|
}
|
|
|
|
export {
|
|
animations,
|
|
Volume1,
|
|
Volume1 as Volume1Icon,
|
|
type Volume1Props,
|
|
type Volume1Props as Volume1IconProps,
|
|
};
|