mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-05 13:00:47 +08:00
22 lines
354 B
Markdown
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
|
|
}
|
|
}
|
|
``` |