Skip to content

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 []
                )
            ]
        ]
    ]
Clone this wiki locally