File: LoginMainFooter.d.ts

package info (click to toggle)
cockpit 355-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 311,568 kB
  • sloc: javascript: 774,787; python: 40,655; ansic: 35,157; cpp: 11,141; sh: 3,512; makefile: 580; xml: 261
file content (17 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// <reference types="react" />
export interface LoginMainFooterProps extends React.HTMLProps<HTMLDivElement> {
    /** Additional classes added to the login main footer */
    className?: string;
    /** Content rendered inside the login main footer */
    children?: React.ReactNode;
    /** Content rendered inside the login main footer as social media links */
    socialMediaLoginContent?: React.ReactNode;
    /** Adds an accessible name to the social media login list. */
    socialMediaLoginAriaLabel?: string;
    /** Content rendered inside of login main footer band to display a sign up for account message */
    signUpForAccountMessage?: React.ReactNode;
    /** Content rendered inside of login main footer band do display a forgot credentials link* */
    forgotCredentials?: React.ReactNode;
}
export declare const LoginMainFooter: React.FunctionComponent<LoginMainFooterProps>;
//# sourceMappingURL=LoginMainFooter.d.ts.map