UNPKG

731 BTypeScriptView Raw
1import * as React from 'react';
2export interface LoginMainFooterLinksItemProps extends React.HTMLProps<HTMLLIElement> {
3 /** Content rendered inside the footer Link Item */
4 children?: React.ReactNode;
5 /** HREF for Footer Link Item */
6 href?: string;
7 /** Target for Footer Link Item */
8 target?: string;
9 /** Additional classes added to the Footer Link Item */
10 className?: string;
11 /** Component used to render the Footer Link Item */
12 linkComponent?: React.ReactNode;
13 /** Props for the LinkComponent */
14 linkComponentProps?: any;
15}
16export declare const LoginMainFooterLinksItem: React.FunctionComponent<LoginMainFooterLinksItemProps>;
17//# sourceMappingURL=LoginMainFooterLinksItem.d.ts.map
\No newline at end of file