@mindly/ui-components 8.2.31 → 8.2.33

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
+ interface AdvisorAssistFeatureProps {
2
+ variant: 'icon' | 'full';
3
+ title: string;
4
+ subtitle: string;
5
+ unreadMessagesCount?: number;
6
+ }
7
+ declare function AdvisorAssistFeature({ variant, title, subtitle, unreadMessagesCount, }: AdvisorAssistFeatureProps): import("react/jsx-runtime").JSX.Element;
8
+ export default AdvisorAssistFeature;
@@ -0,0 +1 @@
1
+ export { default as AdvisorAssistFeature } from './AdvisorAssistFeature';
@@ -56,3 +56,4 @@ export * from './CoupleTherapySheetModalFeature';
56
56
  export * from './PromptCardsFeature';
57
57
  export * from './ExploreCardSwiperFeature';
58
58
  export * from './Charts';
59
+ export * from './AdvisorAssistFeature';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconAdvisorAssistance: FC<IconProps>;
@@ -154,3 +154,4 @@ export * from './IconCreditScore';
154
154
  export * from './IconAddCalendar';
155
155
  export * from './IconBlock';
156
156
  export * from './IconGoogleCalendar';
157
+ export * from './IconAdvisorAssistance';