# Range Input

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

## Installation

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

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

## Preview

```tsx
import { RangeInput } 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">
      <RangeInput aria-label="Confidence" defaultValue="72" />
    </div>
  );
}
```


## Source

### ui/range-input.tsx

```tsx
"use client";

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

export { RangeInput } from "@/components/amro/components/input";
export type { RangeInputProps } from "@/components/amro/components/input";
```



## Usage

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

### Package

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

<RangeInput />
```

### shadcn copy

```tsx
import { RangeInput } from "@/components/ui/range-input";

<RangeInput />
```

