Files
panel/resources/js/views/demos/components/chip/DemoChipSizes.vue

24 lines
347 B
Vue
Raw Permalink Normal View History

2025-08-04 16:33:07 +03:30
<template>
<div class="demo-space-x">
<VChip size="x-small">
x-small chip
</VChip>
<VChip size="small">
small chip
</VChip>
<VChip size="default">
Default
</VChip>
<VChip size="large">
large chip
</VChip>
<VChip size="x-large">
x-large chip
</VChip>
</div>
</template>