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

react-skills-icons

v1.0.10

Published

A React component library for displaying skill icons

Downloads

20

Readme

React Skills Icons

A flexible React component library for displaying programming and technology skill icons, built on top of react-icons.

Features

  • 100+ technology and skill icons
  • Based on react-icons library
  • Support for custom icons
  • Customizable size and colors
  • Optional labels
  • TypeScript support
  • Built-in Tailwind CSS support

Installation

npm install react-skills-icons 

Usage

import { SkillIcon } from 'react-skills-icons';

// Basic usage
<SkillIcon name="react" />

// With custom size
<SkillIcon name="javascript" size={32} />

// With custom color
<SkillIcon name="typescript" color="#3178C6" />

// With custom icon from react-icons
```bash
npm install react-icons
import { FaCode } from 'react-icons/fa';
<SkillIcon name="custom" customIcon={FaCode} />
// With label
<SkillIcon name="python" showLabel={true} />
// With custom label styling
<SkillIcon 
  name="nodejs" 
  showLabel={true}
  textSize="lg"
  labelClassName="font-bold"
/>

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | name | string | - | The name of the icon to display | | size | number | 24 | Size of the icon in pixels | | color | string | - | Color of the icon (hex, rgb, etc.) | | customIcon | IconType | - | Custom react-icons component | | showLabel | boolean | true | Whether to show the icon label | | labelClassName | string | - | Additional classes for the label | | className | string | - | Additional classes for the icon wrapper | | textSize | 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | 'xs' | Size of the label text |

Custom Icons

The library is built on top of react-icons, which means you can:

  1. Use any icon from the react-icons library as a custom icon
  2. Maintain consistency with the built-in icons
  3. Get the same styling and customization options

Example with custom icon:

import { FaCode } from 'react-icons/fa';

// Use a custom icon from react-icons
<SkillIcon 
  name="custom-skill" 
  customIcon={FaCode}
  size={32}
  color="#ff0000"
  showLabel={true}
/>

Available Icons

The library includes icons for popular technologies including:

  • Programming Languages (JavaScript, TypeScript, Python, etc.)
  • Frontend Frameworks (React, Vue, Angular, etc.)
  • Backend Technologies (Node.js, Django, etc.)
  • Databases (PostgreSQL, MongoDB, etc.)
  • Cloud Services (AWS, Azure, GCP, etc.)
  • And many more!

For a complete list of available icons, check out our Storybook documentation.

Documentation

For full documentation and interactive examples, visit our Storybook documentation.

Development

# Install dependencies
npm install

# Run tests
npm test

# Run Storybook
npm run storybook

# Build the library
npm run build

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT © Gal Kremer