React Flat is a set of UI components made with and for React, mixing Google's Material Design and Flat Design.
Here you can see examples and how to get started
React Flat can be installed as an npm package:
$ npm install --save react-flat
Here is a quick example to get you started:
import React from 'react';
import ReactDOM from 'react-dom';
import Badge from 'react-flat/Badge';
function App() {
return (
<Badge icon="thumb_up" text="It works!" theme="green" />
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
This project is licensed under the terms of the MIT license