Files
WRNexusJS/.publish/ui/components/skeleton.wrn
T
2026-07-12 15:55:18 +05:30

12 lines
289 B
Plaintext

// Loading placeholder (animated shimmer). Size it with width/height props.
component Skeleton {
props {
width = "100%"
height = "1rem"
class = ""
}
view {
<span class="wire-skeleton {class}" style="width: {width}; height: {height};" aria-hidden="true"></span>
}
}