UNPKG

@chatui/core

Version:

The React library for Chatbot UI

11 lines (10 loc) 294 B
import React from 'react'; export type FormItemProps = { label?: string | React.ReactNode; help?: string; required?: boolean; invalid?: boolean; hidden?: boolean; children?: React.ReactNode; }; export declare const FormItem: (props: FormItemProps) => React.JSX.Element;