# Skeleton

A configurable, accessible skeleton surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/skeleton.tsx

```tsx
"use client";

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

export { Skeleton } from "@/components/amro/components/skeleton";
export type { SkeletonProps } from "@/components/amro/components/skeleton";
```



## Usage

A configurable, accessible skeleton surface for AI product workflows.

### Package

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

<Skeleton />
```

### shadcn copy

```tsx
import { Skeleton } from "@/components/ui/skeleton";

<Skeleton />
```

