Pixelact Label
pixelact-ui/labelFreeComponent
A simple label component.
Live preview
live · rendered by the registry
Rendered by Pixelact UI on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://pixelactui.com/r/label.jsonSource
1import * as React from "react";2import * as LabelPrimitive from "@radix-ui/react-label";3import { cn } from "@/lib/utils";4import { Label as ShadcnLabel } from "@/components/ui/label";56import "@/components/ui/pixelact-ui/styles/styles.css";78interface PixelLabelProps9 extends React.ComponentProps<typeof LabelPrimitive.Root> {10 asChild?: boolean;11}1213function Label({ className, ...props }: PixelLabelProps) {14 return (15 <ShadcnLabel16 className={cn("pixel-font text-foreground mb-2", className)}17 {...props}18 />19 );20}2122export { Label };
What it pulls in
Other registry items
Files it writes
More from Pixelact UI
All 28 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Pixelact Accordionaccordion | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Alertalert | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Alert Dialogalert-dialog | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Avataravatar | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Badgebadge | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Breadcrumbbreadcrumb | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Buttonbutton | Pixelact UI | Components | Free | no deps · 3 files | |
| Pixelact Calendarcalendar | Pixelact UI | Components | Free | no deps · 2 files |
