naive-ui/demo/documentation/components/button/enUS/shape.demo.md
2020-11-07 00:07:02 +08:00

22 lines
354 B
Markdown

# Shape
Button has different shapes.
```html
<n-space>
<n-button circle>
<template v-slot:icon>
<cash-icon />
</template>
</n-button>
<n-button round>Round</n-button>
<n-button>Rect</n-button>
</n-space>
```
```js
import { CashOutline as CashIcon } from '@vicons/ionicons-v5'
export default {
components: {
CashIcon
}
}
```