UNPKG

@ezform/mui

Version:

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

9 lines (8 loc) 321 B
/// <reference types="react" /> import { FieldBaseProps } from "./FieldBase"; export interface FieldSwitchProps extends FieldBaseProps { color?: "default" | "primary" | "secondary"; labelBefore?: string; size?: "medium" | "small"; } export declare const FieldSwitch: (props: FieldSwitchProps) => JSX.Element;