mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-04-21 02:33:54 +03:00
10 lines
No EOL
210 B
Svelte
10 lines
No EOL
210 B
Svelte
<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> |