# Skill Mastery Radar

A configurable, accessible skill mastery radar surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/skill-mastery-radar.tsx

```tsx
"use client";

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

export { SkillMasteryRadar } from "@/components/amro/components/learning";
export type { SkillMasteryRadarProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible skill mastery radar surface for AI product workflows.

### Package

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

<SkillMasteryRadar />
```

### shadcn copy

```tsx
import { SkillMasteryRadar } from "@/components/ui/skill-mastery-radar";

<SkillMasteryRadar />
```

