mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
15 lines
422 B
Svelte
15 lines
422 B
Svelte
<script lang="ts">
|
|
import { IconButton, type ActionItem, type Size } from '@immich/ui';
|
|
|
|
type Props = {
|
|
action: ActionItem;
|
|
size?: Size;
|
|
};
|
|
|
|
const { action, size }: Props = $props();
|
|
const { title, icon, onAction } = $derived(action);
|
|
</script>
|
|
|
|
{#if icon && (action.$if?.() ?? true)}
|
|
<IconButton {size} shape="round" color="primary" {icon} aria-label={title} onclick={() => onAction(action)} />
|
|
{/if}
|