Field

A container for form inputs. Should be used to wrap each input in a form along with any other required accessories.

Component render

<img alt="Screenshot of the form field Dashboard Add-Ons UI component" src="../assets/component-field.png"

<Field>
  <Input
    value={value}
    type="string"
    required={true}
  >
    <Text>
      Label
    </Text>
  </Input>
  <Small slot="error">Please enter an additional note</Small>
</Field>