@aic-kits/react 0.32.0 → 0.33.0

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.
@@ -1,5 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  interface HeaderLogoProps {
3
+ logo?: string;
3
4
  onLogoClick?: () => void;
4
5
  }
5
6
  export declare const HeaderLogo: React.FC<HeaderLogoProps>;
@@ -43,6 +43,10 @@ export interface HeaderProps extends BoxProps {
43
43
  * Background color of the header
44
44
  */
45
45
  backgroundColor?: Color;
46
+ /**
47
+ * Logo to display in the header
48
+ */
49
+ logo?: string;
46
50
  /**
47
51
  * Navigation items to display in the center of the header
48
52
  */