This component no longer exists. It was in ondo-ui’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
ondo-ui/labelRemovedComponent
Renders an accessible label associated with controls.
Install it
npx shadcn@latest add https://ui.ondo.dou.so/r/label.jsonSource
1"use client"23import * as React from "react"45import { cn } from "@/lib/utils"67function Label({ className, ...props }: React.ComponentProps<"label">) {8 return (9 <label10 data-slot="label"11 className={cn(12 "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",13 className14 )}15 {...props}16 />17 )18}1920export { Label }
What it pulls in
Other registry items
