MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / Skeleton

Function Skeleton

packages/web/src/components/ui/skeleton.tsx:3–13  ·  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({
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 }

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected