2023-04-01 22:46:07 +02:00
|
|
|
<script lang="ts" context="module">
|
|
|
|
|
export type Colors = 'light-gray' | 'gray';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
export let color: Colors;
|
|
|
|
|
|
|
|
|
|
const colorClasses: Record<Colors, string> = {
|
|
|
|
|
'light-gray': 'bg-gray-300/90 dark:bg-gray-600/90',
|
|
|
|
|
gray: 'bg-gray-300 dark:bg-gray-600'
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<button
|
2023-04-17 18:18:49 +02:00
|
|
|
class="h-full w-full py-2 flex gap-2 flex-col place-items-center place-content-center px-8 text-gray-600 transition-colors hover:bg-immich-primary hover:text-white dark:text-gray-200 dark:hover:bg-immich-dark-primary text-xs dark:hover:text-black {colorClasses[
|
2023-04-01 22:46:07 +02:00
|
|
|
color
|
|
|
|
|
]}"
|
|
|
|
|
on:click
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</button>
|