mirror of
https://github.com/immich-app/immich
synced 2025-06-06 20:41:01 +00:00
23 lines
447 B
Svelte
23 lines
447 B
Svelte
<script>
|
|
export let text = '';
|
|
export let subtitle = '';
|
|
</script>
|
|
|
|
<button
|
|
on:click
|
|
class="w-full bg-slate-100 p-4 text-left text-sm font-medium text-immich-fg hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-inset dark:text-immich-dark-bg"
|
|
role="menuitem"
|
|
>
|
|
{#if text}
|
|
{text}
|
|
{:else}
|
|
<slot />
|
|
{/if}
|
|
|
|
<slot name="subtitle">
|
|
<p class="text-xs text-gray-500">
|
|
{subtitle}
|
|
</p>
|
|
</slot>
|
|
</button>
|