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

12 lines
250 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.
// Responsive-ish grid: `cols` columns (16) with a gap (scale 08).
component Grid {
props {
cols = "2"
gap = "4"
class = ""
}
view {
<div class="wire-grid wire-cols-{cols} wire-gap-{gap} {class}"><slot></slot></div>
}
}