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

@flipdish/ui-icons

v0.3.0

Published

Flipdish Design System icons — a stable, source-agnostic import surface wrapping @untitledui/icons.

Readme

@flipdish/ui-icons

A single, source-agnostic import surface for icons used across the Flipdish Design System. Wraps @untitledui/icons behind a stable seam, plus any Flipdish-specific custom icons.

import { SearchLg } from "@flipdish/ui-icons";

Internal design system, published publicly. Built for Flipdish products and shared across Flipdish micro-frontends; on the public npm registry for that reason rather than as a general-purpose icon library.

Part of the Flipdish Design System:

| Package | Purpose | | ---------------------------------------------------------------------------- | -------------------------------------------- | | @flipdish/ui-tokens | Design tokens — colours, type scale, spacing | | @flipdish/ui-icons | Icon set (this package) | | @flipdish/ui-library | Components |

Installation

pnpm add @flipdish/ui-icons

react is the only peer dependency (icons are React components; you provide React).

Usage

Every icon — upstream and custom — is imported from the package root:

import { SearchLg, FileIcon, PlaceholderIcon } from "@flipdish/ui-icons";

<SearchLg className="size-5 text-secondary" />;

Icons take standard SVGProps<SVGSVGElement>, use currentColor, and are sized via props/utilities — so they recolour through semantic token utilities (text-*) and dark mode for free.

Named ESM exports stay tree-shakeable in production builds (this package and @untitledui/icons both declare sideEffects: false), so you only ship the icons you import.

Why a separate package

  • Lean component library — icon sets are large and version independently; bundling them into @flipdish/ui-library would bloat every consumer regardless of which icons it uses.
  • Stable seam — consumers import from @flipdish/ui-icons; the backing source can change without breaking import sites.
  • Cross-platform ready — isolating icons keeps the eventual web (SVG) + React Native (react-native-svg) split out of the component layer.

Changelog

See CHANGELOG.md for release history.

Contributing

This package lives in the flipdish-design-system monorepo. Contributor documentation — including how to add or override an icon — lives alongside the source there.