@rsksmart/rif-ui
Version:
Exposes common components to be re used in RIF projects
10 lines (9 loc) • 337 B
TypeScript
import { FC, HTMLAttributes } from 'react';
import { FooterColumnProps } from '../molecules/FooterColumn';
export interface FooterProps extends HTMLAttributes<HTMLElement> {
className?: string;
copyrightText: string;
linksColumns: FooterColumnProps[];
}
declare const Footer: FC<FooterProps>;
export default Footer;