test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
36 lines (35 loc) • 687 B
TypeScript
import React, { FunctionComponent } from 'react';
import { BasicComponent } from '../../utils/typings';
export interface FooterProps extends BasicComponent {
/**
* logo图
* @default -
*/
logo: string
/**
* 是否显示logo
* @default true
*/
showLogo: boolean
/**
* 文案
* @default -
*/
text: string
/**
* 深色背景
* @default false
*/
deepBackground: boolean
/**
* 上方内容
* @default -
*/
topContent: React.ReactNode
/**
* 下方内容
* @default -
*/
bottomContent: React.ReactNode
}
export declare const Footer: FunctionComponent<Partial<FooterProps>>;