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.
Label
neobrutal-ui/labelRemovedComponent
neobrutal-ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by neobrutal-ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/label.jsonSource
1import * as React from "react";23import { cn } from "@/lib/utils";45function Label({ className, ...props }: React.ComponentProps<"label">) {6 return (7 <label8 data-slot="label"9 className={cn(10 "text-sm font-heading leading-none select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-70 peer-disabled:cursor-not-allowed peer-disabled:opacity-70",11 className,12 )}13 {...props}14 />15 );16}1718export { Label };
