UNPKG

@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.

16 lines (15 loc) 350 B
import { ImageProps } from '../Image/Image.types'; export interface ImageAndTextProps { /** * An optional heading */ heading?: string | null; /** * The string of html text content */ textContent: string; /** * The image, containing the paths, alt text and caption */ image?: ImageProps | null; }