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

iconex-react

v0.1.8

Published

React components for iconex icons — use in React and Next.js

Readme

Iconex React

Beautiful, customizable icon components for React and Next.js.

Features

  • 125+ icons with named exports
  • 3 categories: regular, sharp, curved
  • 6 variants: bold, bulk, light-border, light-outline, broken, two-tone
  • Customizable color, size, and stroke width via props or CSS
  • IconexProvider for global defaults
  • Full TypeScript support with autocompletion
  • Tree-shakable — only bundles icons you use

Installation

npm install iconex-react
# or
pnpm add iconex-react
# or
yarn add iconex-react

Quick Start

import { Home, Search, Heart } from 'iconex-react';

function App() {
  return (
    <div>
      <Home />
      <Search variant="bold" />
      <Heart color="red" size={32} />
    </div>
  );
}

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | size | number \| string | 24 | Icon width and height in pixels | | color | string | currentColor | Icon color (inherits from CSS) | | variant | IconVariant | light-outline | Icon style variant | | category | IconCategory | regular | Icon design category | | strokeWidth | number \| string | — | Override stroke width | | className | string | — | Additional CSS classes |

All standard SVG attributes are also supported.

Variants

<Home variant="bold" />
<Home variant="bulk" />
<Home variant="light-border" />
<Home variant="light-outline" />
<Home variant="broken" />
<Home variant="two-tone" />

Categories

<Home category="regular" />
<Home category="sharp" />
<Home category="curved" />

Color

// Via color prop
<Home color="red" />
<Home color="#3B82F6" />

// Via CSS className (works with Tailwind)
<Home className="text-blue-500" />

// Via CSS inheritance
<div style={{ color: 'purple' }}>
  <Home /> {/* renders purple */}
</div>

Size

<Home size={16} />
<Home size={24} />
<Home size={32} />
<Home size={48} />

IconexProvider

Set global defaults for all icons:

import { IconexProvider, Home, Search, Heart } from 'iconex-react';

function App() {
  return (
    <IconexProvider
      category="sharp"
      variant="bold"
      color="#3B82F6"
      size={24}
    >
      <Home />    {/* sharp / bold / blue / 24px */}
      <Search />  {/* sharp / bold / blue / 24px */}
      <Heart color="red" /> {/* sharp / bold / red (overrides) / 24px */}
    </IconexProvider>
  );
}

Available Icons

Activity, AddUser, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Avatar, Bag, Bookmark, Buy, Calendar, Call, Camera, Card, Category, Chart, Chat, CloseSquare, Danger, Delete, Discount, Discovery, Document, Download, Edit, Emoji, Filter, Folder, Game, Graph, Heart, Hide, Home, Image, InfoCircle, InfoSquare, Location, Lock, Login, Logout, Message, MoreCircle, MoreSquare, Notification, Paper, Password, Play, Plus, Profile, Scan, Search, Send, Setting, ShieldDone, ShieldFail, Show, Star, Swap, TickSquare, Ticket, TicketStar, TimeCircle, TimeSquare, Unlock, Upload, Video, Voice, VolumeDown, VolumeOff, VolumeUp, Wallet, Work, and more...

License

MIT