1.0.2 • Published 4 years ago

mt-elements v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

mt-elements

React UI Library

NPM JavaScript Style Guide

Docs

To access full documentation go to https://mateo2708.github.io/mt-elements

Install

npm install --save mt-elements

Usage

import React, { Component } from "react";

import { Button, ThemeMTProvider, defaultThemes } from "mt-elements";

class Example extends Component {
  render() {
    return (
      <ThemeMTProvider theme={defaultThemes.light}>
        <Button type="primary" size="large" shape="round">
          Test Button
        </Button>
      </ThemeMTProvider>
    );
  }
}

License

MIT © mateo2708