import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Login/login'; import { css } from '@patternfly/react-styles'; export interface LoginMainFooterLinksItemProps extends React.HTMLProps { /** Content rendered inside the footer link item */ children?: React.ReactNode; /** HREF for footer link item */ href?: string; /** Target for footer link item */ target?: string; /** Additional classes added to the footer link item */ className?: string; /** Component used to render the footer link item */ linkComponent?: React.ReactNode; /** Props for the LinkComponent */ linkComponentProps?: any; } export const LoginMainFooterLinksItem: React.FunctionComponent = ({ children = null, href = '', target, className = '', linkComponent = 'a', linkComponentProps, ...props }: LoginMainFooterLinksItemProps) => { const LinkComponent = linkComponent as any; return (
  • {children}
  • ); }; LoginMainFooterLinksItem.displayName = 'LoginMainFooterLinksItem';