@modul/mbui 1.0.0-beta-iconfile-6ab1e575 → 1.0.0-beta-iconfile-f1de2d02

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.
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ declare const SvgDoubleTick: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgDoubleTick;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ declare const SvgTick: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgTick;
@@ -70,3 +70,5 @@ export { default as Warning } from './Warning';
70
70
  export { default as Logout } from './Logout';
71
71
  export { default as Check } from './Check';
72
72
  export { default as CheckSmall } from './CheckSmall';
73
+ export { default as Tick } from './Tick';
74
+ export { default as DoubleTick } from './DoubleTick';