Skip to main content

Interface: FormProps

Defined in: composites/Form/Form.tsx:66

Props for the Form component.

The Form root carries no evaluation prop: under the evidence rule (CONTRIBUTING §2.3) a dimension only appears on a component if a runtime dispatches on it. The Form root is visually transparent — colors, spacing of authorial emphasis live on the nested Input / Action parts — so adding evaluation here would be reserving API surface for a speculative future consumer. Re-introduce it the day a real consumer (e.g. background card chrome) needs it.

The composite owns its layout; pass style/className on a wrapping element rather than on the composite root. See CONTRIBUTING §4.

Extends

  • Omit<RACFormProps, "style" | "className">

Properties

children?

optional children?: any

Defined in: composites/Form/Form.tsx:71

Form content — typically TextField / Select / Checkbox / RadioGroup composites plus a FormActions row at the end.

Overrides

Omit.children