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

@apify/ui-icons

v1.48.0

Published

Icons as React components

Readme

@apify/ui-icons

Browse icons at the hosted Storybook.

Apify's icon set as ~280 typed React components, generated from SVGs via SVGR. Each icon ships with a viewBox (so it scales), accepts a size prop, and uses currentColor for fill (so it inherits text color and respects theming).

Drop-in replacement for the older @apify-packages/icons package — same import shape, broader icon set.

Install

pnpm add @apify/ui-icons

Peer dependencies (install in your project if not already there):

  • react 17.x · 18.x · 19.x
  • react-dom 17.x · 18.x · 19.x

No styled-components requirement — icons are plain SVG React components.

Quick start

import { ChevronRightIcon, SettingsIcon } from '@apify/ui-icons';

export const SettingsLink = () => (
    <a href="/settings">
        <SettingsIcon size="16" title="Settings" />
        Settings
        <ChevronRightIcon size="12" />
    </a>
);

Every icon accepts:

  • size?: string — pixel size as a string ('12', '16', '24', …). Default '24'.
  • title?: string + titleId?: string — accessible name. Omit for purely decorative icons (consumer should add aria-hidden).
  • className?: string — passed through to the <svg> element.

To recolor an icon, set the color of its parent (e.g. a button or text node). The SVG fill is currentColor.

What's inside

  • ~280 icons covering navigation (ChevronRightIcon, ArrowSortIcon), state (CheckIcon, MinusIcon, AlertIcon), surfaces (SettingsIcon, BellIcon, BookmarkIcon), and Apify-specific concepts (ActorIcon, DatasetIcon).
  • Typed — each component is a FC<IconProps> with size, title, titleId, className props.
  • Themeablefill="currentColor" everywhere, so color comes from the parent's CSS color.
  • Tree-shakeable — each icon is a named export, bundlers drop the unused ones.

Browse the full catalog in Storybook (see below).

Storybook

From the repository root:

pnpm run storybook

The icon catalog lives in the shared Storybook at http://localhost:6007 under "Iconography".

Contributing

See CONTRIBUTING.md for how to add a new icon (SVGR workflow), build instructions, and the accessibility notes.