UNPKG

@ezform/mui

Version:

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

9 lines (8 loc) 356 B
import React from "react"; import { FieldBaseProps } from "./FieldBase"; export interface FieldPasswordProps extends FieldBaseProps { variant?: "filled" | "outlined" | "standard"; color?: "primary" | "secondary"; placeholder?: string; } export declare const FieldPassword: React.MemoExoticComponent<(props: FieldPasswordProps) => JSX.Element>;