Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lijinke666/rc-button

react button ui component
https://github.com/lijinke666/rc-button

button component es6 rc rc-button react react-button ui webpack webpack2

Last synced: 3 days ago
JSON representation

react button ui component

Awesome Lists containing this project

README

        

# rc-button
a react button ui component , If you want a nice or beauty button , You might use it :)

## Example
### [Live Demo](https://lijinke666.github.io/rc-button/)
- `yarn` or `npm install`
- `npm run demo` run example

## Install
#### use npm
```
npm install rc-button --save
```

#### or user yarn
```
yarn add rc-button
```

## Usage

```javascript
import React from "react"
import ReactDOM from "react-dom"
import Button from "rc-button"

const Styles = {marginBottom:10}
const Demo = () => (


Example



  1. default

  2. alert('primary')}>primary

  3. warning

  4. success

  5. orange

  6. info

  7. alert('i am disabled')}>disabled



)
ReactDOM.render(
,
document.getElementById('root')
)
```