112 lines
2.5 KiB
TypeScript
112 lines
2.5 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 LightbulbProps = IconProps<keyof typeof animations>;
|
|
|
|
const animations = {
|
|
default: {
|
|
path1: {
|
|
initial: {
|
|
rotate: 0,
|
|
fill: 'transparent',
|
|
},
|
|
animate: {
|
|
transformOrigin: 'bottom center',
|
|
fill: 'currentColor',
|
|
rotate: [0, -20, 15, -7, 0],
|
|
fillOpacity: [0, 1, 0, 1, 0],
|
|
transition: {
|
|
duration: 0.8,
|
|
ease: 'easeInOut',
|
|
rotate: {
|
|
duration: 0.8,
|
|
ease: 'easeInOut',
|
|
times: [0, 0.4, 0.6, 0.8, 1],
|
|
},
|
|
fillOpacity: {
|
|
duration: 0.3,
|
|
ease: 'easeInOut',
|
|
times: [0, 0.4, 0.6, 0.8, 1],
|
|
delay: 0.4,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
path2: {
|
|
initial: {
|
|
rotate: 0,
|
|
},
|
|
animate: {
|
|
transformOrigin: 'bottom center',
|
|
rotate: [0, 0, 10, -5, 0],
|
|
transition: {
|
|
duration: 0.8,
|
|
ease: 'easeInOut',
|
|
times: [0, 0.4, 0.6, 0.8, 1],
|
|
},
|
|
},
|
|
},
|
|
path3: {},
|
|
} satisfies Record<string, Variants>,
|
|
} as const;
|
|
|
|
function IconComponent({ size, ...props }: LightbulbProps) {
|
|
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="M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"
|
|
variants={variants.path1}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="M9 18h6"
|
|
variants={variants.path2}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="M10 22h4"
|
|
variants={variants.path3}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
</motion.svg>
|
|
);
|
|
}
|
|
|
|
function Lightbulb(props: LightbulbProps) {
|
|
return <IconWrapper icon={IconComponent} {...props} />;
|
|
}
|
|
|
|
export {
|
|
animations,
|
|
Lightbulb,
|
|
Lightbulb as LightbulbIcon,
|
|
type LightbulbProps,
|
|
type LightbulbProps as LightbulbIconProps,
|
|
};
|