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