1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-10 13:56:47 +01:00
immich/web/src/lib/components/asset-viewer/navigation-area.svelte
2024-05-27 14:06:15 +07:00

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>