# Learning Streak Tile

A configurable, accessible learning streak tile surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/learning-streak-tile.tsx

```tsx
"use client";

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

export { LearningStreakTile } from "@/components/amro/components/learning";
export type { LearningStreakTileProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible learning streak tile surface for AI product workflows.

### Package

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

<LearningStreakTile />
```

### shadcn copy

```tsx
import { LearningStreakTile } from "@/components/ui/learning-streak-tile";

<LearningStreakTile />
```

