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

25 lines
369 B
Markdown
Raw Normal View History

2019-09-21 17:03:05 +08:00
# Shape
Button has different shapes.
```html
2019-10-24 18:04:31 +08:00
<n-button circle>
<template v-slot:icon>
<cash-outline />
2019-10-24 18:04:31 +08:00
</template>
</n-button>
<n-button round>Round</n-button>
<n-button>Rect</n-button>
2019-09-21 17:03:05 +08:00
```
2019-10-24 18:04:31 +08:00
```js
import cashOutline from 'naive-ui/lib/icons/cash-outline'
2019-10-24 18:04:31 +08:00
export default {
components: {
cashOutline
2019-10-24 18:04:31 +08:00
}
}
```
2019-09-21 17:03:05 +08:00
```css
.n-button {
margin: 0 8px 8px 0;
}
```