@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
12 lines (11 loc) • 409 B
TypeScript
import { FieldProps } from "@fluentui/react-components";
interface iProps<ValueType> extends FieldProps {
/** return non empty string if value is not valid */
validation?: () => string;
formKey?: string;
required?: boolean;
/** sendIn */
value?: ValueType;
}
export declare function FormFieldEX<ValueType>(props: iProps<ValueType>): import("react/jsx-runtime").JSX.Element;
export {};