Docs
  Label
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>
  
	<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 label
   - Install 
bits-ui: 
	npm install  bits-ui -D
   - Copy and paste the component source files linked at the top of this page into your project.
 
Usage
	<script lang="ts">
  import { Label } from "$lib/components/ui/label";
</script>
 
<Label for="email">Your email address</Label>
  On This Page