@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.
27 lines (26 loc) • 554 B
TypeScript
export interface ImageProps {
/**
* The large image url
*/
imageLarge: string;
/**
* The small image url
*/
imageSmall: string;
/**
* The image alt text to describe the image
*/
imageAltText?: string | null;
/**
* The image ratio, either '4by3' or '16by9'
*/
ratio: string;
/**
* The optional image caption that goes under the image
*/
caption?: string | null;
/**
* Set to true to have following text wrap against image
*/
wrapText?: boolean;
}