18 lines
475 B
Vue
18 lines
475 B
Vue
<script setup>
|
|
defineProps({
|
|
type: {
|
|
type: String,
|
|
default: 'button',
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
:type="type"
|
|
class="inline-flex items-center rounded-xl border border-slate-200 bg-white px-4 py-2.5 text-sm font-semibold text-slate-700 shadow-sm transition hover:bg-slate-50 focus:outline-none focus:ring-2 focus:ring-indigo-500/20 focus:ring-offset-2 disabled:opacity-50"
|
|
>
|
|
<slot />
|
|
</button>
|
|
</template>
|