import { ComponentPropsWithoutRef, CSSProperties, FC } from "react"; import { cn } from "@/lib/utils"; export interface AnimatedShinyTextProps extends ComponentPropsWithoutRef<"span"> { shimmerWidth?: number; } export const AnimatedShinyText: FC = ({ children, className, shimmerWidth = 100, ...props }) => { return ( {children} ); };