Skip to content
React components for faster and easier web development. Build your own design system, or start with Material Design.
JavaScript TypeScript
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Bump puppeteer from 1.20.0 to 2.0.0 (#18233) Nov 6, 2019
.codesandbox [test] Build all `@material-ui/*` packages for Codesandbox CI (#18100) Oct 31, 2019
.dependabot [core] Ignore url-loader >= 3 updates (#18639) Dec 1, 2019
.github [GitHub] Fix fragment on link in PR template (#18370) Nov 14, 2019
docs [docs] Fix typo in toggle-button.md (#19002) Dec 27, 2019
examples [core] Batch changes (#18395) Nov 18, 2019
framer [framer] Update after publication (#18340) Nov 14, 2019
modules docs: Fixing url address in modules/watrerfall/Batcher.js (#18997) Dec 27, 2019
packages [TableSortLabel] Relax IconComponent prop requirements in TypeScript (#… Dec 27, 2019
scripts [core] Don't force a remote when listing prettier changes (#18794) Dec 27, 2019
test [core] Batch small changes (#18961) Dec 24, 2019
.browserslistrc [core] Drop node 6 support (#14379) Feb 2, 2019
.codecov.yml [test] Increase the Codecov threshold (#14796) Mar 9, 2019
.editorconfig [docs] Change http to https part 2 (#16171) Jun 12, 2019
.eslintignore [icons] Update script to use latest json file (#17257) Sep 5, 2019
.eslintrc.js [core] Batch changes (#18629) Dec 2, 2019
.gitattributes Add gitattributes Dec 12, 2014
.gitignore Add Framer X wrapper components (#17797) Nov 6, 2019
.tidelift.yml [test] Tidelift - skip checking nomnom & os-locale (#13157) Oct 8, 2018
.yarnrc [ci] Use custom frozen lockfile check (#16677) Jul 22, 2019
CHANGELOG.md v4.8.1 Dec 24, 2019
CODE_OF_CONDUCT.md [docs] Use full text of the code of conduct (#16417) Jun 29, 2019
CONTRIBUTING.md [docs] Add yarn install instructions in CONTRIBUTING.md (#18970) Dec 24, 2019
LICENSE Initial commit Aug 18, 2014
README.md [core] Batch small changes (#18961) Dec 24, 2019
SECURITY.md [docs] Add SECURITY.md (#15804) May 25, 2019
azure-pipelines.yml [docs] Extend size-snapshot (#17633) Oct 3, 2019
babel.config.js [benchmark] Fix not running (#16900) Aug 6, 2019
crowdin.yml [docs] Move GOVERNANCE.md and ROADMAP.md files from root (#17531) Sep 23, 2019
dangerfile.js [ci] Fix size comparison sort order (#17800) Oct 9, 2019
docker-compose.yml [core] Prune dead dependencies (#10963) Apr 8, 2018
lerna.json Add Framer X wrapper components (#17797) Nov 6, 2019
package.json [core] Don't force a remote when listing prettier changes (#18794) Dec 27, 2019
prettier.config.js [core] Remove parser specification to fix JSON issue (#11763) Jun 7, 2018
tsconfig.json [docs] Revert upgrade to next 9 (#16755) Jul 26, 2019
tslint.json [Menulist] Add autoFocusItem for initial focus control (#17571) Oct 1, 2019
yarn.lock Bump react-docgen from 5.0.0-beta.1 to 5.0.0 (#18838) Dec 27, 2019

README.md

Material-UI logo

Material-UI

React components for faster and easier web development. Build your own design system, or start with Material Design.

npm package npm downloads CircleCI Build Status Coverage Status CII Best Practices Code style Follow on Twitter Dependabot Status PeerDependencies Dependencies DevDependencies Average time to resolve an issue Crowdin

Installation

Material-UI is available as an npm package.

Stable channel v4

// with npm
npm install @material-ui/core

// with yarn
yarn add @material-ui/core

v3.x (Migration from v3 to v4)

v0.x (Migration to v1)

Please note that @next will only point to pre-releases; to get the latest stable release use @latest instead.

Who sponsors Material-UI?

Diamond 💎

3/3 slots available

Diamond Sponsors are those who have pledged $2,000/month and more to Material-UI. Please contact us at diamond@material-ui.com to subscribe to this tier.

Gold 🏆

via Patreon

tidelift bitsrc

via OpenCollective

call-em-all

Gold Sponsors are those who have pledged $500/month and more to Material-UI.

There is more!

See the full list of our backers.

Usage

Here is a quick example to get you started, it's all you need:

import React from 'react';
import ReactDOM from 'react-dom';
import Button from '@material-ui/core/Button';

function App() {
  return (
    <Button variant="contained" color="primary">
      Hello World
    </Button>
  );
}

ReactDOM.render(<App />, document.querySelector('#app'));

Yes, it's really all you need to get started as you can see in this live and interactive demo:

Edit Button

Questions

For how-to questions and other non-issues, please use StackOverflow instead of Github issues. There is a StackOverflow tag called "material-ui" that you can use to tag your questions.

Examples

Are you looking for an example project to get started? We host some.

Documentation

Check out our documentation website.

Premium Themes

You can find complete templates & themes in our premium themes section.

Contributing

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Material-UI.

Notice that contributions go far beyond pull requests and commits. Although we love giving you the opportunity to put your stamp on Material-UI, we also are thrilled to receive a variety of other contributions.

Changelog

Recently Updated? Please read the changelog.

Roadmap

The future plans and high priority features and enhancements can be found in the roadmap file.

License

This project is licensed under the terms of the MIT license.

You can’t perform that action at this time.