> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lyzn.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Label

> Form field label

# Label

The `Label` component renders a label for form inputs. It's automatically used within input components but can be used standalone.

## Usage

```jsx theme={null}
<Label value="Email Address" required />
```

## Props

<ResponseField name="value" type="string" required>
  The label text.
</ResponseField>

<ResponseField name="required" type="boolean" default="false">
  Whether to show a required asterisk (\*).
</ResponseField>

<ResponseField name="htmlFor" type="string">
  ID of the input this label controls.
</ResponseField>

## Examples

### Custom Input Group

```jsx theme={null}
<Col gap="xs">
  <Label value="Custom Field" required />
  <Input placeholder="Enter value..." />
</Col>
```
