@aic-kits/react 0.32.1 → 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.
- package/LICENSE.md +5 -5
- package/dist/components/Header/HeaderLogo.d.ts +1 -0
- package/dist/components/Header/types.d.ts +4 -0
- package/dist/index.cjs +151 -151
- package/dist/index.js +6850 -6629
- package/package.json +2 -2
package/LICENSE.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files.
|
|
@@ -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
|
*/
|