Component referenceSource owned

Skeleton

Use to show a placeholder while content is loading.

Upstream reference
On this page2 sectionsBack to top
Live preview
Loading preview...

#Installation

npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/skeleton.json

#Usage

import { Skeleton } from "@/components/ui/skeleton";
<div className="flex items-center space-x-4">
  <Skeleton className="h-12 w-12 rounded-full" />
  <div className="space-y-2">
    <Skeleton className="h-4 sm:w-[250px] w-[100px]" />
    <Skeleton className="h-4 sm:w-[200px] w-[100px]" />
  </div>
</div>