this repo has no description
1<script lang="ts">
2 let {children, class: className, onClick} = $props();
3</script>
4
5<button class={`flex items-center gap-2 hover:bg-hyski-blue/10 px-2 py-1 rounded ${className}`} onclick={onClick}>
6 {@render children?.()}
7</button>
8
9<!-- <style>
10 @reference "../styles/global.css";
11
12 button {
13 @apply flex items-center gap-2 hover:bg-hyski-blue/10 px-2 py-1 rounded;
14 }
15</style> -->