# mon-ui

> 一套简单的 PC 端 React 组件库。

Latest version **0.0.1** (published 2023-02-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install mon-ui
pnpm add mon-ui
yarn add mon-ui
bun add mon-ui
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2023-02-05 |
| First published | 2023-02-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 537.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Dylan |
| Maintainers | sansui-d |

## Links

- npm: https://www.npmjs.com/package/mon-ui
- Repository: https://github.com/sansui-d/Mon-UI
- Homepage: https://github.com/sansui-d/Mon-UI#readme
- Issues: https://github.com/sansui-d/Mon-UI/issues
- npm.io page: https://npm.io/package/mon-ui

## Dependencies (3)

- [react](https://npm.io/package/react.md) ^16.7.0
- [react-dom](https://npm.io/package/react-dom.md) ^16.7.0
- [prop-types](https://npm.io/package/prop-types.md) ^15.6.2

## Recent versions

- 0.0.1 (latest) — 2023-02-05

## README

# Mon-UI

## 一套 React UI组件库 [进入文档](https://sansui-d.github.io/Tue-UI/)

> 本组件库仅供学习交流，请勿在生产环境中使用

## 安装

```
$ npm install Mon-UI
$ yarn add Mon-UI
```

## 使用

```javascript
import * as React from 'react'
import * as ReactDOM from 'react-dom'
import { Button } from 'Mon-UI'
import 'Mon-UI/lib/Mon-UI.css'

ReactDOM.render(
  <div>
    <Button>Default</Button>
  </div>,
  mountNode
)
```

需要注意的是，样式文件需要单独引入。

## 特别提醒

使用 Mon-UI 时，需要使用 border-box 盒模型，否则会影响样式。代码示例：

```css
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
```

---
_Source: https://npm.io/package/mon-ui · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
