@hellobetterdigitalnz/betterui 0.0.0 → 0.0.2

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 (248) hide show
  1. package/README.md +23 -30
  2. package/package.json +48 -45
  3. package/src/App.tsx +30 -30
  4. package/src/Components/DataDisplay/Accordion/Accordion.stories.tsx +57 -57
  5. package/src/Components/DataDisplay/Accordion/Accordion.tsx +14 -14
  6. package/src/Components/DataDisplay/Accordion/AccordionContext.tsx +11 -11
  7. package/src/Components/DataDisplay/Accordion/AccordionContextInterface.tsx +8 -8
  8. package/src/Components/DataDisplay/Accordion/AccordionItem.tsx +62 -62
  9. package/src/Components/DataDisplay/Accordion/AccordionItemProps.tsx +12 -12
  10. package/src/Components/DataDisplay/Accordion/AccordionProps.tsx +8 -8
  11. package/src/Components/DataDisplay/Accordion/AccordionProvider.tsx +65 -65
  12. package/src/Components/DataDisplay/Accordion/AccordionProviderInterface.tsx +8 -8
  13. package/src/Components/DataDisplay/Accordion/accordion.module.scss +56 -56
  14. package/src/Components/DataDisplay/Badge/Badge.stories.tsx +44 -44
  15. package/src/Components/DataDisplay/Badge/Badge.tsx +32 -32
  16. package/src/Components/DataDisplay/Badge/BadgeProps.tsx +6 -6
  17. package/src/Components/DataDisplay/Badge/badge.module.scss +42 -42
  18. package/src/Components/DataDisplay/Cards/BannerCard/BannerCard.stories.tsx +26 -26
  19. package/src/Components/DataDisplay/Cards/BannerCard/BannerCard.tsx +47 -47
  20. package/src/Components/DataDisplay/Cards/BannerCard/BannerCardInterface.tsx +15 -15
  21. package/src/Components/DataDisplay/Cards/BannerCard/banner-card.scss +54 -54
  22. package/src/Components/DataDisplay/Cards/PathwayCard/PathwayCard.stories.tsx +31 -31
  23. package/src/Components/DataDisplay/Cards/PathwayCard/PathwayCard.tsx +53 -53
  24. package/src/Components/DataDisplay/Cards/PathwayCard/PathwayCardInterface.tsx +17 -17
  25. package/src/Components/DataDisplay/Cards/PathwayCard/pathway-card-stories.scss +3 -3
  26. package/src/Components/DataDisplay/Cards/PathwayCard/pathway-card.scss +62 -62
  27. package/src/Components/DataDisplay/Media/Media.stories.tsx +30 -0
  28. package/src/Components/DataDisplay/Media/Media.tsx +28 -7
  29. package/src/Components/DataDisplay/Media/media.module.scss +8 -0
  30. package/src/Components/DataDisplay/Modal/Modal.stories.tsx +27 -0
  31. package/src/Components/DataDisplay/Modal/Modal.tsx +16 -5
  32. package/src/Components/DataDisplay/Modal/ModalActions.tsx +5 -5
  33. package/src/Components/DataDisplay/Modal/ModalActionsLeft.tsx +5 -5
  34. package/src/Components/DataDisplay/Modal/ModalActionsRight.tsx +5 -5
  35. package/src/Components/DataDisplay/Modal/ModalBody.tsx +15 -5
  36. package/src/Components/DataDisplay/Modal/ModalBodyProps.tsx +7 -0
  37. package/src/Components/DataDisplay/Modal/ModalCurtain.tsx +5 -5
  38. package/src/Components/DataDisplay/Modal/ModalHeader.tsx +32 -5
  39. package/src/Components/DataDisplay/Modal/ModalHeaderProps.tsx +8 -0
  40. package/src/Components/DataDisplay/Modal/ModalProps.tsx +8 -0
  41. package/src/Components/DataDisplay/Modal/modal.module.scss +58 -0
  42. package/src/Components/DataDisplay/NotificationsBell/NotificationBell.stories.tsx +27 -27
  43. package/src/Components/DataDisplay/NotificationsBell/NotificationsBell.tsx +51 -51
  44. package/src/Components/DataDisplay/NotificationsBell/notificationBell.module.scss +47 -47
  45. package/src/Components/DataDisplay/NotificationsPanel/Notification.stories.tsx +128 -128
  46. package/src/Components/DataDisplay/NotificationsPanel/Notification.tsx +59 -59
  47. package/src/Components/DataDisplay/NotificationsPanel/NotificationProps.tsx +11 -11
  48. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroup.tsx +17 -17
  49. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroupProps.tsx +8 -8
  50. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroups.tsx +42 -42
  51. package/src/Components/DataDisplay/NotificationsPanel/NotificationsGroupsProps.tsx +7 -7
  52. package/src/Components/DataDisplay/NotificationsPanel/NotificationsHeader.tsx +27 -27
  53. package/src/Components/DataDisplay/NotificationsPanel/NotificationsHeaderProps.tsx +7 -9
  54. package/src/Components/DataDisplay/NotificationsPanel/NotificationsNone.tsx +11 -11
  55. package/src/Components/DataDisplay/NotificationsPanel/NotificationsPanel.tsx +8 -8
  56. package/src/Components/DataDisplay/NotificationsPanel/NotificationsPanelProps.tsx +6 -6
  57. package/src/Components/DataDisplay/NotificationsPanel/notificationPanel.module.scss +196 -196
  58. package/src/Components/DataDisplay/Tab/Tab.stories.tsx +72 -72
  59. package/src/Components/DataDisplay/Tab/Tab.tsx +20 -20
  60. package/src/Components/DataDisplay/Tab/TabBody.tsx +6 -6
  61. package/src/Components/DataDisplay/Tab/TabBodyContent.tsx +15 -15
  62. package/src/Components/DataDisplay/Tab/TabBodyContentProps.tsx +9 -9
  63. package/src/Components/DataDisplay/Tab/TabBodyProps.tsx +8 -8
  64. package/src/Components/DataDisplay/Tab/TabContext.tsx +9 -9
  65. package/src/Components/DataDisplay/Tab/TabContextProps.tsx +6 -6
  66. package/src/Components/DataDisplay/Tab/TabNav.tsx +6 -6
  67. package/src/Components/DataDisplay/Tab/TabNavItem.tsx +49 -49
  68. package/src/Components/DataDisplay/Tab/TabNavItemProps.tsx +9 -9
  69. package/src/Components/DataDisplay/Tab/TabNavProps.tsx +8 -8
  70. package/src/Components/DataDisplay/Tab/TabProps.tsx +8 -8
  71. package/src/Components/DataDisplay/Tab/tab.module.scss +35 -35
  72. package/src/Components/DataDisplay/Tab/tab.stories.scss +3 -3
  73. package/src/Components/DataDisplay/Table/Table.stories.tsx +64 -64
  74. package/src/Components/DataDisplay/Table/Table.tsx +10 -10
  75. package/src/Components/DataDisplay/Table/TableBody.tsx +13 -13
  76. package/src/Components/DataDisplay/Table/TableBodyProps.tsx +8 -8
  77. package/src/Components/DataDisplay/Table/TableCell.tsx +30 -30
  78. package/src/Components/DataDisplay/Table/TableCellAction.tsx +27 -27
  79. package/src/Components/DataDisplay/Table/TableCellActionProps.tsx +11 -11
  80. package/src/Components/DataDisplay/Table/TableCellProps.tsx +11 -11
  81. package/src/Components/DataDisplay/Table/TableCellWithDesc.tsx +21 -21
  82. package/src/Components/DataDisplay/Table/TableCellWithDescProps.tsx +9 -9
  83. package/src/Components/DataDisplay/Table/TableCellWithImage.tsx +39 -39
  84. package/src/Components/DataDisplay/Table/TableCellWithImageProps.tsx +10 -10
  85. package/src/Components/DataDisplay/Table/TableFooter.tsx +5 -5
  86. package/src/Components/DataDisplay/Table/TableHead.tsx +11 -11
  87. package/src/Components/DataDisplay/Table/TableHeadProps.tsx +8 -8
  88. package/src/Components/DataDisplay/Table/TableHeaderCell.tsx +17 -17
  89. package/src/Components/DataDisplay/Table/TableHeaderCellProps.tsx +10 -10
  90. package/src/Components/DataDisplay/Table/TableProps.tsx +8 -8
  91. package/src/Components/DataDisplay/Table/TableRow.tsx +9 -9
  92. package/src/Components/DataDisplay/Table/TableRowProps.tsx +8 -8
  93. package/src/Components/DataDisplay/Table/table.module.scss +103 -103
  94. package/src/Components/Form/Button/Button.stories.tsx +66 -66
  95. package/src/Components/Form/Button/Button.tsx +64 -64
  96. package/src/Components/Form/Button/ButtonProps.tsx +18 -18
  97. package/src/Components/Form/Button/button.module.scss +142 -142
  98. package/src/Components/Form/Checkbox/Checkbox.stories.tsx +49 -49
  99. package/src/Components/Form/Checkbox/Checkbox.tsx +85 -85
  100. package/src/Components/Form/Checkbox/CheckboxProps.tsx +22 -22
  101. package/src/Components/Form/Checkbox/checkbox.module.scss +63 -63
  102. package/src/Components/Form/CheckboxSelect/CheckboxSelect.tsx +5 -5
  103. package/src/Components/Form/CheckboxSelect/CheckboxSelectItem.tsx +5 -5
  104. package/src/Components/Form/CheckboxSet/CheckboxSet.stories.tsx +93 -93
  105. package/src/Components/Form/CheckboxSet/CheckboxSet.tsx +14 -14
  106. package/src/Components/Form/CheckboxSet/CheckboxSetItem.tsx +88 -88
  107. package/src/Components/Form/CheckboxSet/CheckboxSetProps.tsx +9 -9
  108. package/src/Components/Form/CheckboxSet/checkboxSet.module.scss +13 -13
  109. package/src/Components/Form/CurrencyField/CurrenctField.stories.tsx +22 -22
  110. package/src/Components/Form/CurrencyField/CurrencyField.tsx +59 -59
  111. package/src/Components/Form/CurrencyField/CurrencyFieldProps.tsx +8 -8
  112. package/src/Components/Form/DateField/DateField.stories.tsx +22 -22
  113. package/src/Components/Form/DateField/DateField.tsx +58 -58
  114. package/src/Components/Form/DropdownBadge/DropdownBadge.stories.tsx +49 -49
  115. package/src/Components/Form/DropdownBadge/DropdownBadge.tsx +160 -160
  116. package/src/Components/Form/DropdownBadge/DropdownBadgeItem.tsx +40 -40
  117. package/src/Components/Form/DropdownBadge/DropdownBadgeItemProps.tsx +10 -10
  118. package/src/Components/Form/DropdownBadge/DropdownBadgeProps.tsx +31 -31
  119. package/src/Components/Form/DropdownBadge/DropdownBadgeSelector.tsx +11 -11
  120. package/src/Components/Form/DropdownBadge/DropdownBadgeSelectorProps.tsx +7 -7
  121. package/src/Components/Form/DropdownBadge/dropdownBadge.module.scss +105 -105
  122. package/src/Components/Form/DropdownField/DropdownField.stories.tsx +50 -50
  123. package/src/Components/Form/DropdownField/DropdownField.tsx +118 -118
  124. package/src/Components/Form/DropdownField/DropdownFieldItem.tsx +26 -26
  125. package/src/Components/Form/DropdownField/DropdownFieldItemProps.tsx +9 -9
  126. package/src/Components/Form/DropdownField/DropdownFieldProps.tsx +33 -33
  127. package/src/Components/Form/DropdownField/DropdownFieldSelector.tsx +15 -15
  128. package/src/Components/Form/DropdownField/DropdownFieldSelectorProps.tsx +7 -7
  129. package/src/Components/Form/DropdownField/dropdown.module.scss +79 -79
  130. package/src/Components/Form/EmailField/EmailField.stories.ts +23 -23
  131. package/src/Components/Form/EmailField/EmailField.tsx +51 -51
  132. package/src/Components/Form/ErrorMessage/ErrorMessage.tsx +5 -5
  133. package/src/Components/Form/FormFieldHolder/FormFieldHolder.stories.tsx +30 -0
  134. package/src/Components/Form/FormFieldHolder/FormFieldHolder.tsx +40 -5
  135. package/src/Components/Form/FormFieldHolder/FormFieldHolderProps.tsx +12 -0
  136. package/src/Components/Form/FormFieldHolder/formHolder.module.scss +56 -0
  137. package/src/Components/Form/IconButton/IconButton.stories.tsx +45 -45
  138. package/src/Components/Form/IconButton/IconButton.tsx +58 -58
  139. package/src/Components/Form/IconButton/IconButtonProps.tsx +15 -15
  140. package/src/Components/Form/IconButton/iconButton.module.scss +111 -111
  141. package/src/Components/Form/InputProps.tsx +25 -25
  142. package/src/Components/Form/MultiSelectField/MultiSelectField.tsx +5 -5
  143. package/src/Components/Form/MultiSelectField/MultiSelectFieldItem.tsx +5 -5
  144. package/src/Components/Form/MultiSelectField/MultiSelectFieldTag.tsx +5 -5
  145. package/src/Components/Form/PasswordField/PasswordField.stories.tsx +22 -22
  146. package/src/Components/Form/PasswordField/PasswordField.tsx +70 -70
  147. package/src/Components/Form/RadioButtons/RadioButton.tsx +70 -70
  148. package/src/Components/Form/RadioButtons/RadioButtonProps.tsx +22 -22
  149. package/src/Components/Form/RadioButtons/RadioButtons.stories.tsx +64 -64
  150. package/src/Components/Form/RadioButtons/RadioButtons.tsx +18 -18
  151. package/src/Components/Form/RadioButtons/RadioButtonsProps.tsx +10 -10
  152. package/src/Components/Form/RadioButtons/radioButton.stories.scss +3 -3
  153. package/src/Components/Form/RadioButtons/radiobutton.module.scss +63 -63
  154. package/src/Components/Form/TextField/TextField.stories.ts +22 -23
  155. package/src/Components/Form/TextField/TextField.tsx +56 -52
  156. package/src/Components/Form/TextField/TextFieldProps.tsx +8 -0
  157. package/src/Components/Form/Textarea/Textarea.stories.ts +31 -31
  158. package/src/Components/Form/Textarea/Textarea.tsx +71 -71
  159. package/src/Components/Form/Textarea/TextareaProps.tsx +27 -27
  160. package/src/Components/Form/Textarea/textarea.module.scss +49 -49
  161. package/src/Components/Form/TimeField/TimeField.stories.tsx +22 -22
  162. package/src/Components/Form/TimeField/TimeField.tsx +58 -58
  163. package/src/Components/Form/ToggleSwitch/ToggleSwitch.stories.tsx +49 -49
  164. package/src/Components/Form/ToggleSwitch/ToggleSwitch.tsx +87 -87
  165. package/src/Components/Form/ToggleSwitch/ToggleSwitchProps.tsx +22 -22
  166. package/src/Components/Form/ToggleSwitch/toggleSwitch.module.scss +82 -82
  167. package/src/Components/Form/inputs.module.scss +129 -121
  168. package/src/Components/Icons/Arrows/CaretDown/CaretDown.tsx +49 -49
  169. package/src/Components/Icons/Arrows/CaretLeft/CaretLeft.tsx +102 -0
  170. package/src/Components/Icons/Arrows/CaretRight/CaretRight.tsx +102 -0
  171. package/src/Components/Icons/Arrows/CaretUp/CaretUp.tsx +49 -49
  172. package/src/Components/Icons/Brand/WindowLogo/WindowLogo.tsx +105 -0
  173. package/src/Components/Icons/Commerce/CurrencyDollarSimple/CurrencyDollarSimple.tsx +105 -105
  174. package/src/Components/Icons/Communication/AddressBook/AddressBook.stories.ts +28 -28
  175. package/src/Components/Icons/Communication/AddressBook/AddressBook.tsx +50 -50
  176. package/src/Components/Icons/Communication/Asterick/Asterisk.stories.ts +28 -28
  177. package/src/Components/Icons/Communication/Asterick/Asterisk.tsx +50 -50
  178. package/src/Components/Icons/Communication/AsterickSimple/AsteriskSimple.stories.ts +28 -28
  179. package/src/Components/Icons/Communication/AsterickSimple/AsteriskSimple.tsx +49 -49
  180. package/src/Components/Icons/Communication/At/At.stories.ts +28 -28
  181. package/src/Components/Icons/Communication/At/At.tsx +49 -49
  182. package/src/Components/Icons/Communication/Broadcast/Broadcast.stories.ts +27 -27
  183. package/src/Components/Icons/Communication/Broadcast/Broadcast.tsx +49 -49
  184. package/src/Components/Icons/Communication/Chat/Chat.stories.ts +28 -28
  185. package/src/Components/Icons/Communication/Chat/Chat.tsx +49 -49
  186. package/src/Components/Icons/Design/Eye/Eye.tsx +105 -105
  187. package/src/Components/Icons/Design/EyeSlash/EyeSlash.tsx +105 -105
  188. package/src/Components/Icons/IconProps.tsx +5 -5
  189. package/src/Components/Icons/SecurityAndWarnings/WarningCircle/WarningCircle.tsx +105 -0
  190. package/src/Components/Icons/SystemAndDevice/Bell/Bell.tsx +49 -49
  191. package/src/Components/Icons/SystemAndDevice/MagnifyingGlass/MagnifyingGlass.tsx +105 -0
  192. package/src/Components/Icons/Time/CalendarBank/CalendarBank.tsx +105 -105
  193. package/src/Components/Icons/Time/Clock/Clock.tsx +105 -105
  194. package/src/Components/Layout/CalloutPopup/CalloutPopup.tsx +5 -5
  195. package/src/Components/Layout/Header/Header.tsx +5 -5
  196. package/src/Components/Layout/Header/HeaderLeft.tsx +5 -5
  197. package/src/Components/Layout/Header/HeaderRight.tsx +5 -5
  198. package/src/Components/Layout/Pagination/Pagination.tsx +5 -5
  199. package/src/Components/Layout/Pagination/PaginationFirst.tsx +5 -5
  200. package/src/Components/Layout/Pagination/PaginationLast.tsx +5 -5
  201. package/src/Components/Layout/Pagination/PaginationNext.tsx +5 -5
  202. package/src/Components/Layout/Pagination/PaginationNumber.tsx +5 -5
  203. package/src/Components/Layout/Pagination/PaginationPrevious.tsx +5 -5
  204. package/src/Components/Layout/ProfileAvatar/ProfileAvatar.stories.tsx +22 -0
  205. package/src/Components/Layout/ProfileAvatar/ProfileAvatar.tsx +31 -5
  206. package/src/Components/Layout/ProfileAvatar/ProfileAvatarProps.tsx +10 -4
  207. package/src/Components/Layout/ProfileAvatar/profileAvatar.module.scss +35 -0
  208. package/src/Components/Layout/ProfileDropdown/ProfileDropdown.stories.tsx +67 -0
  209. package/src/Components/Layout/ProfileDropdown/ProfileDropdown.tsx +12 -5
  210. package/src/Components/Layout/ProfileDropdown/ProfileDropdownProps.tsx +8 -0
  211. package/src/Components/Layout/ProfileDropdown/ProfileHeader.tsx +24 -5
  212. package/src/Components/Layout/ProfileDropdown/ProfileHeaderProps.tsx +8 -0
  213. package/src/Components/Layout/ProfileDropdown/ProfileLink.tsx +10 -5
  214. package/src/Components/Layout/ProfileDropdown/ProfileLinkProps.tsx +7 -0
  215. package/src/Components/Layout/ProfileDropdown/ProfileLinks.tsx +14 -5
  216. package/src/Components/Layout/ProfileDropdown/ProfileLinksProps.tsx +7 -0
  217. package/src/Components/Layout/ProfileDropdown/ProfileNavigationItem.tsx +29 -5
  218. package/src/Components/Layout/ProfileDropdown/ProfileNavigationItemProps.tsx +10 -0
  219. package/src/Components/Layout/ProfileDropdown/ProfileSwitchPanel.tsx +79 -5
  220. package/src/Components/Layout/ProfileDropdown/ProfileSwitchPanelProps.tsx +10 -0
  221. package/src/Components/Layout/ProfileDropdown/ProfileSwitchUser.tsx +22 -5
  222. package/src/Components/Layout/ProfileDropdown/ProfileSwitchUserProps.tsx +7 -0
  223. package/src/Components/Layout/ProfileDropdown/profileDropdown.module.scss +207 -0
  224. package/src/Components/Layout/Sidebar/Sidebar.tsx +5 -5
  225. package/src/Components/Layout/Sidebar/SidebarChevron.tsx +5 -5
  226. package/src/Components/Layout/Sidebar/SidebarNavigation.tsx +5 -5
  227. package/src/Components/Layout/Sidebar/SidebarNavigationItem.tsx +5 -5
  228. package/src/Components/Layout/Sidebar/SidebarSubNavigation.tsx +5 -5
  229. package/src/Notification/Notification.tsx +83 -83
  230. package/src/Notification/NotificationList.tsx +47 -22
  231. package/src/global.scss +224 -231
  232. package/src/main.tsx +10 -9
  233. package/src/variables.scss +2 -2
  234. package/.editorconfig +0 -17
  235. package/.eslintrc.cjs +0 -14
  236. package/.storybook/main.ts +0 -23
  237. package/.storybook/preview.ts +0 -17
  238. package/index.html +0 -13
  239. package/public/image/table-image.png +0 -0
  240. package/public/vite.svg +0 -1
  241. package/src/Components/DataDisplay/Media/media.scss +0 -0
  242. package/tokens/color/color.mdx +0 -82
  243. package/tokens/shadow/shadow-panel.scss +0 -12
  244. package/tokens/shadow/shadow.mdx +0 -34
  245. package/tokens/typography/typography.mdx +0 -31
  246. package/tsconfig.json +0 -25
  247. package/tsconfig.node.json +0 -10
  248. package/vite.config.ts +0 -7
