diff --git a/apps/web/components/ShinyText/ShinyText.tsx b/apps/web/components/ShinyText/ShinyText.tsx index 5725559..739b9c0 100644 --- a/apps/web/components/ShinyText/ShinyText.tsx +++ b/apps/web/components/ShinyText/ShinyText.tsx @@ -1,22 +1,26 @@ - interface ShinyTextProps { - text: string; - disabled?: boolean; - speed?: number; - className?: string; + text: string; + disabled?: boolean; + speed?: number; + className?: string; } -const ShinyText = ({ text, disabled = false, speed = 5, className = '' }: ShinyTextProps) => { - const animationDuration = `${speed}s`; +const ShinyText = ({ + text, + disabled = false, + speed = 5, + className = "", +}: ShinyTextProps) => { + const animationDuration = `${speed}s`; - return ( -