mirror of
https://github.com/immich-app/immich.git
synced 2026-03-15 06:10:02 -04:00
13 lines
313 B
Svelte
13 lines
313 B
Svelte
<script lang="ts">
|
|
import { cleanClass } from '$lib';
|
|
import type { ClassValue } from 'svelte/elements';
|
|
|
|
interface Props {
|
|
class?: ClassValue;
|
|
}
|
|
|
|
let { class: className }: Props = $props();
|
|
</script>
|
|
|
|
<div class={cleanClass('absolute h-full w-full bg-gray-300 dark:bg-gray-700', className)}></div>
|