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

@ittyniui/icons

v0.1.1

Published

A collection of reusable SVG icon components for React, designed for easy integration and customization in your UI projects.

Readme

@ittyniui/icons

A collection of reusable SVG icon components for React, designed for easy integration and customization in your UI projects.


Key Features

  • React Components: All icons are exported as React components for seamless use in your application.
  • Customizable: Icons accept size, color, and className props for flexible styling.
  • Tree-shakable: Named exports allow you to import only the icons you need, reducing bundle size.
  • TypeScript Support: All icons are fully typed for a better developer experience.
  • Centralized Exports: Import any icon from a single entry point (index.ts).
  • Optimized SVGs: Icons are optimized for performance and clarity.
  • Storybook Integration: Preview and test icons interactively (if Storybook is set up).

Installation

npm install @ittyniui/icons

Usage

import { SearchIcon, UserIcon } from '@ittyniui/icons';

function Example() {
  return (
    <div>
      <SearchIcon size={32} color="#27954f" />
      <UserIcon size={24} color="gray" className="my-icon" />
    </div>
  );
}

Example Icon Component

import React from 'react';

interface IconProps {
  size?: number | string;
  color?: string;
  className?: string;
}

export const SearchIcon: React.FC<IconProps> = ({
  size = 24,
  color = 'currentColor',
  className,
  ...props
}) => (
  <svg
    width={size}
    height={size}
    fill={color}
    className={className}
    viewBox="0 0 24 24"
    {...props}
  >
    {/* SVG path here */}
  </svg>
);

Exporting Icons

All icons are exported from the main entry point:

export * from './SearchIcon';
export * from './UserIcon';
// ...other icons

Existing Key Features

  • Consistent naming and structure for all icon components.
  • Easy to extend with new icons.
  • Supports all modern React and TypeScript projects.

Possible Next Features

  • Theming Support: Integrate with your theme system for automatic color adaptation.
  • Accessibility Improvements: Add aria-label and role props for better accessibility.
  • Icon Packs: Group icons by category (e.g., navigation, media, social).
  • CLI Tooling: Add scripts to automate SVG import and component generation.
  • More Customization: Support for stroke width, animation, or other SVG attributes.
  • Documentation Site: Publish a live icon gallery for browsing and copy-paste usage.

Contributing

Feel free to submit new icons or improvements! Please follow the existing file and naming conventions.