Properties of the FormControlRow React component.

interface FormControlRowProps {
    alignItems?:
        | "center"
        | "normal"
        | "stretch"
        | "end"
        | "flex-end"
        | "flex-start"
        | "start"
        | "baseline"
        | "self-end"
        | "self-start";
    fullWidth?: boolean;
    spacing?: ResponsiveStyleValue<string | number>;
}

Properties

alignItems?:
    | "center"
    | "normal"
    | "stretch"
    | "end"
    | "flex-end"
    | "flex-start"
    | "start"
    | "baseline"
    | "self-end"
    | "self-start"

Alignment of the child controls.

fullWidth?: boolean

Expand this control to use the full width.

spacing?: ResponsiveStyleValue<string | number>

The spacing between the child controls.