import { cn } from "@/lib/utils"; import type { ElementType, ReactNode } from "react"; export interface TextShimmerProps { children: ReactNode; as?: ElementType; duration?: number; className?: string; } export function TextShimmer({ children, as: Comp = "span", duration = 2.5, className }: TextShimmerProps) { return ( {children} ); }