Interface representing the properties of the form body.

interface FormBodyProps {
    children: ReactNode;
    containerProps?: HTMLAttributes<HTMLDivElement>;
    formProps?: HTMLAttributes<HTMLFormElement>;
    panel?: boolean;
}

Properties

children: ReactNode

The content to be rendered within the form body.

containerProps?: HTMLAttributes<HTMLDivElement>

HTML attributes for the form container element.

formProps?: HTMLAttributes<HTMLFormElement>

HTML attributes for the form element.

panel?: boolean

Determines if the form should be wrapped in a panel (default is true).