UNPKG

@apptane/react-ui-form

Version:

Form layout component in Apptane React UI framework

13 lines (12 loc) 445 B
import { FormGroupProps } from "./FormGroup.types.js"; /** * `FormGroup` component — provides grid layout for the fields. */ declare function FormGroup({ children, layout }: FormGroupProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; declare namespace FormGroup { var displayName: string; var propTypes: { layout: import("prop-types").Requireable<string>; }; } export default FormGroup;