mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 19:54:39 +00:00
6 lines
231 B
Svelte
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>
|