tapquest-ui-yeulamvietnam 2.0.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.
Files changed (188) hide show
  1. package/example/README.md +50 -0
  2. package/example/eslint.config.js +28 -0
  3. package/example/index.html +13 -0
  4. package/example/package.json +35 -0
  5. package/example/public/vite.svg +1 -0
  6. package/example/src/App.css +8 -0
  7. package/example/src/App.tsx +62 -0
  8. package/example/src/Card/index.tsx +15 -0
  9. package/example/src/Icons/CircleArrow.tsx +8 -0
  10. package/example/src/Icons/icon1.tsx +19 -0
  11. package/example/src/View/CoreComponentView/index.tsx +255 -0
  12. package/example/src/View/MapView/index.tsx +1325 -0
  13. package/example/src/View/MapView/map.html +14 -0
  14. package/example/src/assets/fonts/Kanit/Kanit-Black.ttf +0 -0
  15. package/example/src/assets/fonts/Kanit/Kanit-BlackItalic.ttf +0 -0
  16. package/example/src/assets/fonts/Kanit/Kanit-Bold.ttf +0 -0
  17. package/example/src/assets/fonts/Kanit/Kanit-BoldItalic.ttf +0 -0
  18. package/example/src/assets/fonts/Kanit/Kanit-ExtraBold.ttf +0 -0
  19. package/example/src/assets/fonts/Kanit/Kanit-ExtraBoldItalic.ttf +0 -0
  20. package/example/src/assets/fonts/Kanit/Kanit-ExtraLight.ttf +0 -0
  21. package/example/src/assets/fonts/Kanit/Kanit-ExtraLightItalic.ttf +0 -0
  22. package/example/src/assets/fonts/Kanit/Kanit-Italic.ttf +0 -0
  23. package/example/src/assets/fonts/Kanit/Kanit-Light.ttf +0 -0
  24. package/example/src/assets/fonts/Kanit/Kanit-LightItalic.ttf +0 -0
  25. package/example/src/assets/fonts/Kanit/Kanit-Medium.ttf +0 -0
  26. package/example/src/assets/fonts/Kanit/Kanit-MediumItalic.ttf +0 -0
  27. package/example/src/assets/fonts/Kanit/Kanit-Regular.ttf +0 -0
  28. package/example/src/assets/fonts/Kanit/Kanit-SemiBold.ttf +0 -0
  29. package/example/src/assets/fonts/Kanit/Kanit-SemiBoldItalic.ttf +0 -0
  30. package/example/src/assets/fonts/Kanit/Kanit-Thin.ttf +0 -0
  31. package/example/src/assets/fonts/Kanit/Kanit-ThinItalic.ttf +0 -0
  32. package/example/src/assets/fonts/Kanit/OFL.txt +93 -0
  33. package/example/src/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
  34. package/example/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
  35. package/example/src/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
  36. package/example/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
  37. package/example/src/assets/fonts/Roboto/Roboto-ExtraBold.ttf +0 -0
  38. package/example/src/assets/fonts/Roboto/Roboto-ExtraBoldItalic.ttf +0 -0
  39. package/example/src/assets/fonts/Roboto/Roboto-ExtraLight.ttf +0 -0
  40. package/example/src/assets/fonts/Roboto/Roboto-ExtraLightItalic.ttf +0 -0
  41. package/example/src/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
  42. package/example/src/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
  43. package/example/src/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
  44. package/example/src/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
  45. package/example/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
  46. package/example/src/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
  47. package/example/src/assets/fonts/Roboto/Roboto-SemiBold.ttf +0 -0
  48. package/example/src/assets/fonts/Roboto/Roboto-SemiBoldItalic.ttf +0 -0
  49. package/example/src/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
  50. package/example/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
  51. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Black.ttf +0 -0
  52. package/example/src/assets/fonts/Roboto/Roboto_Condensed-BlackItalic.ttf +0 -0
  53. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Bold.ttf +0 -0
  54. package/example/src/assets/fonts/Roboto/Roboto_Condensed-BoldItalic.ttf +0 -0
  55. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraBold.ttf +0 -0
  56. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraBoldItalic.ttf +0 -0
  57. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraLight.ttf +0 -0
  58. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraLightItalic.ttf +0 -0
  59. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Italic.ttf +0 -0
  60. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Light.ttf +0 -0
  61. package/example/src/assets/fonts/Roboto/Roboto_Condensed-LightItalic.ttf +0 -0
  62. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Medium.ttf +0 -0
  63. package/example/src/assets/fonts/Roboto/Roboto_Condensed-MediumItalic.ttf +0 -0
  64. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Regular.ttf +0 -0
  65. package/example/src/assets/fonts/Roboto/Roboto_Condensed-SemiBold.ttf +0 -0
  66. package/example/src/assets/fonts/Roboto/Roboto_Condensed-SemiBoldItalic.ttf +0 -0
  67. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Thin.ttf +0 -0
  68. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ThinItalic.ttf +0 -0
  69. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Black.ttf +0 -0
  70. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-BlackItalic.ttf +0 -0
  71. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Bold.ttf +0 -0
  72. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-BoldItalic.ttf +0 -0
  73. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraBold.ttf +0 -0
  74. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraBoldItalic.ttf +0 -0
  75. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraLight.ttf +0 -0
  76. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraLightItalic.ttf +0 -0
  77. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Italic.ttf +0 -0
  78. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Light.ttf +0 -0
  79. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-LightItalic.ttf +0 -0
  80. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Medium.ttf +0 -0
  81. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-MediumItalic.ttf +0 -0
  82. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Regular.ttf +0 -0
  83. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-SemiBold.ttf +0 -0
  84. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-SemiBoldItalic.ttf +0 -0
  85. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Thin.ttf +0 -0
  86. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ThinItalic.ttf +0 -0
  87. package/example/src/assets/fonts/iCielBCLodestone/iCielBCLodestone.ttf +0 -0
  88. package/example/src/assets/react.svg +1 -0
  89. package/example/src/fonts.css +66 -0
  90. package/example/src/index.css +70 -0
  91. package/example/src/main.tsx +10 -0
  92. package/example/src/vite-env.d.ts +1 -0
  93. package/example/tsconfig.app.json +26 -0
  94. package/example/tsconfig.json +7 -0
  95. package/example/tsconfig.node.json +24 -0
  96. package/example/vite.config.ts +7 -0
  97. package/index.css +20 -0
  98. package/index.ts +42 -0
  99. package/package.json +44 -0
  100. package/src/components/AppbarPrimaryButton/index.tsx +56 -0
  101. package/src/components/Avatar.styled/index.tsx +8 -0
  102. package/src/components/Button.styled/index.tsx +154 -0
  103. package/src/components/Card.styled/index.tsx +26 -0
  104. package/src/components/Compound/Appbar/index.tsx +88 -0
  105. package/src/components/Compound/Header/index.tsx +40 -0
  106. package/src/components/Compound/InteractiveMap/MapSvg.tsx +608 -0
  107. package/src/components/Compound/LocationOverviewCard/index.tsx +186 -0
  108. package/src/components/Compound/MemoryCard/index.tsx +267 -0
  109. package/src/components/Compound/ProgressStep/index.tsx +54 -0
  110. package/src/components/Compound/SponsorByContainer/index.tsx +31 -0
  111. package/src/components/FormItem.styled/index.tsx +23 -0
  112. package/src/components/Icons/AppbarBg.tsx +22 -0
  113. package/src/components/Icons/ArrowCircle.tsx +8 -0
  114. package/src/components/Icons/ArrowDown.tsx +15 -0
  115. package/src/components/Icons/Camera.tsx +17 -0
  116. package/src/components/Icons/Check.tsx +7 -0
  117. package/src/components/Icons/ChevronLeft.tsx +7 -0
  118. package/src/components/Icons/ChevronRight.tsx +16 -0
  119. package/src/components/Icons/CircleAlert.tsx +9 -0
  120. package/src/components/Icons/CircleArrow.tsx +8 -0
  121. package/src/components/Icons/CircleCheck.tsx +7 -0
  122. package/src/components/Icons/CornerUpRight.tsx +7 -0
  123. package/src/components/Icons/Dart.tsx +7 -0
  124. package/src/components/Icons/Discover.tsx +16 -0
  125. package/src/components/Icons/Edit.tsx +16 -0
  126. package/src/components/Icons/Email.tsx +16 -0
  127. package/src/components/Icons/Exclaimation.tsx +7 -0
  128. package/src/components/Icons/Facebook.tsx +7 -0
  129. package/src/components/Icons/Gear.tsx +15 -0
  130. package/src/components/Icons/Gift.tsx +18 -0
  131. package/src/components/Icons/Globe.tsx +14 -0
  132. package/src/components/Icons/Home.tsx +7 -0
  133. package/src/components/Icons/Icon1.tsx +19 -0
  134. package/src/components/Icons/Icon1sm.tsx +19 -0
  135. package/src/components/Icons/Instagram.tsx +9 -0
  136. package/src/components/Icons/Link.tsx +16 -0
  137. package/src/components/Icons/LocationPin.tsx +10 -0
  138. package/src/components/Icons/Logout.tsx +15 -0
  139. package/src/components/Icons/MapMarker.tsx +8 -0
  140. package/src/components/Icons/Marker/MarkerRed.tsx +17 -0
  141. package/src/components/Icons/Menu.tsx +11 -0
  142. package/src/components/Icons/Mission.tsx +17 -0
  143. package/src/components/Icons/Moment.tsx +18 -0
  144. package/src/components/Icons/Phone.tsx +15 -0
  145. package/src/components/Icons/Pin.tsx +8 -0
  146. package/src/components/Icons/PinCircle.tsx +17 -0
  147. package/src/components/Icons/PinOutlined.tsx +7 -0
  148. package/src/components/Icons/Profile.tsx +15 -0
  149. package/src/components/Icons/ProfileGift.tsx +23 -0
  150. package/src/components/Icons/ProgressBar.tsx +20 -0
  151. package/src/components/Icons/ProgressBarInner.tsx +44 -0
  152. package/src/components/Icons/SealCheckIcon.tsx +18 -0
  153. package/src/components/Icons/Search.tsx +7 -0
  154. package/src/components/Icons/SendMessage.tsx +7 -0
  155. package/src/components/Icons/Share.tsx +14 -0
  156. package/src/components/Icons/ShareMemoryBadge.tsx +11 -0
  157. package/src/components/Icons/ShieldWarningIcon.tsx +18 -0
  158. package/src/components/Icons/Spinner.tsx +18 -0
  159. package/src/components/Icons/Step.tsx +7 -0
  160. package/src/components/Icons/StepChecked.tsx +8 -0
  161. package/src/components/Icons/StepLine.tsx +7 -0
  162. package/src/components/Icons/Telegram.tsx +7 -0
  163. package/src/components/Icons/Trash.tsx +7 -0
  164. package/src/components/Icons/User.tsx +15 -0
  165. package/src/components/Icons/XIcon.tsx +8 -0
  166. package/src/components/Icons/Zalo.tsx +23 -0
  167. package/src/components/Icons/index.tsx +66 -0
  168. package/src/components/Image.styled/index.tsx +35 -0
  169. package/src/components/Input.styled/index.tsx +34 -0
  170. package/src/components/InputPassword/index.tsx +34 -0
  171. package/src/components/InputSearch.styled/index.tsx +18 -0
  172. package/src/components/Loader.styled/index.tsx +26 -0
  173. package/src/components/Modal.styled/index.tsx +63 -0
  174. package/src/components/ProcessBar.styled/index.tsx +26 -0
  175. package/src/components/ProgressCircular.styled/index.tsx +61 -0
  176. package/src/components/SVGs/NoResult.tsx +62 -0
  177. package/src/components/SVGs/index.tsx +3 -0
  178. package/src/components/Select.styled/index.tsx +32 -0
  179. package/src/components/Tabs.styled/index.tsx +22 -0
  180. package/src/components/TextArea.styled/index.tsx +34 -0
  181. package/src/components/Typography.styled/index.tsx +419 -0
  182. package/src/helpers/index.ts +175 -0
  183. package/src/hooks/useHTMLToCanvas.tsx +115 -0
  184. package/src/hooks/useInteractiveMap.tsx +659 -0
  185. package/src/types/type.d.ts +9 -0
  186. package/tsconfig.json +33 -0
  187. package/tsconfig.node.json +12 -0
  188. package/tsup.config.ts +24 -0
