@deephaven/auth-plugins
Version:
Deephaven Auth Plugins
15 lines • 584 B
TypeScript
import React, { type FormEventHandler } from 'react';
import './LoginForm.scss';
export interface LoginFormProps {
/** What to display inside the form */
children: React.ReactNode;
/** Error message to display */
errorMessage?: string;
/** Whether currently logging in */
isLoggingIn?: boolean;
/** Triggered when the form is submitting */
onSubmit?: FormEventHandler;
}
export declare function LoginForm({ children, errorMessage, isLoggingIn, onSubmit, }: LoginFormProps): JSX.Element;
export default LoginForm;
//# sourceMappingURL=LoginForm.d.ts.map