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.

23 lines (22 loc) 521 B
export interface MaxWidthContainerProps { /** * Any unique class names to apply to the page container outer div */ classes?: string; /** * Remove background colour */ noBackground?: boolean; /** * Remove bottom padding */ noPadding?: boolean; /** * Allow overflow to be visible in inner div (only makes sense with padding allowed) */ overflowVisible?: boolean; /** * The MaxWidthContainer contents */ children?: React.ReactNode; }