mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-06-13 13:43:13 +00:00
8 lines
178 B
Svelte
8 lines
178 B
Svelte
<script lang="ts">
|
|
export let bottom = false
|
|
</script>
|
|
|
|
<div class="loader" class:bottom={bottom}>
|
|
<div class="bar bar-1"></div>
|
|
<div class="bar bar-2"></div>
|
|
</div>
|