@pagopa/io-app-design-system 1.18.0 → 1.20.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 (250) hide show
  1. package/lib/commonjs/components/Advice/__test__/__snapshots__/advice.test.tsx.snap +110 -0
  2. package/lib/commonjs/components/Advice/__test__/advice.test.js +9 -0
  3. package/lib/commonjs/components/Advice/__test__/advice.test.js.map +1 -1
  4. package/lib/commonjs/components/accordion/AccordionItem.js +25 -9
  5. package/lib/commonjs/components/accordion/AccordionItem.js.map +1 -1
  6. package/lib/commonjs/components/avatar/__test__/__snapshots__/avatar.test.tsx.snap +37 -0
  7. package/lib/commonjs/components/avatar/__test__/avatar.test.js +13 -0
  8. package/lib/commonjs/components/avatar/__test__/avatar.test.js.map +1 -1
  9. package/lib/commonjs/components/badge/__test__/__snapshots__/badge.test.tsx.snap +46 -0
  10. package/lib/commonjs/components/badge/__test__/badge.test.js +10 -0
  11. package/lib/commonjs/components/badge/__test__/badge.test.js.map +1 -1
  12. package/lib/commonjs/components/banner/__test__/__snapshots__/banner.test.tsx.snap +315 -0
  13. package/lib/commonjs/components/banner/__test__/banner.test.js +15 -0
  14. package/lib/commonjs/components/banner/__test__/banner.test.js.map +1 -1
  15. package/lib/commonjs/components/buttons/__test__/__snapshots__/button.test.tsx.snap +862 -0
  16. package/lib/commonjs/components/buttons/__test__/button.test.js +57 -0
  17. package/lib/commonjs/components/buttons/__test__/button.test.js.map +1 -1
  18. package/lib/commonjs/components/endOfPage/EndOfPage.js +36 -0
  19. package/lib/commonjs/components/endOfPage/EndOfPage.js.map +1 -0
  20. package/lib/commonjs/components/endOfPage/index.js +17 -0
  21. package/lib/commonjs/components/endOfPage/index.js.map +1 -0
  22. package/lib/commonjs/components/icons/Icon.js +15 -13
  23. package/lib/commonjs/components/icons/Icon.js.map +1 -1
  24. package/lib/commonjs/components/icons/svg/IconSystemLocationiOS.js +34 -0
  25. package/lib/commonjs/components/icons/svg/IconSystemLocationiOS.js.map +1 -0
  26. package/lib/commonjs/components/icons/svg/IconSystemNotificationsInstructions.js +1 -0
  27. package/lib/commonjs/components/icons/svg/IconSystemNotificationsInstructions.js.map +1 -1
  28. package/lib/commonjs/components/icons/svg/IconSystemPhotosiOS.js +105 -0
  29. package/lib/commonjs/components/icons/svg/IconSystemPhotosiOS.js.map +1 -0
  30. package/lib/commonjs/components/icons/svg/IconSystemPrivacyiOS.js +34 -0
  31. package/lib/commonjs/components/icons/svg/IconSystemPrivacyiOS.js.map +1 -0
  32. package/lib/commonjs/components/icons/svg/originals/IconSystemLocationiOS.svg +7 -0
  33. package/lib/commonjs/components/icons/svg/originals/IconSystemNotificationsInstructions.svg +22 -0
  34. package/lib/commonjs/components/icons/svg/originals/IconSystemPhotosiOS.svg +99 -0
  35. package/lib/commonjs/components/icons/svg/originals/IconSystemPrivacyiOS.svg +14 -0
  36. package/lib/commonjs/components/image/Image.js +47 -0
  37. package/lib/commonjs/components/image/Image.js.map +1 -0
  38. package/lib/commonjs/components/image/index.js +17 -0
  39. package/lib/commonjs/components/image/index.js.map +1 -0
  40. package/lib/commonjs/components/index.js +22 -0
  41. package/lib/commonjs/components/index.js.map +1 -1
  42. package/lib/commonjs/components/layout/HeaderSecondLevel.js +9 -3
  43. package/lib/commonjs/components/layout/HeaderSecondLevel.js.map +1 -1
  44. package/lib/commonjs/components/listitems/ListItemHeader.js +4 -3
  45. package/lib/commonjs/components/listitems/ListItemHeader.js.map +1 -1
  46. package/lib/commonjs/components/listitems/ListItemNav.js +18 -4
  47. package/lib/commonjs/components/listitems/ListItemNav.js.map +1 -1
  48. package/lib/commonjs/components/listitems/ListItemRadioWithAmount.js +7 -2
  49. package/lib/commonjs/components/listitems/ListItemRadioWithAmount.js.map +1 -1
  50. package/lib/commonjs/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +1733 -4
  51. package/lib/commonjs/components/listitems/__test__/listitem.test.js +83 -3
  52. package/lib/commonjs/components/listitems/__test__/listitem.test.js.map +1 -1
  53. package/lib/commonjs/components/radio/RadioGroup.js +25 -21
  54. package/lib/commonjs/components/radio/RadioGroup.js.map +1 -1
  55. package/lib/commonjs/components/tabs/TabItem.js +13 -6
  56. package/lib/commonjs/components/tabs/TabItem.js.map +1 -1
  57. package/lib/commonjs/components/typography/LabelHeader.js +6 -4
  58. package/lib/commonjs/components/typography/LabelHeader.js.map +1 -1
  59. package/lib/commonjs/core/IODSExperimentalContextProvider.js +9 -9
  60. package/lib/commonjs/core/IODSExperimentalContextProvider.js.map +1 -1
  61. package/lib/commonjs/utils/testing.js +15 -0
  62. package/lib/commonjs/utils/testing.js.map +1 -0
  63. package/lib/module/components/Advice/__test__/__snapshots__/advice.test.tsx.snap +110 -0
  64. package/lib/module/components/Advice/__test__/advice.test.js +9 -0
  65. package/lib/module/components/Advice/__test__/advice.test.js.map +1 -1
  66. package/lib/module/components/accordion/AccordionItem.js +27 -11
  67. package/lib/module/components/accordion/AccordionItem.js.map +1 -1
  68. package/lib/module/components/avatar/__test__/__snapshots__/avatar.test.tsx.snap +37 -0
  69. package/lib/module/components/avatar/__test__/avatar.test.js +13 -0
  70. package/lib/module/components/avatar/__test__/avatar.test.js.map +1 -1
  71. package/lib/module/components/badge/__test__/__snapshots__/badge.test.tsx.snap +46 -0
  72. package/lib/module/components/badge/__test__/badge.test.js +10 -0
  73. package/lib/module/components/badge/__test__/badge.test.js.map +1 -1
  74. package/lib/module/components/banner/__test__/__snapshots__/banner.test.tsx.snap +315 -0
  75. package/lib/module/components/banner/__test__/banner.test.js +15 -0
  76. package/lib/module/components/banner/__test__/banner.test.js.map +1 -1
  77. package/lib/module/components/buttons/__test__/__snapshots__/button.test.tsx.snap +862 -0
  78. package/lib/module/components/buttons/__test__/button.test.js +57 -0
  79. package/lib/module/components/buttons/__test__/button.test.js.map +1 -1
  80. package/lib/module/components/endOfPage/EndOfPage.js +28 -0
  81. package/lib/module/components/endOfPage/EndOfPage.js.map +1 -0
  82. package/lib/module/components/endOfPage/index.js +2 -0
  83. package/lib/module/components/endOfPage/index.js.map +1 -0
  84. package/lib/module/components/icons/Icon.js +15 -13
  85. package/lib/module/components/icons/Icon.js.map +1 -1
  86. package/lib/module/components/icons/svg/IconSystemLocationiOS.js +26 -0
  87. package/lib/module/components/icons/svg/IconSystemLocationiOS.js.map +1 -0
  88. package/lib/module/components/icons/svg/IconSystemNotificationsInstructions.js +2 -1
  89. package/lib/module/components/icons/svg/IconSystemNotificationsInstructions.js.map +1 -1
  90. package/lib/module/components/icons/svg/IconSystemPhotosiOS.js +97 -0
  91. package/lib/module/components/icons/svg/IconSystemPhotosiOS.js.map +1 -0
  92. package/lib/module/components/icons/svg/IconSystemPrivacyiOS.js +26 -0
  93. package/lib/module/components/icons/svg/IconSystemPrivacyiOS.js.map +1 -0
  94. package/lib/module/components/icons/svg/originals/IconSystemLocationiOS.svg +7 -0
  95. package/lib/module/components/icons/svg/originals/IconSystemNotificationsInstructions.svg +22 -0
  96. package/lib/module/components/icons/svg/originals/IconSystemPhotosiOS.svg +99 -0
  97. package/lib/module/components/icons/svg/originals/IconSystemPrivacyiOS.svg +14 -0
  98. package/lib/module/components/image/Image.js +39 -0
  99. package/lib/module/components/image/Image.js.map +1 -0
  100. package/lib/module/components/image/index.js +2 -0
  101. package/lib/module/components/image/index.js.map +1 -0
  102. package/lib/module/components/index.js +2 -0
  103. package/lib/module/components/index.js.map +1 -1
  104. package/lib/module/components/layout/HeaderSecondLevel.js +9 -3
  105. package/lib/module/components/layout/HeaderSecondLevel.js.map +1 -1
  106. package/lib/module/components/listitems/ListItemHeader.js +4 -3
  107. package/lib/module/components/listitems/ListItemHeader.js.map +1 -1
  108. package/lib/module/components/listitems/ListItemNav.js +20 -6
  109. package/lib/module/components/listitems/ListItemNav.js.map +1 -1
  110. package/lib/module/components/listitems/ListItemRadioWithAmount.js +7 -2
  111. package/lib/module/components/listitems/ListItemRadioWithAmount.js.map +1 -1
  112. package/lib/module/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +1733 -4
  113. package/lib/module/components/listitems/__test__/listitem.test.js +83 -3
  114. package/lib/module/components/listitems/__test__/listitem.test.js.map +1 -1
  115. package/lib/module/components/radio/RadioGroup.js +25 -21
  116. package/lib/module/components/radio/RadioGroup.js.map +1 -1
  117. package/lib/module/components/tabs/TabItem.js +13 -6
  118. package/lib/module/components/tabs/TabItem.js.map +1 -1
  119. package/lib/module/components/typography/LabelHeader.js +6 -4
  120. package/lib/module/components/typography/LabelHeader.js.map +1 -1
  121. package/lib/module/core/IODSExperimentalContextProvider.js +3 -3
  122. package/lib/module/core/IODSExperimentalContextProvider.js.map +1 -1
  123. package/lib/module/utils/testing.js +7 -0
  124. package/lib/module/utils/testing.js.map +1 -0
  125. package/lib/typescript/components/accordion/AccordionItem.d.ts +3 -1
  126. package/lib/typescript/components/accordion/AccordionItem.d.ts.map +1 -1
  127. package/lib/typescript/components/endOfPage/EndOfPage.d.ts +23 -0
  128. package/lib/typescript/components/endOfPage/EndOfPage.d.ts.map +1 -0
  129. package/lib/typescript/components/endOfPage/index.d.ts +2 -0
  130. package/lib/typescript/components/endOfPage/index.d.ts.map +1 -0
  131. package/lib/typescript/components/icons/Icon.d.ts +6 -5
  132. package/lib/typescript/components/icons/Icon.d.ts.map +1 -1
  133. package/lib/typescript/components/icons/svg/IconSystemLocationiOS.d.ts +5 -0
  134. package/lib/typescript/components/icons/svg/IconSystemLocationiOS.d.ts.map +1 -0
  135. package/lib/typescript/components/icons/svg/IconSystemNotificationsInstructions.d.ts.map +1 -1
  136. package/lib/typescript/components/icons/svg/IconSystemPhotosiOS.d.ts +5 -0
  137. package/lib/typescript/components/icons/svg/IconSystemPhotosiOS.d.ts.map +1 -0
  138. package/lib/typescript/components/icons/svg/IconSystemPrivacyiOS.d.ts +5 -0
  139. package/lib/typescript/components/icons/svg/IconSystemPrivacyiOS.d.ts.map +1 -0
  140. package/lib/typescript/components/image/Image.d.ts +17 -0
  141. package/lib/typescript/components/image/Image.d.ts.map +1 -0
  142. package/lib/typescript/components/image/index.d.ts +2 -0
  143. package/lib/typescript/components/image/index.d.ts.map +1 -0
  144. package/lib/typescript/components/index.d.ts +2 -0
  145. package/lib/typescript/components/index.d.ts.map +1 -1
  146. package/lib/typescript/components/layout/HeaderSecondLevel.d.ts +10 -4
  147. package/lib/typescript/components/layout/HeaderSecondLevel.d.ts.map +1 -1
  148. package/lib/typescript/components/listitems/ListItemHeader.d.ts +2 -2
  149. package/lib/typescript/components/listitems/ListItemHeader.d.ts.map +1 -1
  150. package/lib/typescript/components/listitems/ListItemNav.d.ts +9 -2
  151. package/lib/typescript/components/listitems/ListItemNav.d.ts.map +1 -1
  152. package/lib/typescript/components/listitems/ListItemRadioWithAmount.d.ts +1 -0
  153. package/lib/typescript/components/listitems/ListItemRadioWithAmount.d.ts.map +1 -1
  154. package/lib/typescript/components/radio/RadioGroup.d.ts +22 -9
  155. package/lib/typescript/components/radio/RadioGroup.d.ts.map +1 -1
  156. package/lib/typescript/components/tabs/TabItem.d.ts +2 -1
  157. package/lib/typescript/components/tabs/TabItem.d.ts.map +1 -1
  158. package/lib/typescript/components/typography/LabelHeader.d.ts +1 -1
  159. package/lib/typescript/components/typography/LabelHeader.d.ts.map +1 -1
  160. package/lib/typescript/core/IODSExperimentalContextProvider.d.ts +5 -1
  161. package/lib/typescript/core/IODSExperimentalContextProvider.d.ts.map +1 -1
  162. package/lib/typescript/utils/testing.d.ts +4 -0
  163. package/lib/typescript/utils/testing.d.ts.map +1 -0
  164. package/package.json +1 -5
  165. package/src/components/Advice/__test__/__snapshots__/advice.test.tsx.snap +110 -0
  166. package/src/components/Advice/__test__/advice.test.tsx +10 -0
  167. package/src/components/accordion/AccordionItem.tsx +33 -13
  168. package/src/components/avatar/__test__/__snapshots__/avatar.test.tsx.snap +37 -0
  169. package/src/components/avatar/__test__/avatar.test.tsx +10 -0
  170. package/src/components/badge/__test__/__snapshots__/badge.test.tsx.snap +46 -0
  171. package/src/components/badge/__test__/badge.test.tsx +10 -0
  172. package/src/components/banner/__test__/__snapshots__/banner.test.tsx.snap +315 -0
  173. package/src/components/banner/__test__/banner.test.tsx +18 -0
  174. package/src/components/buttons/__test__/__snapshots__/button.test.tsx.snap +862 -0
  175. package/src/components/buttons/__test__/button.test.tsx +77 -1
  176. package/src/components/endOfPage/EndOfPage.tsx +55 -0
  177. package/src/components/endOfPage/index.tsx +1 -0
  178. package/src/components/icons/Icon.tsx +15 -13
  179. package/src/components/icons/svg/IconSystemLocationiOS.tsx +15 -0
  180. package/src/components/icons/svg/IconSystemNotificationsInstructions.tsx +2 -1
  181. package/src/components/icons/svg/IconSystemPhotosiOS.tsx +114 -0
  182. package/src/components/icons/svg/IconSystemPrivacyiOS.tsx +15 -0
  183. package/src/components/icons/svg/originals/IconSystemLocationiOS.svg +7 -0
  184. package/src/components/icons/svg/originals/IconSystemNotificationsInstructions.svg +22 -0
  185. package/src/components/icons/svg/originals/IconSystemPhotosiOS.svg +99 -0
  186. package/src/components/icons/svg/originals/IconSystemPrivacyiOS.svg +14 -0
  187. package/src/components/image/Image.tsx +49 -0
  188. package/src/components/image/index.tsx +1 -0
  189. package/src/components/index.tsx +2 -0
  190. package/src/components/layout/HeaderSecondLevel.tsx +28 -10
  191. package/src/components/listitems/ListItemHeader.tsx +6 -3
  192. package/src/components/listitems/ListItemNav.tsx +35 -9
  193. package/src/components/listitems/ListItemRadioWithAmount.tsx +6 -2
  194. package/src/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +1733 -4
  195. package/src/components/listitems/__test__/listitem.test.tsx +104 -3
  196. package/src/components/radio/RadioGroup.tsx +61 -11
  197. package/src/components/tabs/TabItem.tsx +22 -6
  198. package/src/components/typography/LabelHeader.tsx +11 -6
  199. package/src/core/IODSExperimentalContextProvider.tsx +3 -3
  200. package/src/utils/testing.tsx +14 -0
  201. package/lib/commonjs/components/icons/svg/IconAgreement.js +0 -32
  202. package/lib/commonjs/components/icons/svg/IconAgreement.js.map +0 -1
  203. package/lib/commonjs/components/icons/svg/IconDocument.js +0 -34
  204. package/lib/commonjs/components/icons/svg/IconDocument.js.map +0 -1
  205. package/lib/commonjs/components/icons/svg/IconDocumentSign.js +0 -42
  206. package/lib/commonjs/components/icons/svg/IconDocumentSign.js.map +0 -1
  207. package/lib/commonjs/components/icons/svg/IconProfileAlt.js +0 -29
  208. package/lib/commonjs/components/icons/svg/IconProfileAlt.js.map +0 -1
  209. package/lib/commonjs/components/icons/svg/IconProfileFilled.js +0 -31
  210. package/lib/commonjs/components/icons/svg/IconProfileFilled.js.map +0 -1
  211. package/lib/commonjs/components/icons/svg/originals/IconAgreement.svg +0 -10
  212. package/lib/commonjs/components/icons/svg/originals/IconDocument.svg +0 -12
  213. package/lib/commonjs/components/icons/svg/originals/IconDocumentSign.svg +0 -22
  214. package/lib/commonjs/components/icons/svg/originals/IconProfileAlt.svg +0 -6
  215. package/lib/commonjs/components/icons/svg/originals/IconProfileFilled.svg +0 -8
  216. package/lib/module/components/icons/svg/IconAgreement.js +0 -24
  217. package/lib/module/components/icons/svg/IconAgreement.js.map +0 -1
  218. package/lib/module/components/icons/svg/IconDocument.js +0 -26
  219. package/lib/module/components/icons/svg/IconDocument.js.map +0 -1
  220. package/lib/module/components/icons/svg/IconDocumentSign.js +0 -34
  221. package/lib/module/components/icons/svg/IconDocumentSign.js.map +0 -1
  222. package/lib/module/components/icons/svg/IconProfileAlt.js +0 -21
  223. package/lib/module/components/icons/svg/IconProfileAlt.js.map +0 -1
  224. package/lib/module/components/icons/svg/IconProfileFilled.js +0 -23
  225. package/lib/module/components/icons/svg/IconProfileFilled.js.map +0 -1
  226. package/lib/module/components/icons/svg/originals/IconAgreement.svg +0 -10
  227. package/lib/module/components/icons/svg/originals/IconDocument.svg +0 -12
  228. package/lib/module/components/icons/svg/originals/IconDocumentSign.svg +0 -22
  229. package/lib/module/components/icons/svg/originals/IconProfileAlt.svg +0 -6
  230. package/lib/module/components/icons/svg/originals/IconProfileFilled.svg +0 -8
  231. package/lib/typescript/components/icons/svg/IconAgreement.d.ts +0 -5
  232. package/lib/typescript/components/icons/svg/IconAgreement.d.ts.map +0 -1
  233. package/lib/typescript/components/icons/svg/IconDocument.d.ts +0 -5
  234. package/lib/typescript/components/icons/svg/IconDocument.d.ts.map +0 -1
  235. package/lib/typescript/components/icons/svg/IconDocumentSign.d.ts +0 -5
  236. package/lib/typescript/components/icons/svg/IconDocumentSign.d.ts.map +0 -1
  237. package/lib/typescript/components/icons/svg/IconProfileAlt.d.ts +0 -5
  238. package/lib/typescript/components/icons/svg/IconProfileAlt.d.ts.map +0 -1
  239. package/lib/typescript/components/icons/svg/IconProfileFilled.d.ts +0 -5
  240. package/lib/typescript/components/icons/svg/IconProfileFilled.d.ts.map +0 -1
  241. package/src/components/icons/svg/IconAgreement.tsx +0 -18
  242. package/src/components/icons/svg/IconDocument.tsx +0 -20
  243. package/src/components/icons/svg/IconDocumentSign.tsx +0 -30
  244. package/src/components/icons/svg/IconProfileAlt.tsx +0 -14
  245. package/src/components/icons/svg/IconProfileFilled.tsx +0 -16
  246. package/src/components/icons/svg/originals/IconAgreement.svg +0 -10
  247. package/src/components/icons/svg/originals/IconDocument.svg +0 -12
  248. package/src/components/icons/svg/originals/IconDocumentSign.svg +0 -22
  249. package/src/components/icons/svg/originals/IconProfileAlt.svg +0 -6
  250. package/src/components/icons/svg/originals/IconProfileFilled.svg +0 -8
