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

devicon-kit

v0.1.2

Published

500+ beautifully crafted developer icons as React components with variants, animations, and accessibility built-in.

Readme


Install

npm install devicon-kit
# or
yarn add devicon-kit
# or
pnpm add devicon-kit

Quick Start

import { ReactIcon, TypescriptIcon, PythonIcon } from 'devicon-kit';

function App() {
  return (
    <div>
      <ReactIcon />
      <TypescriptIcon size="lg" />
      <PythonIcon size={48} color="#3776AB" />
    </div>
  );
}

Features

  • 417+ icons — Frameworks, languages, tools, platforms, and more
  • Tree-shakeable — Only import what you use, zero bloat
  • TypeScript — Full type definitions out of the box
  • Variantsdefault, light, dark, and wordmark styles
  • Animations — Built-in spin, pulse, and bounce
  • Accessible — Proper ARIA attributes, title and alt props
  • Context API — Set global defaults with DevIconProvider
  • Tiny per-icon — Each icon is its own module (~1-3 KB)

Usage

Sizes

Use named presets or a custom pixel value:

<ReactIcon size="xs" />   {/* 12px */}
<ReactIcon size="sm" />   {/* 16px */}
<ReactIcon size="md" />   {/* 24px (default) */}
<ReactIcon size="lg" />   {/* 32px */}
<ReactIcon size="xl" />   {/* 48px */}
<ReactIcon size="2xl" />  {/* 64px */}
<ReactIcon size={100} />  {/* 100px */}

Colors

<ReactIcon color="#61DAFB" />
<ReactIcon color="red" />
<ReactIcon color="currentColor" />

Each icon uses its official brand color by default.

Variants

<ReactIcon variant="default" />
<ReactIcon variant="light" />
<ReactIcon variant="dark" />
<ReactIcon variant="wordmark" />

Not all icons have every variant — missing variants gracefully fall back to default.

Animations

<ReactIcon animate="spin" />
<ReactIcon animate="pulse" />
<ReactIcon animate="bounce" />

Accessibility

{/* Decorative (hidden from screen readers) */}
<ReactIcon />

{/* Meaningful (announced by screen readers) */}
<ReactIcon title="React" />
<ReactIcon alt="React framework" />

Global Defaults with DevIconProvider

Set defaults for all icons in a subtree:

import { DevIconProvider, ReactIcon, TypescriptIcon } from 'devicon-kit';

function App() {
  return (
    <DevIconProvider size="lg" color="#333">
      <ReactIcon />        {/* inherits size="lg" color="#333" */}
      <TypescriptIcon />   {/* inherits size="lg" color="#333" */}
    </DevIconProvider>
  );
}

Per-Icon Imports (Maximum Tree-Shaking)

import { ReactIcon } from 'devicon-kit/icons/ReactIcon';
import { DockerIcon } from 'devicon-kit/icons/DockerIcon';

Dynamic Imports (Lazy Loading)

import { dynamicIconImports } from 'devicon-kit/dynamic';

// Load icon on demand
const { ReactIcon } = await dynamicIconImports['react']();

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | size | number \| 'xs' \| 'sm' \| 'md' \| 'lg' \| 'xl' \| '2xl' | 'md' | Icon size | | color | string | Brand color | SVG fill color | | variant | 'default' \| 'light' \| 'dark' \| 'wordmark' | 'default' | Visual variant | | animate | 'none' \| 'spin' \| 'pulse' \| 'bounce' | 'none' | CSS animation | | title | string | — | Accessible title for screen readers | | alt | string | — | Aria-label for the SVG | | className | string | — | CSS class names | | style | CSSProperties | — | Inline styles |

All standard SVG attributes are also supported.

Available Icons

Includes icons for: React, TypeScript, JavaScript, Python, Go, Rust, Docker, Kubernetes, AWS, Azure, GCP, Firebase, Git, GitHub, VS Code, Node.js, Deno, Bun, Next.js, Nuxt, Svelte, Vue, Angular, Tailwind CSS, PostgreSQL, MongoDB, Redis, GraphQL, Figma, Linux, Android, Apple, and hundreds more.

Every icon follows the naming convention: {Name}Icon — for example ReactIcon, DockerIcon, TypescriptIcon.

Also Available

| Package | Framework | |---------|-----------| | devicon-kit | React | | devicon-kit-vue | Vue 3 |

Requirements

  • React >= 18.0.0

License

MIT