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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rocketsoftware/icons

v2.0.0

Published

Icons for digital and software products using the Carbon Design System

Downloads

2,563

Readme

@rocketsoftware/icons

Icons for digital and software products using the Carbon Design System

Getting started

To install @rocketsoftware/icons in your project, you will need to run the following command using npm:

npm install -S @rocketsoftware/icons

If you prefer Yarn, use the following command instead:

yarn add @rocketsoftware/icons

Usage

Icons in Carbon are provided through a variety of packages, often specific for the framework that will use them. Currently, we support the following packages for various frameworks:

We also support using icons in Vanilla JavaScript.

In order to use an icon, it may be helpful to reference our Icon library reference page in order to find the specific icon you would like to use.

Vanilla

Once you've found an icon and you're looking to use it in Vanilla JavaScript, you can import the icon by writing the following in your JavaScript file:

import IconName from '@carbon/icons/<module-type>/path-to-icon/size';

For example, if I wanted to import the 16x16 add icon, I would write:

import AddIcon from '@carbon/icons/es/add/16';

In this case, es is used for ES2015 modules (ESM), but one may also use lib for CommonJS or umd for UMD modules.

In order to render this to the screen, we'll make use of our icon-helpers package. This package gives us two options for rendering our icons: toString and toSVG. If rendering in templates, you may want to use the former. If rendering to the DOM, toSVG may be helpful.

In our case, we'll use toSVG to create a node in the DOM for the 16x16 add icon:

import { getAttributes, toSVG } from '@carbon/icon-helpers';
import addIcon from '@carbon/icons/es/add/16';

const addIconNode = toSVG({
  ...addIcon,
  attrs: getAttributes(addIcon.attrs),
});

Styling the inner path

Certain icons in the library support an alternate fill inside of the icon, for example warning--filled supports styling the inner ! path.

In order to style the inner path, you will need to target the SVG using CSS. In general, you can target the path by writing the following:

svg [data-icon-path='inner-path'] {
  fill: blue;
  opacity: 1;
}

In the code snippet above, we are targetting the inner path attribute with [data-icon-path="inner-path"]. The value of fill will be the custom color you would like to set for the inner path. We also need to set opacity to 1 in order to get this inner path to be visible on the page.

Reference

You can view a full reference of our icons here . This is useful for finding the path information in order to import an icon.

🙌 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! 👀

📝 License

Licensed under the Apache 2.0 License.