You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
379 B

<template>
<button
:type="type"
class="bg-primarycustom px-6 py-3 leading-none rounded text-lg font-semibold text-white disabled:bg-gray-300"
@click.prevent="$emit('click', $event)"
>
<slot></slot>
</button>
</template>
<script setup>
defineEmits(['click']);
defineProps({
type: {
default: 'button',
},
});
</script>