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

phoenix-glow-react

v2.1.1

Published

PHX-IT • Phoenix UI by Skyler Jones — a full React component library: the self-contained neon Glow kit plus 37 Tailwind + Radix UI components.

Readme

phoenix-glow-react

PHX-IT • Phoenix UI — a full React component library by Skyler Jones. Ships two layers in one package:

  1. The Glow kit — six self-contained neon components (GlowButton, GlowInput, GlowCard, GlowSwitch, GlowBadge, GlowAccordion) styled by a single plain-CSS file. Zero dependencies.
  2. The Phoenix UI layer — 37 Tailwind + Radix components (buttons, dialogs, selects, sidebar, charts, forms, and more), bundled with their own cn helper.

Install

npm install phoenix-glow-react

react and react-dom (>=17) are peer dependencies.

Layer 1 — the Glow kit

Import the stylesheet once, then use the components. No Tailwind needed.

import { GlowButton, GlowCard, GlowBadge } from "phoenix-glow-react";
import "phoenix-glow-react/styles/phoenix-glow.css";

<GlowButton variant="orange" glow>Launch</GlowButton>
<GlowCard accent="cyan">Neon card</GlowCard>
<GlowBadge color="pink" text="New" />

Layer 2 — the Phoenix UI layer

These are Tailwind + Radix components, so your app needs Tailwind configured. Extend your Tailwind config with the shipped preset, and add the Phoenix HSL token block to your global CSS.

// tailwind.config.js
import phoenixPreset from "phoenix-glow-react/tailwind-preset";

export default {
  presets: [phoenixPreset],
  content: [
    "./src/**/*.{ts,tsx}",
    "./node_modules/phoenix-glow-react/dist/**/*.js",
  ],
};
import { Button, Dialog, DialogContent, Select, Sidebar } from "phoenix-glow-react";

<Button variant="phoenix">Click me</Button>

The token block (the :root / .dark HSL variables that drive bg-background, text-phoenix-orange, etc.) ships as a standalone file. Import it once in your app's global stylesheet so the Tailwind colors resolve:

@import "phoenix-glow-react/styles/phoenix-tokens.css";

What's included

Glow kit: GlowButton, GlowInput, GlowCard, GlowSwitch, GlowBadge, GlowAccordion.

Phoenix UI: accordion, alert, alert-dialog, aspect-ratio, avatar, badge, breadcrumb, button, calendar, card, carousel, chart, checkbox, collapsible, command, context-menu, dialog, drawer, dropdown-menu, form, hover-card, input, input-otp, label, menubar, navigation-menu, pagination, popover, progress, radio-group, resizable, scroll-area, select, separator, sheet, sidebar, skeleton, slider, switch, table, tabs, textarea, toast (+ toaster), toggle, toggle-group, tooltip, and a Sonner wrapper (SonnerToaster / sonnerToast).

Utilities: cn, useIsMobile, useToast, toast.

Local development

npm install
npm run dev      # React showcase (Vite) at localhost:8080
npm run build    # bundles ESM + CJS + types into /dist via tsup

Two demos ship in /demo:

  • landing.html — the full decked-out showcase (the one live at phoenixsecure.dev): sticky nav, hero, every component shown live with copy-able code snippets. Open it directly in any browser.
  • index.html + demo-app.jsx — the React showcase (run with npm run dev).

Links

  • GitHub: https://github.com/sj-master/phoenix-glow-react
  • npm: https://www.npmjs.com/package/phoenix-glow-react (publishing soon)
  • Live showcase: https://phoenixsecure.dev

License

Apache-2.0 © 2025 Skyler J. Jones (PHX-IT) — https://phoenixsecure.dev