Files
ikea/resources/js/Components/Button.vue
2022-07-30 10:38:28 +07:00

7 lines
193 B
Vue

<template>
<button class="rounded-md px-3 py-1 text-sm text-white transition-all duration-300">
<div class="flex items-center space-x-1">
<slot />
</div>
</button>
</template>