You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
11 lines
449 B
11 lines
449 B
<template> |
|
<button |
|
class="inline-flex items-center rounded border border-transparent bg-gray-100 text-textColor-800 |
|
shadow-lg |
|
px-4 py-2 text-xs font-semibold uppercase tracking-widest transition duration-150 |
|
ease-in-out hover:bg-gray-700 focus:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 |
|
focus:ring-offset-2 active:bg-gray-900" |
|
> |
|
<slot /> |
|
</button> |
|
</template>
|
|
|