1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-04-21 02:33:54 +03:00
foxbank/client/src/Button.svelte
2021-11-14 17:35:37 +02:00

11 lines
No EOL
214 B
Svelte

<script>
export let title;
export let text;
</script>
<main>
<figure class="bg-gray-100 rounded-xl p-3 m-2">
<h1 class="text-lg font-bold">{title}</h1>
<p class="text-gray-900">{text}</p>
</figure>
</main>