cobalt/web/src/components/buttons/ActionButton.svelte
wukko 00cdb2121d
web: data-driven switcher & save mode switcher
also:
- disabled ssr to enable localstorage
- removed the workaround for hover, as it looks bad
2024-06-19 23:04:09 +06:00

9 lines
207 B
Svelte

<script lang="ts">
export let id: string;
export let click = () => { alert('no function assigned') };
</script>
<button id="button-{id}" class="button" on:click={click}>
<slot></slot>
</button>