@stenajs-webui/panels 20.4.0 → 20.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,7 +20,9 @@ export interface NotificationHeaderProps {
20
20
  /** Mark the notification as unread */
21
21
  unread?: boolean;
22
22
  /** Notification variant. Will affect icon bg color */
23
- variant: NotificationVariant;
23
+ variant?: NotificationVariant;
24
+ /** Icon background color. Will override other icon bg color */
25
+ iconBackgroundColor?: CssPropColor;
24
26
  }
25
27
  export declare const NotificationHeader: React.FC<NotificationHeaderProps>;
26
- export declare const getIconBgColor: (unread: boolean, variant: NotificationVariant) => CssPropColor | undefined;
28
+ export declare const getIconBgColorFromVariant: (unread: boolean, variant?: NotificationVariant) => CssPropColor | undefined;