@rsksmart/rif-ui
Version:
Exposes common components to be re used in RIF projects
14 lines (13 loc) • 385 B
TypeScript
import { FC } from 'react';
import { NavLinkProps } from 'react-router-dom';
export interface FooterColumnProps {
className?: string;
links: FooterLinkProps[];
title: string;
}
export interface FooterLinkProps extends NavLinkProps {
isExternal?: boolean;
title: string;
}
declare const FooterColumn: FC<FooterColumnProps>;
export default FooterColumn;