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

@lumora-app/supernova-ui

v0.4.0

Published

Lumora's icon library and UI components

Readme

🌟 Supernova UI

Supernova UI is a modern React component library built with TypeScript, Vite, Tailwind CSS, and documented using Storybook. Designed to be reusable, scalable, and fast, it serves as the visual foundation for Lumora products.


✨ Technologies Used


📦 Installation

npm install @lumora-app/supernova-ui

🚀 Usage

Import all icons

import { ArrowDown, ChevronRight, Home } from "@lumora-app/supernova-ui";

function App() {
  return (
    <div>
      <ArrowDown className="w-6 h-6 text-blue-500" />
      <ChevronRight className="w-6 h-6" />
      <Home className="w-6 h-6" />
    </div>
  );
}

Import from specific categories (better tree-shaking)

// Import arrow icons only
import { ArrowDown, ChevronRight } from "@lumora-app/supernova-ui/icons/arrows";

// Import chart icons only
import {
  BarChartCenter,
  LineChartLeft,
} from "@lumora-app/supernova-ui/icons/charts";

// Import generic icons only
import { Home, Settings, Heart } from "@lumora-app/supernova-ui/icons/generic";

Icon Props

All icons accept standard SVG props:

<ArrowDown
  className="w-8 h-8" // Tailwind classes
  width={32} // Custom width
  height={32} // Custom height
  fill="currentColor" // Fill color (default: currentColor)
  stroke="none" // Stroke color
  onClick={() => {}} // Event handlers
/>

📁 Icon Categories

| Category | Import Path | Description | | -------- | ---------------------------------------- | -------------------------------------------- | | Arrows | @lumora-app/supernova-ui/icons/arrows | Navigation arrows, chevrons, expand/collapse | | Charts | @lumora-app/supernova-ui/icons/charts | Bar charts, line charts, analytics | | Generic | @lumora-app/supernova-ui/icons/generic | Common UI icons (home, settings, etc.) |


📱 React Native Usage

This library also supports React Native via react-native-svg. Import from the /native path:

Prerequisites

Make sure you have react-native-svg installed in your React Native project:

npm install react-native-svg

Import native icons

import { ArrowDown, Home, Settings } from "@lumora-app/supernova-ui/native";

function App() {
  return (
    <View>
      <ArrowDown size={24} color="#000" />
      <Home size={24} color="blue" />
      <Settings size={32} color="#333" />
    </View>
  );
}

Import from specific categories

// Import arrow icons only
import {
  ArrowDown,
  ChevronRight,
} from "@lumora-app/supernova-ui/native/arrows";

// Import chart icons only
import {
  BarChartCenter,
  LineChartLeft,
} from "@lumora-app/supernova-ui/native/charts";

// Import generic icons only
import { Home, Settings, Heart } from "@lumora-app/supernova-ui/native/generic";

Native Icon Props

| Prop | Type | Default | Description | | ------- | -------- | ---------------- | ----------------- | | size | number | 24 | Icon size (w & h) | | color | string | "currentColor" | Icon fill color | | style | object | - | Additional styles |


🛠️ Development

# Clone the repository
git clone https://github.com/lumora-app/supernova-ui.git
cd supernova-ui
npm install

# Start development server
npm run dev

# Run Storybook
npm run storybook

# Build the library (output in dist/)
npm run build:lib

# Build static Storybook
npm run build-storybook

📄 Scripts

| Script | Description | | ------------------------- | ------------------------------------- | | npm run dev | Start Vite development server | | npm run storybook | Start Storybook on port 6006 | | npm run build:lib | Build the library for npm publishing | | npm run build-storybook | Build static Storybook | | npm run svg-to-react | Convert SVG files to React components |


📝 License

MIT