# Inline AICommand Menu

A configurable, accessible inline aicommand menu surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/inline-ai-command-menu.json
```

[Registry JSON](https://amro-ui.vercel.app/r/inline-ai-command-menu.json)

## Preview

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


## Source

### ui/inline-ai-command-menu.tsx

```tsx
"use client";

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

export { InlineAICommandMenu } from "@/components/amro/components/editorial";
export type { InlineAICommandMenuProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible inline aicommand menu surface for AI product workflows.

### Package

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

<InlineAICommandMenu />
```

### shadcn copy

```tsx
import { InlineAICommandMenu } from "@/components/ui/inline-ai-command-menu";

<InlineAICommandMenu />
```

