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.

23 lines (22 loc) 548 B
export interface AccessibleLinkProps { /** * An array of links for the accessible links section at the top of the page, for things like accessibility message and feedback form */ AccessibleLinksArray?: Array<AccessibleLinkProp>; includeSkipToMainContent?: boolean; listItem?: boolean; } export interface AccessibleLinkProp { /** * Title of the link */ title: string; /** * URL of the link */ url: string; /** * Is the link to an external website? */ isExternal?: boolean; }