1import { cn } from "../lib/utils";
2
3function Skeleton({
4 className,
5 ...props
6}: React.HTMLAttributes<HTMLDivElement>) {
7 return (
8 <div
9 className={cn("bg-primary/10 animate-pulse rounded-md", className)}
10 {...props}
11 />
12 );
13}
14
15export { Skeleton };