@edancerys/ts-react-components-lib
Version:
16 lines (15 loc) • 507 B
TypeScript
import React from 'react';
import { CardProps, NodeConfigProps } from './Card';
import { InputProps } from './Input';
export interface FormProps extends CardProps {
input?: InputProps[];
inputConfig?: NodeConfigProps;
}
export interface InputWrapperProps extends InputProps {
wrapperBorder?: string;
wrapperBorderTop?: string;
wrapperBorderBottom?: string;
wrapperBorderLeft?: string;
wrapperBorderRight?: string;
}
export declare const Form: React.FC<FormProps>;