zooid-toast
Version:
29 lines (22 loc) • 1.1 kB
Markdown
# zooid-toast
[](https://travis-ci.org/octoblu/zooid-toast)
[](http://badge.fury.io/js/zooid-toast)
[](https://codeclimate.com/github/octoblu/zooid-toast)
[](http://community-slack.octoblu.com)
## Install
```
npm install --save zooid-toast
```
## Props
| Prop | Type | Default | Description |
| ----------| -------| --------| -------------------------------------|
| className | string | | Additional css classes to merge into the component |
| message | string | | Message to show. Should be concise. |
| timeout | number | 4000 | timeout in milliseconds |
## Example
```js
import Toast from 'zooid-toast'
<Toast message="Device Updated!" />
<Toast message="Device Updated!" timeout="7777" />
<Toast message="Device Updated!" timeout="7777" className="AwesomeClass" />
```