--- title: Label description: Renders an accessible label associated with controls. component: true radix: link: https://www.radix-ui.com/docs/primitives/components/label api: https://www.radix-ui.com/docs/primitives/components/label#api-reference --- ## Installation ```bash npx shadcn-ui add label ``` Manual Installation 1. Install the `@radix-ui/react-label` component from radix-ui: ```bash npm install @radix-ui/react-label ``` 2. Copy and paste the following code into your project. This is the ` ## Usage ```tsx import { Label } from "@/components/ui/label" ``` ```tsx ```