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

@rathfi/ui

v0.0.21

Published

A production-ready UI component library built with React, Radix UI, and Tailwind CSS

Downloads

55

Readme

RathUI

A production-ready, accessible UI component library built with React, Radix UI, and Tailwind CSS.

Features

  • 🎨 Beautiful, customizable components with design tokens
  • ♿ Fully accessible (WAI-ARIA compliant)
  • 🎯 Built with Radix UI primitives
  • 🔧 Tailwind CSS for styling
  • 📦 Tree-shakeable ESM and CJS builds
  • 💪 TypeScript support
  • 🎭 Multiple variants for each component
  • 🔌 Easy to integrate into any React or Next.js project

Installation

npm install @rathfi/ui
# or
yarn add @rathfi/ui
# or
pnpm add @rathfi/ui

Setup

1. Configure Tailwind CSS

Add the library to your tailwind.config.js:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    './src/**/*.{js,ts,jsx,tsx,mdx}',
    './node_modules/@rathfi/ui/dist/**/*.{js,mjs}',
  ],
  presets: [
    require('@rathfi/ui/tailwind.config')
  ],
}

2. Wrap with TooltipProvider (optional, for tooltips)

In your root layout or _app.tsx:

import { TooltipProvider } from '@rathfi/ui';

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        <TooltipProvider>
          {children}
        </TooltipProvider>
      </body>
    </html>
  );
}

Components

Button

import { Button } from '@rathfi/ui';

export default function Example() {
  return (
    <>
      <Button>Default</Button>
      <Button variant="secondary">Secondary</Button>
      <Button variant="ghost">Ghost</Button>
      <Button variant="outline">Outline</Button>
      <Button size="sm">Small</Button>
      <Button size="lg">Large</Button>
    </>
  );
}

Input

import { Input } from '@rathfi/ui';

export default function Example() {
  return (
    <>
      <Input label="Email" type="email" placeholder="[email protected]" />
      <Input 
        label="Password" 
        type="password" 
        error="Password is required" 
      />
    </>
  );
}

Dialog

import { 
  Dialog, 
  DialogTrigger, 
  DialogContent, 
  DialogHeader, 
  DialogTitle,
  DialogDescription,
  Button 
} from '@rathfi/ui';

export default function Example() {
  return (
    <Dialog>
      <DialogTrigger asChild>
        <Button>Open Dialog</Button>
      </DialogTrigger>
      <DialogContent>
        <DialogHeader>
          <DialogTitle>Dialog Title</DialogTitle>
          <DialogDescription>Dialog description goes here.</DialogDescription>
        </DialogHeader>
        {/* Content */}
      </DialogContent>
    </Dialog>
  );
}

Dropdown Menu

import { 
  DropdownMenu, 
  DropdownMenuTrigger, 
  DropdownMenuContent,
  DropdownMenuItem,
  Button 
} from '@rathfi/ui';

export default function Example() {
  return (
    <DropdownMenu>
      <DropdownMenuTrigger asChild>
        <Button>Open Menu</Button>
      </DropdownMenuTrigger>
      <DropdownMenuContent>
        <DropdownMenuItem>Profile</DropdownMenuItem>
        <DropdownMenuItem>Settings</DropdownMenuItem>
        <DropdownMenuItem>Logout</DropdownMenuItem>
      </DropdownMenuContent>
    </DropdownMenu>
  );
}

Tooltip

import { 
  Tooltip, 
  TooltipTrigger, 
  TooltipContent, 
  Button 
} from '@rathfi/ui';

export default function Example() {
  return (
    <Tooltip>
      <TooltipTrigger asChild>
        <Button>Hover me</Button>
      </TooltipTrigger>
      <TooltipContent>
        <p>Tooltip content</p>
      </TooltipContent>
    </Tooltip>
  );
}

Design Tokens

The library includes a comprehensive design system with:

Colors

  • Primary: Deep blue (#0038A8)
  • Secondary: Light gray (#E5E7EB)
  • Accent: Blue variations
  • Muted: Subtle grays
  • Background: Very light gray (#F9F9FB)
  • Foreground: Near black (#0A0A0A)

Typography

  • Font family: Inter (geometric sans-serif)
  • Size scale: xs, sm, base, lg, xl, 2xl, 3xl, 4xl, 5xl
  • Weights: normal, medium, semibold, bold, extrabold

Spacing & Radius

  • Comprehensive spacing scale (0.5 to 32)
  • Border radius: sm, md, lg, full
  • Shadows: sm, default, md, lg, xl

Development

# Install dependencies
npm install

# Run example app
npm run dev

# Build library
npm run build

# Prepare for publishing
npm run release

License

MIT