@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
13 lines • 558 B
TypeScript
import * as React from 'react';
export interface LoginFooterItemProps extends React.HTMLProps<HTMLAnchorElement> {
/** Content rendered inside the footer Link Item */
children?: React.ReactNode;
/** Additional classes added to the Footer Link Item */
className?: string;
/** The URL of the Footer Link Item */
href?: string;
/** Specifies where to open the linked document */
target?: string;
}
export declare const LoginFooterItem: React.FunctionComponent<LoginFooterItemProps>;
//# sourceMappingURL=LoginFooterItem.d.ts.map