1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-04-21 02:33:54 +03:00
foxbank/client/src/BaseButton.svelte

10 lines
210 B
Svelte
Raw Normal View History

2021-11-20 17:42:59 +02:00
<script>
let clazz = "";
export { clazz as class };
</script>
<main class={clazz}>
<button on:click class="rounded-2xl p-6 w-full text-center text-3xl text-gray-50">
<slot></slot>
</button>
</main>