# Issue Navigator

A configurable, accessible issue navigator surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { IssueNavigator } 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">
      <IssueNavigator />
    </div>
  );
}
```


## Source

### ui/issue-navigator.tsx

```tsx
"use client";

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

export { IssueNavigator } from "@/components/amro/components/editorial";
export type { IssueNavigatorProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible issue navigator surface for AI product workflows.

### Package

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

<IssueNavigator />
```

### shadcn copy

```tsx
import { IssueNavigator } from "@/components/ui/issue-navigator";

<IssueNavigator />
```

