import type { ComponentPropsWithoutRef } from "react"; export function ShimmerText({ children, className = "", ...props }: ComponentPropsWithoutRef<"span">) { return ( {children} ); }