13 lines
384 B
Vue
13 lines
384 B
Vue
<template>
|
|
<div class="inline-flex items-center gap-2 flex-wrap">
|
|
<Button size="xs">Extra small - xs</Button>
|
|
<Button size="sm">Small - sm</Button>
|
|
<Button size="md">Medium - md</Button>
|
|
<Button size="lg">Large - lg</Button>
|
|
<Button size="xl">Extra Large - xl</Button>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { Button } from '../../../../src/index'
|
|
</script>
|