InputLabel
InputLabel displays label text on components like Checkboxes and RadioGroup.Items. It can be used in place of Text and has default sizing and styling support.
How to Use
InputLabel supports an optional RichText prop.
InputLabel also supports onActivated and onHover callbacks, which are used alongside an input button like a RadioGroupItem.
local Neuron = require(Packages.Neuron)
local InputLabel = Neuron.InputLabel
...
return React.createElement(InputLabel, {
Text = "I'm an <b>InputLabel</b>.",
RichText = true,
})Last updated on