You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
528 B
18 lines
528 B
import './index.less';
|
|
import React from 'react';
|
|
import { WithFalse } from '../typings';
|
|
export interface GlobalFooterProps {
|
|
links?: WithFalse<{
|
|
key?: string;
|
|
title: React.ReactNode;
|
|
href: string;
|
|
blankTarget?: boolean;
|
|
}[]>;
|
|
copyright?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
prefixCls?: string;
|
|
className?: string;
|
|
}
|
|
declare const _default: ({ className, prefixCls, links, copyright, style, }: GlobalFooterProps) => JSX.Element | null;
|
|
export default _default;
|