Qwik-UI Label

    This component implements the Material Design 3 label with proper accessibility support. It automatically associates with form controls and supports disabled states through peer styling.

    Prop Controls

    Basic Labels

    Label Positions

    Right-aligned Label

    Label Styles

    Additional information about this field
    
    <div class="flex flex-col gap-2">
      <Label name="example">Example Label</Label>
      <Input
        name="example"
        placeholder="Input with label..."
        disabled={isDisabled}
      />
    </div>