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

devicons-react-kit

v0.4.0

Published

[![NPM version](https://img.shields.io/npm/v/devicons-react-kit.svg?style=flat-square)](https://www.npmjs.com/package/devicons-react-kit) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/lice

Downloads

6

Readme

DevIcons React Kit

NPM version License: MIT

A sleek, modern, and tree-shakable icon library for developers, built for React. This library provides a comprehensive set of developer-focused icons that are easy to use and customize in your projects.

Developed by sonubhosle.


DevIcons Hero

✨ Key Features

  • Tree-Shakable: Only import the icons you need, keeping your app's bundle size small.
  • Highly Customizable: Easily change the size, color, and stroke width with simple props.
  • Consistent Design: All icons are designed on a 24x24 grid for visual consistency.
  • TypeScript Ready: Built with TypeScript for a great developer experience.
  • Developer Focused: A curated collection of icons for tech stacks, tools, and common UI elements in development.

🚀 Installation

Install the package using your favorite package manager.

npm

npm install devicons-react-kit

yarn

yarn add devicons-react-kit

pnpm

pnpm add devicons-react-kit

usage

Using the icons is simple. Just import the component for the icon you want to use.

import React from 'react';
import { HomeIcon, GithubIcon } from 'devicons-react-kit';

function MyComponent() {
  return (
    <div>
      <p>Welcome to my portfolio!</p>
      <a href="/">
        <HomeIcon />
        <span>Home</span>
      </a>

      <a href="https://github.com/sonubhosle">
        <GithubIcon />
        <span>My GitHub</span>
      </a>
    </div>
  );
}

export default MyComponent;

🎨 Customization

You can customize the appearance of the icons using props.

  • size: Sets the width and height of the icon (default: 24).
  • color: Sets the stroke or fill color (default: currentColor).
  • strokeWidth: Sets the stroke width for non-filled icons (default: 2).

Any other standard SVG props (like className, onClick, etc.) will be passed directly to the SVG element.

Example

import { CodeIcon } from 'devicons-react-kit';

function CustomIconExample() {
  return (
    <CodeIcon 
      size={48} 
      color="#f97316" 
      strokeWidth={1.5}
      className="hover:opacity-80" 
    />
  );
}

🌐 Icon Browser

To see the full list of available icons and search for the one you need, check out the Official Icon Browser.

(Note: If you are running this project locally, the browser is available at http://localhost:5173)

🤝 Contributing

Contributions are welcome! If you have ideas for new icons or improvements, please feel free to open an issue or submit a pull request.

To get started with local development:

  1. Fork and Clone the Repository

    git clone https://github.com/sonubhosle/DevIcons.git
    cd DevIcons
  2. Install Dependencies

    npm install
  3. Start the Development Server

    npm run dev

    This will start the icon browser application, where you can see your changes live.

  4. Adding a New Icon

    • Find the SVG path data for your new icon.
    • Add a new IconData object to the ICONS array in constants.ts.
    • The build process will automatically generate the corresponding React component.

📄 License

This project is licensed under the MIT License.

Copyright (c) 2024 sonubhosle.