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

11 lines
222 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Vertical stack: lays children out in a column with a gap (scale 08).
component Stack {
props {
gap = "4"
class = ""
}
view {
<div class="wire-stack wire-gap-{gap} {class}"><slot></slot></div>
}
}