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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hand-drawn-icons

v1.1.3

Published

A set of hand drawn icons to import into your own projects via a react component

Downloads

28

Readme

React hand drawn icons

This package contains an <Icon/> component which can be provided with a type prop and a color prop.

Demo hand-drawn-icons

Type

In this package the type corresponds to what type of icon you need. For example <Icon type="Star"/> would produce a playful hand-drawn star as a react component.

The available types are shown at the bottom.

Color

The color prop corresponds to the desired stroke colour of the icon. This prop take any type of color object.

For example, for a yellow star component, the react component could be;

  • <Icon type="Star" color="#FFFF00"/>

  • <Icon type="Star" color="rgb(255, 255, 0)"/>

  • <Icon type="Star" color="rgba(255, 255, 0, 1)"/>

maxWidth and maxHeight

These max size props do exactly the same as setting a max-width and max-height property in CSS.

| Icon Name | Preview | Usage | |-|--|---| |Attachment|enter image description here|<Icon type="Attachment"/>| |Bar Graph|enter image description here|<Icon type="Bar Graph"/>| |Book|enter image description here|<Icon type="Book"/>| |Bookmark|enter image description here|<Icon type="Bookmark"/>| |Briefcase|enter image description here|<Icon type="Briefcase"/>| |Browser|enter image description here|<Icon type="Browser"/>| |Calendar|enter image description here|<Icon type="Calendar"/>| |Camera|enter image description here|<Icon type="Camera"/>| |Cancel|enter image description here|<Icon type="Cancel"/>| |Clock|enter image description here|<Icon type="Clock"/>| |Comment Lines|enter image description here|<Icon type="Comment Lines"/>| |Comment|enter image description here|<Icon type="Comment"/>| |Computer|enter image description here|<Icon type="Computer"/>| |Controls|enter image description here|<Icon type="Controls"/>| |Conversation|enter image description here|<Icon type="Conversation"/>| |Create New|enter image description here|<Icon type="Create New"/>| |Credit Card|enter image description here|<Icon type="Credit Card"/>| |Diary|enter image description here|<Icon type="Diary"/>| |Document|enter image description here|<Icon type="Document"/>| |Down Arrow|enter image description here|<Icon type="Down Arrow"/>| |Email|enter image description here|<Icon type="Email"/>| |Folder|enter image description here|<Icon type="Folder"/>| |Forward|enter image description here|<Icon type="Forward"/>| |Heart|enter image description here|<Icon type="Heart"/>| |Home|enter image description here|<Icon type="Home"/>| |Inbox|enter image description here|<Icon type="Inbox"/>| |Layers|enter image description here|<Icon type="Layers"/>| |Left Arrow|enter image description here|<Icon type="Left Arrow"/>| |Link|enter image description here|<Icon type="Link"/>| |List|enter image description here|<Icon type="List"/>| |Location Marker|enter image description here|<Icon type="Location Marker"/>| |Location|enter image description here|<Icon type="Location"/>| |Map|enter image description here|<Icon type="Map"/>| |Medal|enter image description here|<Icon type="Medal"/>| |Menu|enter image description here|<Icon type="Menu"/>| |Microphone|enter image description here|<Icon type="Microphone"/>| |Minus|enter image description here|<Icon type="Minus"/>| |More Details 3|enter image description here|<Icon type="More Details 3"/>| |More Details 4|enter image description here|<Icon type="More Details 4"/>| |Music|enter image description here|<Icon type="Music"/>| |No Volume|enter image description here|<Icon type="No Volume"/>| |Notification|enter image description here|<Icon type="Notification"/>| |Padlock|enter image description here|<Icon type="Padlock"/>| |Phone|enter image description here|<Icon type="Phone"/>| |Photo|enter image description here|<Icon type="Photo"/>| |Pie Chart|enter image description here|<Icon type="Pie Chart"/>| |Pin|enter image description here|<Icon type="Pin"/>| |Plus|enter image description here|<Icon type="Plus"/>| |Printer|enter image description here|<Icon type="Printer"/>| |Profile|enter image description here|<Icon type="Profile"/>| |Rearrange|enter image description here|<Icon type="Rearrange"/>| |Refresh|enter image description here|<Icon type="Refresh"/>| |Reply|enter image description here|<Icon type="Reply"/>| |Right Arrow|enter image description here|<Icon type="Right Arrow"/>| |Save|enter image description here|<Icon type="Save"/>| |Search|enter image description here|<Icon type="Search"/>| |Settings|enter image description here|<Icon type="Settings"/>| |Share|enter image description here|<Icon type="Share"/>| |Shopping|enter image description here|<Icon type="Shopping"/>| |Signal|enter image description here|<Icon type="Signal"/>| |Signals|enter image description here|<Icon type="Signals"/>| |Star|enter image description here|<Icon type="Star"/>| |Tablet|enter image description here|<Icon type="Tablet"/>| |Tag|enter image description here|<Icon type="Tag"/>| |Tick|enter image description here|<Icon type="Tick"/>| |Toggle|enter image description here|<Icon type="Toggle"/>| |Trash|enter image description here|<Icon type="Trash"/>| |Typing Comment|enter image description here|<Icon type="Typing Comment"/>| |Up Arrow|enter image description here|<Icon type="Up Arrow"/>| |User|enter image description here|<Icon type="User"/>| |Users|enter image description here|<Icon type="Users"/>| |Video Camera|enter image description here|<Icon type="Video Camera"/>| |Video|enter image description here|<Icon type="Video"/>| |View|enter image description here|<Icon type="View"/>| |Volume|enter image description here|<Icon type="Volume"/>| |Warning|enter image description here|<Icon type="Warning"/>|