mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
14 lines
342 B
Markdown
14 lines
342 B
Markdown
|
# Text Button
|
||
|
```html
|
||
|
<n-button text>Default</n-button>
|
||
|
<n-button text type="primary">Primary</n-button>
|
||
|
<n-button text type="info">Info</n-button>
|
||
|
<n-button text type="success">Success</n-button>
|
||
|
<n-button text type="warning">Warning</n-button>
|
||
|
<n-button text type="error">Error</n-button>
|
||
|
```
|
||
|
```css
|
||
|
.n-button {
|
||
|
margin: 0 8px 8px 0;
|
||
|
}
|
||
|
```
|