@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
25 lines (24 loc) • 657 B
TypeScript
import { type FooterProps as RcProps } from 'rc-footer';
import { type ReactNode } from 'react';
export interface FooterProps {
/**
* @description The bottom content of the footer
*/
bottom?: ReactNode;
/**
* @description The columns of the footer
*/
columns: RcProps['columns'];
/**
* @description The maximum width of the content in the footer
* @type number
* @default 960
*/
contentMaxWidth?: number;
/**
* @description The theme of the footer
*/
theme?: 'light' | 'dark';
}
declare const Footer: import("react").NamedExoticComponent<FooterProps>;
export default Footer;