mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 01:11:46 +03:00
20 lines
391 B
Svelte
20 lines
391 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { IconButton, type MenuItem } from '@immich/ui';
|
||
|
|
|
||
|
|
type Props = {
|
||
|
|
action: MenuItem;
|
||
|
|
};
|
||
|
|
|
||
|
|
const { action }: Props = $props();
|
||
|
|
const { title, icon, onSelect } = $derived(action);
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<IconButton
|
||
|
|
shape="round"
|
||
|
|
color="secondary"
|
||
|
|
variant="ghost"
|
||
|
|
{icon}
|
||
|
|
aria-label={title}
|
||
|
|
onclick={(event: Event) => onSelect?.({ event, item: action })}
|
||
|
|
/>
|