@ezform/mui
Version:
Material UI form components for use with EZForm React validation and form library
14 lines (13 loc) • 461 B
TypeScript
import React from "react";
import { FieldBaseProps } from "./FieldBase";
export interface FieldSearchSelectProps extends FieldBaseProps {
options: {
key: string;
value: string;
label: string;
disabled?: boolean;
}[];
variant?: "filled" | "outlined" | "standard";
color?: "primary" | "secondary";
}
export declare const FieldSearchSelect: React.MemoExoticComponent<(props: FieldSearchSelectProps) => JSX.Element>;