@mindly/ui-components 4.3.1 → 4.3.3

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.
@@ -3,5 +3,5 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
3
3
  size?: number | string;
4
4
  color?: string;
5
5
  }
6
- export declare function IconCheckboxUnChecked({ color, size, ...other }: IconProps): JSX.Element;
6
+ export declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps): JSX.Element;
7
7
  export {};
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare const iconLanguage: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default iconLanguage;
@@ -0,0 +1,3 @@
1
+ export * from './iconCheckboxChecked';
2
+ export * from './iconCheckboxUnchecked';
3
+ export * from './iconLanguage';
@@ -0,0 +1 @@
1
+ export * from './icons';
@@ -1,3 +1,4 @@
1
1
  export * from './ui';
2
2
  export * from './providers';
3
3
  export * from './hooks';
4
+ export * from './assets';
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryObj } from '@storybook/react';
2
- import AppHeader_v2 from './index';
2
+ import { AppHeader_v2 } from './index';
3
3
  declare const meta: Meta<typeof AppHeader_v2>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof AppHeader_v2>;
@@ -1 +1 @@
1
- export { default } from './AppHeader_v2';
1
+ export { default as AppHeader_v2 } from './AppHeader_v2';