Laboratoria UI it's a custom theme of the Material UI with some our custom components.
yarn add https://github.com/Laboratoria/ui.git
Bitter for titles and Open Sans for texts
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Bitter:400,700|Open+Sans:400,400i,700" />
import React from 'react';
import ReactDOM from 'react-dom';
// Inject a theme into your application
import { MuiThemeProvider } from '@material-ui/core/styles';
// Our theme
import { Theme } from 'laboratoria-ui';
import Typography from '@material-ui/core/Typography';
import Button from '@material-ui/core/Button';
ReactDOM.render(
<MuiThemeProvider theme={Theme}>
<div>
<Typography variant="h1" align="center">
Hola
</Typography>
<Button variant="contained" color="primary">
Button
</Button>
</MuiThemeProvider>,
document.getElementById('app'),
);