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

younique-ui

v0.3.0

Published

A beautifully designed React UI component library built on shadcn/ui and Base UI

Readme

younique-ui

A beautifully designed React UI component library built on shadcn/ui and Base UI.

npm version license

Features

  • 21 production-ready components
  • Built on Base UI unstyled primitives
  • Styled with Tailwind CSS v4 and CVA
  • Zero CSS import — just install and use with Tailwind v4
  • Full TypeScript support with exported types
  • ESM and CJS dual output
  • Light and dark mode via CSS variables
  • Storybook for interactive documentation
  • Tree-shakeable exports

Installation

npm install younique-ui

Peer Dependencies

| Package | Version | |---------|---------| | react | ^18.0.0 || ^19.0.0 | | react-dom | ^18.0.0 || ^19.0.0 | | tailwindcss | ^4.0.0 |

Quick Start

No CSS import needed. Your project's Tailwind CSS v4 automatically scans component classes via the module graph.

Just import and use:

import { Button, Card, CardHeader, CardTitle, CardContent } from 'younique-ui';

function App() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Hello</CardTitle>
      </CardHeader>
      <CardContent>
        <Button>Click me</Button>
      </CardContent>
    </Card>
  );
}

Components

| Component | Description | |-----------|-------------| | Avatar | User profile image with fallback | | Badge | Status indicator and label | | Button | Primary interaction element with variants | | Card | Container with header, content, and footer | | Checkbox | Toggle input for boolean values | | Dialog | Modal overlay for focused interaction | | DropdownMenu | Contextual menu with items and sub-menus | | Input | Text input field | | Label | Accessible form label | | Popover | Floating content panel | | Progress | Determinate progress indicator | | Select | Dropdown selection input | | Separator | Visual divider (horizontal/vertical) | | Sheet | Slide-out side panel | | Sidebar | Application navigation sidebar | | Skeleton | Loading placeholder | | Switch | Toggle between two states | | Table | Data display with header, body, and footer | | Tabs | Tabbed content panels | | Textarea | Multi-line text input | | Tooltip | Contextual hint on hover |

Theming

younique-ui uses CSS custom properties (oklch color space) for theming. Define these variables in your project's CSS:

:root {
  --primary: oklch(0.45 0.18 270);
  --secondary: oklch(0.955 0.008 270);
  --destructive: oklch(0.55 0.22 25);
  --background: oklch(0.985 0.003 265);
  --foreground: oklch(0.16 0.02 270);
  /* ... */
}

Override these to customize the theme. For dark mode, add a .dark class to your root element.

A reference theme file is available at younique-ui/theme.css if you need a starting point.

Without Tailwind CSS

If your project does not use Tailwind CSS v4, you can import the pre-built stylesheet:

import 'younique-ui/styles.css';

This includes all utility classes and theme variables compiled into a single CSS file.

Development

# Install dependencies
npm install

# Start Storybook dev server
npm run dev

# Build the library
npm run build

# Build static Storybook
npm run build-storybook

Tech Stack

License

MIT