1.0.1113 • Published 3 years ago

@amaui/icons-material-react v1.0.1113

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Getting started

Add

  // yarn
  yarn add @amaui/icons-material-react

  // npm
  npm install @amaui/icons-material-react

Use

  // Import any of the ui and icons
  import { IconButton } from '@amaui/ui-react';

  import IconMaterialPottedPlantRounded from '@amaui/icons-material-react/IconMaterialPottedPlantRounded';

  function A(props) {

    return (
      <IconButton>
        // 🪴
        <IconMaterialPottedPlantRounded />
      </IconButton>
    );
  }

Dev

Install

  yarn

Test

  yarn test

Prod

Build

  yarn build

Docs

Might be soon...

Licenses

Google material design icons are ones used in this repository, licenced under their own licence.

Updates made to original icons:

  • A part of the icons are used not all of them.
  • Inner svg elements (children) are extracted from every icon, and put within the @amaui/ui-react Icon component as children.
  • Every icon from there is made into it's own React component as part of this UI library.