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

@photonix/icons

v1.7.0

Published

A premium icon library with 111 beautifully designed React components. Features both line icons (105 icons) and illustrated icons (6 icons) with full TypeScript support.

Readme

@photonix/icons

A premium icon library with 111 beautifully designed React components. Features both line icons (105 icons) and illustrated icons (6 icons) with full TypeScript support.

Features

111 Premium Icons

  • 105 line icons
  • 6 illustrated icons
  • Fully customizable via React props

🎨 Multiple Export Formats

  • ESM (tree-shakeable)
  • CommonJS
  • Full TypeScript definitions

Performance

  • Small bundle size
  • Tree-shakeable imports
  • No external dependencies

Accessible

  • ARIA labels support
  • Semantic SVG structure
  • Keyboard friendly

Installation

npm install @photonix/icons
# or
pnpm add @photonix/icons
# or
yarn add @photonix/icons

Quick Start

Basic Usage

import { Add, Delete, Settings } from '@photonix/icons';

export function App() {
  return (
    <div>
      <Add />
      <Delete />
      <Settings />
    </div>
  );
}

With Props

import { Star } from '@photonix/icons';

export function Rating() {
  return <Star size={24} color="#FFD700" />;
}

Illustrated Icons

import { Verified, Warning, Error } from '@photonix/icons/illustrated';

export function Status() {
  return (
    <>
      <Verified />
      <Warning />
      <Error />
    </>
  );
}

Available Icons

Line Icons (105)

Add, AddFilled, Apps, AppsFilled, ArrowUp, ArrowUpFilled, Backspace, BackspaceFilled, Bolt, BoltFilled, Calendar, CalendarFilled, Cancel, CancelFilled, CheckCircle, CheckCircleFilled, CheckSmall, CheckSmallFilled, ChevronDown, ChevronDownFilled, ChevronDownSmall, ChevronDownSmallFilled, ChevronLeft, ChevronLeftFilled, ChevronLeftSmall, ChevronLeftSmallFilled, ChevronRight, ChevronRightFilled, ChevronRightSmall, ChevronRightSmallFilled, ChevronUp, ChevronUpFilled, ChevronUpSmall, ChevronUpSmallFilled, Circle, CircleFilled, Close, CloseFilled, Component, Core, Delete, Document, Download, Dropdown, Error, ErrorFilled, Favorite, FavoriteFilled, Folder, Globe, Home, HomeActive, Info, InfoFilled, Link, Loading, Lock, Menu, Micro, MoreHorizontal, MoreVertical, Notification, Option, Personal, Radio, RadioFilled, Rectangle, RectangleFilled, Search, Settings, Share, Sheet, SheetFilled, Sort, Sparkles, Spinner, Star, StarFilled, Storage, Swap, TriangularBotFilled, TriangularBotFilledSmall, TriangularTopFilled, TriangularTopFilledSmall, Verified, VerifyFilled, Warning, Notification, Copy... and more!

Illustrated Icons (6)

Alarm, Error, Info, Verified, Warning, Success

API Reference

Icon Props

interface IconProps {
  // Size in pixels
  size?: number;
  
  // SVG color
  color?: string;
  
  // CSS class name
  className?: string;
  
  // Additional attributes
  [key: string]: any;
}

Example with All Props

import { Settings } from '@photonix/icons';

export function IconWithProps() {
  return (
    <Settings
      size={32}
      color="#3B82F6"
      className="icon"
      aria-label="Settings"
    />
  );
}

TypeScript Support

Full TypeScript support is included. All icons are properly typed:

import type { IconProps } from '@photonix/icons';

const MyIcon: React.FC<IconProps> = (props) => {
  return <Add {...props} />;
};

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

MIT © Photonix

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting pull requests.

Changelog

v1.0.0 (2026-01-02)

  • Initial release
  • 111 premium icons
  • Full TypeScript support
  • ESM and CommonJS exports
  • Comprehensive documentation