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

@clikvn/atomic-ui

v1.0.7

Published

Beautifully designed components built with Tailwind CSS. Copy and paste into your apps.

Readme

Atomic UI

A modern React component library built with the same philosophy as shadcn/ui - copy and paste components that you can customize to fit your needs.

Features

  • 🎨 Built with Tailwind CSS
  • 🔧 Full TypeScript support
  • 📦 Copy & paste components - own your code
  • 🎯 Highly customizable with Tailwind utilities
  • 🌗 Light/Dark mode support via CSS variables
  • 🚀 Zero runtime styles
  • ⚡ CLI for easy component installation

Quick Start

1. Initialize your project

npx @clikvn/atomic-ui init

This will:

  • Create a components.json configuration file
  • Set up your project structure
  • Add necessary dependencies
  • Configure CSS variables for theming

2. Add components

# Add specific components
npx @clikvn/atomic-ui add button input

# Or select from a list
npx @clikvn/atomic-ui add

3. Use the components

import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"

export default function App() {
  return (
    <div>
      <Input placeholder="Enter your email" />
      <Button>Subscribe</Button>
    </div>
  )
}

Available Components

  • Button - A versatile button component with multiple variants
  • Input - Text input with consistent styling
  • Label - Form label component
  • Card - Container component with header, content, and footer sections

More components coming soon!

Installation

Manual Installation

If you prefer to manually copy components:

  1. Install dependencies:
npm install class-variance-authority clsx tailwind-merge
  1. Add the utility function:
// lib/utils.ts
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}
  1. Copy the component code from the src/components/ui directory

  2. Add CSS variables to your global CSS file

Component Examples

Button

import { Button } from "@/components/ui/button"

// Variants
<Button variant="default">Default</Button>
<Button variant="destructive">Destructive</Button>
<Button variant="outline">Outline</Button>
<Button variant="secondary">Secondary</Button>
<Button variant="ghost">Ghost</Button>
<Button variant="link">Link</Button>

// Sizes
<Button size="lg">Large</Button>
<Button size="default">Default</Button>
<Button size="sm">Small</Button>
<Button size="icon">🔍</Button>

Input

import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"

<div>
  <Label htmlFor="email">Email</Label>
  <Input id="email" type="email" placeholder="Email" />
</div>

Card

import {
  Card,
  CardContent,
  CardDescription,
  CardFooter,
  CardHeader,
  CardTitle,
} from "@/components/ui/card"

<Card>
  <CardHeader>
    <CardTitle>Card Title</CardTitle>
    <CardDescription>Card description</CardDescription>
  </CardHeader>
  <CardContent>
    <p>Card content</p>
  </CardContent>
  <CardFooter>
    <Button>Action</Button>
  </CardFooter>
</Card>

Customization

Theming

Components use CSS variables for colors. Customize them in your CSS:

:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --primary: 222.2 47.4% 11.2%;
  --primary-foreground: 210 40% 98%;
  /* ... more variables */
}

Styling

All components accept a className prop for custom styling:

<Button className="bg-gradient-to-r from-pink-500 to-violet-500">
  Gradient Button
</Button>

Development

# Install dependencies
npm install

# Run development server
npm run dev

# Build library
npm run build

Philosophy

Atomic UI follows the same philosophy as shadcn/ui:

  1. Copy & Paste, not npm install - You own the code
  2. Customizable - Use Tailwind utilities to make it yours
  3. Accessible - Built with accessibility in mind
  4. Open Source - Use it however you want

License

ISC

Credits

Inspired by shadcn/ui