--- title: Label description: Renders an accessible label associated with controls. component: true links: doc: https://www.radix-ui.com/docs/primitives/components/label api: https://www.radix-ui.com/docs/primitives/components/label#api-reference --- ## Installation CLI Manual ```bash npx shadcn@latest add label ``` Install the following dependencies: ```bash npm install @radix-ui/react-label ``` Copy and paste the following code into your project. Update the import paths to match your project setup. ## Usage ```tsx import { Label } from "@/components/ui/label" ``` ```tsx ```