Spaces:
Runtime error
Runtime error
File size: 377 Bytes
43148fd 246efdb 43148fd 246efdb 43148fd 1123781 246efdb 1123781 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<script lang="ts">
let props = $props();
</script>
<button {...props}>
{@render props.children()}
</button>
<style lang="postcss">
@reference "tailwindcss";
button {
@apply cursor-pointer rounded bg-gray-700 font-normal text-white hover:bg-gray-800 disabled:cursor-not-allowed disabled:bg-gray-300 dark:disabled:bg-gray-700 dark:disabled:text-black;
}
</style>
|