naive-ui/demo/documentation/components/button/enUS/basic.md

16 lines
396 B
Markdown
Raw Normal View History

2019-09-20 00:27:06 +08:00
# Basic
2019-12-02 02:58:45 +08:00
There are `default`, `primary`, `info`, `success`, `warning` and `error` type of button.
2019-09-17 19:24:39 +08:00
```html
2019-09-20 00:27:06 +08:00
<n-button>Default</n-button>
<n-button type="primary">Primary</n-button>
<n-button type="info">Info</n-button>
<n-button type="success">Success</n-button>
<n-button type="warning">Warning</n-button>
<n-button type="error">Error</n-button>
2019-09-17 19:24:39 +08:00
```
```css
.n-button {
2019-09-20 00:27:06 +08:00
margin: 0 8px 8px 0;
}
2019-12-02 02:58:45 +08:00
```