@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
15 lines (14 loc) • 663 B
TypeScript
import { default as React } from 'react';
import { ISocialMediaItem, IPolicy, ISupportedBy } from '../interfaces/IFooter';
import { INestedMenuItem } from '../interfaces/IMenu';
export interface FooterProps {
menu: INestedMenuItem[];
copyright?: string;
policyLinks?: IPolicy[];
socialMedia?: ISocialMediaItem[];
socialMediaGrow?: boolean;
supportedBy?: ISupportedBy[];
supportedByTitle?: string;
newsletterSlot?: React.ReactNode;
}
export declare function Footer({ menu, copyright, policyLinks, socialMedia, supportedBy, supportedByTitle, newsletterSlot, socialMediaGrow, }: FooterProps): import("react/jsx-runtime").JSX.Element;