'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 RadioTowerIconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface RadioTowerIconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const VARIANTS: Variants = {
normal: {
opacity: 1,
transition: {
duration: 0.4,
},
},
fadeOut: {
opacity: 0,
transition: { duration: 0.3 },
},
fadeIn: (i: number) => ({
opacity: 1,
transition: {
type: 'spring',
stiffness: 300,
damping: 20,
delay: i * 0.1,
},
}),
};
const RadioTowerIcon = forwardRef<RadioTowerIconHandle, RadioTowerIconProps>(
({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {
const controls = useAnimation();
const isControlledRef = useRef(false);
useImperativeHandle(ref, () => {
isControlledRef.current = true;
return {
startAnimation: async () => {
await controls.start('fadeOut');
controls.start('fadeIn');
},
stopAnimation: () => controls.start('normal'),
};
});
const handleMouseEnter = useCallback(
async (e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
await controls.start('fadeOut');
controls.start('fadeIn');
} else {
onMouseEnter?.(e);
}
},
[controls, onMouseEnter]
);
const handleMouseLeave = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
controls.start('normal');
} else {
onMouseLeave?.(e);
}
},
[controls, onMouseLeave]
);
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"
>
<motion.path
d="M4.9 16.1C1 12.2 1 5.8 4.9 1.9"
initial={{ opacity: 1 }}
variants={VARIANTS}
animate={controls}
custom={1}
/>
<motion.path
d="M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"
initial={{ opacity: 1 }}
variants={VARIANTS}
animate={controls}
custom={0}
/>
<circle cx="12" cy="9" r="2" />
<motion.path
d="M16.2 4.8c2 2 2.26 5.11.8 7.47"
initial={{ opacity: 1 }}
variants={VARIANTS}
animate={controls}
custom={0}
/>
<motion.path
d="M19.1 1.9a9.96 9.96 0 0 1 0 14.1"
initial={{ opacity: 1 }}
variants={VARIANTS}
animate={controls}
custom={1}
/>
<path d="M9.5 18h5" />
<path d="m8 22 4-11 4 11" />
</svg>
</div>
);
}
);
RadioTowerIcon.displayName = 'RadioTowerIcon';
export { RadioTowerIcon };