mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
13 lines
294 B
Svelte
13 lines
294 B
Svelte
<script lang="ts">
|
|
export let onClick: (e: MouseEvent) => void;
|
|
export let label: string;
|
|
</script>
|
|
|
|
<button
|
|
type="button"
|
|
class="my-auto mx-4 rounded-full p-3 text-gray-500 transition hover:bg-gray-500 hover:text-white"
|
|
aria-label={label}
|
|
on:click={onClick}
|
|
>
|
|
<slot />
|
|
</button>
|