UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

16 lines (15 loc) 604 B
export interface BrandBannerProps { /** Banner state seal src. * To ensure sufficient color contrast, pass in the gray seal for light bgTheme and the white seal for dark bgTheme. */ seal?: string; /** Banner text */ text?: string; /** Whether to include seal */ hasSeal?: boolean; /** Background color option */ bgColor?: "" | "c-primary" | "c-primary-alt" | "c-gray"; /** Background color theme */ bgTheme?: "" | "light" | "dark"; } declare const BrandBanner: ({ hasSeal, bgTheme, bgColor, seal, text }: BrandBannerProps) => any; export default BrandBanner;