prometeo-design-system 2.7.2 → 2.7.4
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/Icons/Icons.d.ts +7 -0
- package/dist/Icons.es.js +389 -270
- package/dist/prometeo-design-system.css +1 -1
- package/package.json +1 -1
package/dist/Icons/Icons.d.ts
CHANGED
|
@@ -59,6 +59,13 @@ declare const Icons: {
|
|
|
59
59
|
readonly Email: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
60
60
|
readonly Download: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
61
61
|
readonly Reload: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
62
|
+
readonly Image: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
63
|
+
readonly DocumentFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
64
|
+
readonly Company: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
65
|
+
readonly EditFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
66
|
+
readonly TrashFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
67
|
+
readonly MessageSquareFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
68
|
+
readonly UserAddFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
62
69
|
};
|
|
63
70
|
export { Icons };
|
|
64
71
|
export type IconName = keyof typeof Icons;
|