mirror of
https://github.com/sofiaritz/aybWeb
synced 2023-12-10 14:23:29 +00:00
8 lines
242 B
Svelte
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
|
|
>
|