# Safe Text Area Overlay

A configurable, accessible safe text area overlay surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/safe-text-area-overlay.json
```

[Registry JSON](https://amro-ui.vercel.app/r/safe-text-area-overlay.json)

## Preview

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


## Source

### ui/safe-text-area-overlay.tsx

```tsx
"use client";

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

export { SafeTextAreaOverlay } from "@/components/amro/components/generation";
export type { SafeTextAreaOverlayProps } from "@/components/amro/components/generation";
```



## Usage

A configurable, accessible safe text area overlay surface for AI product workflows.

### Package

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

<SafeTextAreaOverlay />
```

### shadcn copy

```tsx
import { SafeTextAreaOverlay } from "@/components/ui/safe-text-area-overlay";

<SafeTextAreaOverlay />
```

