# Time Input

A configurable, accessible time input surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/time-input.json
```

[Registry JSON](https://amro-ui.vercel.app/r/time-input.json)

## Preview

```tsx
import { TimeInput } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <TimeInput aria-label="Meeting time" defaultValue="10:30" />
    </div>
  );
}
```


## Source

### ui/time-input.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { TimeInput } from "@/components/amro/components/input";
export type { TimeInputProps } from "@/components/amro/components/input";
```



## Usage

A configurable, accessible time input surface for AI product workflows.

### Package

```tsx
import { TimeInput } from "@amro-ui/react";

<TimeInput />
```

### shadcn copy

```tsx
import { TimeInput } from "@/components/ui/time-input";

<TimeInput />
```

