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

material-jsx-icons

v1.0.0

Published

The [Material Design Icons Library](https://material.io/tools/icons) converted to dependency-free flexible React components using [Svg-To-JSX](https://github.com/janjakubnanista/svg-to-jsx), [Babel](https://babeljs.io/) and [Prettier](https://prettier.io/

Downloads

11

Readme

Material JSX Icons

The Material Design Icons Library converted to dependency-free flexible React components using Svg-To-JSX, Babel and Prettier.

How to use

Install the package using npm:

$ npm install --save material-jsx-icons

# or

$ yarn add material-jsx-icon

Then import in your app all the icons you want to use. They are just functional React components, so you just use them as such.

import React from 'react';
import PersonIcon from 'material-jsx-icons/person';
import DeleteIcon from 'material-jsx-icons/delete';

const App = () => (
  <div>
    <PersonIcon />
    <DeleteIcon />
  </div>
);

Styling

Now, to maintain flexibility, the Icon component includes no styling or appeareance information at all, not even sizing definitions, so you will have to provide you own styling. There are many options available:

You can pass a className and style it in a separate stylesheet or using css modules.

const App = () => (
  <div>
    <PersonIcon className={'icon icon--person'} />
    <DeleteIcon className={'icon icon--delete'} />
  </div>
);

You can use in-line styles:

const iconStyles = {
  width: '40px',
  fill: '#b4d455',
};

const App = () => (
  <div>
    <PersonIcon style={iconStyles} />
    <DeleteIcon style={iconStyles} />
  </div>
);

Or even one of those fancy style-in-js solution that kids like.

import styled from 'styled-components';
import PersonIcon from 'material-jsx-icons/person';

const StyledPersonIcon = styled(PersonIcon)`
  width: 40px;
  fill: rebeccapurple;
`;

const App = () => (
  <div>
    <StyledPersonIcon />
  </div>
);

💡Tip: The SVGs produced by these components automatically adjusts to the container size while keep its proportions. So: when possible adjust the parent's size instead of the Icon element itself.

Other props

The React component automatically forwards all the props to the underlying SVG element so you can set other properties like onClick, etc.

<StyledPersonIcon onClick={doSomethingWhenClicked} />

Import everything

Ideally you would just import the icons you need one by one, but if you want to import everything at once for some weird reason, you can do it.

import AllTheIcons from 'material-jsx-icons';

const App = () => (
  <div>
    <AllTheIcons.PersonIcon />
    <AllTheIcons.AirplayIcon />
    <AllTheIcons.BusinessCenterIcon />
    <AllTheIcons.ChevronRightIcon />
    {/*... that's about ~900 icons */}
  </div>
);

Building

If you want to build the icon components yourself there are two embarrassing scripts in the scripts folder. generate.js takes all the 48px production SVG from the material-design-icons package and transforms it into JSX react components, then uses Babel to transform those to plain ES5. make-index.js generates the unholy index file.

There's an npm script to run both:

npm run build

Copyright

I don't own the Copyright for anything, I'm just processing it so it's easier to consume icons one-by-one in React.