A set of Styled Components that implement Google's Material Design.
$ npm install material-styled-components
$ yarn add material-styled-components
This quick example should get you going within seconds:
import React from 'react';
import { render } from 'react-dom';
import Button from 'material-styled-components/Button';
function App() {
return (
<Button>Hello World</Button>
);
}
render(<App />, document.querySelector('#app'));
Thanks for wanting to help make Material Styled Components better! We invite you to use GitHub Issues for any feature requests, questions, and so forth. Please try to label your issue appropriately.
Read more on contributions in CONTRIBUTING.md.
This project is licensed under the MIT license.