## Installation

Muse-UI has published in [npm](https://www.npmjs.com/package/muse-ui), you can use the `npm` or `yarn` to install it，also you can refer it by the `<script>` tag in the html.

### Importing the icon and font

Muse-UI use the material design font and icon，so you need to import following fonts and icons in the html.

```html
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
```

### npm / yarn Installation

```bash
npm install --save muse-ui

```

或者

```bash
yarn add muse-ui

```

### use `script` tag


```html
<link rel="stylesheet" href="path/to/muse-ui.css">
<script src="path/to/muse-ui.js"></script>
```

> you should replace the  **path/to** with the actual path.
