UNPKG

550 BTypeScriptView Raw
1import * as React from 'react';
2export interface LoginProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered inside the main section of the login layout */
4 children?: React.ReactNode;
5 /** Additional classes added to the login layout */
6 className?: string;
7 /** Footer component (e.g. <LoginFooter />) */
8 footer?: React.ReactNode;
9 /** Header component (e.g. <LoginHeader />) */
10 header?: React.ReactNode;
11}
12export declare const Login: React.FunctionComponent<LoginProps>;
13//# sourceMappingURL=Login.d.ts.map
\No newline at end of file