@veeqo/ui 0.1.4 → 0.1.6

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.
@@ -2,6 +2,7 @@ import React, { ReactEventHandler, ReactNode, ReactElement } from 'react';
2
2
  import { BannerTypes } from './types';
3
3
  type BannerProps = {
4
4
  type?: BannerTypes;
5
+ backgroundColor?: string;
5
6
  text?: string;
6
7
  icon?: ReactElement;
7
8
  onClose?: ReactEventHandler;
@@ -12,5 +13,5 @@ type BannerProps = {
12
13
  /**
13
14
  * The `Banner` component was previously called `Alert` (and similarly `Pill`).
14
15
  */
15
- export declare const Banner: ({ type, text, icon, onClose, className, header, children, }: BannerProps) => React.JSX.Element;
16
+ export declare const Banner: ({ type, text, icon, onClose, className, header, children, backgroundColor, }: BannerProps) => React.JSX.Element;
16
17
  export {};
@@ -4,4 +4,5 @@ export type PillProps = {
4
4
  children?: ReactNode;
5
5
  className?: string;
6
6
  accentColor?: string;
7
+ backgroundColor?: string;
7
8
  };