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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@theexperiencecompany/gaia-icons

v1.9.0

Published

A standalone React icon library extracted from HugeIcons Pro with **zero runtime dependencies** (except React). All SVG code is directly embedded in React components for optimal tree-shaking and bundle size.

Readme

@theexperiencecompany/gaia-icons

A standalone React icon library extracted from HugeIcons Pro with zero runtime dependencies (except React). All SVG code is directly embedded in React components for optimal tree-shaking and bundle size.

Features

Standalone components - No HugeIcons runtime dependency ✅ Perfect tree-shaking - Only bundle icons you actually use ✅ Individual icon imports - Import specific icons for minimal bundle size ✅ 9 icon styles - All HugeIcons Pro variants included ✅ TypeScript support - Full type definitions ✅ Next.js 13+ ready - Includes "use client" directive

Installation

Install the package using your preferred package manager:

pnpm add @theexperiencecompany/gaia-icons
# or
npm install @theexperiencecompany/gaia-icons
# or
yarn add @theexperiencecompany/gaia-icons

Usage

Import from style barrel (convenient, still tree-shakeable)

import { Home01Icon, UserIcon } from '@theexperiencecompany/gaia-icons/solid-rounded';

<Home01Icon size={24} color="red" />
<UserIcon size={32} strokeWidth={2} />

Import individual icons (optimal tree-shaking)

import { Home01Icon } from "@theexperiencecompany/gaia-icons/solid-rounded/Home01";
import { UserIcon } from "@theexperiencecompany/gaia-icons/solid-rounded/User";

<Home01Icon size={24} />;

Import all styles (not recommended for production)

import { solid_rounded, stroke_rounded } from '@theexperiencecompany/gaia-icons';

<solid_rounded.Home01Icon size={24} />
<stroke_rounded.Home01Icon size={24} />

Icon Props

All icons accept standard SVG props along with:

interface IconProps extends React.SVGProps<SVGSVGElement> {
  size?: number; // Default: 24
  color?: string; // Default: "currentColor"
  strokeWidth?: number | string; // Default: varies by style
  className?: string;
  // ...all other SVG props
}

Available Variants

  • solid-rounded - Solid icons with rounded corners
  • stroke-rounded - Stroke icons with rounded corners
  • solid-sharp - Solid icons with sharp corners
  • stroke-sharp - Stroke icons with sharp corners
  • solid-standard - Solid icons standard style
  • stroke-standard - Stroke icons standard style
  • bulk-rounded - Bulk/duo-tone solid icons
  • duotone-rounded - Duotone icons
  • twotone-rounded - Two-tone icons

Development

Generate icons from HugeIcons Pro

pnpm generate

This extracts actual SVG content from HugeIcons packages and creates standalone React components.

Build the library

pnpm build

Generates optimized ESM and CJS bundles with TypeScript definitions.

How It Works

Unlike wrapper libraries, GAIA Icons extracts the actual SVG code from HugeIcons Pro packages during build time:

  1. pnpm generate reads HugeIcons Pro packages
  2. Extracts SVG paths and attributes from icon objects
  3. Generates standalone React components with embedded SVG
  4. Creates both index files (barrel exports) and individual files
  5. pnpm build bundles everything with optimal tree-shaking

Result: Zero runtime dependency on HugeIcons, perfect tree-shaking, minimal bundle size.