react-mui-auth-page
Version:
React Login/SignUp components Library backed by Material UI for fast Development
16 lines (15 loc) • 394 B
TypeScript
import * as React from "react";
export interface EmailFieldProps {
email: {
text: string;
error: string;
};
setEmail: (props: {
text: string;
error: string;
}) => void;
textFieldVariant?: "outlined" | "filled" | "standard";
loading: boolean;
}
declare const _default: React.NamedExoticComponent<EmailFieldProps>;
export default _default;