UNPKG

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.

37 lines (36 loc) 760 B
export interface PromoTabsProps { /** * The promo tiles to show */ promos: Array<PromoProps>; } export interface PromoProps { /** * The title of the promo */ title: string; /** * Basic HTML content (no embedded slices) for the promo main body */ content: string; /** * Text for the call to action link */ callToActionText: string; /** * URL for the call to action link */ callToActionURL: string; /** * Medium image (larger only used by main promo banner) */ imageMedium: string; /** * Small placeholder image for lazy loading medium image */ imageSmall: string; /** * Alt text for image */ imageAltText?: string; }