2023-07-16 04:25:59 +03:00
|
|
|
<script lang="ts">
|
2024-03-12 13:09:11 +01:00
|
|
|
export let onClick: (e: MouseEvent) => void;
|
|
|
|
|
export let label: string;
|
2023-07-16 04:25:59 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
2024-03-12 13:09:11 +01:00
|
|
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
|
|
|
<div class="group flex h-full place-items-center hover:cursor-pointer" on:click={onClick}>
|
|
|
|
|
<button
|
|
|
|
|
class="mx-4 rounded-full p-3 text-gray-500 transition group-hover:bg-gray-500 group-hover:text-white"
|
|
|
|
|
aria-label={label}
|
|
|
|
|
>
|
2023-07-16 04:25:59 +03:00
|
|
|
<slot />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|