UNPKG

cornell-glue-ui

Version:

Glue UI is Cornell WebDev's centralized UI component library. It implements our design system and serves as a single source of truth for React components used within our projects.

16 lines (15 loc) 335 B
import React from 'react'; interface IRoute { label: string; url: string; } interface INav { heading?: string; routes: IRoute[]; } interface IFooterProps { logo?: React.ReactNode; navs?: INav[]; } export declare const Footer: ({ logo, navs }: IFooterProps) => JSX.Element; export default Footer;