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

josemi-icons

v0.0.0

Published

An open source and hand-crafted SVG icons library

Readme

josemi-icons

A collection of hand-made and open source SVG icons that you can use in your web projects. Each icon has been designed in a 24x24 grid with a stroke width of 2px and a minimum padding of 2px.

This package provides SVG icons in multiple formats, including React components, CSS variables (data URIs), and SVG sprites.

Version License

Features

  • 🚀 Multiple Formats: React components, CSS, SVG Sprite, and JSON metadata.
  • 🎨 Highly Customizable: Control size, color, and stroke width with ease.
  • 📦 Tree Shakeable: Only include the icons you actually use in your React project.
  • 💎 Premium Design: Consistent 24x24 grid with a clean, modern aesthetic.

Installation

Add the icons package to your project by running:

## using npm
$ npm install josemi-icons

## using yarn
$ yarn add josemi-icons

## using pnpm
$ pnpm add josemi-icons

Usage

⚛️ React

The React distribution provides individual components for each icon, a base Icon component, and a renderIcon utility.

Individual Components

import { AccessPointIcon, ActivityIcon } from "josemi-icons/react";

const MyComponent = () => (
    <div>
        <AccessPointIcon size="24px" color="blue" stroke={2} />
        <ActivityIcon size="1.5em" color="currentColor" />
    </div>
);

Base Icon Component

If you have the icon path data, you can use the base Icon component:

import { Icon } from "josemi-icons/react";

const CustomIcon = () => (
    <Icon path="M..." size="24px" color="red" stroke={1.5} />
);

Dynamic Rendering

Use renderIcon to render icons dynamically by their name:

import { renderIcon } from "josemi-icons/react";

const DynamicIcon = ({ name }) => {
    return renderIcon(name) || <span>Icon not found</span>;
};

🎨 CSS

The CSS distribution provides icons as data URIs. You can use them via CSS classes or directly via CSS variables.

  1. Import the CSS:
@import "josemi-icons/css";

Class-based Usage

Use the ji- prefix followed by the icon name:

<i class="ji-access-point" style="color: blue; font-size: 24px;"></i>

CSS Variable Usage

This is perfect for use in background-image or mask-image:

.my-element {
  width: 24px;
  height: 24px;
  background: var(--josemi-icons-access-point) no-repeat center;
  background-size: contain;
}

🖼️ SVG Sprite

For projects using SVG sprites, you can reference symbols directly from icons.svg.

<svg width="24" height="24">
  <use href="node_modules/josemi-icons/icons.svg#access-point"></use>
</svg>

📊 Metadata & Schema

If you are building your own tools or need icon metadata, you can use the JSON distribution:

import iconsMetadata from "josemi-icons/json";

console.log(iconsMetadata.icons); // Array of { name, path }

A JSON Schema is also provided at josemi-icons/schema.

Customization

Icons are designed on a 24x24 grid. Most icons support the following props (in React) or equivalent CSS properties:

  • Size: Defaults to 1em.
  • Color: Defaults to currentColor.
  • Stroke: Defaults to 2. Supports numeric values for stroke-width.

License

Code is licensed under the MIT LICENSE.

Icons in this repository are Public Domain. You can use, copy, modify, distribute, or display the icons without any restrictions or attribution requirements. They are offered on an "as-is" basis, without warranties or conditions of any kind.

By using the icons in this repository, you agree that they are provided without any warranty, and the author(s) shall not be liable for any claim, damages, or other liability arising from the use of the icons.