Juan Felipe Zapata Moreno c6c2f78d16 Initial Commit
2025-08-12 09:36:02 -06:00

18 lines
477 B
Vue

<script setup>
defineProps({
type: {
default: 'submit',
type: String
}
});
</script>
<template>
<button
class="inline-flex justify-center items-center px-4 py-2 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:opacity-90 focus:outline-none active:saturate-150 disabled:opacity-25 transition"
:type="type"
>
<slot />
</button>
</template>