@@ -0,0 +1,105 @@
1
+ import IconProps from "../../IconProps";
2
+
3
+ const MagnifyingGlass = ({ type }: 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="M28.3534 27.6461L21.7659 21.0586C23.6122 19.0276 24.5909 16.3551 24.4929 13.6121C24.3949 10.8691 23.228 8.27317 21.2415 6.37908C19.2551 4.48498 16.6066 3.44293 13.862 3.4756C11.1174 3.50827 8.49449 4.61306 6.55365 6.55389C4.61281 8.49473 3.50802 11.1177 3.47535 13.8622C3.44269 16.6068 4.48474 19.2553 6.37883 21.2418C8.27292 23.2283 10.8688 24.3952 13.6118 24.4932C16.3548 24.5911 19.0274 23.6124 21.0584 21.7661L27.6459 28.3536C27.7397 28.4475 27.867 28.5002 27.9997 28.5002C28.1323 28.5002 28.2596 28.4475 28.3534 28.3536C28.4472 28.2598 28.4999 28.1326 28.4999 27.9999C28.4999 27.8672 28.4472 27.74 28.3534 27.6461ZM4.49965 13.9999C4.49965 12.121 5.05681 10.2842 6.10069 8.72198C7.14456 7.15971 8.62826 5.94207 10.3642 5.22304C12.1001 4.504 14.0102 4.31587 15.853 4.68243C17.6958 5.04899 19.3886 5.95378 20.7172 7.28238C22.0458 8.61098 22.9506 10.3037 23.3171 12.1465C23.6837 13.9894 23.4955 15.8995 22.7765 17.6354C22.0575 19.3713 20.8398 20.855 19.2776 21.8989C17.7153 22.9427 15.8786 23.4999 13.9996 23.4999C11.4809 23.4972 9.06608 22.4955 7.28506 20.7145C5.50404 18.9335 4.5023 16.5186 4.49965 13.9999Z"
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="M28.7078 27.2925L22.449 21.035C24.2631 18.8572 25.1677 16.0638 24.9746 13.236C24.7815 10.4081 23.5057 7.76361 21.4125 5.85251C19.3193 3.9414 16.5698 2.91086 13.7362 2.97526C10.9025 3.03966 8.20274 4.19404 6.19851 6.19827C4.19429 8.20249 3.0399 10.9023 2.9755 13.7359C2.9111 16.5696 3.94164 19.319 5.85275 21.4122C7.76386 23.5054 10.4084 24.7813 13.2362 24.9743C16.064 25.1674 18.8574 24.2628 21.0353 22.4488L27.2928 28.7075C27.3857 28.8005 27.496 28.8742 27.6174 28.9244C27.7388 28.9747 27.8689 29.0006 28.0003 29.0006C28.1317 29.0006 28.2618 28.9747 28.3832 28.9244C28.5046 28.8742 28.6149 28.8005 28.7078 28.7075C28.8007 28.6146 28.8744 28.5043 28.9247 28.3829C28.975 28.2615 29.0008 28.1314 29.0008 28C29.0008 27.8687 28.975 27.7385 28.9247 27.6171C28.8744 27.4958 28.8007 27.3855 28.7078 27.2925ZM5.00029 14C5.00029 12.22 5.52813 10.48 6.51706 8.99991C7.50599 7.51987 8.9116 6.36631 10.5561 5.68513C12.2007 5.00394 14.0103 4.82571 15.7561 5.17297C17.5019 5.52024 19.1056 6.37741 20.3642 7.63608C21.6229 8.89475 22.4801 10.4984 22.8274 12.2442C23.1746 13.9901 22.9964 15.7997 22.3152 17.4442C21.634 19.0887 20.4805 20.4943 19.0004 21.4833C17.5204 22.4722 15.7803 23 14.0003 23C11.6142 22.9974 9.3265 22.0483 7.63925 20.3611C5.95199 18.6738 5.00293 16.3862 5.00029 14Z"
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="M29.0611 26.9388L23.1248 21.0001C24.9047 18.6807 25.7357 15.7711 25.4492 12.8615C25.1627 9.95194 23.7802 7.26028 21.5821 5.33256C19.3841 3.40483 16.535 2.38539 13.613 2.48102C10.6909 2.57665 7.9146 3.7802 5.84728 5.84752C3.77996 7.91485 2.57641 10.6911 2.48078 13.6132C2.38514 16.5353 3.40459 19.3843 5.33231 21.5824C7.26004 23.7805 9.95169 25.163 12.8613 25.4494C15.7708 25.7359 18.6804 24.905 20.9998 23.1251L26.9411 29.0676C27.0806 29.2071 27.2463 29.3178 27.4286 29.3933C27.6109 29.4688 27.8063 29.5077 28.0036 29.5077C28.2009 29.5077 28.3963 29.4688 28.5786 29.3933C28.7609 29.3178 28.9265 29.2071 29.0661 29.0676C29.2056 28.928 29.3163 28.7624 29.3918 28.5801C29.4673 28.3978 29.5062 28.2024 29.5062 28.0051C29.5062 27.8077 29.4673 27.6124 29.3918 27.4301C29.3163 27.2477 29.2056 27.0821 29.0661 26.9426L29.0611 26.9388ZM5.49983 14.0001C5.49983 12.3189 5.99835 10.6755 6.93234 9.27773C7.86633 7.87991 9.19385 6.79044 10.747 6.1471C12.3002 5.50375 14.0093 5.33542 15.6581 5.6634C17.3069 5.99137 18.8215 6.80092 20.0102 7.98967C21.199 9.17841 22.0085 10.693 22.3365 12.3418C22.6645 13.9906 22.4961 15.6997 21.8528 17.2529C21.2095 18.8061 20.12 20.1336 18.7222 21.0676C17.3244 22.0016 15.681 22.5001 13.9998 22.5001C11.7462 22.4978 9.58554 21.6015 7.99198 20.0079C6.39842 18.4144 5.50215 16.2537 5.49983 14.0001Z"
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="M21 13.9999C21 15.3844 20.5895 16.7378 19.8203 17.8889C19.0512 19.0401 17.9579 19.9373 16.6788 20.4671C15.3997 20.9969 13.9923 21.1355 12.6344 20.8654C11.2765 20.5953 10.0293 19.9287 9.05029 18.9497C8.07132 17.9707 7.40464 16.7234 7.13454 15.3656C6.86444 14.0077 7.00307 12.6002 7.53288 11.3212C8.0627 10.0421 8.9599 8.94882 10.111 8.17965C11.2622 7.41048 12.6156 6.99994 14 6.99994C15.8566 6.99994 17.637 7.73744 18.9498 9.05019C20.2625 10.3629 21 12.1434 21 13.9999ZM28.7075 28.7074C28.6147 28.8004 28.5044 28.8742 28.383 28.9245C28.2616 28.9748 28.1315 29.0007 28 29.0007C27.8686 29.0007 27.7385 28.9748 27.6171 28.9245C27.4957 28.8742 27.3854 28.8004 27.2925 28.7074L21.035 22.4487C18.8589 24.2591 16.0687 25.1609 13.2446 24.9665C10.4206 24.7721 7.78018 23.4965 5.87265 21.405C3.96511 19.3135 2.93729 16.5672 3.00296 13.7372C3.06864 10.9073 4.22276 8.21156 6.22527 6.21082C8.22777 4.21009 10.9245 3.05835 13.7545 2.99517C16.5845 2.932 19.33 3.96225 21.4197 5.87164C23.5095 7.78102 24.7828 10.4225 24.9747 13.2467C25.1666 16.071 24.2623 18.8604 22.45 21.0349L28.7075 27.2924C28.8005 27.3853 28.8743 27.4956 28.9246 27.617C28.9749 27.7384 29.0008 27.8685 29.0008 27.9999C29.0008 28.1314 28.9749 28.2615 28.9246 28.3829C28.8743 28.5043 28.8005 28.6146 28.7075 28.7074ZM14 22.9999C15.7801 22.9999 17.5201 22.4721 19.0002 21.4832C20.4802 20.4942 21.6338 19.0886 22.315 17.4441C22.9961 15.7996 23.1744 13.99 22.8271 12.2441C22.4798 10.4983 21.6227 8.89465 20.364 7.63598C19.1053 6.37731 17.5017 5.52014 15.7559 5.17287C14.01 4.82561 12.2004 5.00384 10.5559 5.68503C8.91135 6.36621 7.50575 7.51977 6.51681 8.99981C5.52788 10.4799 5.00004 12.2199 5.00004 13.9999C5.00269 16.3861 5.95175 18.6737 7.639 20.361C9.32625 22.0482 11.6139 22.9973 14 22.9999Z"
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="M24 14C24 15.9778 23.4135 17.9112 22.3147 19.5557C21.2159 21.2002 19.6541 22.4819 17.8268 23.2388C15.9996 23.9957 13.9889 24.1937 12.0491 23.8079C10.1093 23.422 8.32746 22.4696 6.92894 21.0711C5.53041 19.6725 4.578 17.8907 4.19215 15.9509C3.8063 14.0111 4.00433 12.0004 4.76121 10.1732C5.51809 8.3459 6.79981 6.78412 8.4443 5.6853C10.0888 4.58649 12.0222 4 14 4C15.3132 4 16.6136 4.25866 17.8268 4.7612C19.0401 5.26375 20.1425 6.00035 21.0711 6.92893C21.9997 7.85752 22.7363 8.95991 23.2388 10.1732C23.7413 11.3864 24 12.6868 24 14Z"
80
+ fill="currentColor"
81
+ />
82
+ <path
83
+ d="M28.7075 27.2924L22.45 21.0349C24.2672 18.8554 25.1742 16.0593 24.9823 13.2281C24.7904 10.3969 23.5144 7.7487 21.4197 5.83439C19.3249 3.92009 16.5728 2.88707 13.7359 2.95025C10.8989 3.01342 8.19547 4.16793 6.18804 6.17358C4.18061 8.17924 3.02372 10.8816 2.95804 13.7185C2.89235 16.5555 3.92294 19.3085 5.83539 21.4049C7.74785 23.5013 10.3949 24.7797 13.2259 24.9741C16.0569 25.1685 18.8539 24.264 21.035 22.4487L27.2925 28.7074C27.3854 28.8003 27.4957 28.874 27.6171 28.9243C27.7385 28.9746 27.8686 29.0005 28 29.0005C28.1314 29.0005 28.2615 28.9746 28.3829 28.9243C28.5043 28.874 28.6146 28.8003 28.7075 28.7074C28.8004 28.6145 28.8741 28.5042 28.9244 28.3828C28.9747 28.2614 29.0006 28.1313 29.0006 27.9999C29.0006 27.8685 28.9747 27.7384 28.9244 27.617C28.8741 27.4956 28.8004 27.3853 28.7075 27.2924ZM5 13.9999C5 12.2199 5.52784 10.4798 6.51677 8.99978C7.5057 7.51974 8.91131 6.36619 10.5558 5.685C12.2004 5.00381 14.01 4.82558 15.7558 5.17285C17.5016 5.52012 19.1053 6.37728 20.364 7.63595C21.6226 8.89463 22.4798 10.4983 22.8271 12.2441C23.1743 13.9899 22.9961 15.7995 22.3149 17.4441C21.6337 19.0886 20.4802 20.4942 19.0001 21.4831C17.5201 22.4721 15.78 22.9999 14 22.9999C11.6139 22.9973 9.32621 22.0482 7.63896 20.361C5.95171 18.6737 5.00264 16.3861 5 13.9999Z"
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="M28.5303 27.4701L22.1078 21.0476C23.9393 18.9414 24.8815 16.2064 24.7357 13.4191C24.5899 10.6317 23.3677 8.0099 21.3265 6.1062C19.2854 4.2025 16.5848 3.16568 13.7941 3.21428C11.0034 3.26289 8.34061 4.39312 6.36699 6.36674C4.39337 8.34036 3.26313 11.0032 3.21453 13.7939C3.16592 16.5846 4.20275 19.2851 6.10644 21.3263C8.01014 23.3674 10.632 24.5897 13.4193 24.7355C16.2066 24.8812 18.9416 23.9391 21.0478 22.1076L27.4703 28.5301C27.6125 28.6626 27.8006 28.7347 27.9949 28.7313C28.1892 28.7278 28.3745 28.6491 28.512 28.5117C28.6494 28.3743 28.7281 28.1889 28.7315 27.9946C28.7349 27.8003 28.6628 27.6123 28.5303 27.4701ZM4.75033 14.0001C4.75033 12.1706 5.29283 10.3822 6.30924 8.86106C7.32564 7.33991 8.77029 6.15431 10.4605 5.4542C12.1507 4.75409 14.0106 4.57091 15.8049 4.92782C17.5992 5.28474 19.2474 6.16571 20.5411 7.45935C21.8347 8.75299 22.7157 10.4012 23.0726 12.1955C23.4295 13.9898 23.2463 15.8497 22.5462 17.5399C21.8461 19.2301 20.6605 20.6748 19.1394 21.6912C17.6182 22.7076 15.8298 23.2501 14.0003 23.2501C11.548 23.2471 9.19695 22.2716 7.46288 20.5375C5.72882 18.8035 4.75331 16.4524 4.75033 14.0001Z"
99
+ fill="currentColor"
100
+ />
101
+ </svg>
102
+ );
103
+ };
104
+
105
+ export default MagnifyingGlass;
@@ -1,105 +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;
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;
@@ -1,105 +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;
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;
@@ -1,5 +1,5 @@
1
- const CalloutPopup = () => {
2
-
3
- }
4
-
5
- export default CalloutPopup;
1
+ const CalloutPopup = () => {
2
+
3
+ }
4
+
5
+ export default CalloutPopup;
@@ -1,5 +1,5 @@
1
- const Header = () => {
2
-
3
- }
4
-
5
- export default Header;
1
+ const Header = () => {
2
+
3
+ }
4
+
5
+ export default Header;
@@ -1,5 +1,5 @@
1
- const HeaderLeft = () => {
2
-
3
- }
4
-
5
- export default HeaderLeft;
1
+ const HeaderLeft = () => {
2
+
3
+ }
4
+
5
+ export default HeaderLeft;
@@ -1,5 +1,5 @@
1
- const HeaderRight = () => {
2
-
3
- }
4
-
5
- export default HeaderRight;
1
+ const HeaderRight = () => {
2
+
3
+ }
4
+
5
+ export default HeaderRight;
@@ -1,5 +1,5 @@
1
- const Pagination = () => {
2
-
3
- }
4
-
5
- export default Pagination;
1
+ const Pagination = () => {
2
+
3
+ }
4
+
5
+ export default Pagination;