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

@igorao79/uivix

v0.1.7

Published

A modern UI component library for React + Tailwind CSS

Readme

@igorao79/uivix

A modern React + Tailwind CSS component library with 50+ animated components, text effects, and backgrounds.

Installation

npm install @igorao79/uivix

Peer dependencies:

npm install react react-dom tailwindcss

Quick Start

import { Button, Card, CardHeader, CardTitle, CardContent } from "@igorao79/uivix";

function App() {
  return (
    <Card variant="spotlight">
      <CardHeader>
        <CardTitle>Hello uivix</CardTitle>
      </CardHeader>
      <CardContent>
        <Button variant="gradient">Click me</Button>
      </CardContent>
    </Card>
  );
}

Components

Form

| Component | Variants | Description | |-----------|----------|-------------| | Button | default, secondary, outline, ghost, destructive, link, gradient, glow, soft | Customizable button with loading state, icons | | Input | default, filled, underline, floating, ghost, glow | Text input with label, error state, icons | | PasswordInput | - | Password input with show/hide toggle | | SearchInput | - | Search input with clear button | | OTPInput | - | One-time password input with auto-advance | | Label | - | Accessible form label | | Toggle | default, ios, material, outline, glow, pill, slim, labeled | Toggle switch with multiple styles |

Card

| Component | Variants | Description | |-----------|----------|-------------| | Card | default, bordered, elevated, ghost, gradient, glass, spotlight, neon, tilt, animated-border, noise, lifted | Card container with mouse-tracking effects | | CardHeader | - | Card header section | | CardTitle | - | Card heading | | CardDescription | - | Card secondary text | | CardContent | - | Card body | | CardFooter | - | Card footer with flex layout |

Text Animations

| Component | Description | |-----------|-------------| | TypewriterText | Typewriter effect with blinking cursor | | GradientText | Animated gradient text colors | | GlitchText | Periodic glitch/distortion effect | | ShimmerText | Shimmer sweep across text | | WaveText | Per-letter wave animation | | BlurText | Blur-in reveal per word or letter | | CounterText | Animated number counter | | MediaText | Text with image/video fill | | SparklesText | Floating sparkle particles around text | | HighlightText | Animated marker highlight (7 styles: marker, underline, box, strikethrough, gradient, glow, bracket) |

Backgrounds

| Component | Description | |-----------|-------------| | ParticleBackground | Floating text/emoji/image nodes with connecting lines | | AuroraBackground | Northern lights color animation | | GridBackground | Animated dot/line grid | | StarfieldBackground | Flying through stars effect | | WaveBackground | Layered wave animation | | GradientMeshBackground | Animated gradient mesh blobs | | MatrixRainBackground | Matrix-style falling characters | | BokehBackground | Blurred floating shapes (circle, hexagon, diamond, triangle, star, ring, mixed) | | PixelBackground | Pixel art backgrounds (rain, life, terrain, noise) | | RippleBackground | Expanding ripple circles | | DotPatternBackground | Animated dot pattern | | RetroGridBackground | 80s-style perspective grid | | MeteorBackground | Falling meteor streaks | | BeamsBackground | Animated light beams |

Other

| Component | Variants | Description | |-----------|----------|-------------| | Badge | 16 variants (default, success, warning, destructive, glow, gradient, glass, neon, shimmer, premium, etc.) | Status badges with dot indicator | | Tooltip | 10 variants (default, dark, light, gradient, glass, neon, success, warning, error, outlined) | Hover tooltip with arrow | | Avatar | circle, square | Avatar with status dot (online, offline, busy, away) | | Progress | - | Animated progress bar | | Skeleton | - | Loading skeleton placeholder | | Separator | - | Horizontal/vertical divider | | Marquee | - | Scrolling content ticker |

Utilities

| Export | Description | |--------|-------------| | cn() | Utility function combining clsx + tailwind-merge |

Usage Examples

Button

import { Button } from "@igorao79/uivix";

<Button variant="gradient" size="lg" loading>
  Submitting...
</Button>

<Button variant="glow" leftIcon={<StarIcon />}>
  Glow Button
</Button>

Text Animations

import { TypewriterText, GlitchText, HighlightText } from "@igorao79/uivix";

<TypewriterText words={["Hello", "World", "uivix"]} speed={100} />

<GlitchText intensity={5}>GLITCH</GlitchText>

<p>
  This is an <HighlightText variant="marker" color="rgba(139,92,246,0.4)">important concept</HighlightText> in design.
</p>

Backgrounds

import { AuroraBackground, BokehBackground, PixelBackground } from "@igorao79/uivix";

// Full-page aurora
<AuroraBackground />

// Bokeh with mixed shapes
<BokehBackground shape="mixed" count={20} />

// Pixel art Game of Life
<PixelBackground variant="life" pixelSize={6} />

Card with Effects

import { Card, CardHeader, CardTitle, CardContent, CardFooter, Button } from "@igorao79/uivix";

// 3D tilt card
<Card variant="tilt">
  <CardHeader>
    <CardTitle>3D Tilt</CardTitle>
  </CardHeader>
  <CardContent>
    <p>Move your mouse over me!</p>
  </CardContent>
  <CardFooter>
    <Button>Action</Button>
  </CardFooter>
</Card>

Toggle & Tooltip

import { Toggle, Tooltip, Badge } from "@igorao79/uivix";

<Toggle variant="ios" size="md" label="Dark Mode" />

<Tooltip content="Hello!" side="top" variant="gradient">
  <button>Hover me</button>
</Tooltip>

<Badge variant="premium" dot>PRO</Badge>

Customization

All components accept className for Tailwind overrides:

<Button className="bg-red-500 hover:bg-red-600 text-xl rounded-none">
  Custom Button
</Button>

<Card className="bg-blue-950 border-blue-500">
  Custom styled card
</Card>

TypeScript

Full TypeScript support with exported types for all components:

import type { ButtonProps, CardProps, TooltipVariant } from "@igorao79/uivix";

License

MIT