---
title: "Label"
description: "Form label tied to an input by `htmlFor`."
section: "Libraries"
group: "UI components"
order: 514
---

## Usage

```tsx
import { Label } from "@aeontel/ui";

<Label htmlFor="email">Email</Label>;
```

## Exports

### `Label`

Form label linked to an input via `htmlFor`.

```ts
Label(props: React.ComponentProps<"label">): JSX.Element
```
