1
0
Fork 0
mirror of https://github.com/sofiaritz/aybWeb synced 2023-12-10 14:23:29 +00:00
aybWeb/src/lib/components/common/Button.svelte
2023-12-08 18:43:56 +01:00

8 lines
242 B
Svelte

<script lang="ts">
export let type: string = ""
</script>
<button
class="rounded-lg bg-blue-700 px-5 py-3 text-center font-medium text-white hover:bg-blue-800 focus:outline-none focus:ring-4 focus:ring-blue-300"
{type}><slot /></button
>