0.2.0 ā€¢ Published 6 years ago

bs-material-ui-icons v0.2.0

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

Reason bindings for Material-UI-Icons

npm

Reason bindings for material-ui-icons.

Status

šŸš§ This is a WIP, not everything is supported yet. šŸš§

Feel free to create an issue or PR if you find anything missing.

Installation

yarn add bs-material-ui-icons
yarn add material-ui-icons@1.0.0-beta.17

Then add bs-material-ui-icons to bs-dev-dependencies in your bsconfig.json:

{
  ...
  "bs-dev-dependencies": ["bs-material-ui-icons"]
}

Usage

let component = ReasonReact.statelessComponent("Example");

let make = (_children) => {
  ...component,
  render: (_self) => <MaterialUIIcons.Delete>
};