'use client';
import type { Variants } from 'motion/react';
import type { HTMLAttributes } from 'react';
import { forwardRef, useCallback, useImperativeHandle, useRef } from 'react';
import { motion, useAnimation } from 'motion/react';
import { cn } from '@/lib/utils';
export interface ZapOffIconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface ZapOffIconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const PATH_VARIANTS: Variants = {
normal: {
opacity: 1,
pathLength: 1,
transition: {
duration: 0.6,
opacity: { duration: 0.1 },
},
},
animate: {
opacity: [0, 1],
pathLength: [0, 1],
transition: {
duration: 0.6,
opacity: { duration: 0.1 },
},
},
};
const ZapOffIcon = forwardRef<ZapOffIconHandle, ZapOffIconProps>(
({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {
const controls = useAnimation();
const isControlledRef = useRef(false);
useImperativeHandle(ref, () => {
isControlledRef.current = true;
return {
startAnimation: () => controls.start('animate'),
stopAnimation: () => controls.start('normal'),
};
});
const handleMouseEnter = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
controls.start('animate');
} else {
onMouseEnter?.(e);
}
},
[controls, onMouseEnter]
);
const handleMouseLeave = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
controls.start('normal');
} else {
onMouseLeave?.(e);
}
},
[controls, onMouseLeave]
);
const PATHS = [
'M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317',
'M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773',
'M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643',
'm2 2 20 20',
];
return (
<div
className={cn(className)}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
{...props}
>
<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"
>
{PATHS.map((d, i) => (
<motion.path
key={i}
d={d}
variants={PATH_VARIANTS}
animate={controls}
custom={i * 0.15}
/>
))}
</svg>
</div>
);
}
);
ZapOffIcon.displayName = 'ZapOffIcon';
export { ZapOffIcon };