UNPKG

@c15t/react

Version:

Developer-first CMP for React: cookie banner, consent manager, preferences centre. GDPR ready with minimal setup and rich customization

19 lines 737 B
import type { ThemeValue } from '../../types/theme'; import type { ConsentManagerWidgetTheme } from '../consent-manager-widget/theme'; /** * Configuration object for styling different parts of the ConsentManagerWidget component. * @public */ export type ConsentManagerDialogTheme = Partial<{ /** @remarks Styles for the root container element */ dialog: ThemeValue; /** @remarks Styles for the root container element */ 'dialog.root': ThemeValue; 'dialog.header': ThemeValue; 'dialog.title': ThemeValue; 'dialog.description': ThemeValue; 'dialog.content': ThemeValue; 'dialog.footer': ThemeValue; 'dialog.overlay': ThemeValue; } & ConsentManagerWidgetTheme>; //# sourceMappingURL=theme.d.ts.map