northants-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.
21 lines (20 loc) • 484 B
TypeScript
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>;
}
export interface AccessibleLinkProp {
/**
* Title of the link
*/
title: string;
/**
* URL of the link
*/
url: string;
/**
* Is the link to an external website?
*/
isExternal?: boolean;
}