Label

Renders an accessible label associated with controls.

Preview

Installation

bash
npx sigma-ui add label

Examples

Basic

vue
<script setup lang="ts">
import { Label } from '@/components/ui/label'
</script>

<template>
  <Label for="email">Your email address</Label>
</template>
Edit this page on GitHub