2022-07-23 13:08:49 -05:00
|
|
|
<script>
|
2023-07-01 00:50:47 -04:00
|
|
|
export let text = '';
|
2023-09-23 11:50:21 +07:00
|
|
|
export let subtitle = '';
|
2022-07-23 13:08:49 -05:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<button
|
2023-07-01 00:50:47 -04:00
|
|
|
on:click
|
2023-07-18 13:19:39 -05:00
|
|
|
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"
|
2023-07-01 00:50:47 -04:00
|
|
|
role="menuitem"
|
2022-07-23 13:08:49 -05:00
|
|
|
>
|
2023-07-01 00:50:47 -04:00
|
|
|
{#if text}
|
|
|
|
{text}
|
|
|
|
{:else}
|
|
|
|
<slot />
|
|
|
|
{/if}
|
2023-09-23 11:50:21 +07:00
|
|
|
|
|
|
|
<slot name="subtitle">
|
|
|
|
<p class="text-xs text-gray-500">
|
|
|
|
{subtitle}
|
|
|
|
</p>
|
|
|
|
</slot>
|
2022-07-23 13:08:49 -05:00
|
|
|
</button>
|