Files
WRNexusJS/packages/ui/components/PrimaryButton.wrn
T
2026-07-19 17:14:12 +05:30

10 lines
242 B
Plaintext

component PrimaryButton {
props {
label = "Action"
type = "button"
disabled = false
class = ""
}
view { <button type="{type}" disabled="{disabled}" class="wire-btn wire-btn--primary {class}">{label}<slot /></button> }
}