Label
docs/labelFreeComponent
label component for SolidJS
Live preview
live · rendered by the registry
Rendered by docs on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://solidcn.dev/r/label.jsonSource
1import type { Component, JSX } from "solid-js";2import { splitProps } from "solid-js";3import { cn } from "~/lib/utils";45export type LabelProps = JSX.LabelHTMLAttributes<HTMLLabelElement> & {6 class?: string;7};89export const Label: Component<LabelProps> = (props) => {10 const [local, rest] = splitProps(props, ["class", "children"]);11 return (12 <label13 class={cn(14 "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",15 local.class,16 )}17 {...rest}18 >19 {local.children}20 </label>21 );22};
More from docs
All 44 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | docs | Components | Free | no deps | |
| Alert Dialogalert-dialog | docs | Components | Free | no deps | |
| Avataravatar | docs | Components | Free | no deps | |
| Badgebadge | docs | Components | Free | no deps | |
| Breadcrumbbreadcrumb | docs | Components | Free | no deps | |
| Buttonbutton | docs | Components | Free | no deps | |
| Calendarcalendar | docs | Components | Free | no deps | |
| Cardcard | docs | Components | Free | no deps |
