Input

Single-line text input.

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.

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