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

modo-icon

v1.0.0

Published

Monochrome and Duotone icon library

Downloads

66

Readme

Modo Icon

A premium React icon library featuring 2200+ high-quality icons in both Fill and Duotone styles.

Features

  • 2200+ Icons: Comprehensive collection covering various categories.
  • Dual Styles: Every icon comes in Fill and Duotone variants.
  • Categorized & AI Optimized: Includes a machine-readable icons.json for AI tools to effortlessly find the right icons.
  • Highly Customizable: Easily change size and color via props.
  • Duotone Effect: Duotone icons use a smart currentColor with 0.25 opacity for the secondary layer, ensuring they look great on any background.
  • Lightweight: Optimized tree-shaking support.
  • Typescript: Full type definitions included.

Installation

npm install @wuhui0105/modo-icon

Usage

Basic Usage

import { AbstractFill, AbstractDuotone } from '@wuhui0105/modo-icon';

function MyComponent() {
  return (
    <div>
      {/* Fill Style */}
      <AbstractFill size="24px" color="#324558" />
      
      {/* Duotone Style */}
      <AbstractDuotone size="2em" />
    </div>
  );
}

Custom Styling

Icons inherit the parent's font color by default (currentColor). You can also use CSS to style them:

.my-custom-icon {
  color: #1890ff;
  font-size: 32px;
}

Icon Naming Convention

  • Fill Icons: [Name]Fill (e.g., HeartFill, SettingsFill)
  • Duotone Icons: [Name]Duotone (e.g., HeartDuotone, SettingsDuotone)

AI Optimization & Categorization

This library is designed to be AI-friendly. It includes a categorized icons.json file that AI agents (like Cursor, Windsurf, or Copilot) can use to "understand" the library's contents and pick the most appropriate icons for your code.

Using with AI

You can tell your AI assistant:

"Look at node_modules/@wuhui0105/modo-icon/icons.json to find the best icon for the 'User Profile' feature."

Categories Available

| Category | Description | | :--- | :--- | | Arrows & Navigation | Arrows, Chevrons, Directional icons | | Common Actions | Add, Delete, Search, Settings, Edit | | Communication | Messages, Mail, Phone, Notifications | | Files & Folders | Documents, Folders, Notes, Books | | Users & Teams | Human, Group, Contact icons | | Data & Analytics | Charts, Grids, Tables, Topology | | Hardware & Devices | Server, CPU, Network, Terminal, Monitors | | Cloud & Infra | Cloud, Map, Pin, Domain, Gateway | | Finance & Commerce | Money, Wallet, Card, Cart, Bill | | Media & Content | Play, Music, Camera, Picture | | Security & Legal | Shield, Lock, Key, Verified | | Brands & Platforms | Tech logos (Github, Google, React, etc.) |

License

MIT