LabelledIconRadio

Renders a radio input like control within the icon and label.

<LabelledIconRadioGroup>
  <LabelledIconRadio
    name="howAreYou"
    icon={<Check1Icon />}
    label="I'm good"
    value="good"
  />
  <LabelledIconRadio
    name="howAreYou"
    icon={<CloseIcon />}
    label="Could be better"
    value="bad"
  />
</LabelledIconRadioGroup>

Props

PropsTypeRequiredValuesDefault
labelReactNode--
iconReactNode--
All other regular HTML radio input props...