-
Notifications
You must be signed in to change notification settings - Fork 6
InfoLabel
Andrew Sutton edited this page Sep 17, 2023
·
2 revisions
open FS.FluentUI.V8toV9
let infoLabelTest =
Fui.stack [
stack.horizontal false
stack.children [
Fui.field [
field.label (
Fui.infoLabel [
infoLabel.info "Example info"
infoLabel.text "Field with info label"
infoLabel.weight.semibold
]
)
field.children (
Fui.input []
)
]
]
]