# Team Learning Heatmap

A configurable, accessible team learning heatmap surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/team-learning-heatmap.tsx

```tsx
"use client";

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

export { TeamLearningHeatmap } from "@/components/amro/components/learning";
export type { TeamLearningHeatmapProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible team learning heatmap surface for AI product workflows.

### Package

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

<TeamLearningHeatmap />
```

### shadcn copy

```tsx
import { TeamLearningHeatmap } from "@/components/ui/team-learning-heatmap";

<TeamLearningHeatmap />
```

