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

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
  }
}