@ant-design/pro-layout
Version:
17 lines (16 loc) • 520 B
TypeScript
import React from 'react';
import type { WithFalse } from '../../typing';
export type GlobalFooterProps = {
links?: WithFalse<{
key?: string;
title: React.ReactNode;
href: string;
blankTarget?: boolean;
}[]>;
copyright?: React.ReactNode;
style?: React.CSSProperties;
prefixCls?: string;
className?: string;
};
declare const GlobalFooter: ({ className, prefixCls, links, copyright, style, }: GlobalFooterProps) => React.JSX.Element | null;
export { GlobalFooter };