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