1.13.0 • Published 6 years ago

react-md-icon v1.13.0

Weekly downloads
243
License
MIT
Repository
github
Last release
6 years ago

react-md-icons

Use the latest material icon in your React application.


react-icons is great but out of date because material-design-icons is out of date... So I built this script to use the latest material icons in React !

Install

npm install react-md-icon

Usage

Play with it in codesandbox

Example :

import React from "react";
import ReactDOM from "react-dom";
import RoundWhatshot from "react-md-icon/dist/RoundWhatshot";

ReactDOM.render(
  () => (
    <RoundWhatshot
      style={{
        fontSize: "10em",
        color: "purple"
      }}
    />
  ),
  document.body
);