https://github.com/imsamet/patika-react-button
https://github.com/imsamet/patika-react-button
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/imsamet/patika-react-button
- Owner: imsamet
- Created: 2021-08-09T06:31:44.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T06:39:52.000Z (almost 4 years ago)
- Last Synced: 2024-04-21T07:40:35.230Z (about 1 year ago)
- Language: CSS
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# patika-react-button
> Made with create-react-library
[](https://www.npmjs.com/package/patika-react-button) [](https://standardjs.com)
## Install
```bash
npm install --save patika-react-button
```## Usage
```jsx
import React, { Component } from 'react'import Button from 'patika-react-button'
import 'patika-react-button/dist/index.css'class Example extends Component {
render() {
return Button
}
}
```## Properties
```bash
SizeType: string
Values: 'sm', 'md', 'lg'
Example
```
```jsx
class Example extends Component {
render() {
return Button
}
}
``````bash
ColorType: string
Values: 'success', 'primary', 'warning', 'danger'
Example
```
```jsx
class Example extends Component {
render() {
return Button
}
}
``````bash
RoundType: bool
Example
```
```jsx
class Example extends Component {
render() {
return Button
}
}
``````bash
LightType: bool
Example
```
```jsx
class Example extends Component {
render() {
return Button
}
}
```## License
MIT © [imsamet](https://github.com/imsamet)