@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) • 485 B
TypeScript
export interface PromotedLinksProps {
/**
* The main promoted links, an array that should be from 1-4, preferably 3
*/
promotedLinksArray: Array<PromotedLinkProp>;
/**
* One column layout
*/
oneCol?: boolean;
}
export interface PromotedLinkProp {
/**
* The title of the link
*/
title: string;
/**
* The url of the link
*/
url: string;
/**
* The key of the icon (optional)
*/
iconKey?: string;
}