@bottledbrains/ui
Version:
A React UI library based on Tailwind CSS
15 lines (14 loc) • 352 B
TypeScript
import { FC } from 'react';
import { CommonProps } from '../../types';
export interface FormProps extends CommonProps {
title?: string;
}
export interface FormItemProps extends CommonProps {
label?: string;
error?: string;
vertical?: boolean;
}
declare const Form: FC<FormProps> & {
Item: FC<FormItemProps>;
};
export default Form;