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

@nvidia/react-gui-icons

v1.0.0

Published

NVIDIA GUI Icons: React SVG icon components (sprite-based, tree-shakable).

Readme

@nvidia/react-gui-icons

React icon components for NVIDIA GUI Icons. Icons render via a sprite-injection runtime (<use href="#id">), not inline <path> markup; see Rendering model in the project README for how that works and its SSR caveat.

Install

npm install @nvidia/react-gui-icons

react and react-dom are peer dependencies (^17.0.0 || ^18.0.0 || ^19.0.0).

Usage

// Generic component (resolves any icon by name)
import { NvidiaGuiIcon } from "@nvidia/react-gui-icons";
<NvidiaGuiIcon iconName="gpu" variant="line" size="1em" />;

// Tree-shakable per-icon imports
import { Gpu } from "@nvidia/react-gui-icons/icons/Gpu";
<Gpu variant="fill" />;

Icons default to aria-hidden="true" and focusable="false" (decorative), because only the call site knows whether an icon repeats a nearby label or carries the meaning itself. For a meaningful icon, pass title: it renders a <title>, sets role="img" and drops aria-hidden in one step:

<NvidiaGuiIcon iconName="trash" title="Delete item" />

Name the action, not the glyph: title="Delete item", not title="trash". See the project README for rendering notes and full usage.

RTL / directional icons

Directional icons (arrow-*, chevron-*, and similar) render with a fixed orientation: there is no built-in RTL/logical-direction handling, and most icons (shapes, objects, status glyphs) should not be mirrored.

Prefer choosing the mirrored icon over mirroring with CSS. Every direction is a named icon, so the set already contains the counterpart you need: arrow-right is artwork drawn and hinted for the 16px grid, whereas transform: scaleX(-1) on arrow-left is a flipped copy of a different glyph. Picking the name also keeps the transform out of your stacking contexts and animations.

const back = dir === "rtl" ? "arrow-right" : "arrow-left";

<NvidiaGuiIcon iconName={back} title="Back" />;

If the name cannot be chosen at render time, fall back to CSS scoped to [dir="rtl"]:

[dir="rtl"] .icon-directional {
  transform: scaleX(-1);
}

Apply that class to the specific directional icons your UI uses. Which icons should mirror is a decision only your application can make: alignment icons, for example, mirror only if your alignment is logical (start/end) rather than physical (left/right).

Line and fill variants

Every icon ships in both line and fill. For glyphs that are pure strokes with nothing to fill (arrows, chevrons, add, check, close), the two variants are deliberately identical, so selecting fill renders the same artwork as line. That affects 98 of the 748 icons in this set.

Both variants exist for every icon regardless, so switching a set between them never leaves a gap, and no call site needs to special-case which glyphs have a distinct fill.

License

Dual-licensed: Apache-2.0 for code and CC-BY-4.0 for the bundled icon path data; see LICENSE. When redistributing the icons, attribute "NVIDIA GUI Icons" with a link to https://github.com/NVIDIA/icons.

CC-BY-4.0 does not license NVIDIA's trademarks; see NOTICE.

Part of the NVIDIA Icons project.