import type { CSSProperties, FC, ReactNode } from 'react' import { ny } from '@/lib/utils' interface AnimatedShinyTextProps { children: ReactNode className?: string shimmerWidth?: number } const AnimatedShinyText: FC = ({ children, className, shimmerWidth = 100, }) => { return (

{children}

) } export default AnimatedShinyText