This component no longer exists. It was in gmhlab’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 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
gmhlab/labelRemovedComponent
gmhlab publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/gmhlab/monorepo/main/packages/ui/public/r/label.jsonSource
1import * as React from "react"2import { Label as LabelPrimitive } from "radix-ui"34import { cn } from "@/lib/utils"56function Label({7 className,8 ...props9}: React.ComponentProps<typeof LabelPrimitive.Root>) {10 return (11 <LabelPrimitive.Root12 data-slot="label"13 className={cn(14 "flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",15 className16 )}17 {...props}18 />19 )20}2122export { Label }
What it pulls in
npm packages
