medos-sdk 1.1.11 → 1.1.13

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.
Files changed (195) hide show
  1. package/dist/client/MedosClient.js +1 -1
  2. package/dist/components/appointment-booking/AppointmentCalender.js +10 -72
  3. package/dist/components/appointment-booking/appointment-modal-styles.d.ts +272 -0
  4. package/dist/components/appointment-booking/appointment-modal-styles.js +419 -0
  5. package/dist/components/appointment-booking/components/AppointmentConfirmationStep.d.ts +28 -0
  6. package/dist/components/appointment-booking/components/AppointmentConfirmationStep.js +107 -0
  7. package/dist/components/appointment-booking/components/AppointmentDateTimeModal.d.ts +18 -0
  8. package/dist/components/appointment-booking/components/AppointmentDateTimeModal.js +306 -0
  9. package/dist/components/appointment-booking/components/AppointmentSummaryStep.d.ts +12 -0
  10. package/dist/components/appointment-booking/components/AppointmentSummaryStep.js +194 -0
  11. package/dist/components/appointment-booking/components/BookingOptionStep.d.ts +14 -0
  12. package/dist/components/appointment-booking/components/BookingOptionStep.js +350 -0
  13. package/dist/components/appointment-booking/components/DoctorSelectModal.d.ts +14 -0
  14. package/dist/components/appointment-booking/components/DoctorSelectModal.js +213 -0
  15. package/dist/components/appointment-booking/components/PatientDetailsStep.d.ts +3 -0
  16. package/dist/components/appointment-booking/components/PatientDetailsStep.js +96 -0
  17. package/dist/components/appointment-booking/components/PatientSelectionStep.d.ts +12 -0
  18. package/dist/components/appointment-booking/components/PatientSelectionStep.js +254 -0
  19. package/dist/components/appointment-booking/components/PhoneVerificationStep.d.ts +3 -0
  20. package/dist/components/appointment-booking/components/PhoneVerificationStep.js +49 -0
  21. package/dist/components/appointment-booking/components/SuccessStep.d.ts +5 -0
  22. package/dist/components/appointment-booking/components/SuccessStep.js +9 -0
  23. package/dist/components/appointment-booking/components/index.d.ts +9 -0
  24. package/dist/components/appointment-booking/components/index.js +9 -0
  25. package/dist/components/appointment-booking/hooks/useAppointmentFlow.js +1 -0
  26. package/dist/components/appointment-booking/index.d.ts +2 -4
  27. package/dist/components/appointment-booking/index.js +2 -2
  28. package/dist/components/appointment-booking/types.d.ts +4 -0
  29. package/dist/components/constants/constant.d.ts +2 -0
  30. package/dist/components/constants/constant.js +15 -0
  31. package/dist/components/constants/index.d.ts +3 -0
  32. package/dist/components/constants/index.js +24 -0
  33. package/dist/components/constants/options.d.ts +13 -0
  34. package/dist/components/constants/options.js +35 -0
  35. package/dist/components/constants/validation.d.ts +6 -0
  36. package/dist/components/constants/validation.js +16 -0
  37. package/dist/components/enquiry-form/EnquiryForm.d.ts +7 -0
  38. package/dist/components/enquiry-form/EnquiryForm.js +238 -0
  39. package/dist/components/enquiry-form/components/ContactInformationStep.d.ts +13 -0
  40. package/dist/components/enquiry-form/components/ContactInformationStep.js +21 -0
  41. package/dist/components/enquiry-form/components/ContactPreferenceStep.d.ts +9 -0
  42. package/dist/components/enquiry-form/components/ContactPreferenceStep.js +20 -0
  43. package/dist/components/enquiry-form/components/InquiryDetailsStep.d.ts +10 -0
  44. package/dist/components/enquiry-form/components/InquiryDetailsStep.js +20 -0
  45. package/dist/components/enquiry-form/components/index.d.ts +3 -0
  46. package/dist/components/enquiry-form/components/index.js +3 -0
  47. package/dist/components/enquiry-form/index.d.ts +2 -0
  48. package/dist/components/enquiry-form/index.js +2 -0
  49. package/dist/components/index.d.ts +7 -0
  50. package/dist/components/index.js +7 -0
  51. package/dist/components/shared/icons/Check.d.ts +6 -0
  52. package/dist/components/shared/icons/Check.js +2 -0
  53. package/dist/components/shared/icons/ChevronDownIcon.d.ts +4 -0
  54. package/dist/components/shared/icons/ChevronDownIcon.js +2 -0
  55. package/dist/components/shared/icons/ChevronLeft.d.ts +3 -0
  56. package/dist/components/shared/icons/ChevronLeft.js +3 -0
  57. package/dist/components/shared/icons/ChevronRight.d.ts +3 -0
  58. package/dist/components/shared/icons/ChevronRight.js +3 -0
  59. package/dist/components/shared/icons/CloseIcon.d.ts +9 -0
  60. package/dist/components/shared/icons/CloseIcon.js +5 -0
  61. package/dist/components/shared/icons/ConfirmationCheck.d.ts +1 -0
  62. package/dist/components/shared/icons/ConfirmationCheck.js +9 -0
  63. package/dist/components/shared/icons/ConsultationType.d.ts +1 -0
  64. package/dist/components/shared/icons/ConsultationType.js +2 -0
  65. package/dist/components/shared/icons/Date&TimeIcon.d.ts +1 -0
  66. package/dist/components/shared/icons/Date&TimeIcon.js +2 -0
  67. package/dist/components/shared/icons/MapIcon.d.ts +1 -0
  68. package/dist/components/shared/icons/MapIcon.js +2 -0
  69. package/dist/components/shared/icons/MedosLogo.d.ts +3 -0
  70. package/dist/components/shared/icons/MedosLogo.js +3 -0
  71. package/dist/components/shared/icons/PaymentMethodIcon.d.ts +1 -0
  72. package/dist/components/shared/icons/PaymentMethodIcon.js +2 -0
  73. package/dist/components/shared/icons/SuccessIcon.d.ts +8 -0
  74. package/dist/components/shared/icons/SuccessIcon.js +14 -0
  75. package/dist/components/shared/icons/UserIcon.d.ts +1 -0
  76. package/dist/components/shared/icons/UserIcon.js +2 -0
  77. package/dist/components/shared/icons/index.d.ts +13 -0
  78. package/dist/components/shared/icons/index.js +13 -0
  79. package/dist/components/shared/index.d.ts +2 -0
  80. package/dist/components/shared/index.js +2 -0
  81. package/dist/components/shared/ui/Calendar.d.ts +5 -0
  82. package/dist/components/shared/ui/Calendar.js +167 -0
  83. package/dist/components/shared/ui/SelectDropdown.d.ts +41 -0
  84. package/dist/components/shared/ui/SelectDropdown.js +301 -0
  85. package/dist/components/shared/ui/index.d.ts +2 -0
  86. package/dist/components/shared/ui/index.js +2 -0
  87. package/dist/components/styles/appointment.d.ts +4 -0
  88. package/dist/components/styles/appointment.js +220 -0
  89. package/dist/components/styles/enquiry.d.ts +2 -0
  90. package/dist/components/styles/enquiry.js +3 -0
  91. package/dist/components/styles/index.d.ts +2 -0
  92. package/dist/components/styles/index.js +2 -0
  93. package/dist/components/styles/shared.d.ts +3 -0
  94. package/dist/components/styles/shared.js +78 -0
  95. package/dist/components/styles.d.ts +1 -6
  96. package/dist/components/styles.js +1 -298
  97. package/dist/components/theme-styles.js +18 -0
  98. package/dist/components/types/appointment.d.ts +42 -0
  99. package/dist/components/types/appointment.js +1 -0
  100. package/dist/components/types/common.d.ts +24 -0
  101. package/dist/components/types/common.js +1 -0
  102. package/dist/components/types/enquiry.d.ts +59 -0
  103. package/dist/components/types/enquiry.js +1 -0
  104. package/dist/components/types/index.d.ts +4 -0
  105. package/dist/components/types/index.js +4 -0
  106. package/dist/components/types.d.ts +1 -54
  107. package/dist/components/types.js +1 -38
  108. package/dist/components/utils/date.d.ts +4 -0
  109. package/dist/components/utils/date.js +65 -0
  110. package/dist/components/utils/formatting.d.ts +4 -0
  111. package/dist/components/utils/formatting.js +9 -0
  112. package/dist/components/utils/index.d.ts +3 -0
  113. package/dist/components/utils/index.js +3 -0
  114. package/dist/components/utils/validation.d.ts +4 -0
  115. package/dist/components/utils/validation.js +37 -0
  116. package/dist/components/utils.d.ts +1 -8
  117. package/dist/components/utils.js +1 -74
  118. package/dist/components/validation.d.ts +1 -4
  119. package/dist/components/validation.js +1 -48
  120. package/dist/constants/index.d.ts +1 -1
  121. package/dist/constants/index.js +1 -1
  122. package/dist/index.d.ts +2 -2
  123. package/dist/index.js +1 -1
  124. package/dist/react/index.d.ts +3 -3
  125. package/dist/react/index.js +1 -1
  126. package/dist/services/AppointmentService.js +26 -9
  127. package/dist/services/AuthService.js +1 -1
  128. package/dist/vanilla/AppointmentCalendarWidget.d.ts +8 -0
  129. package/dist/vanilla/AppointmentCalendarWidget.js +598 -20
  130. package/dist/vanilla/components/appointment-booking/appointment-modal-styles.d.ts +272 -0
  131. package/dist/vanilla/components/appointment-booking/components/AppointmentConfirmationStep.d.ts +28 -0
  132. package/dist/vanilla/components/appointment-booking/components/AppointmentDateTimeModal.d.ts +18 -0
  133. package/dist/vanilla/components/appointment-booking/components/AppointmentSummaryStep.d.ts +12 -0
  134. package/dist/vanilla/components/appointment-booking/components/BookingOptionStep.d.ts +14 -0
  135. package/dist/vanilla/components/appointment-booking/components/DoctorSelectModal.d.ts +14 -0
  136. package/dist/vanilla/components/appointment-booking/components/PatientDetailsStep.d.ts +3 -0
  137. package/dist/vanilla/components/appointment-booking/components/PatientSelectionStep.d.ts +12 -0
  138. package/dist/vanilla/components/appointment-booking/components/PhoneVerificationStep.d.ts +3 -0
  139. package/dist/vanilla/components/appointment-booking/components/SuccessStep.d.ts +5 -0
  140. package/dist/vanilla/components/appointment-booking/components/index.d.ts +9 -0
  141. package/dist/vanilla/components/appointment-booking/index.d.ts +2 -4
  142. package/dist/vanilla/components/appointment-booking/types.d.ts +4 -0
  143. package/dist/vanilla/components/constants/constant.d.ts +2 -0
  144. package/dist/vanilla/components/constants/index.d.ts +3 -0
  145. package/dist/vanilla/components/constants/options.d.ts +13 -0
  146. package/dist/vanilla/components/constants/validation.d.ts +6 -0
  147. package/dist/vanilla/components/enquiry-form/EnquiryForm.d.ts +7 -0
  148. package/dist/vanilla/components/enquiry-form/components/ContactInformationStep.d.ts +13 -0
  149. package/dist/vanilla/components/enquiry-form/components/ContactPreferenceStep.d.ts +9 -0
  150. package/dist/vanilla/components/enquiry-form/components/InquiryDetailsStep.d.ts +10 -0
  151. package/dist/vanilla/components/enquiry-form/components/index.d.ts +3 -0
  152. package/dist/vanilla/components/enquiry-form/index.d.ts +2 -0
  153. package/dist/vanilla/components/index.d.ts +7 -3
  154. package/dist/vanilla/components/shared/icons/Check.d.ts +6 -0
  155. package/dist/vanilla/components/shared/icons/ChevronDownIcon.d.ts +4 -0
  156. package/dist/vanilla/components/shared/icons/ChevronLeft.d.ts +3 -0
  157. package/dist/vanilla/components/shared/icons/ChevronRight.d.ts +3 -0
  158. package/dist/vanilla/components/shared/icons/CloseIcon.d.ts +9 -0
  159. package/dist/vanilla/components/shared/icons/ConfirmationCheck.d.ts +1 -0
  160. package/dist/vanilla/components/shared/icons/ConsultationType.d.ts +1 -0
  161. package/dist/vanilla/components/shared/icons/Date&TimeIcon.d.ts +1 -0
  162. package/dist/vanilla/components/shared/icons/MapIcon.d.ts +1 -0
  163. package/dist/vanilla/components/shared/icons/MedosLogo.d.ts +3 -0
  164. package/dist/vanilla/components/shared/icons/PaymentMethodIcon.d.ts +1 -0
  165. package/dist/vanilla/components/shared/icons/SuccessIcon.d.ts +8 -0
  166. package/dist/vanilla/components/shared/icons/UserIcon.d.ts +1 -0
  167. package/dist/vanilla/components/shared/icons/index.d.ts +13 -0
  168. package/dist/vanilla/components/shared/index.d.ts +2 -0
  169. package/dist/vanilla/components/shared/ui/Calendar.d.ts +5 -0
  170. package/dist/vanilla/components/shared/ui/SelectDropdown.d.ts +41 -0
  171. package/dist/vanilla/components/shared/ui/index.d.ts +2 -0
  172. package/dist/vanilla/components/styles/appointment.d.ts +4 -0
  173. package/dist/vanilla/components/styles/enquiry.d.ts +2 -0
  174. package/dist/vanilla/components/styles/index.d.ts +2 -0
  175. package/dist/vanilla/components/styles/shared.d.ts +3 -0
  176. package/dist/vanilla/components/styles.d.ts +1 -6
  177. package/dist/vanilla/components/types/appointment.d.ts +42 -0
  178. package/dist/vanilla/components/types/common.d.ts +24 -0
  179. package/dist/vanilla/components/types/enquiry.d.ts +59 -0
  180. package/dist/vanilla/components/types/index.d.ts +4 -0
  181. package/dist/vanilla/components/types.d.ts +1 -54
  182. package/dist/vanilla/components/utils/date.d.ts +4 -0
  183. package/dist/vanilla/components/utils/formatting.d.ts +4 -0
  184. package/dist/vanilla/components/utils/index.d.ts +3 -0
  185. package/dist/vanilla/components/utils/validation.d.ts +4 -0
  186. package/dist/vanilla/components/utils.d.ts +1 -8
  187. package/dist/vanilla/components/validation.d.ts +1 -4
  188. package/dist/vanilla/constants/index.d.ts +1 -1
  189. package/dist/vanilla/enquiry-widget.js +3277 -56
  190. package/dist/vanilla/index.d.ts +2 -2
  191. package/dist/vanilla/react/index.d.ts +3 -3
  192. package/dist/vanilla/vanilla/AppointmentCalendarWidget.d.ts +8 -0
  193. package/dist/vanilla/widget.css +214 -0
  194. package/dist/vanilla/widget.js +4047 -187
  195. package/package.json +2 -2
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { EnquirySubmission } from "../../enquiry-form/types";
3
+ export interface EnquiryFormProps {
4
+ onSuccess?: (enquiry: EnquirySubmission) => void;
5
+ onError?: (error: Error) => void;
6
+ }
7
+ export declare const EnquiryForm: React.FC<EnquiryFormProps>;
@@ -0,0 +1,238 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React, { useReducer, useCallback } from "react";
3
+ import { EnquiryService } from "../../services/EnquiryService";
4
+ import { validateName, validateEmail, validatePhoneNumber, validateSubject, validateMessage, validateCountryCode, } from "../../enquiry-form/validation";
5
+ import { ContactInformationStep, InquiryDetailsStep, ContactPreferenceStep, } from "./components";
6
+ import { SuccessStep } from "../appointment-booking/components";
7
+ import { useTheme } from "../../react/hooks/useTheme";
8
+ import { useBreakpoint } from "../../core/theme/responsive";
9
+ import { MedosLogo } from "../shared/icons";
10
+ const INITIAL_STATE = {
11
+ step: 0,
12
+ loading: false,
13
+ error: null,
14
+ patientName: "",
15
+ patientEmail: "",
16
+ countryCode: "+91",
17
+ patientPhone: "",
18
+ inquirySubject: "",
19
+ inquiryMessage: "",
20
+ preferredContactMethod: "EMAIL",
21
+ submitted: false,
22
+ };
23
+ const enquiryFormReducer = (state, action) => {
24
+ switch (action.type) {
25
+ case "SET_STEP":
26
+ return { ...state, step: action.payload };
27
+ case "SET_LOADING":
28
+ return { ...state, loading: action.payload };
29
+ case "SET_ERROR":
30
+ return { ...state, error: action.payload };
31
+ case "SET_PATIENT_NAME":
32
+ return { ...state, patientName: action.payload };
33
+ case "SET_PATIENT_EMAIL":
34
+ return { ...state, patientEmail: action.payload };
35
+ case "SET_COUNTRY_CODE":
36
+ return { ...state, countryCode: action.payload };
37
+ case "SET_PATIENT_PHONE":
38
+ return { ...state, patientPhone: action.payload };
39
+ case "SET_INQUIRY_SUBJECT":
40
+ return { ...state, inquirySubject: action.payload };
41
+ case "SET_INQUIRY_MESSAGE":
42
+ return { ...state, inquiryMessage: action.payload };
43
+ case "SET_PREFERRED_CONTACT_METHOD":
44
+ return { ...state, preferredContactMethod: action.payload };
45
+ case "RESET_FORM":
46
+ return INITIAL_STATE;
47
+ default:
48
+ return state;
49
+ }
50
+ };
51
+ export const EnquiryForm = ({ onSuccess, onError, }) => {
52
+ const [state, dispatch] = useReducer(enquiryFormReducer, INITIAL_STATE);
53
+ const validateContactStep = useCallback(() => {
54
+ dispatch({ type: "SET_ERROR", payload: null });
55
+ if (!validateName(state.patientName)) {
56
+ dispatch({
57
+ type: "SET_ERROR",
58
+ payload: "Please enter a valid name.",
59
+ });
60
+ return false;
61
+ }
62
+ if (!validateEmail(state.patientEmail)) {
63
+ dispatch({
64
+ type: "SET_ERROR",
65
+ payload: "Please enter a valid email address.",
66
+ });
67
+ return false;
68
+ }
69
+ if (!validateCountryCode(state.countryCode)) {
70
+ dispatch({
71
+ type: "SET_ERROR",
72
+ payload: "Please enter a valid country code (e.g., +91, +1).",
73
+ });
74
+ return false;
75
+ }
76
+ if (!validatePhoneNumber(state.patientPhone)) {
77
+ dispatch({
78
+ type: "SET_ERROR",
79
+ payload: "Please enter a valid phone number (7-15 digits).",
80
+ });
81
+ return false;
82
+ }
83
+ return true;
84
+ }, [
85
+ state.patientName,
86
+ state.patientEmail,
87
+ state.countryCode,
88
+ state.patientPhone,
89
+ ]);
90
+ const validateInquiryStep = useCallback(() => {
91
+ dispatch({ type: "SET_ERROR", payload: null });
92
+ if (!validateSubject(state.inquirySubject)) {
93
+ dispatch({
94
+ type: "SET_ERROR",
95
+ payload: "Please enter a valid subject.",
96
+ });
97
+ return false;
98
+ }
99
+ if (!validateMessage(state.inquiryMessage)) {
100
+ dispatch({
101
+ type: "SET_ERROR",
102
+ payload: "Please enter a valid message.",
103
+ });
104
+ return false;
105
+ }
106
+ return true;
107
+ }, [state.inquirySubject, state.inquiryMessage]);
108
+ const goToNext = useCallback(() => {
109
+ if (state.step === 0) {
110
+ if (!validateContactStep())
111
+ return;
112
+ }
113
+ else if (state.step === 1) {
114
+ if (!validateInquiryStep())
115
+ return;
116
+ }
117
+ dispatch({ type: "SET_STEP", payload: Math.min(3, state.step + 1) });
118
+ }, [state.step, validateContactStep, validateInquiryStep]);
119
+ const goBack = useCallback(() => {
120
+ dispatch({ type: "SET_STEP", payload: Math.max(0, state.step - 1) });
121
+ }, [state.step]);
122
+ const resetForm = useCallback(() => {
123
+ dispatch({ type: "RESET_FORM" });
124
+ }, []);
125
+ const submitEnquiry = useCallback(async () => {
126
+ dispatch({ type: "SET_ERROR", payload: null });
127
+ if (!validateContactStep() || !validateInquiryStep()) {
128
+ return;
129
+ }
130
+ dispatch({ type: "SET_LOADING", payload: true });
131
+ try {
132
+ const payload = {
133
+ patientName: state.patientName,
134
+ patientEmail: state.patientEmail,
135
+ countryCode: state.countryCode,
136
+ patientPhone: state.patientPhone,
137
+ inquirySubject: state.inquirySubject,
138
+ inquiryMessage: state.inquiryMessage,
139
+ preferredContactMethod: state.preferredContactMethod,
140
+ };
141
+ await EnquiryService.submitEnquiry(payload);
142
+ dispatch({ type: "SET_STEP", payload: 3 });
143
+ onSuccess?.(payload);
144
+ }
145
+ catch (e) {
146
+ const msg = e.message || "Failed to submit enquiry";
147
+ dispatch({ type: "SET_ERROR", payload: msg });
148
+ onError?.(e);
149
+ }
150
+ finally {
151
+ dispatch({ type: "SET_LOADING", payload: false });
152
+ }
153
+ }, [state, validateContactStep, validateInquiryStep]);
154
+ const theme = useTheme();
155
+ const breakpoint = useBreakpoint(theme);
156
+ const styles = React.useMemo(() => getStyles(theme, breakpoint), [theme, breakpoint]);
157
+ return (_jsx("div", { style: styles.container, children: _jsxs("div", { style: styles.card, children: [_jsx("div", { style: styles.header, children: _jsx("h2", { style: styles.title, children: "Submit Inquiry" }) }), _jsxs("div", { style: styles.content, children: [state.loading && _jsx("div", { style: { marginBottom: 12 }, children: "Loading..." }), state.error && _jsx("div", { style: styles.errorMessage, children: state.error }), state.step === 0 && (_jsx(ContactInformationStep, { patientName: state.patientName, patientEmail: state.patientEmail, countryCode: state.countryCode, patientPhone: state.patientPhone, onNameChange: (value) => dispatch({ type: "SET_PATIENT_NAME", payload: value }), onEmailChange: (value) => dispatch({ type: "SET_PATIENT_EMAIL", payload: value }), onCountryCodeChange: (value) => dispatch({ type: "SET_COUNTRY_CODE", payload: value }), onPhoneChange: (value) => dispatch({ type: "SET_PATIENT_PHONE", payload: value }), onNext: goToNext })), state.step === 1 && (_jsx(InquiryDetailsStep, { inquirySubject: state.inquirySubject, inquiryMessage: state.inquiryMessage, onSubjectChange: (value) => dispatch({ type: "SET_INQUIRY_SUBJECT", payload: value }), onMessageChange: (value) => dispatch({ type: "SET_INQUIRY_MESSAGE", payload: value }), onBack: goBack, onNext: goToNext })), state.step === 2 && (_jsx(ContactPreferenceStep, { preferredContactMethod: state.preferredContactMethod, onContactMethodChange: (method) => dispatch({
158
+ type: "SET_PREFERRED_CONTACT_METHOD",
159
+ payload: method,
160
+ }), onBack: goBack, onSubmit: submitEnquiry, isLoading: state.loading })), state.step === 3 && _jsx(SuccessStep, { onReset: resetForm }), _jsxs("div", { style: styles.branding, children: [_jsx("span", { style: styles.poweredBy, children: "Powered by" }), _jsx("a", { href: "https://medos.one", target: "_blank", rel: "noopener noreferrer", children: _jsx(MedosLogo, { style: { height: 50, width: "auto" } }) })] })] })] }) }));
161
+ };
162
+ const getStyles = (theme, breakpoint) => {
163
+ const isMobile = breakpoint === "mobile";
164
+ const isTablet = breakpoint === "tablet";
165
+ return {
166
+ container: {
167
+ display: "flex",
168
+ justifyContent: "center",
169
+ padding: isMobile ? 12 : 20,
170
+ fontFamily: theme.typography.fontFamily,
171
+ background: theme.colors.background,
172
+ },
173
+ card: {
174
+ width: "100%",
175
+ maxWidth: isMobile || isTablet ? "100%" : 600,
176
+ background: theme.colors.surface,
177
+ borderRadius: isMobile ? theme.radii.md : theme.radii.lg,
178
+ boxShadow: isMobile ? theme.shadows.md : theme.shadows.lg,
179
+ overflow: "hidden",
180
+ boxSizing: "border-box",
181
+ },
182
+ header: {
183
+ background: theme.colors.primary,
184
+ padding: isMobile ? "16px 16px" : "20px 24px",
185
+ borderBottom: `1px solid ${theme.colors.border}`,
186
+ display: "flex",
187
+ justifyContent: "space-between",
188
+ alignItems: "center",
189
+ flexWrap: (isMobile ? "wrap" : "nowrap"),
190
+ gap: isMobile ? 8 : 0,
191
+ },
192
+ title: {
193
+ margin: 0,
194
+ fontSize: isMobile
195
+ ? theme.typography.fontSizeLg
196
+ : theme.typography.fontSizeXl,
197
+ fontWeight: theme.typography.fontWeightSemibold,
198
+ color: theme.colors.textOnPrimary,
199
+ },
200
+ stepIndicator: {
201
+ fontSize: isMobile
202
+ ? theme.typography.fontSizeXs
203
+ : theme.typography.fontSizeSm,
204
+ color: theme.colors.textOnPrimary,
205
+ opacity: 0.9,
206
+ margin: 0,
207
+ fontWeight: 500,
208
+ },
209
+ content: {
210
+ padding: isMobile ? 16 : 24,
211
+ },
212
+ errorMessage: {
213
+ marginBottom: 12,
214
+ color: theme.colors.error,
215
+ fontWeight: 600,
216
+ padding: isMobile ? "10px" : "12px",
217
+ background: theme.colors.errorBackground,
218
+ borderRadius: theme.radii.md,
219
+ border: `1px solid ${theme.colors.errorBorder}`,
220
+ fontSize: theme.typography.fontSizeSm,
221
+ },
222
+ branding: {
223
+ display: "flex",
224
+ alignItems: "center",
225
+ justifyContent: "center",
226
+ gap: 8,
227
+ marginTop: isMobile ? 16 : 24,
228
+ paddingTop: isMobile ? 12 : 16,
229
+ borderTop: `1px solid ${theme.colors.border}`,
230
+ opacity: 0.8,
231
+ },
232
+ poweredBy: {
233
+ fontSize: 12,
234
+ color: theme.colors.textSecondary,
235
+ fontWeight: 500,
236
+ },
237
+ };
238
+ };
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ export interface ContactInformationStepProps {
3
+ patientName: string;
4
+ patientEmail: string;
5
+ countryCode: string;
6
+ patientPhone: string;
7
+ onNameChange: (value: string) => void;
8
+ onEmailChange: (value: string) => void;
9
+ onCountryCodeChange: (value: string) => void;
10
+ onPhoneChange: (value: string) => void;
11
+ onNext: () => void;
12
+ }
13
+ export declare const ContactInformationStep: React.FC<ContactInformationStepProps>;
@@ -0,0 +1,21 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from "react";
3
+ import { useTheme } from "../../../react/hooks/useTheme";
4
+ import { useBreakpoint } from "../../../core/theme/responsive";
5
+ import { getContainerStyles, getPhoneVerifyStyles, getButtonStyles, } from "../../theme-styles";
6
+ export const ContactInformationStep = React.memo(({ patientName, patientEmail, countryCode, patientPhone, onNameChange, onEmailChange, onCountryCodeChange, onPhoneChange, onNext, }) => {
7
+ const theme = useTheme();
8
+ const breakpoint = useBreakpoint(theme);
9
+ const PHONE_VERIFY_STYLES = React.useMemo(() => getPhoneVerifyStyles(theme, "medos", breakpoint), [theme, breakpoint]);
10
+ const BUTTON_STYLES = React.useMemo(() => getButtonStyles(theme, "medos", breakpoint), [theme, breakpoint]);
11
+ const CONTAINER_STYLES = React.useMemo(() => getContainerStyles(theme, "medos", breakpoint), [theme, breakpoint]);
12
+ const styles = getStyles(theme);
13
+ return (_jsxs("div", { children: [_jsxs("div", { style: { marginBottom: "16px" }, children: [_jsxs("label", { style: PHONE_VERIFY_STYLES.label, children: ["Name", _jsx("span", { style: styles.mandatory, children: "*" })] }), _jsx("input", { type: "text", value: patientName, onChange: (e) => onNameChange(e.target.value), placeholder: "Enter your full name", style: PHONE_VERIFY_STYLES.phoneInput })] }), _jsxs("div", { style: { marginBottom: "16px" }, children: [_jsx("label", { style: PHONE_VERIFY_STYLES.label, children: "Email" }), _jsx("input", { type: "email", value: patientEmail, onChange: (e) => onEmailChange(e.target.value), placeholder: "Enter your email", style: PHONE_VERIFY_STYLES.phoneInput })] }), _jsxs("div", { style: { marginBottom: "16px" }, children: [_jsxs("label", { style: PHONE_VERIFY_STYLES.label, children: ["Phone Number", _jsx("span", { style: styles.mandatory, children: "*" })] }), _jsxs("div", { style: PHONE_VERIFY_STYLES.phoneInputContainer, children: [_jsx("input", { type: "text", value: countryCode, onChange: (e) => onCountryCodeChange(e.target.value), placeholder: "+91", style: {
14
+ ...PHONE_VERIFY_STYLES.phoneInput,
15
+ width: "80px",
16
+ flex: "none",
17
+ } }), _jsx("input", { type: "tel", value: patientPhone, onChange: (e) => onPhoneChange(e.target.value), placeholder: "Enter phone number", style: PHONE_VERIFY_STYLES.phoneInput })] })] }), _jsx("div", { style: CONTAINER_STYLES.actions, children: _jsx("button", { onClick: onNext, style: BUTTON_STYLES.primary, children: "Next" }) })] }));
18
+ });
19
+ const getStyles = (theme) => ({
20
+ mandatory: { color: theme.colors.error, marginLeft: 4 },
21
+ });
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface ContactPreferenceStepProps {
3
+ preferredContactMethod: "PHONE" | "EMAIL" | "BOTH";
4
+ onContactMethodChange: (method: "PHONE" | "EMAIL" | "BOTH") => void;
5
+ onBack: () => void;
6
+ onSubmit: () => void;
7
+ isLoading?: boolean;
8
+ }
9
+ export declare const ContactPreferenceStep: React.FC<ContactPreferenceStepProps>;
@@ -0,0 +1,20 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from "react";
3
+ import { useTheme } from "../../../react/hooks/useTheme";
4
+ import { getPhoneVerifyStyles, getButtonStyles, getContainerStyles, } from "../../theme-styles";
5
+ import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem, } from "../../shared/ui/SelectDropdown";
6
+ export const ContactPreferenceStep = React.memo(({ preferredContactMethod, onContactMethodChange, onBack, onSubmit, isLoading = false, }) => {
7
+ const theme = useTheme();
8
+ const PHONE_VERIFY_STYLES = React.useMemo(() => getPhoneVerifyStyles(theme), [theme]);
9
+ const BUTTON_STYLES = React.useMemo(() => getButtonStyles(theme), [theme]);
10
+ const CONTAINER_STYLES = React.useMemo(() => getContainerStyles(theme), [theme]);
11
+ const contactOptions = [
12
+ { value: "PHONE", label: "Phone" },
13
+ { value: "EMAIL", label: "Email" },
14
+ { value: "BOTH", label: "Both" },
15
+ ];
16
+ const handleContactMethodSelect = (value) => {
17
+ onContactMethodChange(value);
18
+ };
19
+ return (_jsxs("div", { children: [_jsxs("div", { style: { marginBottom: "16px" }, children: [_jsx("label", { style: PHONE_VERIFY_STYLES.label, children: "Preferred Contact Method" }), _jsx("div", { style: { marginTop: "8px" }, children: _jsxs(Select, { value: preferredContactMethod, onValueChange: handleContactMethodSelect, children: [_jsx(SelectTrigger, { style: { width: "100%" }, children: _jsx(SelectValue, { placeholder: "Select contact method" }) }), _jsx(SelectContent, { children: contactOptions.map((option) => (_jsx(SelectItem, { value: option.value, children: option.label }, option.value))) })] }) })] }), _jsxs("div", { style: CONTAINER_STYLES.actions, children: [_jsx("button", { onClick: onBack, style: BUTTON_STYLES.secondary, children: "Back" }), _jsx("button", { onClick: onSubmit, style: BUTTON_STYLES.primary, children: isLoading ? "Submitting..." : "Submit" })] })] }));
20
+ });
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ export interface InquiryDetailsStepProps {
3
+ inquirySubject: string;
4
+ inquiryMessage: string;
5
+ onSubjectChange: (value: string) => void;
6
+ onMessageChange: (value: string) => void;
7
+ onBack: () => void;
8
+ onNext: () => void;
9
+ }
10
+ export declare const InquiryDetailsStep: React.FC<InquiryDetailsStepProps>;
@@ -0,0 +1,20 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React from "react";
3
+ import { useTheme } from "../../../react/hooks/useTheme";
4
+ import { getContainerStyles, getPhoneVerifyStyles, getButtonStyles, } from "../../theme-styles";
5
+ export const InquiryDetailsStep = React.memo(({ inquirySubject, inquiryMessage, onSubjectChange, onMessageChange, onBack, onNext, }) => {
6
+ const theme = useTheme();
7
+ const PHONE_VERIFY_STYLES = React.useMemo(() => getPhoneVerifyStyles(theme), [theme]);
8
+ const BUTTON_STYLES = React.useMemo(() => getButtonStyles(theme), [theme]);
9
+ const CONTAINER_STYLES = React.useMemo(() => getContainerStyles(theme), [theme]);
10
+ const styles = getStyles(theme);
11
+ return (_jsxs("div", { children: [_jsxs("div", { style: { marginBottom: "16px" }, children: [_jsxs("label", { style: PHONE_VERIFY_STYLES.label, children: ["Subject", _jsx("span", { style: styles.mandatory, children: "*" })] }), _jsx("input", { type: "text", value: inquirySubject, onChange: (e) => onSubjectChange(e.target.value), placeholder: "Enter inquiry subject", style: PHONE_VERIFY_STYLES.phoneInput })] }), _jsxs("div", { style: { marginBottom: "16px" }, children: [_jsxs("label", { style: PHONE_VERIFY_STYLES.label, children: ["Message", _jsx("span", { style: styles.mandatory, children: "*" })] }), _jsx("textarea", { value: inquiryMessage, onChange: (e) => onMessageChange(e.target.value), placeholder: "Enter your inquiry message", rows: 5, style: {
12
+ ...PHONE_VERIFY_STYLES.otpInput,
13
+ minHeight: "120px",
14
+ resize: "vertical",
15
+ fontFamily: "inherit",
16
+ } })] }), _jsxs("div", { style: CONTAINER_STYLES.actions, children: [_jsx("button", { onClick: onBack, style: BUTTON_STYLES.secondary, children: "Back" }), _jsx("button", { onClick: onNext, style: BUTTON_STYLES.primary, children: "Next" })] })] }));
17
+ });
18
+ const getStyles = (theme) => ({
19
+ mandatory: { color: theme.colors.error, marginLeft: 4 },
20
+ });
@@ -0,0 +1,3 @@
1
+ export { ContactInformationStep } from "./ContactInformationStep";
2
+ export { InquiryDetailsStep } from "./InquiryDetailsStep";
3
+ export { ContactPreferenceStep } from "./ContactPreferenceStep";
@@ -0,0 +1,3 @@
1
+ export { ContactInformationStep } from "./ContactInformationStep";
2
+ export { InquiryDetailsStep } from "./InquiryDetailsStep";
3
+ export { ContactPreferenceStep } from "./ContactPreferenceStep";
@@ -0,0 +1,2 @@
1
+ export { EnquiryForm } from "./EnquiryForm";
2
+ export * from "./components";
@@ -0,0 +1,2 @@
1
+ export { EnquiryForm } from "./EnquiryForm";
2
+ export * from "./components";
@@ -0,0 +1,7 @@
1
+ export * from "./appointment-booking";
2
+ export * from "./enquiry-form";
3
+ export * from "./shared";
4
+ export * from "./types";
5
+ export * from "./constants";
6
+ export * from "./utils";
7
+ export * from "./styles";
@@ -0,0 +1,7 @@
1
+ export * from "./appointment-booking";
2
+ export * from "./enquiry-form";
3
+ export * from "./shared";
4
+ export * from "./types";
5
+ export * from "./constants";
6
+ export * from "./utils";
7
+ export * from "./styles";
@@ -0,0 +1,6 @@
1
+ interface IconProps {
2
+ className?: string;
3
+ size?: number;
4
+ }
5
+ export declare const Check: React.FC<IconProps>;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const Check = ({ className, size = 16 }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", className: className, children: _jsx("polyline", { points: "20 6 9 17 4 12" }) }));
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const ChevronDownIcon: React.FC<{
3
+ className?: string;
4
+ }>;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const ChevronDownIcon = ({ className }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", className: className, children: _jsx("polyline", { points: "6 9 12 15 18 9" }) }));
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const ChevronLeft: React.FC<React.SVGProps<SVGSVGElement>>;
3
+ export default ChevronLeft;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ChevronLeft = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 20, height: 20, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", className: `lucide lucide-chevron-left ${props.className ?? ""}`, ...props, children: _jsx("path", { d: "m15 18-6-6 6-6" }) }));
3
+ export default ChevronLeft;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const ChevronRight: React.FC<React.SVGProps<SVGSVGElement>>;
3
+ export default ChevronRight;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ChevronRight = ({ ...props }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 20, height: 20, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", className: `lucide lucide-chevron-right-icon lucide-chevron-right`, ...props, children: _jsx("path", { d: "m9 18 6-6-6-6" }) }));
3
+ export default ChevronRight;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ interface CloseIconProps {
3
+ size?: number;
4
+ color?: string;
5
+ className?: string;
6
+ style?: React.CSSProperties;
7
+ }
8
+ export declare const CloseIcon: React.FC<CloseIconProps>;
9
+ export default CloseIcon;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const CloseIcon = ({ size = 12, color = "black", className, style, }) => {
3
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 12 12", fill: "none", className: className, style: style, children: _jsx("path", { d: "M0.878125 11.0896L0 10.2115L4.66667 5.54479L0 0.878126L0.878125 0L5.54479 4.66667L10.2115 0L11.0896 0.878126L6.42292 5.54479L11.0896 10.2115L10.2115 11.0896L5.54479 6.42292L0.878125 11.0896Z", fill: color }) }));
4
+ };
5
+ export default CloseIcon;
@@ -0,0 +1 @@
1
+ export declare const ConfirmationCheck: React.FC;
@@ -0,0 +1,9 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const Check = ({ size = 16 }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: _jsx("polyline", { points: "20 6 9 17 4 12" }) }));
3
+ export const ConfirmationCheck = () => (_jsxs("div", { style: { position: 'relative', display: 'inline-block' }, children: [_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "60", height: "60", viewBox: "0 0 41 41", fill: "none", children: _jsx("path", { d: "M31.1309 4.90254C32.388 4.98797 33.0166 5.03069 33.5247 5.25288C34.2598 5.57438 34.8467 6.16126 35.1682 6.8964C35.3904 7.40445 35.4331 8.03302 35.5185 9.29016L35.7135 12.159C35.748 12.6674 35.7653 12.9217 35.8206 13.1645C35.9004 13.5154 36.0391 13.8503 36.2308 14.1549C36.3634 14.3657 36.531 14.5576 36.8661 14.9416L38.7568 17.108C39.5853 18.0574 39.9996 18.532 40.2017 19.0484C40.4942 19.7955 40.4942 20.6255 40.2017 21.3727C39.9996 21.889 39.5853 22.3637 38.7568 23.313L36.8661 25.4795C36.531 25.8634 36.3634 26.0554 36.2308 26.2662C36.0391 26.5708 35.9004 26.9056 35.8206 27.2566C35.7653 27.4994 35.748 27.7536 35.7135 28.2621L35.5185 31.1309C35.4331 32.388 35.3904 33.0166 35.1682 33.5247C34.8467 34.2598 34.2598 34.8467 33.5247 35.1682C33.0166 35.3904 32.388 35.4331 31.1309 35.5185L28.2621 35.7135C27.7536 35.748 27.4994 35.7653 27.2566 35.8206C26.9056 35.9004 26.5708 36.0391 26.2662 36.2308C26.0554 36.3634 25.8634 36.531 25.4795 36.8661L23.313 38.7568C22.3637 39.5853 21.889 39.9996 21.3727 40.2017C20.6255 40.4942 19.7955 40.4942 19.0484 40.2017C18.532 39.9996 18.0574 39.5853 17.108 38.7568L14.9416 36.8661C14.5576 36.531 14.3657 36.3634 14.1549 36.2308C13.8503 36.0391 13.5154 35.9004 13.1645 35.8206C12.9217 35.7653 12.6674 35.748 12.159 35.7135L9.29016 35.5185C8.03302 35.4331 7.40445 35.3904 6.8964 35.1682C6.16126 34.8467 5.57438 34.2598 5.25288 33.5247C5.03069 33.0166 4.98797 32.388 4.90254 31.1309L4.70759 28.2621C4.67304 27.7536 4.65576 27.4994 4.60049 27.2566C4.52063 26.9056 4.38193 26.5708 4.19028 26.2662C4.05764 26.0554 3.89009 25.8634 3.555 25.4795L1.66428 23.313C0.83576 22.3637 0.421499 21.889 0.219363 21.3727C-0.073121 20.6255 -0.0731209 19.7955 0.219363 19.0484C0.421499 18.532 0.83576 18.0574 1.66428 17.108L3.555 14.9416C3.89009 14.5576 4.05764 14.3657 4.19027 14.1549C4.38193 13.8503 4.52063 13.5154 4.60049 13.1645C4.65576 12.9217 4.67304 12.6674 4.70759 12.159L4.90254 9.29016C4.98797 8.03302 5.03069 7.40445 5.25288 6.8964C5.57438 6.16126 6.16126 5.57438 6.8964 5.25288C7.40445 5.03069 8.03302 4.98797 9.29016 4.90254L12.159 4.70759C12.6674 4.67304 12.9217 4.65577 13.1645 4.6005C13.5154 4.52063 13.8503 4.38193 14.1549 4.19028C14.3657 4.05764 14.5576 3.89009 14.9416 3.555L17.108 1.66428C18.0574 0.83576 18.532 0.421499 19.0484 0.219363C19.7955 -0.073121 20.6255 -0.073121 21.3727 0.219363C21.889 0.421499 22.3637 0.83576 23.313 1.66428L25.4795 3.555C25.8634 3.89009 26.0554 4.05764 26.2662 4.19028C26.5708 4.38193 26.9056 4.52063 27.2566 4.6005C27.4994 4.65577 27.7536 4.67304 28.2621 4.70759L31.1309 4.90254Z", fill: "#27903F" }) }), _jsx("div", { style: {
4
+ position: 'absolute',
5
+ top: '50%',
6
+ left: '50%',
7
+ transform: 'translate(-50%, -50%)',
8
+ color: 'white'
9
+ }, children: _jsx(Check, { size: 24 }) })] }));
@@ -0,0 +1 @@
1
+ export declare const ConsultationTypeIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const ConsultationTypeIcon = () => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "20", viewBox: "0 0 18 20", fill: "none", children: _jsx("path", { d: "M2 20C1.45 20 0.979167 19.8042 0.5875 19.4125C0.195833 19.0208 0 18.55 0 18V4C0 3.45 0.195833 2.97917 0.5875 2.5875C0.979167 2.19583 1.45 2 2 2H3V0H5V2H13V0H15V2H16C16.55 2 17.0208 2.19583 17.4125 2.5875C17.8042 2.97917 18 3.45 18 4V18C18 18.55 17.8042 19.0208 17.4125 19.4125C17.0208 19.8042 16.55 20 16 20H2ZM2 18H16V8H2V18ZM2 6H16V4H2V6ZM4 12V10H14V12H4ZM4 16V14H11V16H4Z", fill: "currentColor" }) }));
@@ -0,0 +1 @@
1
+ export declare const DateTimeIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const DateTimeIcon = () => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "20", viewBox: "0 0 18 20", fill: "none", children: _jsx("path", { d: "M2 20C1.45 20 0.979167 19.8042 0.5875 19.4125C0.195833 19.0208 0 18.55 0 18V4C0 3.45 0.195833 2.97917 0.5875 2.5875C0.979167 2.19583 1.45 2 2 2H3V0H5V2H13V0H15V2H16C16.55 2 17.0208 2.19583 17.4125 2.5875C17.8042 2.97917 18 3.45 18 4V18C18 18.55 17.8042 19.0208 17.4125 19.4125C17.0208 19.8042 16.55 20 16 20H2ZM2 18H16V8H2V18ZM2 6H16V4H2V6ZM4 12V10H14V12H4ZM4 16V14H11V16H4Z", fill: "currentColor" }) }));
@@ -0,0 +1 @@
1
+ export declare const MapPinIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const MapPinIcon = () => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "20", viewBox: "0 0 14 20", fill: "none", children: _jsx("path", { d: "M7 20C5.23333 20 3.79167 19.7208 2.675 19.1625C1.55833 18.6042 1 17.8833 1 17C1 16.6 1.12083 16.2292 1.3625 15.8875C1.60417 15.5458 1.94167 15.25 2.375 15L3.95 16.475C3.8 16.5417 3.6375 16.6167 3.4625 16.7C3.2875 16.7833 3.15 16.8833 3.05 17C3.26667 17.2667 3.76667 17.5 4.55 17.7C5.33333 17.9 6.15 18 7 18C7.85 18 8.67083 17.9 9.4625 17.7C10.2542 17.5 10.7583 17.2667 10.975 17C10.8583 16.8667 10.7083 16.7583 10.525 16.675C10.3417 16.5917 10.1667 16.5167 10 16.45L11.55 14.95C12.0167 15.2167 12.375 15.5208 12.625 15.8625C12.875 16.2042 13 16.5833 13 17C13 17.8833 12.4417 18.6042 11.325 19.1625C10.2083 19.7208 8.76667 20 7 20ZM7.025 14.5C8.675 13.2833 9.91667 12.0625 10.75 10.8375C11.5833 9.6125 12 8.38333 12 7.15C12 5.45 11.4583 4.16667 10.375 3.3C9.29167 2.43333 8.16667 2 7 2C5.83333 2 4.70833 2.43333 3.625 3.3C2.54167 4.16667 2 5.45 2 7.15C2 8.26667 2.40833 9.42917 3.225 10.6375C4.04167 11.8458 5.30833 13.1333 7.025 14.5ZM7 17C4.65 15.2667 2.89583 13.5833 1.7375 11.95C0.579167 10.3167 0 8.71667 0 7.15C0 5.96667 0.2125 4.92917 0.6375 4.0375C1.0625 3.14583 1.60833 2.4 2.275 1.8C2.94167 1.2 3.69167 0.75 4.525 0.45C5.35833 0.15 6.18333 0 7 0C7.81667 0 8.64167 0.15 9.475 0.45C10.3083 0.75 11.0583 1.2 11.725 1.8C12.3917 2.4 12.9375 3.14583 13.3625 4.0375C13.7875 4.92917 14 5.96667 14 7.15C14 8.71667 13.4208 10.3167 12.2625 11.95C11.1042 13.5833 9.35 15.2667 7 17ZM7 9C7.55 9 8.02083 8.80417 8.4125 8.4125C8.80417 8.02083 9 7.55 9 7C9 6.45 8.80417 5.97917 8.4125 5.5875C8.02083 5.19583 7.55 5 7 5C6.45 5 5.97917 5.19583 5.5875 5.5875C5.19583 5.97917 5 6.45 5 7C5 7.55 5.19583 8.02083 5.5875 8.4125C5.97917 8.80417 6.45 9 7 9Z", fill: "currentColor" }) }));
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare const MedosLogo: (props: React.SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default MedosLogo;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const MedosLogo = (props) => (_jsxs("svg", { width: "250", height: "236", viewBox: "0 0 250 236", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("g", { filter: "url(#filter0_d_4215_30142)", children: _jsx("path", { d: "M14.2067 123.859L21.2068 123.862L38.2027 67.687L55.7021 152.687L77.707 60.6836L93.7021 123.863L239.202 123.863", stroke: "#27903F", strokeWidth: "4", strokeLinecap: "round" }) }), _jsx("path", { d: "M111.695 118.797C108.857 118.797 106.408 118.171 104.35 116.918C102.305 115.652 100.726 113.888 99.6136 111.625C98.5142 109.35 97.9645 106.703 97.9645 103.686C97.9645 100.669 98.5142 98.0103 99.6136 95.7092C100.726 93.3952 102.273 91.5927 104.254 90.3015C106.249 88.9975 108.575 88.3455 111.234 88.3455C112.768 88.3455 114.283 88.6012 115.779 89.1126C117.275 89.6239 118.636 90.4549 119.864 91.6055C121.091 92.7433 122.069 94.2518 122.798 96.131C123.526 98.0103 123.891 100.324 123.891 103.073V104.99H101.186V101.078H119.288C119.288 99.4165 118.956 97.9336 118.291 96.6296C117.639 95.3256 116.706 94.2965 115.491 93.5423C114.29 92.788 112.871 92.4109 111.234 92.4109C109.432 92.4109 107.872 92.8583 106.555 93.7532C105.251 94.6353 104.248 95.7859 103.545 97.2049C102.842 98.6239 102.49 100.145 102.49 101.769V104.377C102.49 106.601 102.874 108.487 103.641 110.034C104.42 111.568 105.501 112.738 106.881 113.543C108.262 114.336 109.866 114.732 111.695 114.732C112.884 114.732 113.957 114.566 114.916 114.233C115.888 113.888 116.725 113.377 117.428 112.699C118.131 112.009 118.675 111.152 119.058 110.13L123.43 111.357C122.97 112.84 122.197 114.144 121.11 115.269C120.023 116.381 118.681 117.25 117.083 117.877C115.485 118.49 113.689 118.797 111.695 118.797ZM141.897 118.797C139.442 118.797 137.276 118.177 135.396 116.937C133.517 115.684 132.047 113.92 130.986 111.645C129.925 109.356 129.394 106.652 129.394 103.533C129.394 100.439 129.925 97.7546 130.986 95.479C132.047 93.2035 133.523 91.4457 135.415 90.2056C137.308 88.9656 139.494 88.3455 141.974 88.3455C143.891 88.3455 145.406 88.6651 146.518 89.3043C147.643 89.9308 148.5 90.6467 149.088 91.4521C149.689 92.2447 150.156 92.8967 150.488 93.408H150.871V78.9109H155.397V118.184H151.025V113.658H150.488C150.156 114.195 149.683 114.873 149.069 115.691C148.455 116.496 147.58 117.218 146.442 117.858C145.304 118.484 143.789 118.797 141.897 118.797ZM142.511 114.732C144.326 114.732 145.86 114.259 147.113 113.313C148.366 112.354 149.318 111.031 149.97 109.343C150.622 107.643 150.948 105.681 150.948 103.456C150.948 101.257 150.629 99.3335 149.989 97.6843C149.35 96.0224 148.404 94.7312 147.151 93.8107C145.898 92.8775 144.352 92.4109 142.511 92.4109C140.593 92.4109 138.995 92.9031 137.717 93.8874C136.451 94.859 135.499 96.1822 134.859 97.8569C134.233 99.5188 133.92 101.385 133.92 103.456C133.92 105.553 134.239 107.458 134.879 109.171C135.531 110.871 136.489 112.226 137.755 113.236C139.033 114.233 140.619 114.732 142.511 114.732ZM199.138 98.5472C199.138 102.779 198.345 106.403 196.76 109.42C195.188 112.424 193.04 114.725 190.317 116.324C187.607 117.922 184.532 118.721 181.093 118.721C177.654 118.721 174.573 117.922 171.85 116.324C169.14 114.713 166.992 112.405 165.407 109.401C163.835 106.384 163.048 102.766 163.048 98.5472C163.048 94.3157 163.835 90.6978 165.407 87.6935C166.992 84.6765 169.14 82.369 171.85 80.7709C174.573 79.1729 177.654 78.3739 181.093 78.3739C184.532 78.3739 187.607 79.1729 190.317 80.7709C193.04 82.369 195.188 84.6765 196.76 87.6935C198.345 90.6978 199.138 94.3157 199.138 98.5472ZM191.985 98.5472C191.985 95.5685 191.518 93.0565 190.585 91.011C189.665 88.9528 188.386 87.3995 186.75 86.3512C185.114 85.2901 183.228 84.7596 181.093 84.7596C178.958 84.7596 177.072 85.2901 175.436 86.3512C173.8 87.3995 172.515 88.9528 171.582 91.011C170.661 93.0565 170.201 95.5685 170.201 98.5472C170.201 101.526 170.661 104.044 171.582 106.103C172.515 108.148 173.8 109.701 175.436 110.762C177.072 111.811 178.958 112.335 181.093 112.335C183.228 112.335 185.114 111.811 186.75 110.762C188.386 109.701 189.665 108.148 190.585 106.103C191.518 104.044 191.985 101.526 191.985 98.5472ZM227.207 89.707C227.028 88.0323 226.274 86.7283 224.944 85.7951C223.627 84.8619 221.914 84.3952 219.805 84.3952C218.322 84.3952 217.05 84.619 215.989 85.0664C214.928 85.5138 214.116 86.1211 213.553 86.8881C212.991 87.6552 212.703 88.5309 212.691 89.5153C212.691 90.3335 212.876 91.043 213.247 91.6438C213.63 92.2447 214.148 92.756 214.8 93.1779C215.452 93.587 216.174 93.9322 216.967 94.2134C217.759 94.4947 218.558 94.7312 219.364 94.9229L223.046 95.8434C224.529 96.1886 225.954 96.6552 227.322 97.2433C228.703 97.8313 229.936 98.5728 231.023 99.4677C232.122 100.363 232.992 101.443 233.631 102.708C234.27 103.974 234.59 105.457 234.59 107.157C234.59 109.458 234.002 111.485 232.825 113.236C231.649 114.975 229.949 116.336 227.725 117.321C225.513 118.292 222.835 118.778 219.69 118.778C216.634 118.778 213.982 118.305 211.732 117.359C209.494 116.413 207.743 115.032 206.477 113.217C205.225 111.402 204.547 109.19 204.445 106.582H211.444C211.546 107.95 211.968 109.088 212.71 109.995C213.451 110.903 214.416 111.581 215.605 112.028C216.807 112.475 218.149 112.699 219.632 112.699C221.179 112.699 222.534 112.469 223.698 112.009C224.874 111.536 225.794 110.884 226.459 110.053C227.124 109.209 227.463 108.225 227.475 107.1C227.463 106.077 227.162 105.233 226.574 104.569C225.986 103.891 225.161 103.328 224.1 102.881C223.052 102.421 221.825 102.012 220.419 101.654L215.95 100.503C212.716 99.6722 210.159 98.413 208.28 96.7255C206.414 95.0252 205.48 92.7688 205.48 89.9563C205.48 87.6424 206.107 85.6161 207.36 83.8775C208.625 82.1388 210.345 80.7901 212.518 79.8313C214.691 78.8597 217.152 78.3739 219.901 78.3739C222.688 78.3739 225.129 78.8597 227.226 79.8313C229.335 80.7901 230.991 82.1261 232.193 83.8391C233.394 85.5394 234.014 87.4954 234.053 89.707H227.207Z", fill: "#27903F" }), _jsx("defs", { children: _jsxs("filter", { id: "filter0_d_4215_30142", x: "12.2031", y: "60.1914", width: "237", height: "100.961", filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB", children: [_jsx("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }), _jsx("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), _jsx("feOffset", { dx: "4", dy: "4" }), _jsx("feGaussianBlur", { stdDeviation: "2" }), _jsx("feComposite", { in2: "hardAlpha", operator: "out" }), _jsx("feColorMatrix", { type: "matrix", values: "0 0 0 0 0.152941 0 0 0 0 0.564706 0 0 0 0 0.247059 0 0 0 0.12 0" }), _jsx("feBlend", { mode: "normal", in2: "BackgroundImageFix", result: "effect1_dropShadow_4215_30142" }), _jsx("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect1_dropShadow_4215_30142", result: "shape" })] }) })] }));
3
+ export default MedosLogo;
@@ -0,0 +1 @@
1
+ export declare const PaymentMethodIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const PaymentMethodIcon = () => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "21", height: "15", viewBox: "0 0 21 15", fill: "none", children: _jsx("path", { d: "M11.9038 8.096C11.2051 8.096 10.6138 7.854 10.1298 7.37C9.64575 6.886 9.40375 6.29467 9.40375 5.596C9.40375 4.89733 9.64575 4.306 10.1298 3.822C10.6138 3.338 11.2051 3.096 11.9038 3.096C12.6024 3.096 13.1938 3.338 13.6778 3.822C14.1618 4.306 14.4038 4.89733 14.4038 5.596C14.4038 6.29467 14.1618 6.886 13.6778 7.37C13.1938 7.854 12.6024 8.096 11.9038 8.096ZM5.3075 11.1923C4.8105 11.1923 4.385 11.0153 4.031 10.6613C3.677 10.3073 3.5 9.88167 3.5 9.3845V1.8075C3.5 1.3105 3.677 0.885 4.031 0.531C4.385 0.177 4.8105 0 5.3075 0H18.4998C18.9969 0 19.4225 0.177 19.7765 0.531C20.1305 0.885 20.3075 1.3105 20.3075 1.8075V9.3845C20.3075 9.88167 20.1305 10.3073 19.7765 10.6613C19.4225 11.0153 18.9969 11.1923 18.4998 11.1923H5.3075ZM6.8075 9.69225H17C17 9.19358 17.177 8.76758 17.531 8.41425C17.885 8.06108 18.3105 7.8845 18.8075 7.8845V3.3075C18.3088 3.3075 17.8829 3.1305 17.5298 2.7765C17.1766 2.4225 17 1.997 17 1.5H6.8075C6.8075 1.99867 6.6305 2.42458 6.2765 2.77775C5.9225 3.13092 5.497 3.3075 5 3.3075V7.8845C5.49867 7.8845 5.92458 8.0615 6.27775 8.4155C6.63092 8.7695 6.8075 9.19508 6.8075 9.69225ZM17.3267 14.6923H1.80775C1.31058 14.6923 0.885 14.5153 0.531 14.1613C0.177 13.8073 0 13.3817 0 12.8845V2.98075H1.5V12.8845C1.5 12.9613 1.532 13.0318 1.596 13.096C1.66017 13.1602 1.73075 13.1923 1.80775 13.1923H17.3267V14.6923ZM5.3075 9.69225H5V1.5H5.3075C5.22417 1.5 5.15208 1.53042 5.09125 1.59125C5.03042 1.65208 5 1.72417 5 1.8075V9.3845C5 9.46783 5.03042 9.53992 5.09125 9.60075C5.15208 9.66175 5.22417 9.69225 5.3075 9.69225Z", fill: "currentColor" }) }));
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ interface SuccessIconProps {
3
+ size?: number;
4
+ checkColor?: string;
5
+ shapeColor?: string;
6
+ }
7
+ export declare const SuccessIcon: React.FC<SuccessIconProps>;
8
+ export {};
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const SuccessIcon = ({ size = 64, checkColor = "white", shapeColor = "#006E0F", }) => {
3
+ const checkScale = size / 41;
4
+ const checkSize = {
5
+ width: 16 * checkScale,
6
+ height: 12 * checkScale,
7
+ };
8
+ return (_jsxs("div", { style: { position: "relative", display: "inline-block" }, children: [_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 41 41", fill: "none", children: _jsx("path", { d: "M31.1309 4.90254C32.388 4.98797 33.0166 5.03069 33.5247 5.25288C34.2598 5.57438 34.8467 6.16126 35.1682 6.8964C35.3904 7.40445 35.4331 8.03302 35.5185 9.29016L35.7135 12.159C35.748 12.6674 35.7653 12.9217 35.8206 13.1645C35.9004 13.5154 36.0391 13.8503 36.2308 14.1549C36.3634 14.3657 36.531 14.5576 36.8661 14.9416L38.7568 17.108C39.5853 18.0574 39.9996 18.532 40.2017 19.0484C40.4942 19.7955 40.4942 20.6255 40.2017 21.3727C39.9996 21.889 39.5853 22.3637 38.7568 23.313L36.8661 25.4795C36.531 25.8634 36.3634 26.0554 36.2308 26.2662C36.0391 26.5708 35.9004 26.9056 35.8206 27.2566C35.7653 27.4994 35.748 27.7536 35.7135 28.2621L35.5185 31.1309C35.4331 32.388 35.3904 33.0166 35.1682 33.5247C34.8467 34.2598 34.2598 34.8467 33.5247 35.1682C33.0166 35.3904 32.388 35.4331 31.1309 35.5185L28.2621 35.7135C27.7536 35.748 27.4994 35.7653 27.2566 35.8206C26.9056 35.9004 26.5708 36.0391 26.2662 36.2308C26.0554 36.3634 25.8634 36.531 25.4795 36.8661L23.313 38.7568C22.3637 39.5853 21.889 39.9996 21.3727 40.2017C20.6255 40.4942 19.7955 40.4942 19.0484 40.2017C18.532 39.9996 18.0574 39.5853 17.108 38.7568L14.9416 36.8661C14.5576 36.531 14.3657 36.3634 14.1549 36.2308C13.8503 36.0391 13.5154 35.9004 13.1645 35.8206C12.9217 35.7653 12.6674 35.748 12.159 35.7135L9.29016 35.5185C8.03302 35.4331 7.40445 35.3904 6.8964 35.1682C6.16126 34.8467 5.57438 34.2598 5.25288 33.5247C5.03069 33.0166 4.98797 32.388 4.90254 31.1309L4.70759 28.2621C4.67304 27.7536 4.65576 27.4994 4.60049 27.2566C4.52063 26.9056 4.38193 26.5708 4.19028 26.2662C4.05764 26.0554 3.89009 25.8634 3.555 25.4795L1.66428 23.313C0.83576 22.3637 0.421499 21.889 0.219363 21.3727C-0.073121 20.6255 -0.0731209 19.7955 0.219363 19.0484C0.421499 18.532 0.83576 18.0574 1.66428 17.108L3.555 14.9416C3.89009 14.5576 4.05764 14.3657 4.19027 14.1549C4.38193 13.8503 4.52063 13.5154 4.60049 13.1645C4.65576 12.9217 4.67304 12.6674 4.70759 12.159L4.90254 9.29016C4.98797 8.03302 5.03069 7.40445 5.25288 6.8964C5.57438 6.16126 6.16126 5.57438 6.8964 5.25288C7.40445 5.03069 8.03302 4.98797 9.29016 4.90254L12.159 4.70759C12.6674 4.67304 12.9217 4.65577 13.1645 4.6005C13.5154 4.52063 13.8503 4.38193 14.1549 4.19028C14.3657 4.05764 14.5576 3.89009 14.9416 3.555L17.108 1.66428C18.0574 0.83576 18.532 0.421499 19.0484 0.219363C19.7955 -0.073121 20.6255 -0.073121 21.3727 0.219363C21.889 0.421499 22.3637 0.83576 23.313 1.66428L25.4795 3.555C25.8634 3.89009 26.0554 4.05764 26.2662 4.19028C26.5708 4.38193 26.9056 4.52063 27.2566 4.6005C27.4994 4.65577 27.7536 4.67304 28.2621 4.70759L31.1309 4.90254Z", fill: shapeColor }) }), _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: checkSize.width, height: checkSize.height, viewBox: "0 0 16 12", fill: "none", style: {
9
+ position: "absolute",
10
+ top: "50%",
11
+ left: "50%",
12
+ transform: "translate(-50%, -50%)",
13
+ }, children: _jsx("path", { d: "M5.472 11.544L0 6.072L1.368 4.704L5.472 8.808L14.28 0L15.648 1.368L5.472 11.544Z", fill: checkColor }) })] }));
14
+ };
@@ -0,0 +1 @@
1
+ export declare const UserIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const UserIcon = () => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", children: _jsx("path", { d: "M14 13C13.1667 13 12.4583 12.7083 11.875 12.125C11.2917 11.5417 11 10.8333 11 10C11 9.16667 11.2917 8.45833 11.875 7.875C12.4583 7.29167 13.1667 7 14 7C14.8333 7 15.5417 7.29167 16.125 7.875C16.7083 8.45833 17 9.16667 17 10C17 10.8333 16.7083 11.5417 16.125 12.125C15.5417 12.7083 14.8333 13 14 13ZM14 11C14.2833 11 14.5208 10.9042 14.7125 10.7125C14.9042 10.5208 15 10.2833 15 10C15 9.71667 14.9042 9.47917 14.7125 9.2875C14.5208 9.09583 14.2833 9 14 9C13.7167 9 13.4792 9.09583 13.2875 9.2875C13.0958 9.47917 13 9.71667 13 10C13 10.2833 13.0958 10.5208 13.2875 10.7125C13.4792 10.9042 13.7167 11 14 11ZM8 20V17.1C8 16.75 8.08333 16.4208 8.25 16.1125C8.41667 15.8042 8.65 15.5583 8.95 15.375C9.48333 15.0583 10.0458 14.7958 10.6375 14.5875C11.2292 14.3792 11.8333 14.225 12.45 14.125L14 16L15.55 14.125C16.1667 14.225 16.7667 14.3792 17.35 14.5875C17.9333 14.7958 18.4917 15.0583 19.025 15.375C19.325 15.5583 19.5625 15.8042 19.7375 16.1125C19.9125 16.4208 20 16.75 20 17.1V20H8ZM9.975 18H13.05L11.7 16.35C11.4 16.4333 11.1083 16.5417 10.825 16.675C10.5417 16.8083 10.2583 16.95 9.975 17.1V18ZM14.95 18H18V17.1C17.7333 16.9333 17.4583 16.7875 17.175 16.6625C16.8917 16.5375 16.6 16.4333 16.3 16.35L14.95 18ZM2 18C1.45 18 0.979167 17.8042 0.5875 17.4125C0.195833 17.0208 0 16.55 0 16V2C0 1.45 0.195833 0.979167 0.5875 0.5875C0.979167 0.195833 1.45 0 2 0H16C16.55 0 17.0208 0.195833 17.4125 0.5875C17.8042 0.979167 18 1.45 18 2V7C17.7333 6.66667 17.4417 6.35 17.125 6.05C16.8083 5.75 16.4333 5.55 16 5.45V2H2V16H6.15C6.1 16.1833 6.0625 16.3667 6.0375 16.55C6.0125 16.7333 6 16.9167 6 17.1V18H2ZM4 6H11C11.4333 5.66667 11.9083 5.41667 12.425 5.25C12.9417 5.08333 13.4667 5 14 5V4H4V6ZM4 10H9C9 9.65 9.0375 9.30833 9.1125 8.975C9.1875 8.64167 9.29167 8.31667 9.425 8H4V10ZM4 14H7.45C7.63333 13.85 7.82917 13.7167 8.0375 13.6C8.24583 13.4833 8.45833 13.375 8.675 13.275V12H4V14ZM2 16V2V5.425V5V16Z", fill: "currentColor" }) }));
@@ -0,0 +1,13 @@
1
+ export { Check } from "./Check";
2
+ export { ChevronDownIcon } from "./ChevronDownIcon";
3
+ export { default as ChevronLeft } from "./ChevronLeft";
4
+ export { default as ChevronRight } from "./ChevronRight";
5
+ export { CloseIcon } from "./CloseIcon";
6
+ export { ConfirmationCheck } from "./ConfirmationCheck";
7
+ export { ConsultationTypeIcon } from "./ConsultationType";
8
+ export { DateTimeIcon } from "./Date&TimeIcon";
9
+ export { MapPinIcon } from "./MapIcon";
10
+ export { default as MedosLogo } from "./MedosLogo";
11
+ export { PaymentMethodIcon } from "./PaymentMethodIcon";
12
+ export { SuccessIcon } from "./SuccessIcon";
13
+ export { UserIcon } from "./UserIcon";
@@ -0,0 +1,13 @@
1
+ export { Check } from "./Check";
2
+ export { ChevronDownIcon } from "./ChevronDownIcon";
3
+ export { default as ChevronLeft } from "./ChevronLeft";
4
+ export { default as ChevronRight } from "./ChevronRight";
5
+ export { CloseIcon } from "./CloseIcon";
6
+ export { ConfirmationCheck } from "./ConfirmationCheck";
7
+ export { ConsultationTypeIcon } from "./ConsultationType";
8
+ export { DateTimeIcon } from "./Date&TimeIcon";
9
+ export { MapPinIcon } from "./MapIcon";
10
+ export { default as MedosLogo } from "./MedosLogo";
11
+ export { PaymentMethodIcon } from "./PaymentMethodIcon";
12
+ export { SuccessIcon } from "./SuccessIcon";
13
+ export { UserIcon } from "./UserIcon";
@@ -0,0 +1,2 @@
1
+ export * from "./icons";
2
+ export * from "./ui";
@@ -0,0 +1,2 @@
1
+ export * from "./icons";
2
+ export * from "./ui";