Interface representing the properties for flexible fields in a form layout.

interface FormFlexFieldProps {
    className?: string;
    columns?: number;
    fluid?: boolean;
    gap?: string;
    style?: CSSProperties;
}

Properties

className?: string

Custom CSS class name for the flexible field container.

columns?: number

Number of columns in the grid layout.

fluid?: boolean

Determines if the layout is fluid or responsive.

gap?: string

Gap between the fields in the layout.

style?: CSSProperties

Custom CSS styles for the flexible field container.