linkedunion-design-kit 1.11.4 → 1.11.5
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/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as LUIcon } from "./src/components/Icons/LUIcon";
|
|
2
|
+
export type { IconName } from "./src/components/Icons/type";
|
|
2
3
|
export { default as Card } from "./src/components/Card/card";
|
|
3
4
|
export { default as LuImage } from "./src/components/Images/LuImage";
|
|
4
5
|
export { default as Title } from "./src/components/Title/Title";
|
|
@@ -3,6 +3,7 @@ import { iconSize, iconWithBgColor, IconShape } from ".";
|
|
|
3
3
|
export type iconSize = keyof typeof iconSize;
|
|
4
4
|
export type shape = keyof typeof IconShape;
|
|
5
5
|
export type color = keyof typeof iconWithBgColor;
|
|
6
|
+
export type IconName = keyof typeof iconList;
|
|
6
7
|
export interface IconProps extends React.HTMLAttributes<HTMLOrSVGElement> {
|
|
7
8
|
size?: iconSize;
|
|
8
9
|
icon: keyof typeof iconList;
|