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

@skydesign/icons

v0.1.3

Published

SkyDesign 3.0 icon set as tree-shakeable React components (regular/fill/duotone, crypto, social, country flags).

Downloads

432

Readme

@skydesign/icons

SkyDesign 3.0 icon set as tree-shakeable React components — generated from Figma with iconpackr.

  • 2280 icons / 5357 components across 22 groups.
  • Phosphor-style library in three weights, plus crypto token logos, social logos, and country flags.
  • Each component is its own ES module (sideEffects: false) → bundlers include only the icons you import.
  • Monochrome icons use currentColor (themeable via CSS color); multicolor assets (crypto / flags / multicolor logos) keep their original colors.

Install

pnpm add @skydesign/icons
# peer: react >= 16.8

Usage

import { AcornIcon, AcornFillIcon, FlagUsIcon, CoinAdaIcon } from '@skydesign/icons';

<AcornIcon />                         {/* regular weight, 2em, currentColor */}
<AcornFillIcon style={{ fontSize: 24, color: '#1890ff' }} />
<FlagUsIcon style={{ fontSize: 32 }} />   {/* multicolor, fixed colors */}

Weights

The unsuffixed component is the regular weight (the default). Other weights are separate components so they tree-shake independently:

| Component | Weight | |------------------|---------| | AcornIcon | regular | | AcornFillIcon | fill | | AcornDuotoneIcon | duotone |

Naming: phosphor/custom icons use the bare name (HouseIcon); crypto use a Coin prefix (CoinAdaIcon), social a Social prefix (SocialFacebookIcon, SocialXTwitterMonoIcon), flags a Flag prefix (FlagUsIcon, FlagGbEngIcon).

Props

Components forward className, style, onClick, etc., plus:

| Prop | Type | Notes | |---------------|--------------------|----------------------------------------| | style.fontSize | number | string | icon size (icons are sized in em) | | style.color | string | color for monochrome icons | | spin | boolean | spinning animation | | rotate | number | rotate by degrees | | width/height | string | number | override default 2em |

Catalog metadata

import { icons, groups } from '@skydesign/icons/metadata';
// icons: { group, name, display, kind, variants: { regular?, fill?, duotone?, default?, mono?, alt? } }[]

Releasing

./scripts/publish.sh          # bump patch (0.1.0 -> 0.1.1), build, publish, tag
./scripts/publish.sh 0.2.0    # explicit version

Interactive: confirms the version, builds, pnpm publish --access public, then commits chore: release @skydesign/[email protected], tags icons-v X.Y.Z, and pushes the commit and tag to the remote. Requires npm login.

Regenerating from source SVGs

SVGs live in scripts/export-icons/icons/ at the repo root. To rebuild:

pnpm run icons   # stage -> iconpackr generate -> fallback -> metadata
pnpm run build   # tsc -> dist (ESM + d.ts)

A few very large/detailed flags (Bolivia, Mexico, Ascension, St Helena, Tristan da Cunha) exceed iconpackr's transform; scripts/fallback-gen.mjs generates those by injecting the raw SVG markup, keeping them tree-shakeable.