@onesy/ui-react
Version:
UI for React
21 lines (20 loc) • 509 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IElement } from '../types';
export declare type IFormRow = ILine & {
name?: string | IElement;
description?: string | IElement;
start?: any;
end?: any;
row?: boolean;
footer?: IElement;
responsive?: boolean;
HeaderProps?: any;
MainProps?: any;
TextProps?: any;
AsideProps?: any;
StartProps?: any;
EndProps?: any;
};
declare const FormRow: React.FC<IFormRow>;
export default FormRow;