UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

17 lines 940 B
/// <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