Files
2026-07-24 12:46:44 +05:30

15 lines
444 B
Plaintext

component Skeleton {
props {
color = "primary"
label = "Loading"
size = "md"
lines = 3
class = ""
}
view {
<div class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--skeleton wire-next--size-{size} {class}" role="status" aria-label="{label}">
{#if "Skeleton" === "Skeleton"}{#each Array(lines).fill(0) as line}<span></span>{/each}{:else}<i aria-hidden="true"></i>{/if}
</div>
}
}