@lctafrica/ui 1.0.7 → 1.0.8

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.
@@ -2,5 +2,5 @@ type BackButtonProps = {
2
2
  onClick?(): void;
3
3
  className?: string;
4
4
  };
5
- export default function BackButton({ onClick, className }: BackButtonProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function BackButton({ onClick, className }: BackButtonProps): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react-vite';
2
- import { default as BackButton } from './BackButton';
2
+ import { BackButton } from './BackButton';
3
3
  declare const meta: Meta<typeof BackButton>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof BackButton>;
@@ -2,5 +2,5 @@ type CloseButtonProps = {
2
2
  onClick(): void;
3
3
  className?: string;
4
4
  };
5
- export default function CloseButton({ onClick, className }: CloseButtonProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function CloseButton({ onClick, className }: CloseButtonProps): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react-vite';
2
- import { default as CloseButton } from './CloseButton';
2
+ import { CloseButton } from './CloseButton';
3
3
  declare const meta: Meta<typeof CloseButton>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof CloseButton>;