Options
NameTypeRequired
namestring
labelstring
helperTextstring
descriptionstring
isDisabledboolean
isReadOnlyboolean
optionsarray
export default {
  "fields": [
    {
      "component": "checkbox",
      "label": "Checkbox",
      "name": "checkbox",
      "options": [
        {
          "label": "Dog",
          "value": "1"
        },
        {
          "label": "Cats",
          "value": "2"
        },
        {
          "label": "Hamsters",
          "value": "3"
        }
      ]
    }
  ]
};

This component also accepts all other original props, please see here!