@mindly/ui-components 3.61.0 → 3.62.0

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.
@@ -177,3 +177,5 @@ export { default as ReviewStatistics } from './lib/SpecialistProfile/ReviewStati
177
177
  export * from './lib/SpecialistProfile/ReviewStatistics';
178
178
  export { default as ReviewSwiperSection } from './lib/ReviewSwiperSection';
179
179
  export * from './lib/ReviewSwiperSection';
180
+ export { default as FrequentlyAskedQuestions } from './lib/FrequentlyAskedQuestions';
181
+ export * from './lib/FrequentlyAskedQuestions';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ declare type FrequentlyAskedQuestions = {
3
+ text: string;
4
+ alignment: 'right' | 'center' | 'left';
5
+ };
6
+ declare const FrequentlyAskedQuestions: React.FC<FrequentlyAskedQuestions>;
7
+ export default FrequentlyAskedQuestions;
@@ -0,0 +1 @@
1
+ export { default } from './FrequentlyAskedQuestions';