interface ShinyTextProps { text: string; disabled?: boolean; speed?: number; className?: string; } const ShinyText = ({ text, disabled = false, speed = 5, className = "", }: ShinyTextProps) => { const animationDuration = `${speed}s`; return (
{text}
); }; export default ShinyText;