npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@brkz-inc/ui

v2.7.0

Published

BRKZ UI component library — built on shadcn/Radix primitives

Downloads

812

Readme

@brkz-inc/ui

Reusable UI components for the BRKZ design system. Built on shadcn/ui and Radix UI primitives.

Key principles

  • Every component uses semantic tokens only, never hardcoded colors, spacing, or radius
  • Built on Radix UI primitives for accessibility out of the box
  • Fully typed with TypeScript strict mode
  • Variants via class-variance-authority

Component Status

Each folder under src/components/ is one shipped module; the live Storybook is the current catalog. The package's exports map declares a single entrypoint, the barrel, so import named exports from @brkz-inc/ui (e.g. import { Button } from '@brkz-inc/ui'); there are no per-component subpath entrypoints. (Page-shell compositions like DetailPageShell / ListingPageShell / AuthLayout live in @brkz-inc/patterns, not here; the Sidebar primitive ships here and is composed into a per-app AppSidebar by the consumer.)

Names below are module/family labels, exact exported symbols can differ (the Logo module exports BrkzLogo / BrkzSymbol, Radio exports RadioGroup / RadioGroupItem, Chart exports ChartContainer / ChartTooltip / …). Check dist/index.d.ts for exact names.

Core Primitives ✅

| Component | Status | |-----------|--------| | Button | ✅ Done | | IconButton | ✅ Done | | LinkButton | ✅ Done | | LoadingButton | ✅ Done | | Badge | ✅ Done | | Spinner | ✅ Done | | Avatar | ✅ Done | | Skeleton | ✅ Done | | Separator | ✅ Done | | Label | ✅ Done | | Kbd | ✅ Done | | Logo | ✅ Done | | Typography | ✅ Done |

Form Controls ✅

Input, Textarea, Checkbox, Radio, Switch, Select, Combobox, MultiSelect, InputOTP, InputFile, PhoneInput, SearchInput, Slider, Stepper, Field, Form, Toggle

Overlays & Navigation ✅

Dialog, AlertDialog, Sheet, Drawer, Popover, Tooltip, HoverCard, Command, DropdownMenu, ContextMenu, Menubar, NavigationMenu, Breadcrumb, Tabs, StatusFilterTabs, Accordion, Collapsible, Sidebar

Data & Feedback ✅

Table, DataTable, Pagination, CursorPagination, Card, Alert, Sonner, Toast, Progress, ScrollArea, Resizable, Carousel, Calendar, Chart, Timeline

Utility ✅

AspectRatio, Item, Empty, ButtonGroup

Usage

import { Button, LoadingButton, Badge, Spinner, Avatar, AvatarImage, AvatarFallback } from '@brkz-inc/ui'

// Button
<Button variant="default" size="md">Submit</Button>
<Button variant="outline" size="lg">Cancel</Button>

// LoadingButton — Button renders no spinner, use this for async actions
<LoadingButton variant="destructive" loading={isDeleting}>Delete</LoadingButton>

// Badge
<Badge variant="success">Active</Badge>
<Badge variant="error">Failed</Badge>

// Spinner
<Spinner size="md" />

// Avatar
<Avatar>
  <AvatarImage src={user.avatar} alt={user.name} />
  <AvatarFallback>JS</AvatarFallback>
</Avatar>

Token rule

// ❌ NEVER
<div className="bg-blue-500 text-white rounded-[8px]" />

// ✅ ALWAYS
<div className="bg-primary text-primary-foreground rounded-md" />