@hellobetterdigitalnz/betterui 0.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 (230) hide show
  1. package/.editorconfig +17 -0
  2. package/.eslintrc.cjs +14 -0
  3. package/.storybook/main.ts +23 -0
  4. package/.storybook/preview.ts +17 -0
  5. package/README.md +30 -0
  6. package/index.html +13 -0
  7. package/package.json +45 -0
  8. package/public/image/table-image.png +0 -0
  9. package/public/vite.svg +1 -0
  10. package/src/App.tsx +30 -0
  11. package/src/Components/DataDisplay/Accordion/Accordion.stories.tsx +57 -0
  12. package/src/Components/DataDisplay/Accordion/Accordion.tsx +14 -0
  13. package/src/Components/DataDisplay/Accordion/AccordionContext.tsx +11 -0
  14. package/src/Components/DataDisplay/Accordion/AccordionContextInterface.tsx +8 -0
  15. package/src/Components/DataDisplay/Accordion/AccordionItem.tsx +62 -0
  16. package/src/Components/DataDisplay/Accordion/AccordionItemProps.tsx +12 -0
  17. package/src/Components/DataDisplay/Accordion/AccordionProps.tsx +8 -0
  18. package/src/Components/DataDisplay/Accordion/AccordionProvider.tsx +65 -0
  19. package/src/Components/DataDisplay/Accordion/AccordionProviderInterface.tsx +8 -0
  20. package/src/Components/DataDisplay/Accordion/accordion.module.scss +56 -0
  21. package/src/Components/DataDisplay/Badge/Badge.stories.tsx +44 -0
  22. package/src/Components/DataDisplay/Badge/Badge.tsx +32 -0
  23. package/src/Components/DataDisplay/Badge/BadgeProps.tsx +6 -0
  24. package/src/Components/DataDisplay/Badge/badge.module.scss +42 -0
  25. package/src/Components/DataDisplay/Cards/BannerCard/BannerCard.stories.tsx +26 -0
  26. package/src/Components/DataDisplay/Cards/BannerCard/BannerCard.tsx +47 -0
  27. package/src/Components/DataDisplay/Cards/BannerCard/BannerCardInterface.tsx +15 -0
  28. package/src/Components/DataDisplay/Cards/BannerCard/banner-card.scss +54 -0
  29. package/src/Components/DataDisplay/Cards/PathwayCard/PathwayCard.stories.tsx +31 -0
  30. package/src/Components/DataDisplay/Cards/PathwayCard/PathwayCard.tsx +53 -0
  31. package/src/Components/DataDisplay/Cards/PathwayCard/PathwayCardInterface.tsx +17 -0
  32. package/src/Components/DataDisplay/Cards/PathwayCard/pathway-card-stories.scss +3 -0
  33. package/src/Components/DataDisplay/Cards/PathwayCard/pathway-card.scss +62 -0
  34. package/src/Components/DataDisplay/Media/Media.tsx +26 -0
  35. package/src/Components/DataDisplay/Media/MediaProps.tsx +9 -0
  36. package/src/Components/DataDisplay/Media/media.scss +0 -0
  37. package/src/Components/DataDisplay/Modal/Modal.tsx +5 -0
  38. package/src/Components/DataDisplay/Modal/ModalActions.tsx +5 -0
  39. package/src/Components/DataDisplay/Modal/ModalActionsLeft.tsx +5 -0
  40. package/src/Components/DataDisplay/Modal/ModalActionsRight.tsx +5 -0
  41. package/src/Components/DataDisplay/Modal/ModalBody.tsx +5 -0
  42. package/src/Components/DataDisplay/Modal/ModalCurtain.tsx +5 -0
  43. package/src/Components/DataDisplay/Modal/ModalHeader.tsx +5 -0
  44. package/src/Components/DataDisplay/NotificationsBell/NotificationBell.stories.tsx +27 -0
  45. package/src/Components/DataDisplay/NotificationsBell/NotificationsBell.tsx +51 -0
  46. package/src/Components/DataDisplay/NotificationsBell/NotificationsBellProps.tsx +9 -0
  47. package/src/Components/DataDisplay/NotificationsBell/notificationBell.module.scss +48 -0
  48. package/src/Components/DataDisplay/NotificationsPanel/Notification.stories.tsx +128 -0
  49. package/src/Components/DataDisplay/NotificationsPanel/Notification.tsx +59 -0
  50. package/src/Components/DataDisplay/NotificationsPanel/NotificationProps.tsx +11 -0
  51. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroup.tsx +17 -0
  52. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroupProps.tsx +8 -0
  53. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroups.tsx +42 -0
  54. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroupsProps.tsx +7 -0
  55. package/src/Components/DataDisplay/NotificationsPanel/NotificationsHeader.tsx +27 -0
  56. package/src/Components/DataDisplay/NotificationsPanel/NotificationsHeaderProps.tsx +9 -0
  57. package/src/Components/DataDisplay/NotificationsPanel/NotificationsNone.tsx +11 -0
  58. package/src/Components/DataDisplay/NotificationsPanel/NotificationsPanel.tsx +8 -0
  59. package/src/Components/DataDisplay/NotificationsPanel/NotificationsPanelProps.tsx +7 -0
  60. package/src/Components/DataDisplay/NotificationsPanel/notificationPanel.module.scss +196 -0
  61. package/src/Components/DataDisplay/Tab/Tab.stories.tsx +72 -0
  62. package/src/Components/DataDisplay/Tab/Tab.tsx +20 -0
  63. package/src/Components/DataDisplay/Tab/TabBody.tsx +6 -0
  64. package/src/Components/DataDisplay/Tab/TabBodyContent.tsx +15 -0
  65. package/src/Components/DataDisplay/Tab/TabBodyContentProps.tsx +9 -0
  66. package/src/Components/DataDisplay/Tab/TabBodyProps.tsx +8 -0
  67. package/src/Components/DataDisplay/Tab/TabContext.tsx +9 -0
  68. package/src/Components/DataDisplay/Tab/TabContextProps.tsx +6 -0
  69. package/src/Components/DataDisplay/Tab/TabNav.tsx +6 -0
  70. package/src/Components/DataDisplay/Tab/TabNavItem.tsx +49 -0
  71. package/src/Components/DataDisplay/Tab/TabNavItemProps.tsx +9 -0
  72. package/src/Components/DataDisplay/Tab/TabNavProps.tsx +8 -0
  73. package/src/Components/DataDisplay/Tab/TabProps.tsx +8 -0
  74. package/src/Components/DataDisplay/Tab/tab.module.scss +35 -0
  75. package/src/Components/DataDisplay/Tab/tab.stories.scss +3 -0
  76. package/src/Components/DataDisplay/Table/Table.stories.tsx +64 -0
  77. package/src/Components/DataDisplay/Table/Table.tsx +10 -0
  78. package/src/Components/DataDisplay/Table/TableBody.tsx +13 -0
  79. package/src/Components/DataDisplay/Table/TableBodyProps.tsx +8 -0
  80. package/src/Components/DataDisplay/Table/TableCell.tsx +30 -0
  81. package/src/Components/DataDisplay/Table/TableCellAction.tsx +27 -0
  82. package/src/Components/DataDisplay/Table/TableCellActionProps.tsx +11 -0
  83. package/src/Components/DataDisplay/Table/TableCellProps.tsx +11 -0
  84. package/src/Components/DataDisplay/Table/TableCellWithDesc.tsx +21 -0
  85. package/src/Components/DataDisplay/Table/TableCellWithDescProps.tsx +9 -0
  86. package/src/Components/DataDisplay/Table/TableCellWithImage.tsx +39 -0
  87. package/src/Components/DataDisplay/Table/TableCellWithImageProps.tsx +10 -0
  88. package/src/Components/DataDisplay/Table/TableFooter.tsx +5 -0
  89. package/src/Components/DataDisplay/Table/TableHead.tsx +11 -0
  90. package/src/Components/DataDisplay/Table/TableHeadProps.tsx +8 -0
  91. package/src/Components/DataDisplay/Table/TableHeaderCell.tsx +17 -0
  92. package/src/Components/DataDisplay/Table/TableHeaderCellProps.tsx +10 -0
  93. package/src/Components/DataDisplay/Table/TableProps.tsx +8 -0
  94. package/src/Components/DataDisplay/Table/TableRow.tsx +9 -0
  95. package/src/Components/DataDisplay/Table/TableRowProps.tsx +8 -0
  96. package/src/Components/DataDisplay/Table/table.module.scss +103 -0
  97. package/src/Components/Form/Button/Button.stories.tsx +66 -0
  98. package/src/Components/Form/Button/Button.tsx +64 -0
  99. package/src/Components/Form/Button/ButtonProps.tsx +18 -0
  100. package/src/Components/Form/Button/button.module.scss +142 -0
  101. package/src/Components/Form/Checkbox/Checkbox.stories.tsx +49 -0
  102. package/src/Components/Form/Checkbox/Checkbox.tsx +85 -0
  103. package/src/Components/Form/Checkbox/CheckboxProps.tsx +22 -0
  104. package/src/Components/Form/Checkbox/checkbox.module.scss +63 -0
  105. package/src/Components/Form/CheckboxSelect/CheckboxSelect.tsx +5 -0
  106. package/src/Components/Form/CheckboxSelect/CheckboxSelectItem.tsx +5 -0
  107. package/src/Components/Form/CheckboxSet/CheckboxSet.stories.tsx +93 -0
  108. package/src/Components/Form/CheckboxSet/CheckboxSet.tsx +14 -0
  109. package/src/Components/Form/CheckboxSet/CheckboxSetItem.tsx +88 -0
  110. package/src/Components/Form/CheckboxSet/CheckboxSetProps.tsx +9 -0
  111. package/src/Components/Form/CheckboxSet/checkboxSet.module.scss +13 -0
  112. package/src/Components/Form/CurrencyField/CurrenctField.stories.tsx +22 -0
  113. package/src/Components/Form/CurrencyField/CurrencyField.tsx +59 -0
  114. package/src/Components/Form/CurrencyField/CurrencyFieldProps.tsx +8 -0
  115. package/src/Components/Form/DateField/DateField.stories.tsx +22 -0
  116. package/src/Components/Form/DateField/DateField.tsx +58 -0
  117. package/src/Components/Form/DropdownBadge/DropdownBadge.stories.tsx +49 -0
  118. package/src/Components/Form/DropdownBadge/DropdownBadge.tsx +160 -0
  119. package/src/Components/Form/DropdownBadge/DropdownBadgeItem.tsx +40 -0
  120. package/src/Components/Form/DropdownBadge/DropdownBadgeItemProps.tsx +10 -0
  121. package/src/Components/Form/DropdownBadge/DropdownBadgeProps.tsx +31 -0
  122. package/src/Components/Form/DropdownBadge/DropdownBadgeSelector.tsx +11 -0
  123. package/src/Components/Form/DropdownBadge/DropdownBadgeSelectorProps.tsx +7 -0
  124. package/src/Components/Form/DropdownBadge/dropdownBadge.module.scss +105 -0
  125. package/src/Components/Form/DropdownField/DropdownField.stories.tsx +50 -0
  126. package/src/Components/Form/DropdownField/DropdownField.tsx +118 -0
  127. package/src/Components/Form/DropdownField/DropdownFieldItem.tsx +26 -0
  128. package/src/Components/Form/DropdownField/DropdownFieldItemProps.tsx +9 -0
  129. package/src/Components/Form/DropdownField/DropdownFieldProps.tsx +33 -0
  130. package/src/Components/Form/DropdownField/DropdownFieldSelector.tsx +15 -0
  131. package/src/Components/Form/DropdownField/DropdownFieldSelectorProps.tsx +7 -0
  132. package/src/Components/Form/DropdownField/dropdown.module.scss +79 -0
  133. package/src/Components/Form/EmailField/EmailField.stories.ts +23 -0
  134. package/src/Components/Form/EmailField/EmailField.tsx +51 -0
  135. package/src/Components/Form/ErrorMessage/ErrorMessage.tsx +5 -0
  136. package/src/Components/Form/FormFieldHolder/FormFieldHolder.tsx +5 -0
  137. package/src/Components/Form/IconButton/IconButton.stories.tsx +45 -0
  138. package/src/Components/Form/IconButton/IconButton.tsx +58 -0
  139. package/src/Components/Form/IconButton/IconButtonProps.tsx +15 -0
  140. package/src/Components/Form/IconButton/iconButton.module.scss +111 -0
  141. package/src/Components/Form/InputProps.tsx +25 -0
  142. package/src/Components/Form/MultiSelectField/MultiSelectField.tsx +5 -0
  143. package/src/Components/Form/MultiSelectField/MultiSelectFieldItem.tsx +5 -0
  144. package/src/Components/Form/MultiSelectField/MultiSelectFieldTag.tsx +5 -0
  145. package/src/Components/Form/PasswordField/PasswordField.stories.tsx +22 -0
  146. package/src/Components/Form/PasswordField/PasswordField.tsx +70 -0
  147. package/src/Components/Form/RadioButtons/RadioButton.tsx +70 -0
  148. package/src/Components/Form/RadioButtons/RadioButtonProps.tsx +22 -0
  149. package/src/Components/Form/RadioButtons/RadioButtons.stories.tsx +64 -0
  150. package/src/Components/Form/RadioButtons/RadioButtons.tsx +18 -0
  151. package/src/Components/Form/RadioButtons/RadioButtonsProps.tsx +10 -0
  152. package/src/Components/Form/RadioButtons/radioButton.stories.scss +3 -0
  153. package/src/Components/Form/RadioButtons/radiobutton.module.scss +63 -0
  154. package/src/Components/Form/TextField/TextField.stories.ts +23 -0
  155. package/src/Components/Form/TextField/TextField.tsx +52 -0
  156. package/src/Components/Form/Textarea/Textarea.stories.ts +31 -0
  157. package/src/Components/Form/Textarea/Textarea.tsx +71 -0
  158. package/src/Components/Form/Textarea/TextareaProps.tsx +27 -0
  159. package/src/Components/Form/Textarea/textarea.module.scss +49 -0
  160. package/src/Components/Form/TimeField/TimeField.stories.tsx +22 -0
  161. package/src/Components/Form/TimeField/TimeField.tsx +58 -0
  162. package/src/Components/Form/ToggleSwitch/ToggleSwitch.stories.tsx +49 -0
  163. package/src/Components/Form/ToggleSwitch/ToggleSwitch.tsx +87 -0
  164. package/src/Components/Form/ToggleSwitch/ToggleSwitchProps.tsx +22 -0
  165. package/src/Components/Form/ToggleSwitch/toggleSwitch.module.scss +82 -0
  166. package/src/Components/Form/inputs.module.scss +121 -0
  167. package/src/Components/Icons/Arrows/CaretDown/CaretDown.tsx +49 -0
  168. package/src/Components/Icons/Arrows/CaretUp/CaretUp.tsx +49 -0
  169. package/src/Components/Icons/Commerce/CurrencyDollarSimple/CurrencyDollarSimple.tsx +105 -0
  170. package/src/Components/Icons/Communication/AddressBook/AddressBook.stories.ts +28 -0
  171. package/src/Components/Icons/Communication/AddressBook/AddressBook.tsx +50 -0
  172. package/src/Components/Icons/Communication/Asterick/Asterisk.stories.ts +28 -0
  173. package/src/Components/Icons/Communication/Asterick/Asterisk.tsx +50 -0
  174. package/src/Components/Icons/Communication/AsterickSimple/AsteriskSimple.stories.ts +28 -0
  175. package/src/Components/Icons/Communication/AsterickSimple/AsteriskSimple.tsx +49 -0
  176. package/src/Components/Icons/Communication/At/At.stories.ts +28 -0
  177. package/src/Components/Icons/Communication/At/At.tsx +49 -0
  178. package/src/Components/Icons/Communication/Broadcast/Broadcast.stories.ts +27 -0
  179. package/src/Components/Icons/Communication/Broadcast/Broadcast.tsx +49 -0
  180. package/src/Components/Icons/Communication/Chat/Chat.stories.ts +28 -0
  181. package/src/Components/Icons/Communication/Chat/Chat.tsx +49 -0
  182. package/src/Components/Icons/Design/Eye/Eye.tsx +105 -0
  183. package/src/Components/Icons/Design/EyeSlash/EyeSlash.tsx +105 -0
  184. package/src/Components/Icons/IconProps.tsx +5 -0
  185. package/src/Components/Icons/MathAndFinance/XIcon/XIcon.tsx +107 -0
  186. package/src/Components/Icons/SystemAndDevice/Bell/Bell.tsx +49 -0
  187. package/src/Components/Icons/Time/CalendarBank/CalendarBank.tsx +105 -0
  188. package/src/Components/Icons/Time/Clock/Clock.tsx +105 -0
  189. package/src/Components/Layout/CalloutPopup/CalloutPopup.tsx +5 -0
  190. package/src/Components/Layout/Header/Header.tsx +5 -0
  191. package/src/Components/Layout/Header/HeaderLeft.tsx +5 -0
  192. package/src/Components/Layout/Header/HeaderRight.tsx +5 -0
  193. package/src/Components/Layout/Pagination/Pagination.tsx +5 -0
  194. package/src/Components/Layout/Pagination/PaginationFirst.tsx +5 -0
  195. package/src/Components/Layout/Pagination/PaginationLast.tsx +5 -0
  196. package/src/Components/Layout/Pagination/PaginationNext.tsx +5 -0
  197. package/src/Components/Layout/Pagination/PaginationNumber.tsx +5 -0
  198. package/src/Components/Layout/Pagination/PaginationPrevious.tsx +5 -0
  199. package/src/Components/Layout/ProfileAvatar/ProfileAvatar.tsx +5 -0
  200. package/src/Components/Layout/ProfileAvatar/ProfileAvatarProps.tsx +4 -0
  201. package/src/Components/Layout/ProfileDropdown/ProfileDropdown.tsx +5 -0
  202. package/src/Components/Layout/ProfileDropdown/ProfileHeader.tsx +5 -0
  203. package/src/Components/Layout/ProfileDropdown/ProfileLink.tsx +5 -0
  204. package/src/Components/Layout/ProfileDropdown/ProfileLinks.tsx +5 -0
  205. package/src/Components/Layout/ProfileDropdown/ProfileNavigationItem.tsx +5 -0
  206. package/src/Components/Layout/ProfileDropdown/ProfileSwitchPanel.tsx +5 -0
  207. package/src/Components/Layout/ProfileDropdown/ProfileSwitchUser.tsx +5 -0
  208. package/src/Components/Layout/Sidebar/Sidebar.tsx +5 -0
  209. package/src/Components/Layout/Sidebar/SidebarChevron.tsx +5 -0
  210. package/src/Components/Layout/Sidebar/SidebarNavigation.tsx +5 -0
  211. package/src/Components/Layout/Sidebar/SidebarNavigationItem.tsx +5 -0
  212. package/src/Components/Layout/Sidebar/SidebarSubNavigation.tsx +5 -0
  213. package/src/Notification/Notification.tsx +83 -0
  214. package/src/Notification/NotificationInterface.tsx +9 -0
  215. package/src/Notification/NotificationList.tsx +29 -0
  216. package/src/Notification/NotificationListHolder.tsx +14 -0
  217. package/src/Notification/NotificationListHolderInterface.tsx +8 -0
  218. package/src/Notification/NotificationListInterface.tsx +11 -0
  219. package/src/Notification/notification.scss +225 -0
  220. package/src/global.scss +231 -0
  221. package/src/main.tsx +9 -0
  222. package/src/variables.scss +2 -0
  223. package/src/vite-env.d.ts +1 -0
  224. package/tokens/color/color.mdx +82 -0
  225. package/tokens/shadow/shadow-panel.scss +12 -0
  226. package/tokens/shadow/shadow.mdx +34 -0
  227. package/tokens/typography/typography.mdx +31 -0
  228. package/tsconfig.json +25 -0
  229. package/tsconfig.node.json +10 -0
  230. package/vite.config.ts +7 -0
