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

@ilo-org/icons

v2.4.1

Published

Icons for digital and software products using ILO's Design System

Readme

ILO Design System - Icons

This package only ships raw icon assets. The recommended way to use ILO icons in production is through the Icon components that already ship with our component libraries.

Prefer Icon Components

Those component packages (@ilo-org/react and @ilo-org/twig) already depend on the correct asset pipeline, handle accessibility, and stay up to date automatically. Install this package directly only when you need to consume the underlying files (for example, during a custom build or CMS integration).

Icons Gallery

The ILO Design System includes over 70 icons for a wide variety of use cases. See the complete list.

Installation

npm install @ilo-org/icons

Export formats

All icons share the same naming convention (arrow_down, social_linkedin, etc.). You can explore the catalog in Storybook (links above) or by browsing the svg/ folder inside this package. We expose the assets in three formats to cover different build pipelines.

1. CSS data URLs

@ilo-org/icons/build/scss/icons.scss exports a Sass map named $icons, where every entry is a data: URL string. This is the easiest way to inject icons via CSS pseudo-elements.

@use "@ilo-org/icons/build/scss/icons" as ilo-icons;

.ilo-link::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: no-repeat center/contain map-get(ilo-icons.$icons, "arrow_right");
}

2. JavaScript SVG objects

Every icon/size combination is available as a plain JavaScript object that describes the SVG tree. ES modules live under @ilo-org/icons/es/<icon>/<size>.js and CommonJS copies are under lib/. These objects are useful when you need to render icons in a framework-agnostic way.

import ArrowDown24 from "@ilo-org/icons/es/arrow_down/24";

function renderIcon(icon) {
  const svgNS = "http://www.w3.org/2000/svg";
  const svg = document.createElementNS(svgNS, icon.elem);
  Object.entries(icon.attrs).forEach(([attr, value]) => {
    svg.setAttribute(attr, value);
  });
  icon.content?.forEach((child) => {
    const node = document.createElementNS(svgNS, child.elem);
    Object.entries(child.attrs || {}).forEach(([attr, value]) => {
      node.setAttribute(attr, value);
    });
    svg.appendChild(node);
  });
  return svg;
}

document.querySelector("#cta").append(renderIcon(ArrowDown24));

3. Raw SVG files

The actual SVG source files are published under @ilo-org/icons/svg/<icon>.svg. Load them however your toolchain prefers:

  • bundlers that support the ?raw convention:

    import arrowDownSvg from "@ilo-org/icons/svg/arrow_down.svg?raw";
    element.innerHTML = arrowDownSvg;
  • build scripts, CMS pipelines, or Drupal themes can read the file directly from node_modules/@ilo-org/icons/svg.

Because these are static files, you can also copy them into a CDN or asset pipeline if you need to reference them outside of a bundler.

Contributing

We're always looking for contributors to help us fix bugs, build new features, or help us improve the project documentation. If you're interested, definitely check out our Contributing Guide! 👀

Acknowledgements

This package is heavily inspired by @carbon/icons

License

Licensed under the Apache 2.0.