mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-30 12:52:43 +08:00
354 B
354 B
Shape
Button has different shapes.
<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>
import { CashOutline as CashIcon } from '@vicons/ionicons-v5'
export default {
components: {
CashIcon
}
}