UNPKG

@ezform/mui

Version:

Material UI form components for use with EZForm React validation and form library

13 lines (12 loc) 406 B
import React from "react"; import { FieldBaseProps } from "./FieldBase"; export interface FieldSelectProps extends FieldBaseProps { options: { key: string; value: string; label: string; disabled?: boolean; }[]; variant?: "filled" | "outlined" | "standard"; } export declare const FieldSelect: React.MemoExoticComponent<(props: FieldSelectProps) => JSX.Element>;