@@ -0,0 +1,7 @@
1
+ export default function CircleCheck() {
2
+ return (
3
+ <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M6 1.625C5.03582 1.625 4.09329 1.91091 3.2916 2.44659C2.48991 2.98226 1.86507 3.74363 1.49609 4.63442C1.12711 5.52521 1.03057 6.50541 1.21867 7.45107C1.40678 8.39672 1.87108 9.26536 2.55286 9.94715C3.23464 10.6289 4.10328 11.0932 5.04894 11.2813C5.99459 11.4694 6.97479 11.3729 7.86558 11.0039C8.75637 10.6349 9.51775 10.0101 10.0534 9.2084C10.5891 8.40671 10.875 7.46418 10.875 6.5C10.8736 5.20749 10.3596 3.96831 9.44564 3.05436C8.5317 2.14042 7.29251 1.62636 6 1.625ZM8.14032 5.64031L5.51532 8.26531C5.48049 8.30018 5.43913 8.32784 5.3936 8.34671C5.34808 8.36558 5.29928 8.37529 5.25 8.37529C5.20072 8.37529 5.15192 8.36558 5.1064 8.34671C5.06088 8.32784 5.01952 8.30018 4.98469 8.26531L3.85969 7.14031C3.78932 7.06995 3.74979 6.97451 3.74979 6.875C3.74979 6.77549 3.78932 6.68005 3.85969 6.60969C3.93005 6.53932 4.02549 6.49979 4.125 6.49979C4.22451 6.49979 4.31995 6.53932 4.39031 6.60969L5.25 7.46984L7.60969 5.10969C7.64453 5.07485 7.68589 5.04721 7.73142 5.02835C7.77694 5.0095 7.82573 4.99979 7.875 4.99979C7.92428 4.99979 7.97307 5.0095 8.01859 5.02835C8.06411 5.04721 8.10547 5.07485 8.14032 5.10969C8.17516 5.14453 8.20279 5.18589 8.22165 5.23141C8.24051 5.27694 8.25021 5.32573 8.25021 5.375C8.25021 5.42427 8.24051 5.47306 8.22165 5.51859C8.20279 5.56411 8.17516 5.60547 8.14032 5.64031Z" fill="#FCFCFC" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,7 @@
1
+ export default function CornerUpRight() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M15.7071 3.29289C15.3166 2.90237 14.6834 2.90237 14.2929 3.29289C13.9024 3.68342 13.9024 4.31658 14.2929 4.70711L17.5858 8H8C6.67392 8 5.40215 8.52678 4.46447 9.46447C3.52678 10.4021 3 11.6739 3 13V20C3 20.5523 3.44772 21 4 21C4.55228 21 5 20.5523 5 20V13C5 12.2044 5.31607 11.4413 5.87868 10.8787C6.44129 10.3161 7.20435 10 8 10H17.5858L14.2929 13.2929C13.9024 13.6834 13.9024 14.3166 14.2929 14.7071C14.6834 15.0976 15.3166 15.0976 15.7071 14.7071L20.7071 9.70711C21.0976 9.31658 21.0976 8.68342 20.7071 8.29289L15.7071 3.29289Z" fill="white" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,7 @@
1
+ export default function Dart() {
2
+ return (
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M14.4933 3.92C14.5061 3.99816 14.5001 4.07824 14.4758 4.15361C14.4514 4.22897 14.4094 4.29744 14.3533 4.35334L12.3533 6.35334C12.2794 6.42784 12.1838 6.47706 12.0803 6.49395C11.9767 6.51083 11.8704 6.49452 11.7767 6.44734L10.7653 5.942L7.68667 9.02067C7.64033 9.06719 7.58527 9.10411 7.52464 9.12929C7.464 9.15448 7.39899 9.16745 7.33333 9.16745C7.26768 9.16745 7.20266 9.15448 7.14203 9.12929C7.0814 9.10411 7.02633 9.06719 6.98 9.02067C6.93354 8.97424 6.89668 8.9191 6.87153 8.85842C6.84638 8.79773 6.83344 8.73269 6.83344 8.667C6.83344 8.60131 6.84638 8.53627 6.87153 8.47559C6.89668 8.4149 6.93354 8.35977 6.98 8.31334L10.0587 5.23467L9.55333 4.22334C9.50626 4.12957 9.49 4.02332 9.50688 3.91977C9.52376 3.81621 9.57291 3.72063 9.64733 3.64667L11.6473 1.64667C11.7033 1.59053 11.7718 1.54852 11.8472 1.52411C11.9226 1.4997 12.0028 1.4936 12.081 1.5063C12.1593 1.51901 12.2333 1.55015 12.2972 1.59717C12.361 1.64418 12.4127 1.70571 12.448 1.77667L13.04 2.96067L14.224 3.55267C14.2951 3.58789 14.3567 3.63962 14.4036 3.70353C14.4506 3.76744 14.4809 3.84166 14.4933 3.92ZM7.96667 5.91334C7.76667 5.86 7.55333 5.83334 7.33333 5.83334C5.77333 5.83334 4.5 7.10667 4.5 8.66667C4.5 10.2267 5.77333 11.5 7.33333 11.5C8.89333 11.5 10.1667 10.2267 10.1667 8.66667C10.1667 8.44667 10.14 8.23334 10.0867 8.03334L8.39333 9.72667C8.11333 10.0133 7.73333 10.1667 7.33333 10.1667C6.93333 10.1667 6.55333 10.0133 6.27333 9.72667C5.68667 9.14 5.68667 8.19334 6.27333 7.60667L7.96667 5.91334ZM12 7.5C11.7733 7.5 11.54 7.44667 11.3333 7.34L10.96 7.16L10.8867 7.23334C11.0667 7.67334 11.1667 8.16 11.1667 8.66667C11.1667 10.78 9.44667 12.5 7.33333 12.5C5.22 12.5 3.5 10.78 3.5 8.66667C3.5 6.55334 5.22 4.83334 7.33333 4.83334C7.84 4.83334 8.32667 4.93334 8.76667 5.11334L8.84 5.04L8.66 4.67334C8.38667 4.13334 8.46667 3.48667 8.85333 3.03334C8.36667 2.9 7.86 2.83334 7.33333 2.83334C4.11333 2.83334 1.5 5.44667 1.5 8.66667C1.5 11.8867 4.11333 14.5 7.33333 14.5C10.5533 14.5 13.1667 11.8867 13.1667 8.66667C13.1667 8.14 13.1 7.63334 12.9667 7.14667C12.7 7.37334 12.3533 7.5 12 7.5Z" fill="currentColor" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,16 @@
1
+ export default function Discover() {
2
+ return (
3
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_1947_7956)">
5
+ <path opacity="0.16" fillRule="evenodd" clipRule="evenodd" d="M12 21.2389C16.9706 21.2389 21 17.2095 21 12.2389C21 7.26833 16.9706 3.23889 12 3.23889C7.02944 3.23889 3 7.26833 3 12.2389C3 17.2095 7.02944 21.2389 12 21.2389ZM15 9.23889L11.3074 9.9774C10.5157 10.1357 9.89686 10.7546 9.73851 11.5463L9 15.2389L12.6926 14.5004C13.4843 14.342 14.1031 13.7232 14.2615 12.9315L15 9.23889Z" fill="currentColor" />
6
+ <circle cx="12" cy="12.2389" r="9" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M11.3074 9.9774L15 9.23889L14.2615 12.9315C14.1031 13.7232 13.4843 14.342 12.6926 14.5004L9 15.2389L9.73851 11.5463C9.89686 10.7546 10.5157 10.1357 11.3074 9.9774Z" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_1947_7956">
11
+ <rect width="24" height="24" fill="white" transform="translate(0 0.238892)" />
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
15
+ )
16
+ }
@@ -0,0 +1,16 @@
1
+ export default function Edit() {
2
+ return (
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3149_105388)">
5
+ <path d="M3.33268 10.6667L2.66602 13.3333L5.33268 12.6667L13.0565 4.94281C13.5772 4.42211 13.5772 3.57789 13.0565 3.05719L12.9422 2.94281C12.4215 2.42211 11.5772 2.42211 11.0565 2.94281L3.33268 10.6667Z" stroke="currentColor" strokeWidth="1.33333" strokeLinecap="round" strokeLinejoin="round" />
6
+ <path d="M10 4L12 6" stroke="currentColor" strokeWidth="1.33333" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M8.66602 13.3334H13.9993" stroke="currentColor" strokeWidth="1.33333" strokeLinecap="round" strokeLinejoin="round" />
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_3149_105388">
11
+ <rect width="16" height="16" fill="white" />
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
15
+ )
16
+ }
@@ -0,0 +1,16 @@
1
+ export default function Email() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_2652_18387)">
5
+ <path opacity="0.16" d="M3 5L10.5858 12.5858C11.3668 13.3668 12.6332 13.3668 13.4142 12.5858L21 5V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V5Z" fill="#A71A1A" />
6
+ <path d="M3 5H21V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V5Z" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M3 5L12 14L21 5" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_2652_18387">
11
+ <rect width="24" height="24" fill="white" />
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
15
+ )
16
+ }
@@ -0,0 +1,7 @@
1
+ export default function Exclaimation() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M11.677 16.4958L10.4037 6.65915V0H14.6273V6.65915L13.4161 16.4958H11.677ZM12.5155 24C11.6253 24 10.9834 23.7746 10.5901 23.3239C10.1967 22.8732 10 22.2986 10 21.6V20.9239C10 20.2254 10.1967 19.6507 10.5901 19.2C10.9834 18.7493 11.6253 18.5239 12.5155 18.5239C13.3851 18.5239 14.0166 18.7493 14.4099 19.2C14.8033 19.6507 15 20.2254 15 20.9239V21.6C15 22.2986 14.8033 22.8732 14.4099 23.3239C14.0166 23.7746 13.3851 24 12.5155 24Z" fill="white" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,7 @@
1
+ export default function Facebook() {
2
+ return (
3
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M10.2452 0.585922L8.62508 0.583252C6.80499 0.583252 5.62877 1.82289 5.62877 3.74155V5.19774H3.99986C3.8591 5.19774 3.74512 5.31496 3.74512 5.45955V7.5694C3.74512 7.71399 3.85923 7.83108 3.99986 7.83108H5.62877V13.1549C5.62877 13.2995 5.74275 13.4166 5.88351 13.4166H8.00877C8.14952 13.4166 8.26351 13.2994 8.26351 13.1549V7.83108H10.1681C10.3088 7.83108 10.4228 7.71399 10.4228 7.5694L10.4236 5.45955C10.4236 5.39013 10.3967 5.32364 10.349 5.27451C10.3013 5.22538 10.2363 5.19774 10.1687 5.19774H8.26351V3.96331C8.26351 3.37 8.40115 3.0688 9.15354 3.0688L10.2449 3.0684C10.3855 3.0684 10.4995 2.95118 10.4995 2.80672V0.847601C10.4995 0.703277 10.3857 0.586189 10.2452 0.585922Z" fill="#A71A1A" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,15 @@
1
+ export default function Gear() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3885_17220)">
5
+ <circle cx="12" cy="12" r="2" stroke="black" strokeWidth="2" />
6
+ <path d="M5.39783 5.87909C4.46809 6.88119 3.79297 8.0704 3.39988 9.34448L4.99919 10.2678C6.33252 11.0376 6.33252 12.9621 4.99919 13.7319L3.39817 14.6563C3.59338 15.2863 3.86134 15.9046 4.20504 16.4999C4.54873 17.0952 4.95015 17.6363 5.39816 18.1204L6.99921 17.196C8.33255 16.4262 9.99921 17.3885 9.99921 18.9281L9.99921 20.7749C11.2991 21.0715 12.6666 21.0814 13.9993 20.7773L13.9993 18.9282C13.9993 17.3886 15.666 16.4263 16.9993 17.1961L18.6007 18.1207C19.5304 17.1186 20.2056 15.9294 20.5987 14.6553L18.9993 13.7319C17.666 12.9621 17.666 11.0376 18.9993 10.2678L20.6004 9.34342C20.4051 8.7134 20.1372 8.09517 19.7935 7.49989C19.4498 6.90458 19.0484 6.3634 18.6003 5.87932L16.9993 6.80368C15.666 7.57348 13.9993 6.61123 13.9993 5.07162L13.9993 3.22489C12.6994 2.92828 11.3319 2.91835 9.99921 3.22248L9.99921 5.0716C9.99921 6.6112 8.33255 7.57345 6.99921 6.80365L5.39783 5.87909Z" stroke="black" strokeWidth="2" strokeLinejoin="round" />
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_3885_17220">
10
+ <rect width="24" height="24" fill="white" />
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
14
+ )
15
+ }
@@ -0,0 +1,18 @@
1
+ export default function Gift() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_1_94293)">
5
+ <path d="M4 11V19C4 20.1046 4.89543 21 6 21H18C19.1046 21 20 20.1046 20 19V11" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
6
+ <path d="M6 4.5C6 3.11929 7.11929 2 8.5 2V2C10.433 2 12 3.567 12 5.5V7H8.5C7.11929 7 6 5.88071 6 4.5V4.5Z" stroke="currentColor" strokeWidth="2" strokeLinejoin="round" />
7
+ <path d="M18 4.5C18 3.11929 16.8807 2 15.5 2V2C13.567 2 12 3.567 12 5.5V7H15.5C16.8807 7 18 5.88071 18 4.5V4.5Z" stroke="currentColor" strokeWidth="2" strokeLinejoin="round" />
8
+ <path d="M3 7H21V11H3V7Z" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
9
+ <path d="M12 11V21" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_1_94293">
13
+ <rect width="24" height="24" fill="white" />
14
+ </clipPath>
15
+ </defs>
16
+ </svg>
17
+ )
18
+ }
@@ -0,0 +1,14 @@
1
+ export default function Globe() {
2
+ return (
3
+ <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_5337_8053)">
5
+ <path d="M10 0.5C4.48584 0.5 0 4.98584 0 10.5C0 16.0142 4.48584 20.5004 10 20.5004C15.5142 20.5004 20 16.0142 20 10.5C20 4.98584 15.5142 0.5 10 0.5ZM17.58 14.4065H13.8495C14.0215 13.387 14.1247 12.3105 14.157 11.2348H18.497C18.3996 12.3697 18.0793 13.441 17.58 14.4065ZM10 19.0304C9.35339 19.0304 8.53705 17.8768 7.972 15.8757H12.028C11.4629 17.8772 10.6466 19.0304 10 19.0304ZM7.63584 14.4065C7.46501 13.4667 7.34928 12.4049 7.31438 11.2348H12.6853C12.6504 12.4049 12.5346 13.4663 12.3638 14.4065H7.63584ZM1.50336 11.2348H5.84298C5.87531 12.3105 5.97854 13.387 6.15048 14.4065H2.42037C1.92108 13.441 1.60072 12.3697 1.50336 11.2348ZM2.42037 6.59391H6.15085C5.97891 7.61341 5.87567 8.6895 5.84334 9.76522H1.50336C1.60072 8.63035 1.92108 7.55904 2.42037 6.59391ZM10 1.96956C10.6466 1.96956 11.4629 3.1228 12.028 5.12434H7.972C8.53705 3.1228 9.35339 1.96956 10 1.96956ZM12.3642 6.59391C12.535 7.53369 12.6507 8.59508 12.6856 9.76522H7.31438C7.34928 8.59508 7.46501 7.53369 7.63584 6.59391H12.3642ZM14.157 9.76522C14.1247 8.6895 14.0215 7.61341 13.8495 6.59391H17.58C18.0793 7.55904 18.3996 8.63035 18.497 9.76522H14.157ZM16.6174 5.12434H13.5427C13.2731 4.05744 12.9182 3.10112 12.481 2.33879C14.1243 2.83917 15.5582 3.82305 16.6174 5.12434ZM7.51901 2.33879C7.08182 3.10149 6.72692 4.05781 6.45725 5.12434H3.38256C4.44175 3.82305 5.87567 2.83917 7.51901 2.33879ZM3.38293 15.876H6.45725C6.72692 16.9429 7.08182 17.8989 7.51901 18.6616C5.87567 18.1608 4.44175 17.177 3.38293 15.876ZM12.481 18.6616C12.9182 17.8989 13.2731 16.9426 13.5427 15.876H16.6174C15.5582 17.1773 14.1243 18.1612 12.481 18.6616Z" fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_5337_8053">
9
+ <rect width="20" height="20" fill="white" transform="translate(0 0.5)" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
13
+ )
14
+ }
@@ -0,0 +1,7 @@
1
+ export default function Home() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M19 10V19C19 20.1046 18.1046 21 17 21H7C5.89543 21 5 20.1046 5 19V10M21 12L12 3L3 12" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,19 @@
1
+ export default function Icon1() {
2
+ return (
3
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <rect width="40" height="40" rx="20" fill="#A71A1A" />
5
+ <rect width="24" height="24" transform="translate(8 8)" fill="white" fillOpacity="0.01" style={{ mixBlendMode: "multiply" }} />
6
+ <path d="M20.75 14H19.25V18.5H20.75V14Z" fill="white" />
7
+ <path d="M20.75 21.5H19.25V26H20.75V21.5Z" fill="white" />
8
+ <path d="M26 19.25H21.5V20.75H26V19.25Z" fill="white" />
9
+ <path d="M18.5 19.25H14V20.75H18.5V19.25Z" fill="white" />
10
+ <g opacity="0.5">
11
+ <path d="M11 15.5H9.5V11C9.50042 10.6023 9.65859 10.221 9.9398 9.9398C10.221 9.65859 10.6023 9.50042 11 9.5H15.5V11H11V15.5Z" fill="white" />
12
+ <path d="M15.5 30.5H11C10.6023 30.4996 10.221 30.3414 9.9398 30.0602C9.65859 29.779 9.50042 29.3977 9.5 29V24.5H11V29H15.5V30.5Z" fill="white" />
13
+ <path d="M29 30.5H24.5V29H29V24.5H30.5V29C30.4996 29.3977 30.3414 29.779 30.0602 30.0602C29.779 30.3414 29.3977 30.4996 29 30.5Z" fill="white" />
14
+ <path d="M30.5 15.5H29V11H24.5V9.5H29C29.3977 9.50042 29.779 9.65859 30.0602 9.9398C30.3414 10.221 30.4996 10.6023 30.5 11V15.5Z" fill="white" />
15
+ </g>
16
+ </svg>
17
+
18
+ )
19
+ }
@@ -0,0 +1,19 @@
1
+ export default function Icon1sm() {
2
+ return (
3
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <rect y="0.694214" width="32.2235" height="32.2235" rx="16.1117" fill="#A71A1A" />
5
+ <rect width="16.2235" height="16.2235" transform="translate(8 8.69421)" fill="white" fillOpacity="0.01" style={{ mixBlendMode: "multiply" }} />
6
+ <path d="M16.6185 12.7502H15.6045V15.7921H16.6185V12.7502Z" fill="white" />
7
+ <path d="M16.6185 17.8201H15.6045V20.862H16.6185V17.8201Z" fill="white" />
8
+ <path d="M20.1674 16.2991H17.1255V17.3131H20.1674V16.2991Z" fill="white" />
9
+ <path d="M15.0976 16.2991H12.0557V17.3131H15.0976V16.2991Z" fill="white" />
10
+ <g opacity="0.5">
11
+ <path d="M10.0276 13.7641H9.01367V10.7222C9.01395 10.4534 9.12087 10.1956 9.31097 10.0055C9.50106 9.81545 9.7588 9.70853 10.0276 9.70825H13.0695V10.7222H10.0276V13.7641Z" fill="white" />
12
+ <path d="M13.0695 23.9038H10.0276C9.7588 23.9035 9.50106 23.7966 9.31097 23.6065C9.12087 23.4164 9.01395 23.1587 9.01367 22.8898V19.8479H10.0276V22.8898H13.0695V23.9038Z" fill="white" />
13
+ <path d="M22.1952 23.9038H19.1533V22.8898H22.1952V19.8479H23.2092V22.8898C23.2089 23.1587 23.102 23.4164 22.9119 23.6065C22.7218 23.7966 22.4641 23.9035 22.1952 23.9038Z" fill="white" />
14
+ <path d="M23.2092 13.7641H22.1952V10.7222H19.1533V9.70825H22.1952C22.4641 9.70853 22.7218 9.81545 22.9119 10.0055C23.102 10.1956 23.2089 10.4534 23.2092 10.7222V13.7641Z" fill="white" />
15
+ </g>
16
+ </svg>
17
+
18
+ )
19
+ }
@@ -0,0 +1,9 @@
1
+ export default function Instagram() {
2
+ return (
3
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M12.8222 4.59678C12.7949 3.97688 12.6947 3.55071 12.5511 3.18143C12.4029 2.78944 12.175 2.4385 11.8764 2.14676C11.5847 1.85048 11.2314 1.62025 10.844 1.47443C10.4726 1.33082 10.0486 1.23058 9.42872 1.20325C8.80419 1.1736 8.60593 1.16675 7.02196 1.16675C5.438 1.16675 5.23974 1.1736 4.61753 1.20093C3.99763 1.22827 3.57146 1.3286 3.20227 1.47211C2.81019 1.62025 2.45925 1.84816 2.16751 2.14676C1.87123 2.4385 1.64109 2.79176 1.49518 3.1792C1.35158 3.55071 1.25133 3.97457 1.224 4.59446C1.19436 5.21899 1.1875 5.41725 1.1875 7.00122C1.1875 8.58519 1.19436 8.78345 1.22169 9.40566C1.24902 10.0256 1.34935 10.4517 1.49295 10.821C1.64109 11.213 1.87123 11.5639 2.16751 11.8557C2.45925 12.152 2.81251 12.3822 3.19995 12.528C3.57146 12.6716 3.99532 12.7719 4.6153 12.7992C5.23742 12.8266 5.43577 12.8334 7.01974 12.8334C8.6037 12.8334 8.80197 12.8266 9.42418 12.7992C10.0441 12.7719 10.4702 12.6716 10.8394 12.528C11.6235 12.2249 12.2434 11.605 12.5465 10.821C12.69 10.4495 12.7904 10.0256 12.8177 9.40566C12.845 8.78345 12.8519 8.58519 12.8519 7.00122C12.8519 5.41725 12.8496 5.21899 12.8222 4.59678ZM11.7716 9.36008C11.7465 9.92985 11.6508 10.2375 11.5711 10.4426C11.375 10.9509 10.9716 11.3543 10.4634 11.5503C10.2583 11.6301 9.94837 11.7258 9.38082 11.7508C8.76547 11.7782 8.58091 11.785 7.02428 11.785C5.46764 11.785 5.28078 11.7782 4.66765 11.7508C4.09788 11.7258 3.7902 11.6301 3.58508 11.5503C3.33216 11.4568 3.10193 11.3087 2.91507 11.115C2.72134 10.9258 2.5732 10.6979 2.47972 10.445C2.39996 10.2398 2.30425 9.92985 2.27924 9.36239C2.25182 8.74704 2.24505 8.5624 2.24505 7.00576C2.24505 5.44912 2.25182 5.26226 2.27924 4.64922C2.30425 4.07944 2.39996 3.77177 2.47972 3.56665C2.5732 3.31363 2.72134 3.0835 2.91738 2.89654C3.10647 2.70282 3.33438 2.55468 3.5874 2.46129C3.79251 2.38152 4.10251 2.28582 4.66996 2.26071C5.28532 2.23338 5.46996 2.22653 7.0265 2.22653C8.58545 2.22653 8.77001 2.23338 9.38313 2.26071C9.95291 2.28582 10.2606 2.38152 10.4657 2.46129C10.7186 2.55468 10.9488 2.70282 11.1357 2.89654C11.3294 3.08572 11.4776 3.31363 11.5711 3.56665C11.6508 3.77177 11.7465 4.08167 11.7716 4.64922C11.799 5.26457 11.8058 5.44912 11.8058 7.00576C11.8058 8.5624 11.799 8.74472 11.7716 9.36008Z" fill="#A71A1A" />
5
+ <path d="M7.02196 4.00422C5.3674 4.00422 4.02496 5.34657 4.02496 7.00122C4.02496 8.65588 5.3674 9.99823 7.02196 9.99823C8.67662 9.99823 10.019 8.65588 10.019 7.00122C10.019 5.34657 8.67662 4.00422 7.02196 4.00422ZM7.02196 8.94531C5.94856 8.94531 5.07788 8.07471 5.07788 7.00122C5.07788 5.92774 5.94856 5.05714 7.02196 5.05714C8.09545 5.05714 8.96605 5.92774 8.96605 7.00122C8.96605 8.07471 8.09545 8.94531 7.02196 8.94531Z" fill="#A71A1A" />
6
+ <path d="M10.8372 3.88572C10.8372 4.2721 10.5239 4.58539 10.1375 4.58539C9.7511 4.58539 9.43781 4.2721 9.43781 3.88572C9.43781 3.49926 9.7511 3.18606 10.1375 3.18606C10.5239 3.18606 10.8372 3.49926 10.8372 3.88572Z" fill="#A71A1A" />
7
+ </svg>
8
+ )
9
+ }
@@ -0,0 +1,16 @@
1
+ export default function Link() {
2
+ return (
3
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3315_14958)">
5
+ <path d="M9.91511 0.622203C8.99742 0.614228 8.11332 0.967009 7.45321 1.60456L7.44718 1.61047L6.44385 2.60797C6.21538 2.83511 6.2143 3.20445 6.44144 3.43292C6.66858 3.66139 7.03793 3.66247 7.2664 3.43533L8.26658 2.44096C8.70634 2.01767 9.29451 1.78352 9.90497 1.78883C10.5168 1.79414 11.102 2.03954 11.5346 2.47215C11.9672 2.90477 12.2126 3.49 12.2179 4.1018C12.2232 4.71199 11.9893 5.29992 11.5664 5.73962L9.82015 7.48584C9.5836 7.72247 9.29885 7.90553 8.98536 8.02247C8.67188 8.13941 8.33691 8.18757 8.00317 8.16367C7.66944 8.13976 7.34475 8.04437 7.05113 7.88395C6.7575 7.72353 6.50181 7.50184 6.3014 7.23391C6.10843 6.97593 5.74287 6.92323 5.48489 7.1162C5.22691 7.30917 5.17421 7.67474 5.36718 7.93272C5.66779 8.33461 6.05133 8.66715 6.49176 8.90778C6.9322 9.14841 7.41923 9.2915 7.91983 9.32735C8.42043 9.3632 8.92289 9.29097 9.39312 9.11556C9.86335 8.94016 10.2904 8.66567 10.6452 8.31072L12.3951 6.56079L12.4022 6.55356C13.0398 5.89345 13.3925 5.00935 13.3846 4.09166C13.3766 3.17397 13.0085 2.29613 12.3596 1.6472C11.7106 0.998268 10.8328 0.630177 9.91511 0.622203Z" fill="#A71A1A" />
6
+ <path d="M6.08205 4.6726C5.58145 4.63675 5.079 4.70898 4.60877 4.88439C4.13857 5.05979 3.71159 5.33425 3.35679 5.68916L1.60678 7.43916L1.59968 7.44639C0.962126 8.1065 0.609345 8.99061 0.61732 9.9083C0.625294 10.826 0.993386 11.7038 1.64231 12.3528C2.29124 13.0017 3.16909 13.3698 4.08677 13.3778C5.00446 13.3857 5.88857 13.0329 6.54868 12.3954L6.55591 12.3883L7.55341 11.3908C7.78122 11.163 7.78122 10.7936 7.55341 10.5658C7.3256 10.338 6.95626 10.338 6.72845 10.5658L5.73473 11.5596C5.29503 11.9825 4.70711 12.2164 4.09691 12.2111C3.48512 12.2058 2.89989 11.9604 2.46727 11.5278C2.03465 11.0952 1.78926 10.51 1.78394 9.89816C1.77864 9.28796 2.01259 8.70004 2.43553 8.26034L4.18174 6.51412C4.41829 6.27749 4.70304 6.09442 5.01652 5.97748C5.33001 5.86054 5.66498 5.81239 5.99871 5.83629C6.33245 5.86019 6.65714 5.95559 6.95076 6.11601C7.24438 6.27643 7.50007 6.49812 7.70048 6.76605C7.89346 7.02403 8.25902 7.07673 8.517 6.88376C8.77498 6.69078 8.82768 6.32522 8.63471 6.06724C8.33409 5.66535 7.95056 5.33281 7.51013 5.09218C7.06969 4.85155 6.58265 4.70846 6.08205 4.6726Z" fill="#A71A1A" />
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_3315_14958">
10
+ <rect width="14" height="14" fill="white" />
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
14
+
15
+ )
16
+ }
@@ -0,0 +1,10 @@
1
+ export default function LocationPin() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path opacity="0.16" fillRule="evenodd" clipRule="evenodd" d="M17.5008 16.5L12.0008 22L6.50083 16.5C3.46327 13.4624 3.46326 8.53754 6.50083 5.49998C9.53839 2.46241 14.4633 2.46241 17.5008 5.49998C20.5384 8.53754 20.5384 13.4624 17.5008 16.5ZM12.0009 12C12.5531 12 13.0009 11.5523 13.0009 11C13.0009 10.4477 12.5531 9.99997 12.0009 9.99997C11.4486 9.99997 11.0009 10.4477 11.0009 11C11.0009 11.5523 11.4486 12 12.0009 12Z" fill="#A71A1A" />
5
+ <rect x="12" y="11" width="0.01" height="0.01" stroke="#A71A1A" strokeWidth="3" strokeLinejoin="round" />
6
+ <path d="M12 22L17.5 16.5C20.5376 13.4624 20.5376 8.53757 17.5 5.5C14.4624 2.46244 9.53757 2.46244 6.5 5.5C3.46244 8.53757 3.46244 13.4624 6.5 16.5L12 22Z" stroke="#A71A1A" strokeWidth="2" strokeLinejoin="round" />
7
+ </svg>
8
+
9
+ )
10
+ }
@@ -0,0 +1,15 @@
1
+ export default function Logout() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3885_10239)">
5
+ <path d="M6 9L3 12M3 12L6 15M3 12L15 12" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
6
+ <path d="M10 18L10 20L19 20C20.1046 20 21 19.1046 21 18L21 6C21 4.89543 20.1046 4 19 4L10 4L10 6" stroke="#0A0101" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_3885_10239">
10
+ <rect width="24" height="24" fill="white" />
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
14
+ )
15
+ }
@@ -0,0 +1,8 @@
1
+ export default function MapMarker() {
2
+ return (
3
+ <svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M13 14H9.90875C10.428 13.5363 10.9177 13.0406 11.375 12.5156C13.0906 10.5425 14 8.4625 14 6.5C14 5.04131 13.4205 3.64236 12.3891 2.61091C11.3576 1.57946 9.95869 1 8.5 1C7.04131 1 5.64236 1.57946 4.61091 2.61091C3.57946 3.64236 3 5.04131 3 6.5C3 8.4625 3.90688 10.5425 5.625 12.5156C6.08226 13.0406 6.57197 13.5363 7.09125 14H4C3.86739 14 3.74021 14.0527 3.64645 14.1464C3.55268 14.2402 3.5 14.3674 3.5 14.5C3.5 14.6326 3.55268 14.7598 3.64645 14.8536C3.74021 14.9473 3.86739 15 4 15H13C13.1326 15 13.2598 14.9473 13.3536 14.8536C13.4473 14.7598 13.5 14.6326 13.5 14.5C13.5 14.3674 13.4473 14.2402 13.3536 14.1464C13.2598 14.0527 13.1326 14 13 14ZM8.5 4.5C8.89556 4.5 9.28224 4.6173 9.61114 4.83706C9.94004 5.05682 10.1964 5.36918 10.3478 5.73463C10.4991 6.10009 10.5387 6.50222 10.4616 6.89018C10.3844 7.27814 10.1939 7.63451 9.91421 7.91421C9.63451 8.19392 9.27814 8.3844 8.89018 8.46157C8.50222 8.53874 8.10009 8.49913 7.73463 8.34776C7.36918 8.19638 7.05682 7.94004 6.83706 7.61114C6.6173 7.28224 6.5 6.89556 6.5 6.5C6.5 5.96957 6.71071 5.46086 7.08579 5.08579C7.46086 4.71071 7.96957 4.5 8.5 4.5Z" fill="white" />
5
+ </svg>
6
+
7
+ )
8
+ }
@@ -0,0 +1,17 @@
1
+ export const MarkerRed = () => {
2
+ return (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="10"
6
+ height="10"
7
+ fill="none"
8
+ viewBox="0 0 10 10"
9
+ >
10
+ <path fill="#fff" fillOpacity="0.01" d="M0 0h9.106v9.106H0z"></path>
11
+ <path
12
+ fill="#A71A1A"
13
+ d="M4.553.57a3.134 3.134 0 0 0-3.13 3.13c-.001.678.22 1.338.63 1.878 0 0 .086.112.1.128l2.4 2.831 2.402-2.832.098-.127v-.001c.41-.54.632-1.2.63-1.878A3.134 3.134 0 0 0 4.554.57m0 4.268a1.138 1.138 0 1 1 0-2.277 1.138 1.138 0 0 1 0 2.277"
14
+ ></path>
15
+ </svg>
16
+ )
17
+ };
@@ -0,0 +1,11 @@
1
+ export default function Menu() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M21 4.5H3V6H21V4.5Z" fill="#A71A1A"/>
5
+ <path d="M21 18H3V19.5H21V18Z" fill="#A71A1A"/>
6
+ <path d="M21 9H3V10.5H21V9Z" fill="#A71A1A"/>
7
+ <path d="M21 13.5H3V15H21V13.5Z" fill="#A71A1A"/>
8
+ </svg>
9
+
10
+ )
11
+ }
@@ -0,0 +1,17 @@
1
+ export default function Mission() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3885_23042)">
5
+ <path d="M9.67969 20.8203C13.2695 20.8203 16.1797 17.9102 16.1797 14.3203C16.1797 10.7305 13.2695 7.82031 9.67969 7.82031C6.08984 7.82031 3.17969 10.7305 3.17969 14.3203C3.17969 17.9102 6.08984 20.8203 9.67969 20.8203Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
6
+ <path d="M9.67969 17.2891C11.3193 17.2891 12.6484 15.9599 12.6484 14.3203C12.6484 12.6807 11.3193 11.3516 9.67969 11.3516C8.04009 11.3516 6.71094 12.6807 6.71094 14.3203C6.71094 15.9599 8.04009 17.2891 9.67969 17.2891Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M9.67969 14.3202L16.4332 7.56665" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
8
+ <path d="M15.3835 8.61638L16.7917 9.08578C17.8585 9.44136 19.0346 9.16371 19.8298 8.3686L21.2577 6.94063H20.028C18.3884 6.94063 17.0593 5.61148 17.0593 3.97188V2.74219L15.6313 4.17016C14.8362 4.9653 14.5586 6.14141 14.9141 7.20819L15.3835 8.61638Z" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_3885_23042">
12
+ <rect width="24" height="24" fill="white" />
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
16
+ )
17
+ }
@@ -0,0 +1,18 @@
1
+ export default function Moment() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3885_705)">
5
+ <path d="M20 12H4" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
6
+ <path d="M16 4H18C19.1046 4 20 4.89543 20 6V8" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M8 20L6 20C4.89543 20 4 19.1046 4 18L4 16" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
8
+ <path d="M20 16V18C20 19.1046 19.1046 20 18 20H16" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
9
+ <path d="M4 8L4 6C4 4.89543 4.89543 4 6 4L8 4" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_3885_705">
13
+ <rect width="24" height="24" fill="white" />
14
+ </clipPath>
15
+ </defs>
16
+ </svg>
17
+ )
18
+ }
@@ -0,0 +1,15 @@
1
+ export default function Phone() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_2652_18400)">
5
+ <path opacity="0.16" d="M19.5063 7.95952C18.0666 13.6147 13.6147 18.0666 7.95953 19.5063C5.81867 20.0513 4 18.2091 4 16V15C4 14.4477 4.44883 14.0053 4.99842 13.9508C5.92696 13.8587 6.81815 13.6397 7.65438 13.3112L9.17366 14.8305C11.6447 13.648 13.648 11.6447 14.8305 9.17367L13.3112 7.65438C13.6397 6.81816 13.8587 5.92696 13.9508 4.99842C14.0053 4.44883 14.4477 4 15 4H16C18.2091 4 20.0513 5.81867 19.5063 7.95952Z" fill="#A71A1A" />
6
+ <path d="M19.5063 7.95952C18.0666 13.6147 13.6147 18.0666 7.95953 19.5063C5.81867 20.0513 4 18.2091 4 16V15C4 14.4477 4.44883 14.0053 4.99842 13.9508C5.92696 13.8587 6.81815 13.6397 7.65438 13.3112L9.17366 14.8305C11.6447 13.648 13.648 11.6447 14.8305 9.17367L13.3112 7.65438C13.6397 6.81816 13.8587 5.92696 13.9508 4.99842C14.0053 4.44883 14.4477 4 15 4H16C18.2091 4 20.0513 5.81867 19.5063 7.95952Z" stroke="#A71A1A" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_2652_18400">
10
+ <rect width="24" height="24" fill="white" />
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
14
+ )
15
+ }
@@ -0,0 +1,8 @@
1
+ export default function Pin() {
2
+ return (
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <rect width="16" height="16" fill="white" fillOpacity="0.01" style={{mixBlendMode: "multiply"}} />
5
+ <path d="M8.00001 1C6.54186 1.00177 5.14394 1.58181 4.11288 2.61287C3.08181 3.64394 2.50178 5.04185 2.50001 6.5C2.49828 7.69163 2.88758 8.85092 3.60816 9.8C3.60816 9.8 3.75816 9.99725 3.78226 10.0259L8.00001 15L12.2195 10.0237C12.2417 9.99705 12.3919 9.7998 12.3919 9.7998L12.3926 9.7986C13.1128 8.84987 13.5018 7.69109 13.5 6.5C13.4982 5.04185 12.9182 3.64394 11.8871 2.61287C10.8561 1.58181 9.45815 1.00177 8.00001 1ZM8.00001 8.5C7.60444 8.5 7.21776 8.3827 6.88887 8.16294C6.55997 7.94318 6.30362 7.63082 6.15225 7.26537C6.00087 6.89992 5.96126 6.49778 6.03844 6.10982C6.11561 5.72186 6.30609 5.36549 6.58579 5.08579C6.8655 4.80608 7.22186 4.6156 7.60983 4.53843C7.99779 4.46126 8.39992 4.50087 8.76537 4.65224C9.13083 4.80362 9.44318 5.05996 9.66295 5.38886C9.88271 5.71776 10 6.10444 10 6.5C9.99941 7.03025 9.78851 7.53861 9.41356 7.91356C9.03862 8.2885 8.53026 8.49941 8.00001 8.5Z" fill="currentColor" />
6
+ </svg>
7
+ )
8
+ }
@@ -0,0 +1,17 @@
1
+ export default function PinCircle() {
2
+ return (
3
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <rect width="40" height="40" rx="20" fill="#A71A1A" />
5
+ <g clipPath="url(#clip0_1639_6872)">
6
+ <path opacity="0.16" fillRule="evenodd" clipRule="evenodd" d="M25.4999 24.5001L19.9999 30.0001L14.4999 24.5001C11.4623 21.4625 11.4623 16.5377 14.4999 13.5001C17.5374 10.4625 22.4623 10.4625 25.4999 13.5001C28.5374 16.5377 28.5374 21.4625 25.4999 24.5001ZM19.9999 20.0001C20.5522 20.0001 20.9999 19.5524 20.9999 19.0001C20.9999 18.4478 20.5522 18.0001 19.9999 18.0001C19.4476 18.0001 18.9999 18.4478 18.9999 19.0001C18.9999 19.5524 19.4476 20.0001 19.9999 20.0001Z" fill="white" />
7
+ <rect x="20" y="19" width="0.01" height="0.01" stroke="white" strokeWidth="3" strokeLinejoin="round" />
8
+ <path d="M20 30L25.5 24.5C28.5376 21.4624 28.5376 16.5376 25.5 13.5C22.4624 10.4624 17.5376 10.4624 14.5 13.5C11.4624 16.5376 11.4624 21.4624 14.5 24.5L20 30Z" stroke="white" strokeWidth="2" strokeLinejoin="round" />
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_1639_6872">
12
+ <rect width="24" height="24" fill="white" transform="translate(8 8)" />
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
16
+ )
17
+ }
@@ -0,0 +1,7 @@
1
+ export default function PinOutlined() {
2
+ return (
3
+ <svg width="20" height="23" viewBox="0 0 20 23" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path fillRule="evenodd" clipRule="evenodd" d="M5.38374 5.38374C7.93315 2.83433 12.0666 2.83433 14.616 5.38374C17.1654 7.93315 17.1654 12.0666 14.616 14.616L9.99985 19.2321L5.38374 14.616C2.83433 12.0666 2.83433 7.93315 5.38374 5.38374ZM16.3837 3.61597C12.858 0.0902497 7.14169 0.0902497 3.61597 3.61597C0.0902479 7.14169 0.0902513 12.858 3.61597 16.3837L9.11597 21.8837C9.35039 22.1182 9.66833 22.2499 9.99985 22.2499C10.3314 22.2499 10.6493 22.1182 10.8837 21.8837L16.3837 16.3837C19.9095 12.858 19.9095 7.14169 16.3837 3.61597ZM9.99985 8.12485C8.96432 8.12485 8.12485 8.96432 8.12485 9.99985V10.0099C8.12485 11.0454 8.96432 11.8849 9.99985 11.8849H10.0099C11.0454 11.8849 11.8849 11.0454 11.8849 10.0099V9.99985C11.8849 8.96432 11.0454 8.12485 10.0099 8.12485H9.99985Z" fill="currentColor" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,15 @@
1
+ export default function Profile() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_1_94296)">
5
+ <path d="M4 18C4 15.7908 5.79086 14 8 14H16C18.2091 14 20 15.7908 20 18V18C20 19.1045 19.1046 20 18 20H6C4.89543 20 4 19.1045 4 18V18Z" stroke="currentColor" strokeWidth="2" strokeLinejoin="round" />
6
+ <circle cx="12" cy="6.99997" r="3" stroke="currentColor" strokeWidth="2" />
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_1_94296">
10
+ <rect width="24" height="24" fill="white" />
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
14
+ )
15
+ }
@@ -0,0 +1,23 @@
1
+ export default function ProfileGift() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_3885_22865)">
5
+ <g clipPath="url(#clip1_3885_22865)">
6
+ <path d="M4 11V19C4 20.1046 4.89543 21 6 21H18C19.1046 21 20 20.1046 20 19V11" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M6 4.5C6 3.11929 7.11929 2 8.5 2V2C10.433 2 12 3.567 12 5.5V7H8.5C7.11929 7 6 5.88071 6 4.5V4.5Z" stroke="#A71A1A" strokeWidth="2" strokeLinejoin="round" />
8
+ <path d="M18 4.5C18 3.11929 16.8807 2 15.5 2V2C13.567 2 12 3.567 12 5.5V7H15.5C16.8807 7 18 5.88071 18 4.5V4.5Z" stroke="#A71A1A" strokeWidth="2" strokeLinejoin="round" />
9
+ <path d="M3 7H21V11H3V7Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
10
+ <path d="M12 11V21" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
11
+ </g>
12
+ </g>
13
+ <defs>
14
+ <clipPath id="clip0_3885_22865">
15
+ <rect width="24" height="24" fill="white" />
16
+ </clipPath>
17
+ <clipPath id="clip1_3885_22865">
18
+ <rect width="24" height="24" fill="white" />
19
+ </clipPath>
20
+ </defs>
21
+ </svg>
22
+ )
23
+ }
@@ -0,0 +1,20 @@
1
+ export default function ProgressBar() {
2
+ return (
3
+ <svg width="600" height="22" viewBox="0 0 600 22" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_232_42245)">
5
+ <path fillRule="evenodd" clipRule="evenodd" d="M600 5H0V0H600V5Z" fill="#A71A1A" />
6
+ </g>
7
+ <g clipPath="url(#clip1_232_42245)">
8
+ <path fillRule="evenodd" clipRule="evenodd" d="M600 22H0V10H600V22Z" fill="#A71A1A" />
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_232_42245">
12
+ <rect width="600" height="5" fill="white" />
13
+ </clipPath>
14
+ <clipPath id="clip1_232_42245">
15
+ <rect width="600" height="12" fill="white" transform="translate(0 10)" />
16
+ </clipPath>
17
+ </defs>
18
+ </svg>
19
+ )
20
+ }
@@ -0,0 +1,44 @@
1
+ export default function ProgressBarInner() {
2
+ return (
3
+ <svg width="600" height="16" viewBox="0 0 600 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <rect width="3.42898" height="16.341" transform="matrix(0.899244 0.437448 -0.565251 0.824919 9.23682 0)" fill="white" fillOpacity="0.5" />
5
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 25.1211 0.0307617)" fill="white" fillOpacity="0.5" />
6
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 41.0044 0.0307617)" fill="white" fillOpacity="0.5" />
7
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 56.8877 0.0307617)" fill="white" fillOpacity="0.5" />
8
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 72.771 0.0307617)" fill="white" fillOpacity="0.5" />
9
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 88.6538 0.0307617)" fill="white" fillOpacity="0.5" />
10
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 104.537 0.0307617)" fill="white" fillOpacity="0.5" />
11
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 120.42 0.0307617)" fill="white" fillOpacity="0.5" />
12
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 136.304 0.0307617)" fill="white" fillOpacity="0.5" />
13
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 152.187 0.0307617)" fill="white" fillOpacity="0.5" />
14
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 168.07 0.0307617)" fill="white" fillOpacity="0.5" />
15
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 183.953 0.0307617)" fill="white" fillOpacity="0.5" />
16
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 199.836 0.0307617)" fill="white" fillOpacity="0.5" />
17
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 215.72 0.0307617)" fill="white" fillOpacity="0.5" />
18
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 231.603 0.0307617)" fill="white" fillOpacity="0.5" />
19
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 247.486 0.0307617)" fill="white" fillOpacity="0.5" />
20
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 263.369 0.0307617)" fill="white" fillOpacity="0.5" />
21
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 279.252 0.0307617)" fill="white" fillOpacity="0.5" />
22
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 295.136 0.0307617)" fill="white" fillOpacity="0.5" />
23
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 311.019 0.0307617)" fill="white" fillOpacity="0.5" />
24
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 326.902 0.0307617)" fill="white" fillOpacity="0.5" />
25
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 342.785 0.0307617)" fill="white" fillOpacity="0.5" />
26
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 358.668 0.0307617)" fill="white" fillOpacity="0.5" />
27
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 374.552 0.0307617)" fill="white" fillOpacity="0.5" />
28
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 390.435 0.0307617)" fill="white" fillOpacity="0.5" />
29
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 406.318 0.0307617)" fill="white" fillOpacity="0.5" />
30
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 422.201 0.0307617)" fill="white" fillOpacity="0.5" />
31
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 438.084 0.0307617)" fill="white" fillOpacity="0.5" />
32
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 453.968 0.0307617)" fill="white" fillOpacity="0.5" />
33
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 469.851 0.0307617)" fill="white" fillOpacity="0.5" />
34
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 485.734 0.0307617)" fill="white" fillOpacity="0.5" />
35
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 501.618 0.0307617)" fill="white" fillOpacity="0.5" />
36
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 517.5 0.0307617)" fill="white" fillOpacity="0.5" />
37
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 533.384 0.0307617)" fill="white" fillOpacity="0.5" />
38
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 549.267 0.0307617)" fill="white" fillOpacity="0.5" />
39
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 565.15 0.0307617)" fill="white" fillOpacity="0.5" />
40
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 581.034 0.0307617)" fill="white" fillOpacity="0.5" />
41
+ <rect width="3.42898" height="16.3459" transform="matrix(0.899244 0.437448 -0.565251 0.824919 596.917 0.0307617)" fill="white" fillOpacity="0.5" />
42
+ </svg>
43
+ )
44
+ }
@@ -0,0 +1,18 @@
1
+ export default function SealCheckIcon(props: any) {
2
+ return (
3
+ <svg
4
+ width="16"
5
+ height="17"
6
+ viewBox="0 0 16 17"
7
+ fill="none"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M14.1163 7.11393C13.8806 6.86768 13.6369 6.61393 13.545 6.39081C13.46 6.18643 13.455 5.84768 13.45 5.51956C13.4406 4.90956 13.4306 4.21831 12.95 3.73768C12.4694 3.25706 11.7781 3.24706 11.1681 3.23768C10.84 3.23268 10.5013 3.22768 10.2969 3.14268C10.0744 3.05081 9.82 2.80706 9.57375 2.57143C9.1425 2.15706 8.6525 1.68768 8 1.68768C7.3475 1.68768 6.85812 2.15706 6.42625 2.57143C6.18 2.80706 5.92625 3.05081 5.70312 3.14268C5.5 3.22768 5.16 3.23268 4.83187 3.23768C4.22187 3.24706 3.53062 3.25706 3.05 3.73768C2.56937 4.21831 2.5625 4.90956 2.55 5.51956C2.545 5.84768 2.54 6.18643 2.455 6.39081C2.36312 6.61331 2.11937 6.86768 1.88375 7.11393C1.46937 7.54518 1 8.03518 1 8.68768C1 9.34018 1.46937 9.82956 1.88375 10.2614C2.11937 10.5077 2.36312 10.7614 2.455 10.9846C2.54 11.1889 2.545 11.5277 2.55 11.8558C2.55937 12.4658 2.56937 13.1571 3.05 13.6377C3.53062 14.1183 4.22187 14.1283 4.83187 14.1377C5.16 14.1427 5.49875 14.1477 5.70312 14.2327C5.92562 14.3246 6.18 14.5683 6.42625 14.8039C6.8575 15.2183 7.3475 15.6877 8 15.6877C8.6525 15.6877 9.14187 15.2183 9.57375 14.8039C9.82 14.5683 10.0737 14.3246 10.2969 14.2327C10.5013 14.1477 10.84 14.1427 11.1681 14.1377C11.7781 14.1283 12.4694 14.1183 12.95 13.6377C13.4306 13.1571 13.4406 12.4658 13.45 11.8558C13.455 11.5277 13.46 11.1889 13.545 10.9846C13.6369 10.7621 13.8806 10.5077 14.1163 10.2614C14.5306 9.83018 15 9.34018 15 8.68768C15 8.03518 14.5306 7.54581 14.1163 7.11393ZM10.8538 7.54143L7.35375 11.0414C7.30731 11.0879 7.25217 11.1248 7.19147 11.15C7.13077 11.1751 7.06571 11.1881 7 11.1881C6.93429 11.1881 6.86923 11.1751 6.80853 11.15C6.74783 11.1248 6.69269 11.0879 6.64625 11.0414L5.14625 9.54143C5.05243 9.44761 4.99972 9.32036 4.99972 9.18768C4.99972 9.055 5.05243 8.92775 5.14625 8.83393C5.24007 8.74011 5.36732 8.68741 5.5 8.68741C5.63268 8.68741 5.75993 8.74011 5.85375 8.83393L7 9.98081L10.1462 6.83393C10.1927 6.78748 10.2479 6.75063 10.3086 6.72549C10.3692 6.70035 10.4343 6.68741 10.5 6.68741C10.5657 6.68741 10.6308 6.70035 10.6914 6.72549C10.7521 6.75063 10.8073 6.78748 10.8538 6.83393C10.9002 6.88039 10.9371 6.93554 10.9622 6.99623C10.9873 7.05693 11.0003 7.12199 11.0003 7.18768C11.0003 7.25338 10.9873 7.31843 10.9622 7.37913C10.9371 7.43983 10.9002 7.49498 10.8538 7.54143Z"
13
+ fill="#50F91D"
14
+ />
15
+ </svg>
16
+ );
17
+ }
18
+
@@ -0,0 +1,7 @@
1
+ export default function Search() {
2
+ return (
3
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M17.9419 17.0577L14.0302 13.1468C15.1639 11.7856 15.7293 10.0398 15.6086 8.27238C15.488 6.50499 14.6906 4.85217 13.3823 3.65772C12.074 2.46328 10.3557 1.8192 8.58462 1.85944C6.81357 1.89969 5.12622 2.62118 3.87358 3.87383C2.62094 5.12647 1.89945 6.81382 1.8592 8.58486C1.81895 10.3559 2.46304 12.0743 3.65748 13.3825C4.85192 14.6908 6.50475 15.4882 8.27214 15.6089C10.0395 15.7295 11.7854 15.1642 13.1466 14.0304L17.0575 17.9421C17.1156 18.0002 17.1845 18.0463 17.2604 18.0777C17.3363 18.1091 17.4176 18.1253 17.4997 18.1253C17.5818 18.1253 17.6631 18.1091 17.739 18.0777C17.8149 18.0463 17.8838 18.0002 17.9419 17.9421C17.9999 17.8841 18.046 17.8151 18.0774 17.7392C18.1089 17.6634 18.125 17.5821 18.125 17.4999C18.125 17.4178 18.1089 17.3365 18.0774 17.2606C18.046 17.1848 17.9999 17.1158 17.9419 17.0577ZM3.12469 8.74993C3.12469 7.63741 3.45459 6.54988 4.07267 5.62485C4.69076 4.69982 5.56926 3.97885 6.5971 3.55311C7.62493 3.12737 8.75593 3.01598 9.84707 3.23302C10.9382 3.45006 11.9405 3.98579 12.7272 4.77246C13.5138 5.55913 14.0496 6.56141 14.2666 7.65255C14.4837 8.74369 14.3723 9.87469 13.9465 10.9025C13.5208 11.9304 12.7998 12.8089 11.8748 13.427C10.9497 14.045 9.86221 14.3749 8.74969 14.3749C7.25836 14.3733 5.82858 13.7801 4.77404 12.7256C3.71951 11.6711 3.12634 10.2413 3.12469 8.74993Z" fill="#8F8F8F" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,7 @@
1
+ export default function SendMessage() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M5 12L4.39589 6.56299C4.22297 5.0067 5.82469 3.86433 7.23983 4.53465L19.1842 10.1925C20.7093 10.9149 20.7093 13.0851 19.1842 13.8075L7.23983 19.4653C5.82469 20.1357 4.22297 18.9933 4.39589 17.437L5 12ZM5 12H12" stroke="white" strokeLinecap="round" strokeLinejoin="round" />
5
+ </svg>
6
+ )
7
+ }
@@ -0,0 +1,14 @@
1
+ export default function Share() {
2
+ return (
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clipPath="url(#clip0_1_94287)">
5
+ <path d="M16.2722 6.00791C16.6191 6.60134 17.263 7 18 7C19.1046 7 20 6.10457 20 5C20 3.89543 19.1046 3 18 3C16.8954 3 16 3.89543 16 5C16 5.36756 16.0991 5.71195 16.2722 6.00791ZM16.2722 6.00791L7.72784 10.9921M7.72784 10.9921C7.38092 10.3987 6.73701 10 6 10C4.89543 10 4 10.8954 4 12C4 13.1046 4.89543 14 6 14C6.73701 14 7.38092 13.6013 7.72784 13.0079M7.72784 10.9921C7.90085 11.288 8 11.6324 8 12C8 12.3676 7.90085 12.712 7.72784 13.0079M7.72784 13.0079L16.2722 17.9921M16.2722 17.9921C16.6191 17.3987 17.263 17 18 17C19.1046 17 20 17.8954 20 19C20 20.1046 19.1046 21 18 21C16.8954 21 16 20.1046 16 19C16 18.6324 16.0991 18.288 16.2722 17.9921Z" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1_94287">
9
+ <rect width="24" height="24" fill="white" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
13
+ )
14
+ }