Files
BetterSEQTA-Plus/src/interface/components/SkeletonLoader.svelte
T
2024-11-01 17:37:20 +11:00

6 lines
231 B
Svelte

<script lang="ts">
let { width, height} = $props<{width?: string, height?: string}>()
</script>
<div style="width: {width ? width : '100%'}; height: {height ? height : '100%'}; background: #e0e0e0;" class="animate-pulse"></div>