@@ -1,6 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M12.263 11.421a4.632 4.632 0 1 0 0-9.263 4.632 4.632 0 0 0 0 9.263Zm0 1.158a5.79 5.79 0 1 1 0-11.579 5.79 5.79 0 0 1 0 11.579ZM4.158 23H3a9.263 9.263 0 1 1 18.526 0h-1.158a8.105 8.105 0 1 0-16.21 0Z"
4
- fill="#000"
5
- />
6
- </svg>
@@ -1,8 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M3 9c0-4.97056 4.02944-9 9-9 4.9706 0 9 4.02944 9 9 0 1.7438-.4959 3.3717-1.3544 4.7505C22.3054 15.9515 24 19.2778 24 23c0 .5522-.4477 1-1 1s-1-.4478-1-1c0-3.0854-1.3973-5.8444-3.5936-7.6788C16.7745 16.975 14.5069 18 12 18c-2.50694 0-4.77448-1.025-6.4064-2.6788C3.39729 17.1556 2 19.9146 2 23c0 .5522-.44772 1-1 1-.55229 0-1-.4478-1-1 0-3.7222 1.69462-7.0485 4.35442-9.2495C3.49592 12.3717 3 10.7438 3 9Z"
6
- fill="#0B3EE3"
7
- />
8
- </svg>
@@ -1,24 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { Svg, Path } from "react-native-svg";
4
- const IconAgreement = _ref => {
5
- let {
6
- size,
7
- style,
8
- ...props
9
- } = _ref;
10
- return /*#__PURE__*/React.createElement(Svg, _extends({
11
- width: size,
12
- height: size,
13
- viewBox: "0 0 24 24",
14
- style: style
15
- }, props), /*#__PURE__*/React.createElement(Path, {
16
- d: "M20.778 18.628V3.021A3.024 3.024 0 0 0 17.757 0H3.288a3.024 3.024 0 0 0-3.02 3.02v2.352h4.635v15.607A3.024 3.024 0 0 0 7.923 24h12.789a3.024 3.024 0 0 0 3.02-3.02v-2.352h-2.954ZM4.903 3.965H1.674v-.944c0-.89.724-1.615 1.614-1.615.89 0 1.615.724 1.615 1.615v.944ZM9.538 20.98c0 .89-.725 1.614-1.615 1.614S6.31 21.87 6.31 20.98V3.02c0-.593-.173-1.146-.47-1.614h11.918c.89 0 1.614.724 1.614 1.615v15.607H9.538v2.352Zm12.788 0c0 .89-.724 1.614-1.614 1.614H10.475a3.003 3.003 0 0 0 .469-1.614v-.945h11.382v.945Z",
17
- fill: "currentColor"
18
- }), /*#__PURE__*/React.createElement(Path, {
19
- d: "M17.965 4.635H7.715v1.406h10.25V4.635ZM17.965 7.828H7.715v1.406h10.25V7.828ZM12.84 11.02c-1.39 0-2.52 1.131-2.52 2.521 0 1.146.768 2.115 1.817 2.42v1.315h1.406v-1.315a2.525 2.525 0 0 0 1.818-2.42c0-1.39-1.131-2.52-2.52-2.52Zm0 3.635c-.614 0-1.114-.5-1.114-1.114 0-.614.5-1.114 1.114-1.114.614 0 1.114.5 1.114 1.114 0 .614-.5 1.114-1.114 1.114Z",
20
- fill: "currentColor"
21
- }));
22
- };
23
- export default IconAgreement;
24
- //# sourceMappingURL=IconAgreement.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Svg","Path","IconAgreement","_ref","size","style","props","createElement","_extends","width","height","viewBox","d","fill"],"sourceRoot":"../../../../../src","sources":["components/icons/svg/IconAgreement.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,GAAG,EAAEC,IAAI,QAAQ,kBAAkB;AAG5C,MAAMC,aAAa,GAAGC,IAAA;EAAA,IAAC;IAAEC,IAAI;IAAEC,KAAK;IAAE,GAAGC;EAAoB,CAAC,GAAAH,IAAA;EAAA,oBAC5DJ,KAAA,CAAAQ,aAAA,CAACP,GAAG,EAAAQ,QAAA;IAACC,KAAK,EAAEL,IAAK;IAACM,MAAM,EAAEN,IAAK;IAACO,OAAO,EAAC,WAAW;IAACN,KAAK,EAAEA;EAAM,GAAKC,KAAK,gBACzEP,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,CAAC,EAAC,4fAA4f;IAC9fC,IAAI,EAAC;EAAc,CACpB,CAAC,eACFd,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,CAAC,EAAC,yVAAyV;IAC3VC,IAAI,EAAC;EAAc,CACpB,CACE,CAAC;AAAA,CACP;AAED,eAAeX,aAAa"}
@@ -1,26 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { Svg, Path } from "react-native-svg";
4
- const IconDocument = _ref => {
5
- let {
6
- size,
7
- style,
8
- ...props
9
- } = _ref;
10
- return /*#__PURE__*/React.createElement(Svg, _extends({
11
- width: size,
12
- height: size,
13
- viewBox: "0 0 24 24",
14
- style: style
15
- }, props), /*#__PURE__*/React.createElement(Path, {
16
- d: "M8.703 9C8.315 9 8 9.336 8 9.75s.315.75.703.75h5.844c.388 0 .703-.336.703-.75S14.935 9 14.547 9H8.703ZM8 12.75c0-.414.308-.75.687-.75h6.876c.38 0 .687.336.687.75s-.308.75-.688.75H8.688c-.38 0-.687-.336-.687-.75ZM8.687 15c-.38 0-.687.336-.687.75s.308.75.687.75h6.876c.38 0 .687-.336.687-.75s-.308-.75-.688-.75H8.688ZM8 18.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z",
17
- fill: "currentColor"
18
- }), /*#__PURE__*/React.createElement(Path, {
19
- fillRule: "evenodd",
20
- clipRule: "evenodd",
21
- d: "M19.281 6.098c0-.563-.22-1.093-.618-1.491l-1.988-1.99A2.095 2.095 0 0 0 15.183 2H7.11C5.946 2 5 2.946 5 4.11v15.78C5 21.055 5.946 22 7.11 22h10.062c1.163 0 2.11-.946 2.11-2.11V6.099Zm-1.406 13.793a.704.704 0 0 1-.703.703H7.109a.704.704 0 0 1-.703-.703V4.109c0-.387.316-.703.703-.703h6.547v3.516c0 .388.315.703.703.703h3.516v12.266ZM15.062 3.406h.034c.14-.002.373-.005.584.206l1.99 1.989c.208.209.206.436.205.588v.03h-2.813V3.406Z",
22
- fill: "currentColor"
23
- }));
24
- };
25
- export default IconDocument;
26
- //# sourceMappingURL=IconDocument.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Svg","Path","IconDocument","_ref","size","style","props","createElement","_extends","width","height","viewBox","d","fill","fillRule","clipRule"],"sourceRoot":"../../../../../src","sources":["components/icons/svg/IconDocument.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,GAAG,EAAEC,IAAI,QAAQ,kBAAkB;AAG5C,MAAMC,YAAY,GAAGC,IAAA;EAAA,IAAC;IAAEC,IAAI;IAAEC,KAAK;IAAE,GAAGC;EAAoB,CAAC,GAAAH,IAAA;EAAA,oBAC3DJ,KAAA,CAAAQ,aAAA,CAACP,GAAG,EAAAQ,QAAA;IAACC,KAAK,EAAEL,IAAK;IAACM,MAAM,EAAEN,IAAK;IAACO,OAAO,EAAC,WAAW;IAACN,KAAK,EAAEA;EAAM,GAAKC,KAAK,gBACzEP,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,CAAC,EAAC,4YAA4Y;IAC9YC,IAAI,EAAC;EAAc,CACpB,CAAC,eACFd,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHa,QAAQ,EAAC,SAAS;IAClBC,QAAQ,EAAC,SAAS;IAClBH,CAAC,EAAC,+aAA+a;IACjbC,IAAI,EAAC;EAAc,CACpB,CACE,CAAC;AAAA,CACP;AAED,eAAeX,YAAY"}
@@ -1,34 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { Svg, Path } from "react-native-svg";
4
- const IconDocumentSign = _ref => {
5
- let {
6
- size,
7
- style,
8
- ...props
9
- } = _ref;
10
- return /*#__PURE__*/React.createElement(Svg, _extends({
11
- width: size,
12
- height: size,
13
- viewBox: "0 0 24 24",
14
- style: style
15
- }, props), /*#__PURE__*/React.createElement(Path, {
16
- d: "M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z",
17
- fill: "currentColor"
18
- }), /*#__PURE__*/React.createElement(Path, {
19
- fillRule: "evenodd",
20
- clipRule: "evenodd",
21
- d: "M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z",
22
- fill: "currentColor"
23
- }), /*#__PURE__*/React.createElement(Path, {
24
- d: "M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z",
25
- fill: "currentColor"
26
- }), /*#__PURE__*/React.createElement(Path, {
27
- fillRule: "evenodd",
28
- clipRule: "evenodd",
29
- d: "M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z",
30
- fill: "currentColor"
31
- }));
32
- };
33
- export default IconDocumentSign;
34
- //# sourceMappingURL=IconDocumentSign.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Svg","Path","IconDocumentSign","_ref","size","style","props","createElement","_extends","width","height","viewBox","d","fill","fillRule","clipRule"],"sourceRoot":"../../../../../src","sources":["components/icons/svg/IconDocumentSign.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,GAAG,EAAEC,IAAI,QAAQ,kBAAkB;AAG5C,MAAMC,gBAAgB,GAAGC,IAAA;EAAA,IAAC;IAAEC,IAAI;IAAEC,KAAK;IAAE,GAAGC;EAAoB,CAAC,GAAAH,IAAA;EAAA,oBAC/DJ,KAAA,CAAAQ,aAAA,CAACP,GAAG,EAAAQ,QAAA;IAACC,KAAK,EAAEL,IAAK;IAACM,MAAM,EAAEN,IAAK;IAACO,OAAO,EAAC,WAAW;IAACN,KAAK,EAAEA;EAAM,GAAKC,KAAK,gBACzEP,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,CAAC,EAAC,ofAAof;IACtfC,IAAI,EAAC;EAAc,CACpB,CAAC,eACFd,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHa,QAAQ,EAAC,SAAS;IAClBC,QAAQ,EAAC,SAAS;IAClBH,CAAC,EAAC,ixBAAixB;IACnxBC,IAAI,EAAC;EAAc,CACpB,CAAC,eACFd,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,CAAC,EAAC,ofAAof;IACtfC,IAAI,EAAC;EAAc,CACpB,CAAC,eACFd,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHa,QAAQ,EAAC,SAAS;IAClBC,QAAQ,EAAC,SAAS;IAClBH,CAAC,EAAC,ixBAAixB;IACnxBC,IAAI,EAAC;EAAc,CACpB,CACE,CAAC;AAAA,CACP;AAED,eAAeX,gBAAgB"}
@@ -1,21 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { Svg, Path } from "react-native-svg";
4
- const IconProfileAlt = _ref => {
5
- let {
6
- size,
7
- style,
8
- ...props
9
- } = _ref;
10
- return /*#__PURE__*/React.createElement(Svg, _extends({
11
- width: size,
12
- height: size,
13
- viewBox: "0 0 24 24",
14
- style: style
15
- }, props), /*#__PURE__*/React.createElement(Path, {
16
- d: "M12.263 11.421a4.632 4.632 0 1 0 0-9.263 4.632 4.632 0 0 0 0 9.263Zm0 1.158a5.79 5.79 0 1 1 0-11.579 5.79 5.79 0 0 1 0 11.579ZM4.158 23H3a9.263 9.263 0 1 1 18.526 0h-1.158a8.105 8.105 0 1 0-16.21 0Z",
17
- fill: "currentColor"
18
- }));
19
- };
20
- export default IconProfileAlt;
21
- //# sourceMappingURL=IconProfileAlt.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Svg","Path","IconProfileAlt","_ref","size","style","props","createElement","_extends","width","height","viewBox","d","fill"],"sourceRoot":"../../../../../src","sources":["components/icons/svg/IconProfileAlt.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,GAAG,EAAEC,IAAI,QAAQ,kBAAkB;AAG5C,MAAMC,cAAc,GAAGC,IAAA;EAAA,IAAC;IAAEC,IAAI;IAAEC,KAAK;IAAE,GAAGC;EAAoB,CAAC,GAAAH,IAAA;EAAA,oBAC7DJ,KAAA,CAAAQ,aAAA,CAACP,GAAG,EAAAQ,QAAA;IAACC,KAAK,EAAEL,IAAK;IAACM,MAAM,EAAEN,IAAK;IAACO,OAAO,EAAC,WAAW;IAACN,KAAK,EAAEA;EAAM,GAAKC,KAAK,gBACzEP,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,CAAC,EAAC,wMAAwM;IAC1MC,IAAI,EAAC;EAAc,CACpB,CACE,CAAC;AAAA,CACP;AAED,eAAeX,cAAc"}
@@ -1,23 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { Svg, Path } from "react-native-svg";
4
- const IconProfileFilled = _ref => {
5
- let {
6
- size,
7
- style,
8
- ...props
9
- } = _ref;
10
- return /*#__PURE__*/React.createElement(Svg, _extends({
11
- width: size,
12
- height: size,
13
- viewBox: "0 0 24 24",
14
- style: style
15
- }, props), /*#__PURE__*/React.createElement(Path, {
16
- fillRule: "evenodd",
17
- clipRule: "evenodd",
18
- d: "M3 9c0-4.97056 4.02944-9 9-9 4.9706 0 9 4.02944 9 9 0 1.7438-.4959 3.3717-1.3544 4.7505C22.3054 15.9515 24 19.2778 24 23c0 .5522-.4477 1-1 1s-1-.4478-1-1c0-3.0854-1.3973-5.8444-3.5936-7.6788C16.7745 16.975 14.5069 18 12 18c-2.50694 0-4.77448-1.025-6.4064-2.6788C3.39729 17.1556 2 19.9146 2 23c0 .5522-.44772 1-1 1-.55229 0-1-.4478-1-1 0-3.7222 1.69462-7.0485 4.35442-9.2495C3.49592 12.3717 3 10.7438 3 9Z",
19
- fill: "currentColor"
20
- }));
21
- };
22
- export default IconProfileFilled;
23
- //# sourceMappingURL=IconProfileFilled.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Svg","Path","IconProfileFilled","_ref","size","style","props","createElement","_extends","width","height","viewBox","fillRule","clipRule","d","fill"],"sourceRoot":"../../../../../src","sources":["components/icons/svg/IconProfileFilled.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,GAAG,EAAEC,IAAI,QAAQ,kBAAkB;AAG5C,MAAMC,iBAAiB,GAAGC,IAAA;EAAA,IAAC;IAAEC,IAAI;IAAEC,KAAK;IAAE,GAAGC;EAAoB,CAAC,GAAAH,IAAA;EAAA,oBAChEJ,KAAA,CAAAQ,aAAA,CAACP,GAAG,EAAAQ,QAAA;IAACC,KAAK,EAAEL,IAAK;IAACM,MAAM,EAAEN,IAAK;IAACO,OAAO,EAAC,WAAW;IAACN,KAAK,EAAEA;EAAM,GAAKC,KAAK,gBACzEP,KAAA,CAAAQ,aAAA,CAACN,IAAI;IACHW,QAAQ,EAAC,SAAS;IAClBC,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,sZAAsZ;IACxZC,IAAI,EAAC;EAAc,CACpB,CACE,CAAC;AAAA,CACP;AAED,eAAeb,iBAAiB"}
@@ -1,10 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M20.778 18.628V3.021A3.024 3.024 0 0 0 17.757 0H3.288a3.024 3.024 0 0 0-3.02 3.02v2.352h4.635v15.607A3.024 3.024 0 0 0 7.923 24h12.789a3.024 3.024 0 0 0 3.02-3.02v-2.352h-2.954ZM4.903 3.965H1.674v-.944c0-.89.724-1.615 1.614-1.615.89 0 1.615.724 1.615 1.615v.944ZM9.538 20.98c0 .89-.725 1.614-1.615 1.614S6.31 21.87 6.31 20.98V3.02c0-.593-.173-1.146-.47-1.614h11.918c.89 0 1.614.724 1.614 1.615v15.607H9.538v2.352Zm12.788 0c0 .89-.724 1.614-1.614 1.614H10.475a3.003 3.003 0 0 0 .469-1.614v-.945h11.382v.945Z"
4
- fill="#000"
5
- />
6
- <path
7
- d="M17.965 4.635H7.715v1.406h10.25V4.635ZM17.965 7.828H7.715v1.406h10.25V7.828ZM12.84 11.02c-1.39 0-2.52 1.131-2.52 2.521 0 1.146.768 2.115 1.817 2.42v1.315h1.406v-1.315a2.525 2.525 0 0 0 1.818-2.42c0-1.39-1.131-2.52-2.52-2.52Zm0 3.635c-.614 0-1.114-.5-1.114-1.114 0-.614.5-1.114 1.114-1.114.614 0 1.114.5 1.114 1.114 0 .614-.5 1.114-1.114 1.114Z"
8
- fill="#000"
9
- />
10
- </svg>
@@ -1,12 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M8.703 9C8.315 9 8 9.336 8 9.75s.315.75.703.75h5.844c.388 0 .703-.336.703-.75S14.935 9 14.547 9H8.703ZM8 12.75c0-.414.308-.75.687-.75h6.876c.38 0 .687.336.687.75s-.308.75-.688.75H8.688c-.38 0-.687-.336-.687-.75ZM8.687 15c-.38 0-.687.336-.687.75s.308.75.687.75h6.876c.38 0 .687-.336.687-.75s-.308-.75-.688-.75H8.688ZM8 18.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z"
4
- fill="#000"
5
- />
6
- <path
7
- fill-rule="evenodd"
8
- clip-rule="evenodd"
9
- d="M19.281 6.098c0-.563-.22-1.093-.618-1.491l-1.988-1.99A2.095 2.095 0 0 0 15.183 2H7.11C5.946 2 5 2.946 5 4.11v15.78C5 21.055 5.946 22 7.11 22h10.062c1.163 0 2.11-.946 2.11-2.11V6.099Zm-1.406 13.793a.704.704 0 0 1-.703.703H7.109a.704.704 0 0 1-.703-.703V4.109c0-.387.316-.703.703-.703h6.547v3.516c0 .388.315.703.703.703h3.516v12.266ZM15.062 3.406h.034c.14-.002.373-.005.584.206l1.99 1.989c.208.209.206.436.205.588v.03h-2.813V3.406Z"
10
- fill="#000"
11
- />
12
- </svg>
@@ -1,22 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z"
4
- fill="#000"
5
- />
6
- <path
7
- fill-rule="evenodd"
8
- clip-rule="evenodd"
9
- d="M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z"
10
- fill="#000"
11
- />
12
- <path
13
- d="M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z"
14
- fill="#000"
15
- />
16
- <path
17
- fill-rule="evenodd"
18
- clip-rule="evenodd"
19
- d="M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z"
20
- fill="#000"
21
- />
22
- </svg>
@@ -1,6 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M12.263 11.421a4.632 4.632 0 1 0 0-9.263 4.632 4.632 0 0 0 0 9.263Zm0 1.158a5.79 5.79 0 1 1 0-11.579 5.79 5.79 0 0 1 0 11.579ZM4.158 23H3a9.263 9.263 0 1 1 18.526 0h-1.158a8.105 8.105 0 1 0-16.21 0Z"
4
- fill="#000"
5
- />
6
- </svg>
@@ -1,8 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M3 9c0-4.97056 4.02944-9 9-9 4.9706 0 9 4.02944 9 9 0 1.7438-.4959 3.3717-1.3544 4.7505C22.3054 15.9515 24 19.2778 24 23c0 .5522-.4477 1-1 1s-1-.4478-1-1c0-3.0854-1.3973-5.8444-3.5936-7.6788C16.7745 16.975 14.5069 18 12 18c-2.50694 0-4.77448-1.025-6.4064-2.6788C3.39729 17.1556 2 19.9146 2 23c0 .5522-.44772 1-1 1-.55229 0-1-.4478-1-1 0-3.7222 1.69462-7.0485 4.35442-9.2495C3.49592 12.3717 3 10.7438 3 9Z"
6
- fill="#0B3EE3"
7
- />
8
- </svg>
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { SVGIconProps } from "../Icon";
3
- declare const IconAgreement: ({ size, style, ...props }: SVGIconProps) => React.JSX.Element;
4
- export default IconAgreement;
5
- //# sourceMappingURL=IconAgreement.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconAgreement.d.ts","sourceRoot":"","sources":["../../../../../src/components/icons/svg/IconAgreement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,QAAA,MAAM,aAAa,8BAA+B,YAAY,sBAW7D,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { SVGIconProps } from "../Icon";
3
- declare const IconDocument: ({ size, style, ...props }: SVGIconProps) => React.JSX.Element;
4
- export default IconDocument;
5
- //# sourceMappingURL=IconDocument.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconDocument.d.ts","sourceRoot":"","sources":["../../../../../src/components/icons/svg/IconDocument.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,QAAA,MAAM,YAAY,8BAA+B,YAAY,sBAa5D,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { SVGIconProps } from "../Icon";
3
- declare const IconDocumentSign: ({ size, style, ...props }: SVGIconProps) => React.JSX.Element;
4
- export default IconDocumentSign;
5
- //# sourceMappingURL=IconDocumentSign.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconDocumentSign.d.ts","sourceRoot":"","sources":["../../../../../src/components/icons/svg/IconDocumentSign.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,QAAA,MAAM,gBAAgB,8BAA+B,YAAY,sBAuBhE,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { SVGIconProps } from "../Icon";
3
- declare const IconProfileAlt: ({ size, style, ...props }: SVGIconProps) => React.JSX.Element;
4
- export default IconProfileAlt;
5
- //# sourceMappingURL=IconProfileAlt.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconProfileAlt.d.ts","sourceRoot":"","sources":["../../../../../src/components/icons/svg/IconProfileAlt.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,QAAA,MAAM,cAAc,8BAA+B,YAAY,sBAO9D,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { SVGIconProps } from "../Icon";
3
- declare const IconProfileFilled: ({ size, style, ...props }: SVGIconProps) => React.JSX.Element;
4
- export default IconProfileFilled;
5
- //# sourceMappingURL=IconProfileFilled.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconProfileFilled.d.ts","sourceRoot":"","sources":["../../../../../src/components/icons/svg/IconProfileFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,QAAA,MAAM,iBAAiB,8BAA+B,YAAY,sBASjE,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
@@ -1,18 +0,0 @@
1
- import React from "react";
2
- import { Svg, Path } from "react-native-svg";
3
- import { SVGIconProps } from "../Icon";
4
-
5
- const IconAgreement = ({ size, style, ...props }: SVGIconProps) => (
6
- <Svg width={size} height={size} viewBox="0 0 24 24" style={style} {...props}>
7
- <Path
8
- d="M20.778 18.628V3.021A3.024 3.024 0 0 0 17.757 0H3.288a3.024 3.024 0 0 0-3.02 3.02v2.352h4.635v15.607A3.024 3.024 0 0 0 7.923 24h12.789a3.024 3.024 0 0 0 3.02-3.02v-2.352h-2.954ZM4.903 3.965H1.674v-.944c0-.89.724-1.615 1.614-1.615.89 0 1.615.724 1.615 1.615v.944ZM9.538 20.98c0 .89-.725 1.614-1.615 1.614S6.31 21.87 6.31 20.98V3.02c0-.593-.173-1.146-.47-1.614h11.918c.89 0 1.614.724 1.614 1.615v15.607H9.538v2.352Zm12.788 0c0 .89-.724 1.614-1.614 1.614H10.475a3.003 3.003 0 0 0 .469-1.614v-.945h11.382v.945Z"
9
- fill="currentColor"
10
- />
11
- <Path
12
- d="M17.965 4.635H7.715v1.406h10.25V4.635ZM17.965 7.828H7.715v1.406h10.25V7.828ZM12.84 11.02c-1.39 0-2.52 1.131-2.52 2.521 0 1.146.768 2.115 1.817 2.42v1.315h1.406v-1.315a2.525 2.525 0 0 0 1.818-2.42c0-1.39-1.131-2.52-2.52-2.52Zm0 3.635c-.614 0-1.114-.5-1.114-1.114 0-.614.5-1.114 1.114-1.114.614 0 1.114.5 1.114 1.114 0 .614-.5 1.114-1.114 1.114Z"
13
- fill="currentColor"
14
- />
15
- </Svg>
16
- );
17
-
18
- export default IconAgreement;
@@ -1,20 +0,0 @@
1
- import React from "react";
2
- import { Svg, Path } from "react-native-svg";
3
- import { SVGIconProps } from "../Icon";
4
-
5
- const IconDocument = ({ size, style, ...props }: SVGIconProps) => (
6
- <Svg width={size} height={size} viewBox="0 0 24 24" style={style} {...props}>
7
- <Path
8
- d="M8.703 9C8.315 9 8 9.336 8 9.75s.315.75.703.75h5.844c.388 0 .703-.336.703-.75S14.935 9 14.547 9H8.703ZM8 12.75c0-.414.308-.75.687-.75h6.876c.38 0 .687.336.687.75s-.308.75-.688.75H8.688c-.38 0-.687-.336-.687-.75ZM8.687 15c-.38 0-.687.336-.687.75s.308.75.687.75h6.876c.38 0 .687-.336.687-.75s-.308-.75-.688-.75H8.688ZM8 18.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z"
9
- fill="currentColor"
10
- />
11
- <Path
12
- fillRule="evenodd"
13
- clipRule="evenodd"
14
- d="M19.281 6.098c0-.563-.22-1.093-.618-1.491l-1.988-1.99A2.095 2.095 0 0 0 15.183 2H7.11C5.946 2 5 2.946 5 4.11v15.78C5 21.055 5.946 22 7.11 22h10.062c1.163 0 2.11-.946 2.11-2.11V6.099Zm-1.406 13.793a.704.704 0 0 1-.703.703H7.109a.704.704 0 0 1-.703-.703V4.109c0-.387.316-.703.703-.703h6.547v3.516c0 .388.315.703.703.703h3.516v12.266ZM15.062 3.406h.034c.14-.002.373-.005.584.206l1.99 1.989c.208.209.206.436.205.588v.03h-2.813V3.406Z"
15
- fill="currentColor"
16
- />
17
- </Svg>
18
- );
19
-
20
- export default IconDocument;
@@ -1,30 +0,0 @@
1
- import React from "react";
2
- import { Svg, Path } from "react-native-svg";
3
- import { SVGIconProps } from "../Icon";
4
-
5
- const IconDocumentSign = ({ size, style, ...props }: SVGIconProps) => (
6
- <Svg width={size} height={size} viewBox="0 0 24 24" style={style} {...props}>
7
- <Path
8
- d="M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z"
9
- fill="currentColor"
10
- />
11
- <Path
12
- fillRule="evenodd"
13
- clipRule="evenodd"
14
- d="M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z"
15
- fill="currentColor"
16
- />
17
- <Path
18
- d="M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z"
19
- fill="currentColor"
20
- />
21
- <Path
22
- fillRule="evenodd"
23
- clipRule="evenodd"
24
- d="M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z"
25
- fill="currentColor"
26
- />
27
- </Svg>
28
- );
29
-
30
- export default IconDocumentSign;
@@ -1,14 +0,0 @@
1
- import React from "react";
2
- import { Svg, Path } from "react-native-svg";
3
- import { SVGIconProps } from "../Icon";
4
-
5
- const IconProfileAlt = ({ size, style, ...props }: SVGIconProps) => (
6
- <Svg width={size} height={size} viewBox="0 0 24 24" style={style} {...props}>
7
- <Path
8
- d="M12.263 11.421a4.632 4.632 0 1 0 0-9.263 4.632 4.632 0 0 0 0 9.263Zm0 1.158a5.79 5.79 0 1 1 0-11.579 5.79 5.79 0 0 1 0 11.579ZM4.158 23H3a9.263 9.263 0 1 1 18.526 0h-1.158a8.105 8.105 0 1 0-16.21 0Z"
9
- fill="currentColor"
10
- />
11
- </Svg>
12
- );
13
-
14
- export default IconProfileAlt;
@@ -1,16 +0,0 @@
1
- import React from "react";
2
- import { Svg, Path } from "react-native-svg";
3
- import { SVGIconProps } from "../Icon";
4
-
5
- const IconProfileFilled = ({ size, style, ...props }: SVGIconProps) => (
6
- <Svg width={size} height={size} viewBox="0 0 24 24" style={style} {...props}>
7
- <Path
8
- fillRule="evenodd"
9
- clipRule="evenodd"
10
- d="M3 9c0-4.97056 4.02944-9 9-9 4.9706 0 9 4.02944 9 9 0 1.7438-.4959 3.3717-1.3544 4.7505C22.3054 15.9515 24 19.2778 24 23c0 .5522-.4477 1-1 1s-1-.4478-1-1c0-3.0854-1.3973-5.8444-3.5936-7.6788C16.7745 16.975 14.5069 18 12 18c-2.50694 0-4.77448-1.025-6.4064-2.6788C3.39729 17.1556 2 19.9146 2 23c0 .5522-.44772 1-1 1-.55229 0-1-.4478-1-1 0-3.7222 1.69462-7.0485 4.35442-9.2495C3.49592 12.3717 3 10.7438 3 9Z"
11
- fill="currentColor"
12
- />
13
- </Svg>
14
- );
15
-
16
- export default IconProfileFilled;
@@ -1,10 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M20.778 18.628V3.021A3.024 3.024 0 0 0 17.757 0H3.288a3.024 3.024 0 0 0-3.02 3.02v2.352h4.635v15.607A3.024 3.024 0 0 0 7.923 24h12.789a3.024 3.024 0 0 0 3.02-3.02v-2.352h-2.954ZM4.903 3.965H1.674v-.944c0-.89.724-1.615 1.614-1.615.89 0 1.615.724 1.615 1.615v.944ZM9.538 20.98c0 .89-.725 1.614-1.615 1.614S6.31 21.87 6.31 20.98V3.02c0-.593-.173-1.146-.47-1.614h11.918c.89 0 1.614.724 1.614 1.615v15.607H9.538v2.352Zm12.788 0c0 .89-.724 1.614-1.614 1.614H10.475a3.003 3.003 0 0 0 .469-1.614v-.945h11.382v.945Z"
4
- fill="#000"
5
- />
6
- <path
7
- d="M17.965 4.635H7.715v1.406h10.25V4.635ZM17.965 7.828H7.715v1.406h10.25V7.828ZM12.84 11.02c-1.39 0-2.52 1.131-2.52 2.521 0 1.146.768 2.115 1.817 2.42v1.315h1.406v-1.315a2.525 2.525 0 0 0 1.818-2.42c0-1.39-1.131-2.52-2.52-2.52Zm0 3.635c-.614 0-1.114-.5-1.114-1.114 0-.614.5-1.114 1.114-1.114.614 0 1.114.5 1.114 1.114 0 .614-.5 1.114-1.114 1.114Z"
8
- fill="#000"
9
- />
10
- </svg>
@@ -1,12 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M8.703 9C8.315 9 8 9.336 8 9.75s.315.75.703.75h5.844c.388 0 .703-.336.703-.75S14.935 9 14.547 9H8.703ZM8 12.75c0-.414.308-.75.687-.75h6.876c.38 0 .687.336.687.75s-.308.75-.688.75H8.688c-.38 0-.687-.336-.687-.75ZM8.687 15c-.38 0-.687.336-.687.75s.308.75.687.75h6.876c.38 0 .687-.336.687-.75s-.308-.75-.688-.75H8.688ZM8 18.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z"
4
- fill="#000"
5
- />
6
- <path
7
- fill-rule="evenodd"
8
- clip-rule="evenodd"
9
- d="M19.281 6.098c0-.563-.22-1.093-.618-1.491l-1.988-1.99A2.095 2.095 0 0 0 15.183 2H7.11C5.946 2 5 2.946 5 4.11v15.78C5 21.055 5.946 22 7.11 22h10.062c1.163 0 2.11-.946 2.11-2.11V6.099Zm-1.406 13.793a.704.704 0 0 1-.703.703H7.109a.704.704 0 0 1-.703-.703V4.109c0-.387.316-.703.703-.703h6.547v3.516c0 .388.315.703.703.703h3.516v12.266ZM15.062 3.406h.034c.14-.002.373-.005.584.206l1.99 1.989c.208.209.206.436.205.588v.03h-2.813V3.406Z"
10
- fill="#000"
11
- />
12
- </svg>
@@ -1,22 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z"
4
- fill="#000"
5
- />
6
- <path
7
- fill-rule="evenodd"
8
- clip-rule="evenodd"
9
- d="M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z"
10
- fill="#000"
11
- />
12
- <path
13
- d="M3.703 6.75h9.844c.388 0 .703.336.703.75s-.315.75-.703.75H3.703C3.315 8.25 3 7.914 3 7.5s.315-.75.703-.75ZM10.563 10H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM3.687 13h6.875c.38 0 .688.336.688.75s-.308.75-.688.75H3.688c-.38 0-.687-.336-.687-.75s.308-.75.687-.75ZM10.563 16H3.686c-.38 0-.687.336-.687.75s.308.75.687.75h6.875c.38 0 .688-.336.688-.75s-.308-.75-.688-.75ZM8.25 20.25A.75.75 0 0 1 9 19.5h4.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z"
14
- fill="#000"
15
- />
16
- <path
17
- fill-rule="evenodd"
18
- clip-rule="evenodd"
19
- d="M20.397 7.553a2.108 2.108 0 1 1 2.983 2.983l-5.099 5.103v6.252c0 1.163-.946 2.109-2.11 2.109H2.11A2.112 2.112 0 0 1 0 21.89V2.11C0 .945.946 0 2.11 0h12.073c.564 0 1.093.22 1.492.618l1.988 1.989c.399.398.618.928.618 1.491V9.67l2.116-2.117Zm1.264 2.714.724-.725a.703.703 0 1 0-.994-.995l-.725.726.995.994Zm-5.369 3.383.995.995 3.38-3.383-.995-.994-3.38 3.382Zm0 1.99-.994-.995-.38.38-.497 1.491 1.492-.497.38-.38Zm-.12 6.954a.704.704 0 0 0 .703-.703v-4.845l-.085.085a.703.703 0 0 1-.275.17l-2.983.994a.703.703 0 0 1-.89-.89l.995-2.982a.704.704 0 0 1 .17-.275l3.068-3.07V5.625h-3.516a.703.703 0 0 1-.703-.703V1.406H2.11a.704.704 0 0 0-.703.703v19.782c0 .387.316.703.703.703h14.063ZM14.096 1.406h-.034V4.22h2.813v-.03c.001-.152.003-.38-.206-.588L14.68 1.612c-.21-.21-.445-.208-.584-.206Z"
20
- fill="#000"
21
- />
22
- </svg>
@@ -1,6 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M12.263 11.421a4.632 4.632 0 1 0 0-9.263 4.632 4.632 0 0 0 0 9.263Zm0 1.158a5.79 5.79 0 1 1 0-11.579 5.79 5.79 0 0 1 0 11.579ZM4.158 23H3a9.263 9.263 0 1 1 18.526 0h-1.158a8.105 8.105 0 1 0-16.21 0Z"
4
- fill="#000"
5
- />
6
- </svg>
@@ -1,8 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M3 9c0-4.97056 4.02944-9 9-9 4.9706 0 9 4.02944 9 9 0 1.7438-.4959 3.3717-1.3544 4.7505C22.3054 15.9515 24 19.2778 24 23c0 .5522-.4477 1-1 1s-1-.4478-1-1c0-3.0854-1.3973-5.8444-3.5936-7.6788C16.7745 16.975 14.5069 18 12 18c-2.50694 0-4.77448-1.025-6.4064-2.6788C3.39729 17.1556 2 19.9146 2 23c0 .5522-.44772 1-1 1-.55229 0-1-.4478-1-1 0-3.7222 1.69462-7.0485 4.35442-9.2495C3.49592 12.3717 3 10.7438 3 9Z"
6
- fill="#0B3EE3"
7
- />
8
- </svg>