39 lines
1.2 KiB
Vue
39 lines
1.2 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Rounded buttons have a circular border radius.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center flex-wrap gap-4">
|
|
<Button label="Primary" rounded />
|
|
<SecondaryButton label="Secondary" rounded />
|
|
<ContrastButton label="Contrast" rounded />
|
|
<DangerButton label="Danger" rounded />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import Button from '@/volt/button';
|
|
import ContrastButton from '@/volt/button/contrast';
|
|
import DangerButton from '@/volt/button/danger';
|
|
import SecondaryButton from '@/volt/button/secondary';
|
|
import { ref } from 'vue';
|
|
|
|
const code = ref(`
|
|
<template>
|
|
<div class="card flex justify-center flex-wrap gap-4">
|
|
<Button label="Primary" rounded />
|
|
<SecondaryButton label="Secondary" rounded />
|
|
<ContrastButton label="Contrast" rounded />
|
|
<DangerButton label="Danger" rounded />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Button from '@/volt/button';
|
|
import ContrastButton from '@/volt/button/contrast';
|
|
import DangerButton from '@/volt/button/danger';
|
|
import SecondaryButton from '@/volt/button/secondary';
|
|
<\/script>
|
|
`);
|
|
</script>
|