@apptane/react-ui-form
Version:
Form layout component in Apptane React UI framework
16 lines (15 loc) • 364 B
TypeScript
/// <reference types="react" />
import PropTypes from "prop-types";
export interface FormGroupProps {
/**
* Content.
*/
children?: React.ReactNode;
/**
* CSS grid template describing horizontal layout.
*/
layout?: string;
}
export declare const FormGroupPropTypes: {
layout: PropTypes.Requireable<string>;
};