@mindly/ui-components 5.5.0 → 5.6.1

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,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconSpinner: FC<React.SVGAttributes<SVGElement>>;
@@ -29,3 +29,4 @@ export * from './IconVisible';
29
29
  export * from './IconApple';
30
30
  export * from './IconGoogle';
31
31
  export * from './IconLetter';
32
+ export * from './IconSpinner';
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ type SpinnerProps = {
3
+ size?: number;
4
+ };
5
+ declare const Spinner_v2: FC<SpinnerProps>;
6
+ export default Spinner_v2;
@@ -0,0 +1 @@
1
+ export { default as Spinner_v2 } from './Spinner_v2';
@@ -16,3 +16,4 @@ export * from './Rating';
16
16
  export * from './IconButton';
17
17
  export * from './Toast';
18
18
  export * from './ScreenInput';
19
+ export * from './Spinner_v2';