UNPKG

@nnc-digital/nnc-design-system

Version:

Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.

25 lines (24 loc) 494 B
export interface FooterProps { /** * An array of links for the bottom of the footer, for things like cookie and privacy policies */ footerLinksArray?: Array<FooterLinkProp>; /** * The year for the copyright */ year?: string; } export interface FooterLinkProp { /** * Title of the link */ title: string; /** * URL of the link */ url: string; /** * Is the link to an external website? */ isExternal?: boolean; }