coders-club / src /components /ui /skeleton.tsx
kumar-aditya's picture
Upload 108 files
a7b8df9 verified
raw
history blame contribute delete
241 Bytes
import { cn } from "@/lib/utils";
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />;
}
export { Skeleton };