@asimov-optus/react-material-ui-components-lib

Asimov UI Components library

Usage no npm install needed!

<script type="module">
  import asimovOptusReactMaterialUiComponentsLib from 'https://cdn.skypack.dev/@asimov-optus/react-material-ui-components-lib';
</script>

README

react-material-ui-components-lib

React Components library on Material UI

JavaScript Style Guide NPM Version

Install

npm install --save react-material-ui-components-lib

Usage

import React from "react";
import {
  PrimaryButton,
  HorizontalLabel,
  theme,
} from "react-material-ui-components-lib";
import { ThemeProvider } from "@material-ui/styles";

const App = () => {
  return (
    <ThemeProvider theme={theme}>
      <div>
        <PrimaryButton>Primary</PrimaryButton>
        <HorizontalLabel type="success">Success</HorizontalLabel>
      </div>
    </ThemeProvider>
  );
};
export default App;

License

MIT © ASIMOV