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.
17 lines
537 B
17 lines
537 B
<script setup> |
|
defineProps({ |
|
type: { |
|
type: String, |
|
default: 'submit', |
|
}, |
|
}); |
|
</script> |
|
|
|
<template> |
|
<button |
|
:type="type" |
|
class="inline-flex items-center px-4 py-2 bg-red-600 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-red-500 active:bg-red-700 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 dark:focus:ring-offset-gray-800 transition ease-in-out duration-150" |
|
> |
|
<slot /> |
|
</button> |
|
</template>
|
|
|