Skip to contents

A step.

Usage

step(id, ...)

Arguments

id

The id of the radio button group.

...

Any named properties.

Details

See step

Examples

htmltools::div(
  style = "max-width: 12rem;",
  step(
    "step",
    min = 0,
    max = 5,
    value = 2
  )
)
#> <div style="max-width: 12rem;">
#>   <ui5-step-input id="step" min="0" max="5" value="2"></ui5-step-input>
#> </div>