Sections
Get Started
Label
Renders an accessible label associated with controls.
<script lang="ts">
import { Checkbox } from "$lib/components/ui/checkbox/index.js";
import { Label } from "$lib/components/ui/label/index.js";
</script>
<div>
<div class="flex items-center space-x-2">
<Checkbox id="terms" />
<Label for="terms">Accept terms and conditions</Label>
</div>
</div>
Installation
npx shadcn-svelte@latest add https://shadcn-svelte-registry-template.vercel.app/r/label.jsonUsage
<script lang="ts">
import { Label } from "$lib/components/ui/label/index.js";
</script>
<Label for="email">Your email address</Label>