@@ -0,0 +1,105 @@
1
+ import IconProps from "../../IconProps";
2
+
3
+ const EyeSlash = ({ type = "light" }: IconProps) => {
4
+ if (type === "thin") {
5
+ return (
6
+ <svg
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="32"
9
+ height="32"
10
+ viewBox="0 0 32 32"
11
+ fill="none"
12
+ >
13
+ <path
14
+ d="M6.3747 4.66376C6.28552 4.56431 6.16048 4.50435 6.0271 4.49708C5.89371 4.48982 5.7629 4.53584 5.66345 4.62501C5.56399 4.71419 5.50403 4.83923 5.49677 4.97261C5.4895 5.106 5.53552 5.23681 5.6247 5.33626L8.44845 8.43751C3.6672 11.125 1.6247 15.6013 1.5422 15.7975C1.51436 15.8616 1.5 15.9308 1.5 16.0006C1.5 16.0705 1.51436 16.1397 1.5422 16.2038C1.5847 16.3 2.6072 18.565 4.89595 20.8538C7.02095 22.9788 10.6634 25.5 15.9997 25.5C18.292 25.5152 20.5585 25.0158 22.6322 24.0388L25.6322 27.3363C25.6761 27.3858 25.7294 27.426 25.789 27.4548C25.8486 27.4835 25.9133 27.5002 25.9794 27.5037C26.0454 27.5073 26.1116 27.4977 26.1739 27.4755C26.2362 27.4533 26.2935 27.419 26.3425 27.3745C26.3915 27.33 26.4311 27.2762 26.4591 27.2163C26.4872 27.1563 26.503 27.0914 26.5058 27.0253C26.5086 26.9592 26.4982 26.8932 26.4752 26.8312C26.4523 26.7691 26.4173 26.7122 26.3722 26.6638L6.3747 4.66376ZM18.6372 19.645C17.7403 20.2894 16.6377 20.5814 15.5394 20.4655C14.4411 20.3496 13.4238 19.8338 12.6811 19.0164C11.9384 18.199 11.5223 17.1371 11.5119 16.0327C11.5015 14.9284 11.8976 13.8588 12.6247 13.0275L18.6372 19.645ZM15.9997 24.5C11.9997 24.5 8.51345 23.0438 5.6247 20.1725C4.39394 18.9469 3.35855 17.5397 2.5547 16C3.01095 15.0963 5.06595 11.3988 9.1397 9.19626L11.9459 12.2838C11.0146 13.2951 10.4958 14.6185 10.4917 15.9934C10.4877 17.3682 10.9987 18.6947 11.924 19.7115C12.8494 20.7283 14.122 21.3616 15.4911 21.4868C16.8603 21.6119 18.2266 21.2197 19.3209 20.3875L21.9322 23.2625C20.0652 24.0921 18.0427 24.514 15.9997 24.5ZM16.8472 11.58C16.7171 11.5551 16.6023 11.4796 16.5279 11.37C16.4534 11.2605 16.4255 11.1259 16.4501 10.9958C16.4748 10.8657 16.5501 10.7507 16.6594 10.6761C16.7688 10.6014 16.9033 10.5731 17.0334 10.5975C18.2018 10.8241 19.2656 11.4222 20.0662 12.3028C20.8668 13.1834 21.3613 14.2992 21.4759 15.4838C21.4881 15.6157 21.4474 15.7471 21.3628 15.849C21.2782 15.951 21.1566 16.0152 21.0247 16.0275H20.9772C20.8522 16.0281 20.7316 15.9818 20.639 15.8978C20.5465 15.8138 20.4888 15.6982 20.4772 15.5738C20.3833 14.6058 19.9792 13.6941 19.3251 12.9744C18.6709 12.2547 17.8018 11.7657 16.8472 11.58ZM30.4572 16.205C30.406 16.3188 29.1822 19.0275 26.4097 21.5113C26.3176 21.5925 26.1988 21.637 26.076 21.6363C25.9741 21.6369 25.8745 21.6064 25.7905 21.5489C25.7065 21.4914 25.642 21.4096 25.6057 21.3145C25.5695 21.2193 25.5631 21.1154 25.5875 21.0165C25.6118 20.9177 25.6658 20.8286 25.7422 20.7613C27.2489 19.4063 28.5026 17.7941 29.4447 16C28.6404 14.4606 27.6051 13.0534 26.3747 11.8275C23.4859 8.95626 19.9997 7.50001 15.9997 7.50001C15.1622 7.49917 14.326 7.56731 13.4997 7.70376C13.3695 7.72431 13.2365 7.69261 13.1295 7.61557C13.0226 7.53853 12.9504 7.42238 12.9286 7.29238C12.9069 7.16238 12.9373 7.02905 13.0134 6.9214C13.0894 6.81374 13.2049 6.74047 13.3347 6.71751C14.2155 6.57153 15.1069 6.49878 15.9997 6.50001C21.3372 6.50001 24.9834 9.02751 27.1035 11.1475C29.3922 13.4363 30.4147 15.7025 30.4572 15.7975C30.485 15.8616 30.4994 15.9308 30.4994 16.0006C30.4994 16.0705 30.485 16.1397 30.4572 16.2038V16.205Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+ }
20
+ if (type === "regular") {
21
+ return (
22
+ <svg
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ width="32"
25
+ height="32"
26
+ viewBox="0 0 32 32"
27
+ fill="none"
28
+ >
29
+ <path
30
+ d="M6.73999 4.32746C6.65217 4.22847 6.54558 4.14789 6.42639 4.0904C6.3072 4.03291 6.17778 3.99964 6.04564 3.99253C5.91351 3.98542 5.78127 4.00461 5.6566 4.04899C5.53193 4.09336 5.41731 4.16204 5.31938 4.25104C5.22144 4.34003 5.14215 4.44759 5.08609 4.56746C5.03003 4.68732 4.99832 4.81713 4.9928 4.94934C4.98727 5.08156 5.00804 5.21356 5.05391 5.33769C5.09978 5.46181 5.16982 5.5756 5.25999 5.67246L7.66499 8.31871C3.12499 11.105 1.17249 15.4 1.08624 15.595C1.02938 15.7229 1 15.8613 1 16.0012C1 16.1412 1.02938 16.2796 1.08624 16.4075C1.12999 16.5062 2.18874 18.8537 4.54249 21.2075C7.67874 24.3425 11.64 26 16 26C18.2408 26.0127 20.4589 25.5514 22.5087 24.6462L25.2587 27.6725C25.3466 27.7715 25.4531 27.852 25.5723 27.9095C25.6915 27.967 25.8209 28.0003 25.9531 28.0074C26.0852 28.0145 26.2175 27.9953 26.3421 27.9509C26.4668 27.9066 26.5814 27.8379 26.6793 27.7489C26.7773 27.6599 26.8566 27.5523 26.9126 27.4325C26.9687 27.3126 27.0004 27.1828 27.0059 27.0506C27.0115 26.9184 26.9907 26.7864 26.9448 26.6622C26.899 26.5381 26.8289 26.4243 26.7387 26.3275L6.73999 4.32746ZM12.6562 13.8075L17.865 19.5387C17.0806 19.9514 16.1814 20.0918 15.3085 19.938C14.4357 19.7842 13.6386 19.3449 13.0425 18.689C12.4464 18.0331 12.085 17.1978 12.0151 16.3142C11.9452 15.4307 12.1707 14.5489 12.6562 13.8075ZM16 24C12.1525 24 8.79124 22.6012 6.00874 19.8437C4.86663 18.7087 3.89526 17.4139 3.12499 16C3.71124 14.9012 5.58249 11.8262 9.04374 9.82746L11.2937 12.2962C10.4227 13.4118 9.97403 14.7995 10.0272 16.2139C10.0803 17.6283 10.6317 18.9784 11.584 20.0256C12.5363 21.0727 13.8282 21.7495 15.2312 21.9363C16.6343 22.123 18.0582 21.8078 19.2512 21.0462L21.0925 23.0712C19.4675 23.6947 17.7405 24.0096 16 24ZM16.75 12.0712C16.4894 12.0215 16.2593 11.8703 16.1102 11.6509C15.9611 11.4314 15.9053 11.1618 15.955 10.9012C16.0047 10.6406 16.1559 10.4105 16.3753 10.2614C16.5948 10.1123 16.8644 10.0565 17.125 10.1062C18.3995 10.3533 19.56 11.0058 20.4333 11.9663C21.3067 12.9269 21.8462 14.144 21.9712 15.4362C21.9959 15.7003 21.9147 15.9633 21.7455 16.1675C21.5762 16.3717 21.3328 16.5003 21.0687 16.525C21.0375 16.5268 21.0062 16.5268 20.975 16.525C20.725 16.526 20.4838 16.4335 20.2987 16.2655C20.1136 16.0975 19.9981 15.8663 19.975 15.6175C19.8908 14.758 19.5315 13.9486 18.9504 13.3096C18.3694 12.6707 17.5977 12.2364 16.75 12.0712ZM30.91 16.4075C30.8575 16.525 29.5912 19.3287 26.74 21.8825C26.6426 21.9725 26.5282 22.0423 26.4036 22.0877C26.2789 22.1331 26.1465 22.1532 26.014 22.1469C25.8814 22.1407 25.7515 22.1081 25.6317 22.0511C25.5119 21.9941 25.4047 21.9139 25.3162 21.815C25.2277 21.7162 25.1598 21.6007 25.1163 21.4754C25.0729 21.35 25.0549 21.2173 25.0633 21.0849C25.0716 20.9525 25.1063 20.8231 25.1652 20.7042C25.2241 20.5853 25.306 20.4794 25.4062 20.3925C26.8051 19.1357 27.9801 17.6504 28.8812 16C28.1093 14.5847 27.1358 13.2891 25.9912 12.1537C23.2087 9.39871 19.8475 7.99996 16 7.99996C15.1893 7.99897 14.3799 8.06461 13.58 8.19621C13.4499 8.21922 13.3166 8.21622 13.1876 8.18739C13.0587 8.15857 12.9368 8.10448 12.8289 8.02827C12.721 7.95205 12.6293 7.85521 12.559 7.74334C12.4887 7.63147 12.4413 7.50679 12.4196 7.3765C12.3978 7.24621 12.402 7.11289 12.432 6.98424C12.462 6.8556 12.5172 6.73417 12.5945 6.62699C12.6717 6.5198 12.7694 6.42898 12.8819 6.35976C12.9944 6.29054 13.1195 6.2443 13.25 6.22371C14.1589 6.07363 15.0787 5.99879 16 5.99996C20.36 5.99996 24.3212 7.65746 27.4575 10.7937C29.8112 13.1475 30.87 15.4962 30.9137 15.595C30.9706 15.7229 31 15.8613 31 16.0012C31 16.1412 30.9706 16.2796 30.9137 16.4075H30.91Z"
31
+ fill="currentColor"
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ if (type === "bold") {
37
+ return (
38
+ <svg
39
+ xmlns="http://www.w3.org/2000/svg"
40
+ width="32"
41
+ height="32"
42
+ viewBox="0 0 32 32"
43
+ fill="none"
44
+ >
45
+ <path
46
+ d="M7.10951 3.99125C6.97779 3.84277 6.8179 3.7219 6.63911 3.63566C6.46033 3.54942 6.26621 3.49952 6.068 3.48886C5.86979 3.4782 5.67143 3.50698 5.48443 3.57354C5.29743 3.6401 5.12549 3.74312 4.9786 3.87661C4.8317 4.01011 4.71276 4.17144 4.62867 4.35124C4.54458 4.53105 4.49701 4.72575 4.48873 4.92408C4.48044 5.1224 4.5116 5.3204 4.5804 5.50659C4.6492 5.69278 4.75426 5.86347 4.88951 6.00875L6.88951 8.215C2.58326 11.0825 0.714514 15.1975 0.624514 15.3913C0.539831 15.5832 0.496094 15.7908 0.496094 16.0006C0.496094 16.2105 0.539831 16.418 0.624514 16.61C0.670764 16.7125 1.76576 19.1425 4.18576 21.5613C7.42076 24.7925 11.4995 26.5 15.9995 26.5C18.1866 26.5121 20.354 26.0871 22.3745 25.25L24.8858 28.0125C25.1547 28.3014 25.5267 28.4727 25.9211 28.4891C26.3154 28.5056 26.7004 28.366 26.9925 28.1005C27.2846 27.8351 27.4603 27.4652 27.4815 27.071C27.5027 26.6769 27.3677 26.2903 27.1058 25.995L7.10951 3.99125ZM15.9995 23.5C12.3008 23.5 9.06576 22.1588 6.38576 19.515C5.33158 18.4712 4.42449 17.2887 3.68951 16C4.34826 14.8363 6.03826 12.2625 8.93951 10.4638L20.2008 22.8525C18.8427 23.2861 17.4251 23.5046 15.9995 23.5ZM31.3745 16.61C31.3295 16.7113 30.2495 19.11 27.8745 21.505C27.7385 21.656 27.5733 21.7777 27.3888 21.8629C27.2043 21.9481 27.0044 21.9949 26.8013 22.0004C26.5982 22.006 26.3961 21.9703 26.2072 21.8954C26.0183 21.8205 25.8466 21.708 25.7025 21.5648C25.5584 21.4215 25.4449 21.2505 25.3689 21.0621C25.2929 20.8736 25.256 20.6717 25.2604 20.4686C25.2648 20.2654 25.3104 20.0653 25.3945 19.8803C25.4786 19.6954 25.5994 19.5294 25.7495 19.3925C26.7472 18.3782 27.6078 17.2377 28.3095 16C27.575 14.7111 26.6678 13.5285 25.6133 12.485C22.932 9.84125 19.6983 8.5 15.9995 8.5C15.5808 8.5 15.162 8.5175 14.7495 8.5525C14.5507 8.5738 14.3497 8.55514 14.1582 8.49763C13.9668 8.44012 13.7887 8.34492 13.6346 8.21761C13.4804 8.09031 13.3533 7.93347 13.2606 7.75633C13.1679 7.57918 13.1116 7.3853 13.095 7.18607C13.0783 6.98685 13.1016 6.7863 13.1636 6.59622C13.2255 6.40614 13.3248 6.23036 13.4557 6.07922C13.5866 5.92808 13.7463 5.80461 13.9256 5.71609C14.1048 5.62757 14.3 5.57578 14.4995 5.56375C14.9908 5.52125 15.4995 5.5 15.9995 5.5C20.4995 5.5 24.5783 7.20875 27.8108 10.44C30.2295 12.8588 31.3245 15.29 31.3708 15.3913C31.456 15.583 31.5004 15.7904 31.5011 16.0002C31.5017 16.2101 31.4586 16.4177 31.3745 16.61Z"
47
+ fill="currentColor"
48
+ />
49
+ </svg>
50
+ );
51
+ }
52
+ if (type === "fill") {
53
+ return (
54
+ <svg
55
+ xmlns="http://www.w3.org/2000/svg"
56
+ width="32"
57
+ height="32"
58
+ viewBox="0 0 32 32"
59
+ fill="none"
60
+ >
61
+ <path
62
+ d="M6.73999 4.32746C6.65217 4.22847 6.54558 4.14789 6.42639 4.0904C6.3072 4.03291 6.17778 3.99964 6.04564 3.99253C5.91351 3.98542 5.78127 4.00461 5.6566 4.04899C5.53193 4.09336 5.41731 4.16204 5.31938 4.25104C5.22144 4.34003 5.14215 4.44759 5.08609 4.56746C5.03003 4.68732 4.99832 4.81713 4.9928 4.94934C4.98727 5.08156 5.00804 5.21356 5.05391 5.33769C5.09978 5.46181 5.16982 5.5756 5.25999 5.67246L7.66499 8.31871C3.12499 11.105 1.17249 15.4 1.08624 15.595C1.02938 15.7229 1 15.8613 1 16.0012C1 16.1412 1.02938 16.2796 1.08624 16.4075C1.12999 16.5062 2.18874 18.8537 4.54249 21.2075C7.67874 24.3425 11.64 26 16 26C18.2408 26.0127 20.4589 25.5514 22.5087 24.6462L25.2587 27.6725C25.3466 27.7715 25.4531 27.852 25.5723 27.9095C25.6915 27.967 25.8209 28.0003 25.9531 28.0074C26.0852 28.0145 26.2175 27.9953 26.3421 27.9509C26.4668 27.9066 26.5814 27.8379 26.6793 27.7489C26.7773 27.6599 26.8566 27.5523 26.9126 27.4325C26.9687 27.3126 27.0004 27.1828 27.0059 27.0506C27.0115 26.9184 26.9907 26.7864 26.9448 26.6622C26.899 26.5381 26.8289 26.4243 26.7387 26.3275L6.73999 4.32746ZM17.865 19.5387C17.0806 19.9514 16.1814 20.0918 15.3085 19.938C14.4357 19.7842 13.6386 19.3449 13.0425 18.689C12.4464 18.0331 12.085 17.1978 12.0151 16.3142C11.9452 15.4307 12.1707 14.5489 12.6562 13.8075L17.865 19.5387ZM30.9137 16.4075C30.8612 16.525 29.595 19.3287 26.7437 21.8825C26.5472 22.0588 26.289 22.1503 26.0253 22.1369C25.7616 22.1236 25.5139 22.0065 25.3362 21.8112L12.675 7.88371C12.5539 7.7508 12.4708 7.58768 12.4346 7.41155C12.3984 7.23541 12.4103 7.05276 12.4692 6.88284C12.5281 6.71293 12.6316 6.56202 12.7691 6.44602C12.9065 6.33003 13.0726 6.25323 13.25 6.22371C14.1589 6.07363 15.0787 5.99879 16 5.99996C20.36 5.99996 24.3212 7.65746 27.4575 10.7937C29.8112 13.1475 30.87 15.4962 30.9137 15.595C30.9706 15.7229 31 15.8613 31 16.0012C31 16.1412 30.9706 16.2796 30.9137 16.4075Z"
63
+ fill="currentColor"
64
+ />
65
+ </svg>
66
+ );
67
+ }
68
+ if (type === "duotone") {
69
+ return (
70
+ <svg
71
+ xmlns="http://www.w3.org/2000/svg"
72
+ width="32"
73
+ height="32"
74
+ viewBox="0 0 32 32"
75
+ fill="none"
76
+ >
77
+ <path
78
+ opacity="0.2"
79
+ d="M16 7C6 7 2 16 2 16C2 16 6 25 16 25C26 25 30 16 30 16C30 16 26 7 16 7ZM16 21C15.0111 21 14.0444 20.7068 13.2221 20.1573C12.3999 19.6079 11.759 18.827 11.3806 17.9134C11.0022 16.9998 10.9031 15.9945 11.0961 15.0245C11.289 14.0546 11.7652 13.1637 12.4645 12.4645C13.1637 11.7652 14.0546 11.289 15.0245 11.0961C15.9945 10.9031 16.9998 11.0022 17.9134 11.3806C18.827 11.759 19.6079 12.3999 20.1573 13.2221C20.7068 14.0444 21 15.0111 21 16C21 17.3261 20.4732 18.5979 19.5355 19.5355C18.5979 20.4732 17.3261 21 16 21Z"
80
+ fill="currentColor"
81
+ />
82
+ <path
83
+ d="M6.73999 4.32746C6.65217 4.22847 6.54558 4.14789 6.42639 4.0904C6.3072 4.03291 6.17778 3.99964 6.04564 3.99253C5.91351 3.98542 5.78127 4.00461 5.6566 4.04899C5.53193 4.09336 5.41731 4.16204 5.31938 4.25104C5.22144 4.34003 5.14215 4.44759 5.08609 4.56746C5.03003 4.68732 4.99832 4.81713 4.9928 4.94934C4.98727 5.08156 5.00804 5.21356 5.05391 5.33769C5.09978 5.46181 5.16982 5.5756 5.25999 5.67246L7.66499 8.31871C3.12499 11.105 1.17249 15.4 1.08624 15.595C1.02938 15.7229 1 15.8613 1 16.0012C1 16.1412 1.02938 16.2796 1.08624 16.4075C1.12999 16.5062 2.18874 18.8537 4.54249 21.2075C7.67874 24.3425 11.64 26 16 26C18.2408 26.0127 20.4589 25.5514 22.5087 24.6462L25.2587 27.6725C25.3466 27.7715 25.4531 27.852 25.5723 27.9095C25.6915 27.967 25.8209 28.0003 25.9531 28.0074C26.0852 28.0145 26.2175 27.9953 26.3421 27.9509C26.4668 27.9066 26.5814 27.8379 26.6793 27.7489C26.7773 27.6599 26.8566 27.5523 26.9126 27.4325C26.9687 27.3126 27.0004 27.1828 27.0059 27.0506C27.0115 26.9184 26.9907 26.7864 26.9448 26.6622C26.899 26.5381 26.8289 26.4243 26.7387 26.3275L6.73999 4.32746ZM12.6562 13.8075L17.865 19.5387C17.0806 19.9514 16.1814 20.0918 15.3085 19.938C14.4357 19.7842 13.6386 19.3449 13.0425 18.689C12.4464 18.0331 12.085 17.1978 12.0151 16.3142C11.9452 15.4307 12.1707 14.5489 12.6562 13.8075ZM16 24C12.1525 24 8.79124 22.6012 6.00874 19.8437C4.86663 18.7087 3.89526 17.4139 3.12499 16C3.71124 14.9012 5.58249 11.8262 9.04374 9.82746L11.2937 12.2962C10.4227 13.4118 9.97403 14.7995 10.0272 16.2139C10.0803 17.6283 10.6317 18.9784 11.584 20.0256C12.5363 21.0727 13.8282 21.7495 15.2312 21.9363C16.6343 22.123 18.0582 21.8078 19.2512 21.0462L21.0925 23.0712C19.4675 23.6947 17.7405 24.0096 16 24ZM16.75 12.0712C16.4894 12.0215 16.2593 11.8703 16.1102 11.6509C15.9611 11.4314 15.9053 11.1618 15.955 10.9012C16.0047 10.6406 16.1559 10.4105 16.3753 10.2614C16.5948 10.1123 16.8644 10.0565 17.125 10.1062C18.3995 10.3533 19.56 11.0058 20.4333 11.9663C21.3067 12.9269 21.8462 14.144 21.9712 15.4362C21.9959 15.7003 21.9147 15.9633 21.7455 16.1675C21.5762 16.3717 21.3328 16.5003 21.0687 16.525C21.0375 16.5268 21.0062 16.5268 20.975 16.525C20.725 16.526 20.4838 16.4335 20.2987 16.2655C20.1136 16.0975 19.9981 15.8663 19.975 15.6175C19.8908 14.758 19.5315 13.9486 18.9504 13.3096C18.3694 12.6707 17.5977 12.2364 16.75 12.0712ZM30.91 16.4075C30.8575 16.525 29.5912 19.3287 26.74 21.8825C26.6426 21.9725 26.5282 22.0423 26.4036 22.0877C26.2789 22.1331 26.1465 22.1532 26.014 22.1469C25.8814 22.1407 25.7515 22.1081 25.6317 22.0511C25.5119 21.9941 25.4047 21.9139 25.3162 21.815C25.2277 21.7162 25.1598 21.6007 25.1163 21.4754C25.0729 21.35 25.0549 21.2173 25.0633 21.0849C25.0716 20.9525 25.1063 20.8231 25.1652 20.7042C25.2241 20.5853 25.306 20.4794 25.4062 20.3925C26.8051 19.1357 27.9801 17.6504 28.8812 16C28.1093 14.5847 27.1358 13.2891 25.9912 12.1537C23.2087 9.39871 19.8475 7.99996 16 7.99996C15.1893 7.99897 14.3799 8.06461 13.58 8.19621C13.4499 8.21922 13.3166 8.21622 13.1876 8.18739C13.0587 8.15857 12.9368 8.10448 12.8289 8.02827C12.721 7.95205 12.6293 7.85521 12.559 7.74334C12.4887 7.63147 12.4413 7.50679 12.4196 7.3765C12.3978 7.24621 12.402 7.11289 12.432 6.98424C12.462 6.8556 12.5172 6.73417 12.5945 6.62699C12.6717 6.5198 12.7694 6.42898 12.8819 6.35976C12.9944 6.29054 13.1195 6.2443 13.25 6.22371C14.1589 6.07363 15.0787 5.99879 16 5.99996C20.36 5.99996 24.3212 7.65746 27.4575 10.7937C29.8112 13.1475 30.87 15.4962 30.9137 15.595C30.9706 15.7229 31 15.8613 31 16.0012C31 16.1412 30.9706 16.2796 30.9137 16.4075H30.91Z"
84
+ fill="currentColor"
85
+ />
86
+ </svg>
87
+ );
88
+ }
89
+ return (
90
+ <svg
91
+ xmlns="http://www.w3.org/2000/svg"
92
+ width="32"
93
+ height="32"
94
+ viewBox="0 0 32 32"
95
+ fill="none"
96
+ >
97
+ <path
98
+ d="M6.55482 4.49998C6.41752 4.37254 6.23749 4.3011 6.05016 4.2997C5.86284 4.29831 5.68177 4.36707 5.54259 4.49246C5.40341 4.61785 5.31619 4.79078 5.2981 4.97724C5.28 5.1637 5.33234 5.35017 5.44482 5.49998L8.05482 8.37498C3.39482 11.1125 1.40107 15.5 1.31482 15.6962C1.27208 15.7922 1.25 15.8961 1.25 16.0012C1.25 16.1063 1.27208 16.2102 1.31482 16.3062C1.35732 16.4025 2.39732 18.7087 4.71982 21.0312C6.87482 23.1837 10.5773 25.75 15.9998 25.75C18.2663 25.7637 20.5087 25.2839 22.5711 24.3437L25.4461 27.505C25.58 27.6522 25.7669 27.7401 25.9657 27.7495C26.1645 27.7589 26.3589 27.6889 26.5061 27.555C26.6533 27.421 26.7412 27.2341 26.7506 27.0353C26.76 26.8365 26.69 26.6422 26.5561 26.495L6.55482 4.49998ZM12.6323 13.415L18.2573 19.605C17.4128 20.1327 16.4098 20.3471 15.4233 20.2107C14.4369 20.0744 13.5296 19.596 12.8599 18.859C12.1901 18.122 11.8005 17.1732 11.7589 16.1782C11.7173 15.1833 12.0264 14.2053 12.6323 13.415ZM15.9998 24.25C12.0773 24.25 8.65232 22.8225 5.81857 20.0087C4.63038 18.8284 3.62513 17.4773 2.83607 16C3.37232 14.975 5.34857 11.6025 9.08607 9.51123L11.6111 12.2875C10.7121 13.3528 10.2307 14.7083 10.2564 16.102C10.2821 17.4957 10.8132 18.8325 11.7509 19.8639C12.6886 20.8953 13.969 21.5509 15.3539 21.7088C16.7389 21.8668 18.134 21.5163 19.2798 20.7225L21.5061 23.1725C19.7607 23.8947 17.8887 24.261 15.9998 24.25ZM16.7998 11.825C16.6044 11.7877 16.4318 11.6743 16.32 11.5097C16.2081 11.3452 16.1663 11.1429 16.2036 10.9475C16.2409 10.7521 16.3543 10.5794 16.5188 10.4676C16.6834 10.3558 16.8856 10.3139 17.0811 10.3512C18.3023 10.5885 19.4143 11.214 20.2511 12.1347C21.0879 13.0553 21.6048 14.2217 21.7248 15.46C21.7339 15.5581 21.7236 15.657 21.6945 15.7511C21.6654 15.8452 21.6181 15.9326 21.5551 16.0084C21.4922 16.0842 21.415 16.1469 21.3279 16.1929C21.2407 16.2388 21.1454 16.2671 21.0473 16.2762H20.9773C20.7898 16.277 20.6087 16.2075 20.4699 16.0814C20.3311 15.9553 20.2445 15.7817 20.2273 15.595C20.1382 14.6813 19.7564 13.8208 19.1389 13.1415C18.5213 12.4622 17.7009 12.0005 16.7998 11.825ZM30.6848 16.3062C30.6336 16.4212 29.3886 19.1812 26.5773 21.6962C26.5044 21.7646 26.4185 21.8177 26.3248 21.8524C26.2311 21.8871 26.1314 21.9027 26.0315 21.8983C25.9317 21.8939 25.8337 21.8696 25.7434 21.8268C25.6531 21.784 25.5722 21.7236 25.5055 21.6491C25.4389 21.5747 25.3878 21.4876 25.3553 21.3931C25.3227 21.2986 25.3094 21.1985 25.3161 21.0988C25.3228 20.9991 25.3494 20.9017 25.3942 20.8124C25.4391 20.7231 25.5013 20.6436 25.5773 20.5787C27.0305 19.2732 28.2441 17.7236 29.1636 16C28.3743 14.5228 27.3691 13.1717 26.1811 11.9912C23.3473 9.17748 19.9223 7.74998 15.9998 7.74998C15.1753 7.749 14.3521 7.81589 13.5386 7.94998C13.4406 7.96845 13.34 7.9672 13.2425 7.94631C13.145 7.92543 13.0527 7.88532 12.9709 7.82834C12.8891 7.77136 12.8195 7.69865 12.7662 7.61445C12.7128 7.53026 12.6767 7.43627 12.6601 7.33798C12.6435 7.2397 12.6467 7.13909 12.6694 7.04203C12.6921 6.94497 12.7339 6.85342 12.7924 6.77272C12.851 6.69202 12.925 6.62379 13.0102 6.57202C13.0953 6.52026 13.19 6.48599 13.2886 6.47123C14.1846 6.32248 15.0915 6.24848 15.9998 6.24998C21.4223 6.24998 25.1248 8.81748 27.2798 10.97C29.6023 13.2925 30.6423 15.595 30.6848 15.6962C30.7276 15.7922 30.7496 15.8961 30.7496 16.0012C30.7496 16.1063 30.7276 16.2102 30.6848 16.3062Z"
99
+ fill="currentColor"
100
+ />
101
+ </svg>
102
+ );
103
+ };
104
+
105
+ export default EyeSlash;
@@ -0,0 +1,5 @@
1
+ interface IconProps {
2
+ type?: "light" | "bold" | "fill" | "duotone" | "regular" | "thin";
3
+ }
4
+
5
+ export default IconProps;
@@ -0,0 +1,107 @@
1
+ import IconProps from "../../IconProps";
2
+
3
+ const XIcon = ({ type = "light" }: IconProps) => {
4
+ if (type === "thin") {
5
+ return (
6
+ <svg
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="32"
9
+ height="32"
10
+ viewBox="0 0 32 32"
11
+ fill="none"
12
+ >
13
+ <path
14
+ d="M25.354 24.6463C25.4478 24.7401 25.5006 24.8673 25.5006 25C25.5006 25.1327 25.4478 25.2599 25.354 25.3538C25.2602 25.4476 25.133 25.5003 25.0003 25.5003C24.8676 25.5003 24.7403 25.4476 24.6465 25.3538L16.0003 16.7075L7.35403 25.3538C7.26021 25.4476 7.13296 25.5003 7.00028 25.5003C6.8676 25.5003 6.74035 25.4476 6.64653 25.3538C6.55271 25.2599 6.5 25.1327 6.5 25C6.5 24.8673 6.55271 24.7401 6.64653 24.6463L15.2928 16L6.64653 7.35375C6.55271 7.25993 6.5 7.13269 6.5 7C6.5 6.86732 6.55271 6.74007 6.64653 6.64625C6.74035 6.55243 6.8676 6.49973 7.00028 6.49973C7.13296 6.49973 7.26021 6.55243 7.35403 6.64625L16.0003 15.2925L24.6465 6.64625C24.693 6.5998 24.7481 6.56295 24.8088 6.53781C24.8695 6.51267 24.9346 6.49973 25.0003 6.49973C25.066 6.49973 25.131 6.51267 25.1917 6.53781C25.2524 6.56295 25.3076 6.5998 25.354 6.64625C25.4005 6.69271 25.4373 6.74786 25.4625 6.80856C25.4876 6.86925 25.5006 6.93431 25.5006 7C25.5006 7.0657 25.4876 7.13076 25.4625 7.19145C25.4373 7.25215 25.4005 7.3073 25.354 7.35375L16.7078 16L25.354 24.6463Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+ }
20
+
21
+ if (type === "regular") {
22
+ return (
23
+ <svg
24
+ xmlns="http://www.w3.org/2000/svg"
25
+ width="32"
26
+ height="32"
27
+ viewBox="0 0 32 32"
28
+ fill="none"
29
+ >
30
+ <path
31
+ d="M25.7081 24.2925C25.801 24.3854 25.8747 24.4957 25.9249 24.6171C25.9752 24.7385 26.0011 24.8686 26.0011 25C26.0011 25.1314 25.9752 25.2615 25.9249 25.3829C25.8747 25.5043 25.801 25.6146 25.7081 25.7075C25.6151 25.8004 25.5048 25.8741 25.3835 25.9244C25.2621 25.9747 25.132 26.0006 25.0006 26.0006C24.8692 26.0006 24.7391 25.9747 24.6177 25.9244C24.4963 25.8741 24.386 25.8004 24.2931 25.7075L16.0006 17.4138L7.70806 25.7075C7.52042 25.8951 7.26592 26.0006 7.00056 26.0006C6.73519 26.0006 6.4807 25.8951 6.29306 25.7075C6.10542 25.5199 6 25.2654 6 25C6 24.7346 6.10542 24.4801 6.29306 24.2925L14.5868 16L6.29306 7.70751C6.10542 7.51987 6 7.26537 6 7.00001C6 6.73464 6.10542 6.48015 6.29306 6.29251C6.4807 6.10487 6.73519 5.99945 7.00056 5.99945C7.26592 5.99945 7.52042 6.10487 7.70806 6.29251L16.0006 14.5863L24.2931 6.29251C24.4807 6.10487 24.7352 5.99945 25.0006 5.99945C25.2659 5.99945 25.5204 6.10487 25.7081 6.29251C25.8957 6.48015 26.0011 6.73464 26.0011 7.00001C26.0011 7.26537 25.8957 7.51987 25.7081 7.70751L17.4143 16L25.7081 24.2925Z"
32
+ fill="currentColor"
33
+ />
34
+ </svg>
35
+ );
36
+ }
37
+ if (type === "bold") {
38
+ return (
39
+ <svg
40
+ xmlns="http://www.w3.org/2000/svg"
41
+ width="32"
42
+ height="32"
43
+ viewBox="0 0 32 32"
44
+ fill="none"
45
+ >
46
+ <path
47
+ d="M26.0612 23.9388C26.343 24.2205 26.5013 24.6027 26.5013 25.0013C26.5013 25.3998 26.343 25.782 26.0612 26.0638C25.7794 26.3455 25.3972 26.5039 24.9987 26.5039C24.6002 26.5039 24.218 26.3455 23.9362 26.0638L15.9999 18.125L8.0612 26.0613C7.7794 26.343 7.39721 26.5014 6.9987 26.5014C6.60018 26.5014 6.21799 26.343 5.9362 26.0613C5.6544 25.7795 5.49609 25.3973 5.49609 24.9988C5.49609 24.6002 5.6544 24.218 5.9362 23.9363L13.8749 16L5.9387 8.06125C5.6569 7.77946 5.49859 7.39727 5.49859 6.99876C5.49859 6.60024 5.6569 6.21805 5.9387 5.93626C6.22049 5.65446 6.60268 5.49615 7.0012 5.49615C7.39971 5.49615 7.7819 5.65446 8.0637 5.93626L15.9999 13.875L23.9387 5.93501C24.2205 5.65321 24.6027 5.4949 25.0012 5.4949C25.3997 5.4949 25.7819 5.65321 26.0637 5.93501C26.3455 6.2168 26.5038 6.59899 26.5038 6.99751C26.5038 7.39602 26.3455 7.77821 26.0637 8.06001L18.1249 16L26.0612 23.9388Z"
48
+ fill="currentColor"
49
+ />
50
+ </svg>
51
+ );
52
+ }
53
+ if (type === "fill") {
54
+ return (
55
+ <svg
56
+ xmlns="http://www.w3.org/2000/svg"
57
+ width="32"
58
+ height="32"
59
+ viewBox="0 0 32 32"
60
+ fill="none"
61
+ >
62
+ <path
63
+ d="M26 4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM22.7075 21.2925C22.8004 21.3854 22.8741 21.4957 22.9244 21.6171C22.9747 21.7385 23.0006 21.8686 23.0006 22C23.0006 22.1314 22.9747 22.2615 22.9244 22.3829C22.8741 22.5043 22.8004 22.6146 22.7075 22.7075C22.6146 22.8004 22.5043 22.8741 22.3829 22.9244C22.2615 22.9747 22.1314 23.0006 22 23.0006C21.8686 23.0006 21.7385 22.9747 21.6171 22.9244C21.4957 22.8741 21.3854 22.8004 21.2925 22.7075L16 17.4137L10.7075 22.7075C10.5199 22.8951 10.2654 23.0006 10 23.0006C9.73464 23.0006 9.48014 22.8951 9.2925 22.7075C9.10486 22.5199 8.99944 22.2654 8.99944 22C8.99944 21.7346 9.10486 21.4801 9.2925 21.2925L14.5863 16L9.2925 10.7075C9.10486 10.5199 8.99944 10.2654 8.99944 10C8.99944 9.73464 9.10486 9.48014 9.2925 9.2925C9.48014 9.10486 9.73464 8.99944 10 8.99944C10.2654 8.99944 10.5199 9.10486 10.7075 9.2925L16 14.5863L21.2925 9.2925C21.4801 9.10486 21.7346 8.99944 22 8.99944C22.2654 8.99944 22.5199 9.10486 22.7075 9.2925C22.8951 9.48014 23.0006 9.73464 23.0006 10C23.0006 10.2654 22.8951 10.5199 22.7075 10.7075L17.4137 16L22.7075 21.2925Z"
64
+ fill="currentColor"
65
+ />
66
+ </svg>
67
+ );
68
+ }
69
+ if (type === "duotone") {
70
+ return (
71
+ <svg
72
+ xmlns="http://www.w3.org/2000/svg"
73
+ width="32"
74
+ height="32"
75
+ viewBox="0 0 32 32"
76
+ fill="none"
77
+ >
78
+ <path
79
+ opacity="0.2"
80
+ d="M27 6V26C27 26.2652 26.8946 26.5196 26.7071 26.7071C26.5196 26.8946 26.2652 27 26 27H6C5.73478 27 5.48043 26.8946 5.29289 26.7071C5.10536 26.5196 5 26.2652 5 26V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H26C26.2652 5 26.5196 5.10536 26.7071 5.29289C26.8946 5.48043 27 5.73478 27 6Z"
81
+ fill="currentColor"
82
+ />
83
+ <path
84
+ d="M25.7081 24.2925C25.801 24.3854 25.8747 24.4957 25.9249 24.6171C25.9752 24.7385 26.0011 24.8686 26.0011 25C26.0011 25.1314 25.9752 25.2615 25.9249 25.3829C25.8747 25.5043 25.801 25.6146 25.7081 25.7075C25.6151 25.8004 25.5048 25.8741 25.3835 25.9244C25.2621 25.9747 25.132 26.0006 25.0006 26.0006C24.8692 26.0006 24.7391 25.9747 24.6177 25.9244C24.4963 25.8741 24.386 25.8004 24.2931 25.7075L16.0006 17.4138L7.70806 25.7075C7.52042 25.8951 7.26592 26.0006 7.00056 26.0006C6.73519 26.0006 6.4807 25.8951 6.29306 25.7075C6.10542 25.5199 6 25.2654 6 25C6 24.7346 6.10542 24.4801 6.29306 24.2925L14.5868 16L6.29306 7.70751C6.10542 7.51987 6 7.26537 6 7.00001C6 6.73464 6.10542 6.48015 6.29306 6.29251C6.4807 6.10487 6.73519 5.99945 7.00056 5.99945C7.26592 5.99945 7.52042 6.10487 7.70806 6.29251L16.0006 14.5863L24.2931 6.29251C24.4807 6.10487 24.7352 5.99945 25.0006 5.99945C25.2659 5.99945 25.5204 6.10487 25.7081 6.29251C25.8957 6.48015 26.0011 6.73464 26.0011 7.00001C26.0011 7.26537 25.8957 7.51987 25.7081 7.70751L17.4143 16L25.7081 24.2925Z"
85
+ fill="currentColor"
86
+ />
87
+ </svg>
88
+ );
89
+ }
90
+
91
+ return (
92
+ <svg
93
+ xmlns="http://www.w3.org/2000/svg"
94
+ width="32"
95
+ height="32"
96
+ viewBox="0 0 32 32"
97
+ fill="none"
98
+ >
99
+ <path
100
+ d="M25.5308 24.47C25.6045 24.5387 25.6636 24.6215 25.7046 24.7135C25.7456 24.8055 25.7676 24.9048 25.7694 25.0055C25.7712 25.1062 25.7527 25.2062 25.7149 25.2996C25.6772 25.393 25.6211 25.4778 25.5499 25.549C25.4786 25.6203 25.3938 25.6764 25.3004 25.7141C25.207 25.7518 25.107 25.7704 25.0063 25.7686C24.9056 25.7668 24.8063 25.7448 24.7143 25.7038C24.6223 25.6628 24.5395 25.6037 24.4708 25.53L16.0008 17.0612L7.53082 25.53C7.38865 25.6625 7.2006 25.7346 7.0063 25.7312C6.812 25.7277 6.62661 25.649 6.4892 25.5116C6.35179 25.3742 6.27308 25.1888 6.26965 24.9945C6.26622 24.8002 6.33834 24.6122 6.47082 24.47L14.9396 16L6.47082 7.53C6.33834 7.38782 6.26622 7.19978 6.26965 7.00548C6.27308 6.81118 6.35179 6.62579 6.4892 6.48838C6.62661 6.35096 6.812 6.27225 7.0063 6.26882C7.2006 6.2654 7.38865 6.33752 7.53082 6.47L16.0008 14.9387L24.4708 6.47C24.613 6.33752 24.801 6.2654 24.9953 6.26882C25.1896 6.27225 25.375 6.35096 25.5124 6.48838C25.6499 6.62579 25.7286 6.81118 25.732 7.00548C25.7354 7.19978 25.6633 7.38782 25.5308 7.53L17.0621 16L25.5308 24.47Z"
101
+ fill="currentColor"
102
+ />
103
+ </svg>
104
+ );
105
+ };
106
+
107
+ export default XIcon;
@@ -0,0 +1,49 @@
1
+ import IconProps from "../../IconProps";
2
+
3
+ const Bell = ({type}: IconProps) => {
4
+ if (type === 'thin') {
5
+ return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
6
+ <path
7
+ d="M27.2933 22.25C26.5721 21 25.4996 17.5162 25.4996 13C25.4996 10.4804 24.4987 8.06408 22.7171 6.28249C20.9355 4.50089 18.5191 3.5 15.9996 3.5C13.48 3.5 11.0637 4.50089 9.28208 6.28249C7.50048 8.06408 6.49959 10.4804 6.49959 13C6.49959 17.5162 5.42584 21 4.70459 22.2437C4.57155 22.4716 4.50098 22.7306 4.50001 22.9945C4.49904 23.2584 4.5677 23.5178 4.69906 23.7467C4.83042 23.9756 5.01983 24.1657 5.24817 24.298C5.47651 24.4302 5.73571 24.4999 5.99959 24.5H11.5283C11.6531 25.5985 12.1779 26.6126 13.0025 27.3489C13.8272 28.0852 14.8941 28.4921 15.9996 28.4921C17.1051 28.4921 18.172 28.0852 18.9966 27.3489C19.8213 26.6126 20.3461 25.5985 20.4708 24.5H25.9996C26.2624 24.4991 26.5204 24.4291 26.7477 24.2971C26.975 24.165 27.1636 23.9756 27.2947 23.7477C27.4257 23.5198 27.4945 23.2615 27.4943 22.9987C27.4941 22.7358 27.4248 22.4776 27.2933 22.25ZM15.9996 27.5C15.158 27.4999 14.3447 27.1966 13.7085 26.6456C13.0724 26.0947 12.6561 25.3329 12.5358 24.5H19.4633C19.3431 25.3329 18.9268 26.0947 18.2907 26.6456C17.6545 27.1966 16.8412 27.4999 15.9996 27.5ZM26.4308 23.25C26.3881 23.3263 26.3257 23.3898 26.25 23.4338C26.1744 23.4778 26.0883 23.5006 26.0008 23.5H5.99959C5.9121 23.5006 5.82605 23.4778 5.75041 23.4338C5.67477 23.3898 5.61233 23.3263 5.56959 23.25C5.52571 23.174 5.5026 23.0878 5.5026 23C5.5026 22.9122 5.52571 22.826 5.56959 22.75C6.49959 21.1462 7.49959 17.415 7.49959 13C7.49959 10.7457 8.39512 8.58365 9.98918 6.98959C11.5832 5.39553 13.7453 4.5 15.9996 4.5C18.2539 4.5 20.4159 5.39553 22.01 6.98959C23.6041 8.58365 24.4996 10.7457 24.4996 13C24.4996 17.4137 25.4996 21.1462 26.4296 22.75C26.4737 22.8259 26.497 22.9121 26.4972 22.9998C26.4974 23.0876 26.4745 23.1739 26.4308 23.25Z"
8
+ fill="currentColor"/>
9
+ </svg>
10
+ }
11
+ if (type === 'regular') {
12
+ return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
13
+ <path
14
+ d="M27.7255 21.9925C27.0318 20.7975 26.0005 17.4163 26.0005 13C26.0005 10.3478 24.9469 7.8043 23.0716 5.92893C21.1962 4.05357 18.6527 3 16.0005 3C13.3483 3 10.8048 4.05357 8.92944 5.92893C7.05407 7.8043 6.0005 10.3478 6.0005 13C6.0005 17.4175 4.968 20.7975 4.27425 21.9925C4.09709 22.2963 4.00317 22.6415 4.00196 22.9931C4.00076 23.3448 4.09231 23.6906 4.26738 23.9956C4.44245 24.3006 4.69485 24.5541 4.99914 24.7304C5.30342 24.9068 5.64882 24.9997 6.0005 25H11.1018C11.3325 26.1289 11.946 27.1436 12.8387 27.8722C13.7313 28.6009 14.8482 28.9989 16.0005 28.9989C17.1528 28.9989 18.2697 28.6009 19.1623 27.8722C20.055 27.1436 20.6685 26.1289 20.8993 25H26.0005C26.3521 24.9995 26.6973 24.9064 27.0014 24.73C27.3055 24.5535 27.5578 24.3 27.7327 23.9951C27.9076 23.6901 27.9991 23.3444 27.9978 22.9928C27.9965 22.6412 27.9026 22.2962 27.7255 21.9925ZM16.0005 27C15.3803 26.9998 14.7754 26.8074 14.269 26.4492C13.7626 26.0911 13.3797 25.5848 13.173 25H18.828C18.6213 25.5848 18.2384 26.0911 17.732 26.4492C17.2257 26.8074 16.6207 26.9998 16.0005 27ZM6.0005 23C6.963 21.345 8.0005 17.51 8.0005 13C8.0005 10.8783 8.84336 8.84344 10.3437 7.34315C11.8439 5.84285 13.8788 5 16.0005 5C18.1222 5 20.1571 5.84285 21.6574 7.34315C23.1577 8.84344 24.0005 10.8783 24.0005 13C24.0005 17.5063 25.0355 21.3412 26.0005 23H6.0005Z"
15
+ fill="currentColor"/>
16
+ </svg>
17
+ }
18
+ if (type === 'bold') {
19
+ return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
20
+ <path
21
+ d="M28.1603 20.7412C27.0753 18.875 26.4991 16.1962 26.4991 13C26.4991 10.2152 25.3928 7.54451 23.4237 5.57538C21.4545 3.60625 18.7838 2.5 15.9991 2.5C13.2143 2.5 10.5436 3.60625 8.57444 5.57538C6.6053 7.54451 5.49906 10.2152 5.49906 13C5.49906 16.1975 4.92531 18.875 3.84031 20.7412C3.61891 21.1219 3.50155 21.5541 3.50002 21.9945C3.49848 22.4348 3.61282 22.8678 3.83156 23.25C4.04891 23.6324 4.36439 23.9499 4.74542 24.1696C5.12645 24.3893 5.55922 24.5034 5.99906 24.5H10.5216C10.6456 25.867 11.2763 27.1383 12.2898 28.064C13.3034 28.9897 14.6264 29.503 15.9991 29.503C17.3717 29.503 18.6948 28.9897 19.7083 28.064C20.7218 27.1383 21.3525 25.867 21.4766 24.5H25.9991C26.4383 24.5027 26.8703 24.3883 27.2506 24.1686C27.6309 23.9489 27.9458 23.6318 28.1628 23.25C28.3825 22.8684 28.4979 22.4356 28.4975 21.9953C28.497 21.5549 28.3808 21.1224 28.1603 20.7412ZM15.9991 26.5C15.4227 26.5001 14.8641 26.3011 14.4176 25.9367C13.9711 25.5722 13.6643 25.0647 13.5491 24.5H18.4491C18.3338 25.0647 18.027 25.5722 17.5805 25.9367C17.1341 26.3011 16.5754 26.5001 15.9991 26.5ZM6.83156 21.5C7.93781 19.25 8.49906 16.3925 8.49906 13C8.49906 11.0109 9.28923 9.10322 10.6958 7.6967C12.1023 6.29018 14.0099 5.5 15.9991 5.5C17.9882 5.5 19.8958 6.29018 21.3024 7.6967C22.7089 9.10322 23.4991 11.0109 23.4991 13C23.4991 16.3912 24.0591 19.25 25.1653 21.5H6.83156Z"
22
+ fill="currentColor"/>
23
+ </svg>
24
+ }
25
+ if (type === 'fill') {
26
+ return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
27
+ <path
28
+ d="M27.7255 21.9925C27.0318 20.7975 26.0005 17.4163 26.0005 13C26.0005 10.3478 24.9469 7.8043 23.0716 5.92893C21.1962 4.05357 18.6527 3 16.0005 3C13.3483 3 10.8048 4.05357 8.92944 5.92893C7.05407 7.8043 6.0005 10.3478 6.0005 13C6.0005 17.4175 4.968 20.7975 4.27425 21.9925C4.09709 22.2963 4.00317 22.6415 4.00196 22.9931C4.00076 23.3448 4.09231 23.6906 4.26738 23.9956C4.44245 24.3006 4.69485 24.5541 4.99914 24.7304C5.30342 24.9068 5.64882 24.9997 6.0005 25H11.1018C11.3325 26.1289 11.946 27.1436 12.8387 27.8722C13.7313 28.6009 14.8482 28.9989 16.0005 28.9989C17.1528 28.9989 18.2697 28.6009 19.1623 27.8722C20.055 27.1436 20.6685 26.1289 20.8993 25H26.0005C26.3521 24.9995 26.6973 24.9064 27.0014 24.73C27.3055 24.5535 27.5578 24.3 27.7327 23.9951C27.9076 23.6901 27.9991 23.3444 27.9978 22.9928C27.9965 22.6412 27.9026 22.2962 27.7255 21.9925ZM16.0005 27C15.3803 26.9998 14.7754 26.8074 14.269 26.4492C13.7626 26.0911 13.3797 25.5848 13.173 25H18.828C18.6213 25.5848 18.2384 26.0911 17.732 26.4492C17.2257 26.8074 16.6207 26.9998 16.0005 27Z"
29
+ fill="currentColor"/>
30
+ </svg>
31
+ }
32
+ if (type === 'duotone') {
33
+ return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
34
+ <path opacity="0.2"
35
+ d="M25.9998 24H5.99984C5.82482 23.9989 5.65314 23.952 5.50195 23.8638C5.35077 23.7756 5.22539 23.6492 5.13833 23.4974C5.05127 23.3456 5.00559 23.1735 5.00586 22.9985C5.00613 22.8235 5.05233 22.6516 5.13984 22.5C5.96359 21.075 6.99984 17.4762 6.99984 13C6.99984 10.6131 7.94806 8.32387 9.63588 6.63604C11.3237 4.94821 13.6129 4 15.9998 4C18.3868 4 20.676 4.94821 22.3638 6.63604C24.0516 8.32387 24.9998 10.6131 24.9998 13C24.9998 17.4775 26.0373 21.075 26.8623 22.5C26.95 22.6518 26.9962 22.8239 26.9963 22.9991C26.9965 23.1744 26.9506 23.3466 26.8632 23.4985C26.7759 23.6504 26.6501 23.7767 26.4986 23.8647C26.3471 23.9527 26.1751 23.9994 25.9998 24Z"
36
+ fill="currentColor"/>
37
+ <path
38
+ d="M27.7255 21.9925C27.0318 20.7975 26.0005 17.4163 26.0005 13C26.0005 10.3478 24.9469 7.8043 23.0716 5.92893C21.1962 4.05357 18.6527 3 16.0005 3C13.3483 3 10.8048 4.05357 8.92944 5.92893C7.05407 7.8043 6.0005 10.3478 6.0005 13C6.0005 17.4175 4.968 20.7975 4.27425 21.9925C4.09709 22.2963 4.00317 22.6415 4.00196 22.9931C4.00076 23.3448 4.09231 23.6906 4.26738 23.9956C4.44245 24.3006 4.69485 24.5541 4.99914 24.7304C5.30342 24.9068 5.64882 24.9997 6.0005 25H11.1018C11.3325 26.1289 11.946 27.1436 12.8387 27.8722C13.7313 28.6009 14.8482 28.9989 16.0005 28.9989C17.1528 28.9989 18.2697 28.6009 19.1623 27.8722C20.055 27.1436 20.6685 26.1289 20.8993 25H26.0005C26.3521 24.9995 26.6973 24.9064 27.0014 24.73C27.3055 24.5535 27.5578 24.3 27.7327 23.9951C27.9076 23.6901 27.9991 23.3444 27.9978 22.9928C27.9965 22.6412 27.9026 22.2962 27.7255 21.9925ZM16.0005 27C15.3803 26.9998 14.7754 26.8074 14.269 26.4492C13.7626 26.0911 13.3797 25.5848 13.173 25H18.828C18.6213 25.5848 18.2384 26.0911 17.732 26.4492C17.2257 26.8074 16.6207 26.9998 16.0005 27ZM6.0005 23C6.963 21.345 8.0005 17.51 8.0005 13C8.0005 10.8783 8.84336 8.84344 10.3437 7.34315C11.8439 5.84285 13.8788 5 16.0005 5C18.1222 5 20.1571 5.84285 21.6574 7.34315C23.1577 8.84344 24.0005 10.8783 24.0005 13C24.0005 17.5063 25.0355 21.3412 26.0005 23H6.0005Z"
39
+ fill="currentColor"/>
40
+ </svg>
41
+ }
42
+ return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
43
+ <path
44
+ d="M27.5095 22.1175C26.802 20.9 25.7508 17.4662 25.7508 13C25.7508 10.4141 24.7235 7.93419 22.8951 6.10571C21.0666 4.27723 18.5866 3.25 16.0008 3.25C13.4149 3.25 10.935 4.27723 9.10647 6.10571C7.27799 7.93419 6.25076 10.4141 6.25076 13C6.25076 17.4675 5.19826 20.9 4.49076 22.1175C4.33553 22.3833 4.25316 22.6854 4.25197 22.9932C4.25077 23.301 4.33079 23.6037 4.48395 23.8707C4.63711 24.1377 4.85799 24.3596 5.1243 24.514C5.39062 24.6684 5.69294 24.7498 6.00076 24.75H11.3108C11.4929 25.8618 12.0644 26.8727 12.923 27.6021C13.7817 28.3315 14.8716 28.732 15.9983 28.732C17.1249 28.732 18.2149 28.3315 19.0735 27.6021C19.9322 26.8727 20.5036 25.8618 20.6858 24.75H26.0008C26.3084 24.7494 26.6104 24.6676 26.8763 24.5131C27.1423 24.3585 27.3628 24.1366 27.5157 23.8696C27.6686 23.6027 27.7484 23.3002 27.7471 22.9926C27.7458 22.685 27.6634 22.3831 27.5083 22.1175H27.5095ZM16.0008 27.25C15.2694 27.2498 14.5595 27.0029 13.9858 26.5492C13.4122 26.0955 13.0083 25.4616 12.8395 24.75H19.162C18.9932 25.4616 18.5894 26.0955 18.0157 26.5492C17.442 27.0029 16.7321 27.2498 16.0008 27.25ZM26.2145 23.125C26.1939 23.1633 26.1632 23.1952 26.1258 23.2172C26.0883 23.2393 26.0455 23.2506 26.002 23.25H6.00076C5.9573 23.2506 5.91449 23.2393 5.87702 23.2172C5.83955 23.1952 5.80885 23.1633 5.78826 23.125C5.76632 23.087 5.75477 23.0439 5.75477 23C5.75477 22.9561 5.76632 22.913 5.78826 22.875C6.73451 21.25 7.75076 17.4613 7.75076 13C7.75076 10.812 8.61996 8.71354 10.1671 7.16637C11.7143 5.61919 13.8127 4.75 16.0008 4.75C18.1888 4.75 20.2872 5.61919 21.8344 7.16637C23.3816 8.71354 24.2508 10.812 24.2508 13C24.2508 17.46 25.2683 21.2437 26.2145 22.875C26.2365 22.913 26.248 22.9561 26.248 23C26.248 23.0439 26.2365 23.087 26.2145 23.125Z"
45
+ fill="currentColor"/>
46
+ </svg>
47
+ };
48
+
49
+ export default Bell;
@@ -0,0 +1,105 @@
1
+ import IconProps from "../../IconProps";
2
+
3
+ const CalendarBank = ({ type = "light" }: IconProps) => {
4
+ if (type === "thin") {
5
+ return (
6
+ <svg
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="32"
9
+ height="32"
10
+ viewBox="0 0 32 32"
11
+ fill="none"
12
+ >
13
+ <path
14
+ d="M26 4.5H22.5V3C22.5 2.86739 22.4473 2.74021 22.3536 2.64645C22.2598 2.55268 22.1326 2.5 22 2.5C21.8674 2.5 21.7402 2.55268 21.6464 2.64645C21.5527 2.74021 21.5 2.86739 21.5 3V4.5H10.5V3C10.5 2.86739 10.4473 2.74021 10.3536 2.64645C10.2598 2.55268 10.1326 2.5 10 2.5C9.86739 2.5 9.74021 2.55268 9.64645 2.64645C9.55268 2.74021 9.5 2.86739 9.5 3V4.5H6C5.60218 4.5 5.22064 4.65804 4.93934 4.93934C4.65804 5.22064 4.5 5.60218 4.5 6V26C4.5 26.3978 4.65804 26.7794 4.93934 27.0607C5.22064 27.342 5.60218 27.5 6 27.5H26C26.3978 27.5 26.7794 27.342 27.0607 27.0607C27.342 26.7794 27.5 26.3978 27.5 26V6C27.5 5.60218 27.342 5.22064 27.0607 4.93934C26.7794 4.65804 26.3978 4.5 26 4.5ZM6 5.5H9.5V7C9.5 7.13261 9.55268 7.25979 9.64645 7.35355C9.74021 7.44732 9.86739 7.5 10 7.5C10.1326 7.5 10.2598 7.44732 10.3536 7.35355C10.4473 7.25979 10.5 7.13261 10.5 7V5.5H21.5V7C21.5 7.13261 21.5527 7.25979 21.6464 7.35355C21.7402 7.44732 21.8674 7.5 22 7.5C22.1326 7.5 22.2598 7.44732 22.3536 7.35355C22.4473 7.25979 22.5 7.13261 22.5 7V5.5H26C26.1326 5.5 26.2598 5.55268 26.3536 5.64645C26.4473 5.74021 26.5 5.86739 26.5 6V10.5H5.5V6C5.5 5.86739 5.55268 5.74021 5.64645 5.64645C5.74021 5.55268 5.86739 5.5 6 5.5ZM26 26.5H6C5.86739 26.5 5.74021 26.4473 5.64645 26.3536C5.55268 26.2598 5.5 26.1326 5.5 26V11.5H26.5V26C26.5 26.1326 26.4473 26.2598 26.3536 26.3536C26.2598 26.4473 26.1326 26.5 26 26.5Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+ }
20
+ if (type === "regular") {
21
+ return (
22
+ <svg
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ width="32"
25
+ height="32"
26
+ viewBox="0 0 32 32"
27
+ fill="none"
28
+ >
29
+ <path
30
+ d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z"
31
+ fill="currentColor"
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ if (type === "bold") {
37
+ return (
38
+ <svg
39
+ xmlns="http://www.w3.org/2000/svg"
40
+ width="32"
41
+ height="32"
42
+ viewBox="0 0 32 32"
43
+ fill="none"
44
+ >
45
+ <path
46
+ d="M26 3.5H23.5V3C23.5 2.60218 23.342 2.22064 23.0607 1.93934C22.7794 1.65804 22.3978 1.5 22 1.5C21.6022 1.5 21.2206 1.65804 20.9393 1.93934C20.658 2.22064 20.5 2.60218 20.5 3V3.5H11.5V3C11.5 2.60218 11.342 2.22064 11.0607 1.93934C10.7794 1.65804 10.3978 1.5 10 1.5C9.60218 1.5 9.22064 1.65804 8.93934 1.93934C8.65804 2.22064 8.5 2.60218 8.5 3V3.5H6C5.33696 3.5 4.70107 3.76339 4.23223 4.23223C3.76339 4.70107 3.5 5.33696 3.5 6V26C3.5 26.663 3.76339 27.2989 4.23223 27.7678C4.70107 28.2366 5.33696 28.5 6 28.5H26C26.663 28.5 27.2989 28.2366 27.7678 27.7678C28.2366 27.2989 28.5 26.663 28.5 26V6C28.5 5.33696 28.2366 4.70107 27.7678 4.23223C27.2989 3.76339 26.663 3.5 26 3.5ZM8.5 6.5C8.5 6.89782 8.65804 7.27936 8.93934 7.56066C9.22064 7.84196 9.60218 8 10 8C10.3978 8 10.7794 7.84196 11.0607 7.56066C11.342 7.27936 11.5 6.89782 11.5 6.5H20.5C20.5 6.89782 20.658 7.27936 20.9393 7.56066C21.2206 7.84196 21.6022 8 22 8C22.3978 8 22.7794 7.84196 23.0607 7.56066C23.342 7.27936 23.5 6.89782 23.5 6.5H25.5V9.5H6.5V6.5H8.5ZM6.5 25.5V12.5H25.5V25.5H6.5Z"
47
+ fill="currentColor"
48
+ />
49
+ </svg>
50
+ );
51
+ }
52
+ if (type === "fill") {
53
+ return (
54
+ <svg
55
+ xmlns="http://www.w3.org/2000/svg"
56
+ width="32"
57
+ height="32"
58
+ viewBox="0 0 32 32"
59
+ fill="none"
60
+ >
61
+ <path
62
+ d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM26 10H6V6H9V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10Z"
63
+ fill="currentColor"
64
+ />
65
+ </svg>
66
+ );
67
+ }
68
+ if (type === "duotone") {
69
+ return (
70
+ <svg
71
+ xmlns="http://www.w3.org/2000/svg"
72
+ width="32"
73
+ height="32"
74
+ viewBox="0 0 32 32"
75
+ fill="none"
76
+ >
77
+ <path
78
+ opacity="0.2"
79
+ d="M27 6V11H5V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H26C26.2652 5 26.5196 5.10536 26.7071 5.29289C26.8946 5.48043 27 5.73478 27 6Z"
80
+ fill="currentColor"
81
+ />
82
+ <path
83
+ d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z"
84
+ fill="currentColor"
85
+ />
86
+ </svg>
87
+ );
88
+ }
89
+ return (
90
+ <svg
91
+ xmlns="http://www.w3.org/2000/svg"
92
+ width="32"
93
+ height="32"
94
+ viewBox="0 0 32 32"
95
+ fill="none"
96
+ >
97
+ <path
98
+ d="M26 4.25H22.75V3C22.75 2.80109 22.671 2.61032 22.5303 2.46967C22.3897 2.32902 22.1989 2.25 22 2.25C21.8011 2.25 21.6103 2.32902 21.4697 2.46967C21.329 2.61032 21.25 2.80109 21.25 3V4.25H10.75V3C10.75 2.80109 10.671 2.61032 10.5303 2.46967C10.3897 2.32902 10.1989 2.25 10 2.25C9.80109 2.25 9.61032 2.32902 9.46967 2.46967C9.32902 2.61032 9.25 2.80109 9.25 3V4.25H6C5.53587 4.25 5.09075 4.43437 4.76256 4.76256C4.43437 5.09075 4.25 5.53587 4.25 6V26C4.25 26.4641 4.43437 26.9092 4.76256 27.2374C5.09075 27.5656 5.53587 27.75 6 27.75H26C26.4641 27.75 26.9092 27.5656 27.2374 27.2374C27.5656 26.9092 27.75 26.4641 27.75 26V6C27.75 5.53587 27.5656 5.09075 27.2374 4.76256C26.9092 4.43437 26.4641 4.25 26 4.25ZM6 5.75H9.25V7C9.25 7.19891 9.32902 7.38968 9.46967 7.53033C9.61032 7.67098 9.80109 7.75 10 7.75C10.1989 7.75 10.3897 7.67098 10.5303 7.53033C10.671 7.38968 10.75 7.19891 10.75 7V5.75H21.25V7C21.25 7.19891 21.329 7.38968 21.4697 7.53033C21.6103 7.67098 21.8011 7.75 22 7.75C22.1989 7.75 22.3897 7.67098 22.5303 7.53033C22.671 7.38968 22.75 7.19891 22.75 7V5.75H26C26.0663 5.75 26.1299 5.77634 26.1768 5.82322C26.2237 5.87011 26.25 5.9337 26.25 6V10.25H5.75V6C5.75 5.9337 5.77634 5.87011 5.82322 5.82322C5.87011 5.77634 5.9337 5.75 6 5.75ZM26 26.25H6C5.9337 26.25 5.87011 26.2237 5.82322 26.1768C5.77634 26.1299 5.75 26.0663 5.75 26V11.75H26.25V26C26.25 26.0663 26.2237 26.1299 26.1768 26.1768C26.1299 26.2237 26.0663 26.25 26 26.25Z"
99
+ fill="currentColor"
100
+ />
101
+ </svg>
102
+ );
103
+ };
104
+
105
+ export default CalendarBank;
@@ -0,0 +1,105 @@
1
+ import IconProps from "../../IconProps";
2
+
3
+ const Clock = ({ type = "light" }: IconProps) => {
4
+ if (type === "thin") {
5
+ return (
6
+ <svg
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="32"
9
+ height="32"
10
+ viewBox="0 0 32 32"
11
+ fill="none"
12
+ >
13
+ <path
14
+ d="M16 3.5C13.5277 3.5 11.111 4.23311 9.05538 5.60663C6.99976 6.98015 5.39761 8.93238 4.45151 11.2165C3.50542 13.5005 3.25787 16.0139 3.74019 18.4386C4.2225 20.8634 5.41301 23.0907 7.16117 24.8388C8.90933 26.587 11.1366 27.7775 13.5614 28.2598C15.9861 28.7421 18.4995 28.4946 20.7835 27.5485C23.0676 26.6024 25.0199 25.0002 26.3934 22.9446C27.7669 20.889 28.5 18.4723 28.5 16C28.4964 12.6859 27.1782 9.5086 24.8348 7.16518C22.4914 4.82177 19.3141 3.50364 16 3.5ZM16 27.5C13.7255 27.5 11.5021 26.8255 9.61095 25.5619C7.71978 24.2983 6.2458 22.5022 5.37539 20.4009C4.50498 18.2995 4.27724 15.9872 4.72097 13.7565C5.1647 11.5257 6.25997 9.47658 7.86828 7.86827C9.47658 6.25997 11.5257 5.1647 13.7565 4.72097C15.9872 4.27724 18.2995 4.50498 20.4009 5.37539C22.5022 6.24579 24.2983 7.71978 25.5619 9.61094C26.8255 11.5021 27.5 13.7255 27.5 16C27.4967 19.049 26.284 21.9721 24.1281 24.1281C21.9721 26.284 19.049 27.4967 16 27.5ZM23.5 16C23.5 16.1326 23.4473 16.2598 23.3536 16.3536C23.2598 16.4473 23.1326 16.5 23 16.5H16C15.8674 16.5 15.7402 16.4473 15.6465 16.3536C15.5527 16.2598 15.5 16.1326 15.5 16V9C15.5 8.86739 15.5527 8.74021 15.6465 8.64645C15.7402 8.55268 15.8674 8.5 16 8.5C16.1326 8.5 16.2598 8.55268 16.3536 8.64645C16.4473 8.74021 16.5 8.86739 16.5 9V15.5H23C23.1326 15.5 23.2598 15.5527 23.3536 15.6464C23.4473 15.7402 23.5 15.8674 23.5 16Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+ }
20
+ if (type === "regular") {
21
+ return (
22
+ <svg
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ width="32"
25
+ height="32"
26
+ viewBox="0 0 32 32"
27
+ fill="none"
28
+ >
29
+ <path
30
+ d="M16 3C13.4288 3 10.9154 3.76244 8.77759 5.1909C6.63975 6.61935 4.97351 8.64968 3.98957 11.0251C3.00563 13.4006 2.74819 16.0144 3.2498 18.5362C3.75141 21.0579 4.98953 23.3743 6.80762 25.1924C8.6257 27.0105 10.9421 28.2486 13.4638 28.7502C15.9856 29.2518 18.5995 28.9944 20.9749 28.0104C23.3503 27.0265 25.3807 25.3603 26.8091 23.2224C28.2376 21.0846 29 18.5712 29 16C28.9964 12.5533 27.6256 9.24882 25.1884 6.81163C22.7512 4.37445 19.4467 3.00364 16 3ZM16 27C13.8244 27 11.6977 26.3549 9.88873 25.1462C8.07979 23.9375 6.66989 22.2195 5.83733 20.2095C5.00477 18.1995 4.78693 15.9878 5.21137 13.854C5.63581 11.7202 6.68345 9.7602 8.22183 8.22183C9.76021 6.68345 11.7202 5.6358 13.854 5.21136C15.9878 4.78692 18.1995 5.00476 20.2095 5.83733C22.2195 6.66989 23.9375 8.07979 25.1462 9.88873C26.3549 11.6977 27 13.8244 27 16C26.9967 18.9164 25.8367 21.7123 23.7745 23.7745C21.7123 25.8367 18.9164 26.9967 16 27ZM24 16C24 16.2652 23.8946 16.5196 23.7071 16.7071C23.5196 16.8946 23.2652 17 23 17H16C15.7348 17 15.4804 16.8946 15.2929 16.7071C15.1054 16.5196 15 16.2652 15 16V9C15 8.73478 15.1054 8.48043 15.2929 8.29289C15.4804 8.10536 15.7348 8 16 8C16.2652 8 16.5196 8.10536 16.7071 8.29289C16.8946 8.48043 17 8.73478 17 9V15H23C23.2652 15 23.5196 15.1054 23.7071 15.2929C23.8946 15.4804 24 15.7348 24 16Z"
31
+ fill="currentColor"
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ if (type === "bold") {
37
+ return (
38
+ <svg
39
+ xmlns="http://www.w3.org/2000/svg"
40
+ width="32"
41
+ height="32"
42
+ viewBox="0 0 32 32"
43
+ fill="none"
44
+ >
45
+ <path
46
+ d="M16 2.5C13.33 2.5 10.7199 3.29176 8.49981 4.77516C6.27974 6.25856 4.54942 8.36697 3.52763 10.8338C2.50585 13.3006 2.2385 16.015 2.7594 18.6337C3.28031 21.2525 4.56606 23.6579 6.45406 25.5459C8.34207 27.434 10.7475 28.7197 13.3663 29.2406C15.985 29.7615 18.6994 29.4942 21.1662 28.4724C23.633 27.4506 25.7414 25.7203 27.2248 23.5002C28.7082 21.2801 29.5 18.67 29.5 16C29.496 12.4208 28.0724 8.98932 25.5416 6.45844C23.0107 3.92756 19.5792 2.50397 16 2.5ZM16 26.5C13.9233 26.5 11.8932 25.8842 10.1665 24.7304C8.4398 23.5767 7.09399 21.9368 6.29927 20.0182C5.50455 18.0996 5.29662 15.9884 5.70176 13.9516C6.10691 11.9148 7.10693 10.0438 8.57538 8.57538C10.0438 7.10693 11.9148 6.1069 13.9516 5.70175C15.9884 5.29661 18.0996 5.50454 20.0182 6.29926C21.9368 7.09399 23.5767 8.4398 24.7304 10.1665C25.8842 11.8932 26.5 13.9233 26.5 16C26.497 18.7839 25.3898 21.4528 23.4213 23.4213C21.4529 25.3898 18.7839 26.497 16 26.5ZM24.5 16C24.5 16.3978 24.342 16.7794 24.0607 17.0607C23.7794 17.342 23.3978 17.5 23 17.5H16C15.6022 17.5 15.2206 17.342 14.9393 17.0607C14.658 16.7794 14.5 16.3978 14.5 16V9C14.5 8.60218 14.658 8.22064 14.9393 7.93934C15.2206 7.65804 15.6022 7.5 16 7.5C16.3978 7.5 16.7794 7.65804 17.0607 7.93934C17.342 8.22064 17.5 8.60218 17.5 9V14.5H23C23.3978 14.5 23.7794 14.658 24.0607 14.9393C24.342 15.2206 24.5 15.6022 24.5 16Z"
47
+ fill="currentColor"
48
+ />
49
+ </svg>
50
+ );
51
+ }
52
+ if (type === "fill") {
53
+ return (
54
+ <svg
55
+ xmlns="http://www.w3.org/2000/svg"
56
+ width="32"
57
+ height="32"
58
+ viewBox="0 0 32 32"
59
+ fill="none"
60
+ >
61
+ <path
62
+ d="M16 3C13.4288 3 10.9154 3.76244 8.77759 5.1909C6.63975 6.61935 4.97351 8.64968 3.98957 11.0251C3.00563 13.4006 2.74819 16.0144 3.2498 18.5362C3.75141 21.0579 4.98953 23.3743 6.80762 25.1924C8.6257 27.0105 10.9421 28.2486 13.4638 28.7502C15.9856 29.2518 18.5995 28.9944 20.9749 28.0104C23.3503 27.0265 25.3807 25.3603 26.8091 23.2224C28.2376 21.0846 29 18.5712 29 16C28.9964 12.5533 27.6256 9.24882 25.1884 6.81163C22.7512 4.37445 19.4467 3.00364 16 3ZM23 17H16C15.7348 17 15.4804 16.8946 15.2929 16.7071C15.1054 16.5196 15 16.2652 15 16V9C15 8.73478 15.1054 8.48043 15.2929 8.29289C15.4804 8.10536 15.7348 8 16 8C16.2652 8 16.5196 8.10536 16.7071 8.29289C16.8946 8.48043 17 8.73478 17 9V15H23C23.2652 15 23.5196 15.1054 23.7071 15.2929C23.8946 15.4804 24 15.7348 24 16C24 16.2652 23.8946 16.5196 23.7071 16.7071C23.5196 16.8946 23.2652 17 23 17Z"
63
+ fill="currentColor"
64
+ />
65
+ </svg>
66
+ );
67
+ }
68
+ if (type === "duotone") {
69
+ return (
70
+ <svg
71
+ xmlns="http://www.w3.org/2000/svg"
72
+ width="32"
73
+ height="32"
74
+ viewBox="0 0 32 32"
75
+ fill="none"
76
+ >
77
+ <path
78
+ opacity="0.2"
79
+ d="M28 16C28 18.3734 27.2962 20.6935 25.9776 22.6668C24.6591 24.6402 22.7849 26.1783 20.5922 27.0866C18.3995 27.9948 15.9867 28.2324 13.6589 27.7694C11.3312 27.3064 9.19295 26.1635 7.51472 24.4853C5.83649 22.8071 4.6936 20.6689 4.23058 18.3411C3.76756 16.0133 4.0052 13.6005 4.91345 11.4078C5.8217 9.21509 7.35977 7.34094 9.33316 6.02236C11.3066 4.70379 13.6266 4 16 4C19.1826 4 22.2348 5.26428 24.4853 7.51472C26.7357 9.76516 28 12.8174 28 16Z"
80
+ fill="currentColor"
81
+ />
82
+ <path
83
+ d="M16 3C13.4288 3 10.9154 3.76244 8.77759 5.1909C6.63975 6.61935 4.97351 8.64968 3.98957 11.0251C3.00563 13.4006 2.74819 16.0144 3.2498 18.5362C3.75141 21.0579 4.98953 23.3743 6.80762 25.1924C8.6257 27.0105 10.9421 28.2486 13.4638 28.7502C15.9856 29.2518 18.5995 28.9944 20.9749 28.0104C23.3503 27.0265 25.3807 25.3603 26.8091 23.2224C28.2376 21.0846 29 18.5712 29 16C28.9964 12.5533 27.6256 9.24882 25.1884 6.81163C22.7512 4.37445 19.4467 3.00364 16 3ZM16 27C13.8244 27 11.6977 26.3549 9.88873 25.1462C8.07979 23.9375 6.66989 22.2195 5.83733 20.2095C5.00477 18.1995 4.78693 15.9878 5.21137 13.854C5.63581 11.7202 6.68345 9.7602 8.22183 8.22183C9.76021 6.68345 11.7202 5.6358 13.854 5.21136C15.9878 4.78692 18.1995 5.00476 20.2095 5.83733C22.2195 6.66989 23.9375 8.07979 25.1462 9.88873C26.3549 11.6977 27 13.8244 27 16C26.9967 18.9164 25.8367 21.7123 23.7745 23.7745C21.7123 25.8367 18.9164 26.9967 16 27ZM24 16C24 16.2652 23.8946 16.5196 23.7071 16.7071C23.5196 16.8946 23.2652 17 23 17H16C15.7348 17 15.4804 16.8946 15.2929 16.7071C15.1054 16.5196 15 16.2652 15 16V9C15 8.73478 15.1054 8.48043 15.2929 8.29289C15.4804 8.10536 15.7348 8 16 8C16.2652 8 16.5196 8.10536 16.7071 8.29289C16.8946 8.48043 17 8.73478 17 9V15H23C23.2652 15 23.5196 15.1054 23.7071 15.2929C23.8946 15.4804 24 15.7348 24 16Z"
84
+ fill="currentColor"
85
+ />
86
+ </svg>
87
+ );
88
+ }
89
+ return (
90
+ <svg
91
+ xmlns="http://www.w3.org/2000/svg"
92
+ width="32"
93
+ height="32"
94
+ viewBox="0 0 32 32"
95
+ fill="none"
96
+ >
97
+ <path
98
+ d="M16 3.25C13.4783 3.25 11.0132 3.99777 8.91648 5.39876C6.81976 6.79975 5.18556 8.79103 4.22054 11.1208C3.25552 13.4505 3.00303 16.0141 3.49499 18.4874C3.98696 20.9607 5.20127 23.2325 6.98439 25.0156C8.76751 26.7987 11.0393 28.0131 13.5126 28.505C15.9859 28.997 18.5495 28.7445 20.8792 27.7795C23.209 26.8144 25.2003 25.1802 26.6012 23.0835C28.0022 20.9868 28.75 18.5217 28.75 16C28.746 12.6197 27.4015 9.379 25.0112 6.98877C22.621 4.59854 19.3803 3.25397 16 3.25ZM16 27.25C13.775 27.25 11.5999 26.5902 9.74984 25.354C7.89979 24.1179 6.45785 22.3609 5.60636 20.3052C4.75488 18.2495 4.53209 15.9875 4.96617 13.8052C5.40025 11.6229 6.47171 9.61839 8.04505 8.04505C9.6184 6.47171 11.623 5.40025 13.8052 4.96617C15.9875 4.53208 18.2495 4.75487 20.3052 5.60636C22.3609 6.45784 24.1179 7.89978 25.354 9.74984C26.5902 11.5999 27.25 13.775 27.25 16C27.2467 18.9827 26.0604 21.8422 23.9513 23.9513C21.8422 26.0604 18.9827 27.2467 16 27.25ZM23.75 16C23.75 16.1989 23.671 16.3897 23.5303 16.5303C23.3897 16.671 23.1989 16.75 23 16.75H16C15.8011 16.75 15.6103 16.671 15.4697 16.5303C15.329 16.3897 15.25 16.1989 15.25 16V9C15.25 8.80109 15.329 8.61032 15.4697 8.46967C15.6103 8.32902 15.8011 8.25 16 8.25C16.1989 8.25 16.3897 8.32902 16.5303 8.46967C16.671 8.61032 16.75 8.80109 16.75 9V15.25H23C23.1989 15.25 23.3897 15.329 23.5303 15.4697C23.671 15.6103 23.75 15.8011 23.75 16Z"
99
+ fill="currentColor"
100
+ />
101
+ </svg>
102
+ );
103
+ };
104
+
105
+ export default Clock;
@@ -0,0 +1,5 @@
1
+ const CalloutPopup = () => {
2
+
3
+ }
4
+
5
+ export default CalloutPopup;
@@ -0,0 +1,5 @@
1
+ const Header = () => {
2
+
3
+ }
4
+
5
+ export default Header;
@@ -0,0 +1,5 @@
1
+ const HeaderLeft = () => {
2
+
3
+ }
4
+
5
+ export default HeaderLeft;
@@ -0,0 +1,5 @@
1
+ const HeaderRight = () => {
2
+
3
+ }
4
+
5
+ export default HeaderRight;
@@ -0,0 +1,5 @@
1
+ const Pagination = () => {
2
+
3
+ }
4
+
5
+ export default Pagination;
@@ -0,0 +1,5 @@
1
+ const PaginationFirst = () => {
2
+
3
+ }
4
+
5
+ export default PaginationFirst;
@@ -0,0 +1,5 @@
1
+ const PaginationLast = () => {
2
+
3
+ }
4
+
5
+ export default PaginationLast;
@@ -0,0 +1,5 @@
1
+ const PaginationNext = () => {
2
+
3
+ }
4
+
5
+ export default PaginationNext;
@@ -0,0 +1,5 @@
1
+ const PaginationNumber = () => {
2
+
3
+ }
4
+
5
+ export default PaginationNumber;
@@ -0,0 +1,5 @@
1
+ const PaginationPrevious = () => {
2
+
3
+ }
4
+
5
+ export default PaginationPrevious;
@@ -0,0 +1,5 @@
1
+ const ProfileAvatar = () => {
2
+
3
+ }
4
+
5
+ export default ProfileAvatar;
@@ -0,0 +1,4 @@
1
+ interface ProfileAvatarProps {
2
+ initial?: string;
3
+ children?: ReactNode;
4
+ }
@@ -0,0 +1,5 @@
1
+ const ProfileDropdown = () => {
2
+
3
+ }
4
+
5
+ export default ProfileDropdown;