mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-29 01:48:28 +00:00
11 lines
220 B
Svelte
11 lines
220 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>
|