---
title: "Input"
description: "Single-line text input."
section: "Libraries"
group: "UI components"
order: 513
---

## Usage

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

<div className="flex flex-col gap-2">
  <Label htmlFor="name">Name</Label>
  <Input id="name" value={value} onChange={(e) => setValue(e.target.value)} />
</div>;
```

## Exports

### `Input`

Single-line text input element.

```ts
Input(props: React.ComponentProps<"input">): JSX.Element
```
