@inntechcorp/it-design 2.0.70 → 2.0.72

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.
@@ -20,3 +20,4 @@ export { default as UniUpperCase } from './string/UniUpperCase';
20
20
  export { default as FormatBytes } from './binary/FormatBytes';
21
21
  export { default as GetTypeByFileType } from './binary/GetTypeByFileType';
22
22
  export { default as Wait } from './promise/Wait';
23
+ export { default as SVGLoader } from './svg/SVGLoader';
@@ -0,0 +1,2 @@
1
+ declare const SVGLoader: (path: string, width?: string | number, height?: string | number) => void;
2
+ export default SVGLoader;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
3
+ $width?: string | number | undefined;
4
+ $height?: string | number | undefined;
5
+ }>> & string;
6
+ export { Wrapper };