FormFieldDivider

Basic Usage

Use a FormFieldDivider to create implicit groups of FormFields. For more semantic grouping, use a FormFieldset.

<DemoLayout>
  <FormField label="Old Password">
    <TextInput type="password" />
  </FormField>

  <FormFieldDivider />

  <FormField label="New Password">
    <TextInput type="password" />
  </FormField>
  <FormField label="Repeat New Password">
    <TextInput type="password" />
  </FormField>
</DemoLayout>