blob: b1ba55928909050fef1682dcf3f928c47e77e671 [file] [log] [blame]
giod0026612025-05-08 13:00:36 +00001import { cn } from "@/lib/utils";
gio5f2f1002025-03-20 18:38:48 +04002
giod0026612025-05-08 13:00:36 +00003function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
4 return <div className={cn("animate-pulse rounded-md bg-primary/10", className)} {...props} />;
gio5f2f1002025-03-20 18:38:48 +04005}
6
giod0026612025-05-08 13:00:36 +00007export { Skeleton };