apphouse
Version:
Component library for React that uses observable state management and theme-able components.
13 lines (12 loc) • 373 B
TypeScript
import { SignInFormProps } from '../components/Form/SignInForm';
import React from 'react';
export interface SignInPopup extends SignInFormProps {
onSwitchAuth: () => void;
/**
* If true, the close button will be displayed
* @default false
* @optional
*/
showCloseButton?: boolean;
}
export declare const SignInPopup: React.FC<SignInPopup>;