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 🙏

© 2025 – Pkg Stats / Ryan Hefner

sketch-icons

v0.1.13

Published

Sketch-icons is package consisting of 600+ beautiful icons for web applications

Downloads

3,687

Readme

Sketch-icons

Sketch icons is a completely open-source icon set with 600+ icons that makes it easy for individuals to utilise icons. The Sketch-icons Web Component is a simple and effective way to incorporate Sketch icons into your app. The component will dynamically load an SVG for each icon, ensuring that your app only requests the icons it requires.

npm yarn total downloads npm downloads

sketch-icons

Installation

npm i sketch-icons
# or
yarn add sketch-icons

Usage

import { PlayFill } from "sketch-icons";

class Icons extends React.Component {
  render() {
    return (
      <h2>
        Here's a <PlayFill />
      </h2>
    );
  }
}

Using CDN

If you want to use the icons in your project, you can use the CDN. Add the following cdn to your HTML file.

<link
  rel="stylesheet"
  type="text/css"
  href="https://unpkg.com/[email protected]/dist/cdn/icons.css"
/>

Example

To utilize the pre-built icon from the sketch icons bundle, populate the class property on the i tag

<head>
  ...
  <link
    rel="stylesheet"
    type="text/css"
    href="https://unpkg.com/[email protected]/dist/cdn/icons.css"
  />
  ...
</head>
<body>
  ...
  <i class="sk sk-alarm-fill"></i>
  ...
</body>

Using CSS Selector

You can change the properties of icon using the css selector. The selector is .sk- followed by the icon name.

.sk-alarm-fill {
  color: red;
  font-size: 35px;
}

Properties

| Property | Attribute | Default | | ----------- | ---------------------------- | --------- | | color | color="color" | #2A2238 | | height | height={height} | 32 | | width | width={width} | 32 | | stroke | stroke="stroke-color" | #2A2238 | | strokeWidth | strokeWidth="stroke-width" | 1.5 |

import { ArrowUpCircle, ArrowDown } from "sketch-icons";

class Icons extends React.Component {
  render() {
    return (
      <h2>
        Go Up <ArrowUpCircle height={100} width={100} />
        Move Down <ArrowDown stroke="blue" strokeWidth="0.1" color="#ffffff" />
      </h2>
    );
  }
}

How to Contribute Assets

Note : At this moment, we just ask that you place your icon in the assets folder and not to run build commands.

  1. Create an icon with color #2A2238 and strokeWidth of 1 or 1.5.
  2. Export your icon to svg format.
  3. Place your assets in the assets/simple folder.
  4. Similarly if the icon is colored place it in assets/color folder.
  5. Add your asset in icon_list.
  6. Submit a Pull Request with title [Icon request]
  7. Your asset will be added to the list.

Icon Description

| Icon Type | File name | Size | Color | | --------- | -------------------- | ------- | ------- | | Normal | icon-name.svg | 28 x 28 | #2a2238 | | Circle | icon-name-circle.svg | 28 x 28 | #2a2238 | | Filled | icon-name-fill.svg | 28 x 28 | #2a2238 | | Color | icon-name-color.svg | 28 x 28 | colors |

Note : Ensure that the names of the icons do not conflict with those that already exist.

Icons List

Click here to see all sketch-icons

Changelog

Check here for CHANGELOG

Contributing

Please see CONTRIBUTING GUIDELINES

Code of Conduct

Please read the CODE OF CONDUCT

Versioning

Refer Versioning

Contributors

| | | | | | | | | :---------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | | ND Rohith | Aravind Swaminathan | ND Revanth | GarudaTechDev | SM Logsubramani | Thanushraam | RAM SOLAIAPPAN |

Color icons credits : Jenish Lunagariya under CC BY 4.0