React components for Steam-style badges and levels.
- Premier Badge — CS2 Premier rating (1000–30,000+)
- Steam Level — Steam account level
- FACEIT Level — FACEIT skill level
pnpm dlx shadcn@latest add https://steam-components.pages.dev/registry/premier-badge.json
pnpm dlx shadcn@latest add https://steam-components.pages.dev/registry/steam-level.json
pnpm dlx shadcn@latest add https://steam-components.pages.dev/registry/faceit-level.jsonOr with npm/bun/yarn: npx shadcn@latest add <url>
import { PremierBadge } from "@/components/premier-badge"
import { SteamLevel } from "@/components/steam-level"
import { FaceitLevel } from "@/components/faceit-level"
<PremierBadge rating={14999} size="lg" />
<SteamLevel level={42} size="md" />
<FaceitLevel level={7} size="sm" />All components accept size: "sm" | "md" | "lg".
pnpm install
pnpm dev