@mindly/ui-components 8.14.1 → 8.14.2

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,8 @@
1
+ import React from 'react';
2
+ import { WithTranslation } from 'react-i18next';
3
+ export type EmptyReviewProps = {
4
+ containerClassName?: string;
5
+ t?: WithTranslation['t'];
6
+ };
7
+ declare const EmptyReview: React.FC<EmptyReviewProps>;
8
+ export default EmptyReview;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import EmptyReview from './EmptyReview';
3
+ declare const meta: Meta<typeof EmptyReview>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof EmptyReview>;
6
+ export declare const Default: Story;
@@ -0,0 +1 @@
1
+ export { default as EmptyReview } from './EmptyReview';
@@ -59,3 +59,4 @@ export * from './IconInfoCard';
59
59
  export * from './StepList';
60
60
  export * from './OnboardingAnswersContent';
61
61
  export * from './Toggle';
62
+ export * from './EmptyReview';