https://github.com/sergeysova/material.ui
Another material ui package
https://github.com/sergeysova/material.ui
Last synced: 6 months ago
JSON representation
Another material ui package
- Host: GitHub
- URL: https://github.com/sergeysova/material.ui
- Owner: sergeysova
- License: mit
- Created: 2016-07-29T15:44:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-29T16:42:36.000Z (almost 10 years ago)
- Last Synced: 2025-10-09T02:00:03.088Z (10 months ago)
- Homepage: https://www.npmjs.com/package/material.ui
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# material.ui
Another Material UI package
## Readme
> Package now in development
> Please, star it and come back later
## Specification
### Table
https://material.google.com/components/data-tables.html
```javascript
Add
Remove
value.match(/\w+/)} />
```
## Installation
```bash
npm install --save material.ui
```
## Usage
```js
// With webpack and babel
import 'material.ui/styles.css';
import { NavigationBottom, Button, FloatingButton, Chips, Switch } from 'material.ui';
```
```js
// Webpack only
require('material.ui/styles.css');
const { NavigationBottom, Button, FloatingButton, Chips, Switch } = require('material.ui');
```
```js
// Without webpack and babel in the browser
//
// Copy styles.css to your directory
//
//
var NavigationBottom = MaterialUI;
var Button = MaterialUI;
var FloatingButton = MaterialUI;
var Chips = MaterialUI;
var Switch = MaterialUI;
```