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.
19 lines (18 loc) • 518 B
TypeScript
export interface NewsArticleImageProps {
/**
* The url of the image
*/
image1440x810: string;
/**
* The url of the image in 10x smaller for lazy loading
*/
image144x81: string;
/**
* Optional alt text for the image - this should only be included if the image contains content that is important to users and not purely decorative
*/
imageAltText?: string;
/**
* An optional caption to be presented underneath the image
*/
imageCaption?: string;
}