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) • 446 B
TypeScript
export interface AlertBannerServiceProps {
/**
* The optional title of this alert banner
*/
title?: string;
/**
* Set to true for additional margin above the alert banner
*/
hasTopSpacing?: boolean;
/**
* The type of alert banner
*/
alertType?: 'alert' | 'warning' | 'positive' | 'london_bridge';
/**
* All child content for the alert banner
*/
children: React.ReactNode;
}