import { cn } from "@/lib/utils"; function TypingLoader({ className, size = "md", }: { className?: string; size?: "sm" | "md" | "lg" }) { const dotSizes = { sm: "h-1 w-1", md: "h-1.5 w-1.5", lg: "h-2 w-2" }; return (
{[0, 1, 2].map((i) => (
))} Loading
); } function TextShimmerLoader({ text = "Thinking", className, }: { text?: string; className?: string }) { return ( {text}... ); } export { TypingLoader, TextShimmerLoader };