naive-ui/demo/documentation/components/button/enUS/shape.md
2019-10-25 12:48:10 +08:00

25 lines
378 B
Markdown

# Shape
Button has different shapes.
```html
<n-button circle>
<template v-slot:icon>
<md-save />
</template>
</n-button>
<n-button type="primary" round>Primary</n-button>
<n-button type="info">Info</n-button>
```
```js
import mdSave from 'naive-ui/lib/icons/md-save'
export default {
components: {
mdSave
}
}
```
```css
.n-button {
margin: 0 8px 8px 0;
}
```