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.
41 lines (40 loc) • 759 B
TypeScript
export interface BlockLinksProps {
/**
* The title for the link block
*/
title?: string | null;
/**
* An array of links
*/
links: BlockLink[];
/**
* The optional alt text
*/
imageAltText?: string | null;
/**
* The optional small image url
*/
imageSmall?: string | null;
/**
* The optional large image url
*/
imageLarge?: string | null;
}
export interface BlockLink {
/**
* Unique identifier for the block link
*/
id: string;
/**
* The url for the link
*/
url: string;
/**
* The text for the link
*/
title: string;
/**
* The optional summary text to describe the link
*/
summary?: string | null;
}