@ant-design/pro-layout
Version:
17 lines (16 loc) • 557 B
TypeScript
import type { ReactNode } from 'react';
import React from 'react';
import './index.less';
import type { RouteContextType } from '../../index';
export declare type FooterToolbarProps = {
extra?: React.ReactNode;
style?: React.CSSProperties;
className?: string;
renderContent?: (props: FooterToolbarProps & RouteContextType & {
leftWidth?: string;
}, dom: JSX.Element) => ReactNode;
prefixCls?: string;
children?: React.ReactNode;
};
declare const FooterToolbar: React.FC<FooterToolbarProps>;
export default FooterToolbar;