← Gallery
Skeleton
UI primitiveskeletonLive preview
Size
0.3 KB
Exports
1
Imports
1
Type
ui
Exports
SkeletonImports
- ./utils
Source
View on GitHub →import { cn } from "./utils";
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
);
}
export { Skeleton };