mirror of
https://github.com/immich-app/immich
synced 2025-06-08 10:10:59 +00:00
21 lines
434 B
Svelte
21 lines
434 B
Svelte
<script lang="ts">
|
|
import type { Snippet } from 'svelte';
|
|
|
|
interface Props {
|
|
onClick: (e: MouseEvent) => void;
|
|
label: string;
|
|
children?: Snippet;
|
|
}
|
|
|
|
let { onClick, label, children }: Props = $props();
|
|
</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}
|
|
onclick={onClick}
|
|
>
|
|
{@render children?.()}
|
|
</button>
|