MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / Skeleton

Function Skeleton

src/components/ui/skeleton.tsx:3–5  ·  view source on GitHub ↗
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected