Files
svelte-formula11/src/lib/components/Button.svelte
2024-12-23 16:15:26 +01:00

21 lines
371 B
Svelte

<script lang="ts">
let {
id = "",
name = "",
formaction = "",
label,
color,
disabled = false,
} = $props();
</script>
<!-- HACK: Set --tw-bg-opacity to 1 so the disabled label/button looks like the disabled input -->
<button
{id}
{name}
{formaction}
{disabled}
class="btn btn-{color}"
style="--tw-bg-opacity: 1">{label}</button
>