This component no longer exists. It was in neobrutal-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Skeleton
neobrutal-ui/nskeletonRemovedComponent
neobrutal-ui publishes no description for this item.
Install it
npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/nskeleton.jsonSource
1import { cn } from "@/lib/utils";23function Skeleton({ className, ...props }: React.ComponentProps<"div">) {4 return (5 <div6 data-slot="skeleton"7 className={cn(8 "animate-pulse rounded-base border-2 border-border bg-secondary-background",9 className,10 )}11 {...props}12 />13 );14}1516export { Skeleton };
