Design System

Form Molecules

Composed form components from @stackmates/ui-forms/molecules

FormSection

Groups related form fields with a title and description.

FormSection demo coming soon

import { FormSection } from '@stackmates/ui-forms/molecules';

<FormSection
  title="Contact Information"
  description="How can we reach you?"
>
  <FormInput label="Email" ... />
  <FormInput label="Phone" ... />
</FormSection>

FormFieldArray

Dynamic list of form fields with add/remove controls.

FormFieldArray demo coming soon