@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
21 lines (20 loc) • 658 B
TypeScript
export interface FooterLinksProps {
/** The columns of the nav links */
items: FooterLinksNavProps[];
}
declare const FooterLinks: (footerLinks: FooterLinksProps) => any;
export interface FooterLinksNavProps {
/** The text for the heading above the column of links, visually hidden from users */
heading: string;
/** The heading level above the column of links, default to 2 */
headingLevel?: number;
/** The links in the column */
links: FooterLinkProps[];
}
export interface FooterLinkProps {
/** The URL for the link */
href: string;
/** The text for the link */
text: string;
}
export default FooterLinks;