rc-footer
Version:
Pretty Footer react component used in used in ant.design
15 lines (14 loc) • 423 B
TypeScript
import React from 'react';
import { FooterColumn } from './column';
export interface FooterProps {
prefixCls?: string;
bottom?: React.ReactNode;
columns?: FooterColumn[];
theme?: 'dark' | 'light';
className?: string;
style?: React.CSSProperties;
backgroundColor?: string;
columnLayout?: 'space-around' | 'space-between';
}
declare const Footer: React.FC<FooterProps>;
export default Footer;