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.
16 lines
421 B
16 lines
421 B
import React, { CSSProperties } from 'react';
|
|
import { WithFalse } from './typings';
|
|
export interface FooterProps {
|
|
links?: WithFalse<{
|
|
key?: string;
|
|
title: React.ReactNode;
|
|
href: string;
|
|
blankTarget?: boolean;
|
|
}[]>;
|
|
copyright?: WithFalse<String>;
|
|
style?: CSSProperties;
|
|
className?: string;
|
|
}
|
|
declare const FooterView: React.FC<FooterProps>;
|
|
export default FooterView;
|