8 lines
342 B
Vue
8 lines
342 B
Vue
<template>
|
|
<button
|
|
class="inline-flex items-center rounded-xl bg-indigo-600 px-4 py-2.5 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500/30 focus:ring-offset-2 active:bg-indigo-800 disabled:opacity-50"
|
|
>
|
|
<slot />
|
|
</button>
|
|
</template>
|