@amaui/ui-react
Version:
UI for React
26 lines (25 loc) • 648 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IElement, ISize } from '../types';
export interface IForm extends ILine {
accordion?: boolean;
divider?: boolean;
name?: string | IElement;
description?: string | IElement;
size?: ISize;
start?: any;
end?: any;
footer?: IElement;
onSubmit?: (event: SubmitEvent) => any;
ComponentForm?: any;
wrapper?: any;
HeaderProps?: any;
TextProps?: any;
AsideProps?: any;
StartProps?: any;
EndProps?: any;
AccordionProps?: any;
AccordionMainProps?: any;
}
declare const Form: React.FC<IForm>;
export default Form;