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