@kirbydesign/designsystem 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (552) hide show
  1. package/README.md +7 -0
  2. package/karma.conf.js +34 -0
  3. package/ng-package.json +32 -0
  4. package/ngcc.config.js +3 -0
  5. package/package.json +27 -0
  6. package/src/index.ts +1 -0
  7. package/src/lib/animation/kirby-animation.ts +12 -0
  8. package/src/lib/components/accordion/accordion-item.component.html +25 -0
  9. package/src/lib/components/accordion/accordion-item.component.scss +64 -0
  10. package/src/lib/components/accordion/accordion-item.component.spec.ts +52 -0
  11. package/src/lib/components/accordion/accordion-item.component.ts +27 -0
  12. package/src/lib/components/accordion/accordion.directive.ts +7 -0
  13. package/src/lib/components/accordion/index.ts +2 -0
  14. package/src/lib/components/angular-component-lib/utils.ts +43 -0
  15. package/src/lib/components/app/app.component.html +3 -0
  16. package/src/lib/components/app/app.component.scss +10 -0
  17. package/src/lib/components/app/app.component.spec.ts +52 -0
  18. package/src/lib/components/app/app.component.ts +50 -0
  19. package/src/lib/components/app/app.module.ts +12 -0
  20. package/src/lib/components/app/index.ts +2 -0
  21. package/src/lib/components/avatar/avatar.component.html +6 -0
  22. package/src/lib/components/avatar/avatar.component.scss +153 -0
  23. package/src/lib/components/avatar/avatar.component.spec.ts +207 -0
  24. package/src/lib/components/avatar/avatar.component.ts +32 -0
  25. package/src/lib/components/badge/badge.component.spec.ts +78 -0
  26. package/src/lib/components/button/button.component.html +1 -0
  27. package/src/lib/components/button/button.component.integration.spec.ts +576 -0
  28. package/src/lib/components/button/button.component.scss +286 -0
  29. package/src/lib/components/button/button.component.spec.ts +404 -0
  30. package/src/lib/components/button/button.component.ts +96 -0
  31. package/src/lib/components/calendar/calendar.component.html +49 -0
  32. package/src/lib/components/calendar/calendar.component.initialization.spec.ts +93 -0
  33. package/src/lib/components/calendar/calendar.component.scss +132 -0
  34. package/src/lib/components/calendar/calendar.component.spec.ts +470 -0
  35. package/src/lib/components/calendar/calendar.component.ts +513 -0
  36. package/src/lib/components/calendar/helpers/calendar-cell.model.ts +7 -0
  37. package/src/lib/components/calendar/helpers/calendar-options.model.ts +10 -0
  38. package/src/lib/components/calendar/helpers/calendar.helper.ts +108 -0
  39. package/src/lib/components/calendar/index.ts +2 -0
  40. package/src/lib/components/calendar/options/calendar-year-navigator-config.ts +4 -0
  41. package/src/lib/components/card/card-footer/card-footer.component.html +3 -0
  42. package/src/lib/components/card/card-footer/card-footer.component.scss +19 -0
  43. package/src/lib/components/card/card-footer/card-footer.component.ts +13 -0
  44. package/src/lib/components/card/card-header/card-header.component.html +5 -0
  45. package/src/lib/components/card/card-header/card-header.component.scss +63 -0
  46. package/src/lib/components/card/card-header/card-header.component.ts +20 -0
  47. package/src/lib/components/card/card.component.html +5 -0
  48. package/src/lib/components/card/card.component.scss +56 -0
  49. package/src/lib/components/card/card.component.spec.ts +81 -0
  50. package/src/lib/components/card/card.component.ts +95 -0
  51. package/src/lib/components/card/index.ts +3 -0
  52. package/src/lib/components/chart/chart-js/chart-js.service.integration.spec.ts +320 -0
  53. package/src/lib/components/chart/chart-js/chart-js.service.spec.ts +1004 -0
  54. package/src/lib/components/chart/chart-js/chart-js.service.ts +445 -0
  55. package/src/lib/components/chart/chart-js/chartjs-plugin-marker/chartjs-plugin-marker.ts +254 -0
  56. package/src/lib/components/chart/chart-js/configured-chart-js.ts +39 -0
  57. package/src/lib/components/chart/chart-js/test-utils.ts +171 -0
  58. package/src/lib/components/chart/chart.component.html +7 -0
  59. package/src/lib/components/chart/chart.component.scss +6 -0
  60. package/src/lib/components/chart/chart.component.spec.ts +188 -0
  61. package/src/lib/components/chart/chart.component.ts +148 -0
  62. package/src/lib/components/chart/chart.module.ts +11 -0
  63. package/src/lib/components/chart/chart.types.ts +34 -0
  64. package/src/lib/components/chart/configs/annotations.config.ts +36 -0
  65. package/src/lib/components/chart/configs/chart-config.service.spec.ts +21 -0
  66. package/src/lib/components/chart/configs/chart-config.service.ts +34 -0
  67. package/src/lib/components/chart/configs/global-defaults.config.ts +50 -0
  68. package/src/lib/components/chart/configs/interaction-functions-extensions.config.ts +19 -0
  69. package/src/lib/components/chart/configs/shared.utils.ts +28 -0
  70. package/src/lib/components/chart/configs/type.config.ts +214 -0
  71. package/src/lib/components/chart/index.ts +5 -0
  72. package/src/lib/components/chart-deprecated/chart-deprecated-helper.ts +25 -0
  73. package/src/lib/components/chart-deprecated/chart-deprecated-type.ts +10 -0
  74. package/src/lib/components/chart-deprecated/chart-deprecated.component.scss +3 -0
  75. package/src/lib/components/chart-deprecated/chart-deprecated.component.spec.ts +271 -0
  76. package/src/lib/components/chart-deprecated/chart-deprecated.component.ts +233 -0
  77. package/src/lib/components/chart-deprecated/index.ts +2 -0
  78. package/src/lib/components/chart-deprecated/options/activitygauge.ts +87 -0
  79. package/src/lib/components/chart-deprecated/options/areaspline.ts +95 -0
  80. package/src/lib/components/chart-deprecated/options/bar.ts +93 -0
  81. package/src/lib/components/chart-deprecated/options/column.ts +101 -0
  82. package/src/lib/components/chart-deprecated/options/donut.ts +118 -0
  83. package/src/lib/components/chart-deprecated/options/timeseries.ts +96 -0
  84. package/src/lib/components/checkbox/checkbox.component.html +10 -0
  85. package/src/lib/components/checkbox/checkbox.component.integration.spec.ts +59 -0
  86. package/src/lib/components/checkbox/checkbox.component.scss +130 -0
  87. package/src/lib/components/checkbox/checkbox.component.spec.ts +205 -0
  88. package/src/lib/components/checkbox/checkbox.component.ts +56 -0
  89. package/src/lib/components/chip/chip.component.html +1 -0
  90. package/src/lib/components/chip/chip.component.integration.spec.ts +111 -0
  91. package/src/lib/components/chip/chip.component.scss +49 -0
  92. package/src/lib/components/chip/chip.component.spec.ts +84 -0
  93. package/src/lib/components/chip/chip.component.ts +16 -0
  94. package/src/lib/components/divider/divider.component.html +1 -0
  95. package/src/lib/components/divider/divider.component.scss +22 -0
  96. package/src/lib/components/divider/divider.component.spec.ts +24 -0
  97. package/src/lib/components/divider/divider.component.ts +12 -0
  98. package/src/lib/components/dropdown/dropdown-popover.component.integration.spec.ts +177 -0
  99. package/src/lib/components/dropdown/dropdown-popover.component.spec.ts +1154 -0
  100. package/src/lib/components/dropdown/dropdown.component.html +42 -0
  101. package/src/lib/components/dropdown/dropdown.component.scss +142 -0
  102. package/src/lib/components/dropdown/dropdown.component.spec.ts +1215 -0
  103. package/src/lib/components/dropdown/dropdown.component.ts +538 -0
  104. package/src/lib/components/dropdown/dropdown.types.ts +10 -0
  105. package/src/lib/components/dropdown/keyboard-handler.service.ts +38 -0
  106. package/src/lib/components/empty-state/empty-state.component.html +10 -0
  107. package/src/lib/components/empty-state/empty-state.component.integration.spec.ts +110 -0
  108. package/src/lib/components/empty-state/empty-state.component.scss +50 -0
  109. package/src/lib/components/empty-state/empty-state.component.spec.ts +40 -0
  110. package/src/lib/components/empty-state/empty-state.component.ts +50 -0
  111. package/src/lib/components/fab-sheet/fab-sheet.component.html +13 -0
  112. package/src/lib/components/fab-sheet/fab-sheet.component.scss +67 -0
  113. package/src/lib/components/fab-sheet/fab-sheet.component.spec.ts +29 -0
  114. package/src/lib/components/fab-sheet/fab-sheet.component.ts +100 -0
  115. package/src/lib/components/flag/flag.component.scss +40 -0
  116. package/src/lib/components/flag/flag.component.spec.ts +152 -0
  117. package/src/lib/components/flag/flag.component.ts +18 -0
  118. package/src/lib/components/form-field/_form-field-inputs.shared.scss +62 -0
  119. package/src/lib/components/form-field/directives/date/date-input.directive.spec.ts +127 -0
  120. package/src/lib/components/form-field/directives/date/date-input.directive.ts +94 -0
  121. package/src/lib/components/form-field/directives/decimal-mask/decimal-mask.directive.spec.ts +231 -0
  122. package/src/lib/components/form-field/directives/decimal-mask/decimal-mask.directive.ts +113 -0
  123. package/src/lib/components/form-field/form-field-message/form-field-message.component.html +1 -0
  124. package/src/lib/components/form-field/form-field-message/form-field-message.component.scss +11 -0
  125. package/src/lib/components/form-field/form-field-message/form-field-message.component.ts +12 -0
  126. package/src/lib/components/form-field/form-field.component.html +39 -0
  127. package/src/lib/components/form-field/form-field.component.scss +43 -0
  128. package/src/lib/components/form-field/form-field.component.spec.ts +521 -0
  129. package/src/lib/components/form-field/form-field.component.ts +141 -0
  130. package/src/lib/components/form-field/index.ts +7 -0
  131. package/src/lib/components/form-field/input/input.component.integration.spec.ts +83 -0
  132. package/src/lib/components/form-field/input/input.component.scss +54 -0
  133. package/src/lib/components/form-field/input/input.component.spec.ts +159 -0
  134. package/src/lib/components/form-field/input/input.component.ts +91 -0
  135. package/src/lib/components/form-field/input-counter/input-counter.component.html +1 -0
  136. package/src/lib/components/form-field/input-counter/input-counter.component.spec.ts +184 -0
  137. package/src/lib/components/form-field/input-counter/input-counter.component.ts +41 -0
  138. package/src/lib/components/form-field/textarea/textarea.component.html +2 -0
  139. package/src/lib/components/form-field/textarea/textarea.component.scss +11 -0
  140. package/src/lib/components/form-field/textarea/textarea.component.spec.ts +100 -0
  141. package/src/lib/components/form-field/textarea/textarea.component.ts +64 -0
  142. package/src/lib/components/grid/breakpoint-helper.service.ts +27 -0
  143. package/src/lib/components/grid/grid-card-configuration.ts +7 -0
  144. package/src/lib/components/grid/grid.component.html +6 -0
  145. package/src/lib/components/grid/grid.component.scss +26 -0
  146. package/src/lib/components/grid/grid.component.ts +106 -0
  147. package/src/lib/components/icon/icon-registry.service.spec.ts +107 -0
  148. package/src/lib/components/icon/icon-registry.service.ts +39 -0
  149. package/src/lib/components/icon/icon-settings.ts +8 -0
  150. package/src/lib/components/icon/icon.component.html +1 -0
  151. package/src/lib/components/icon/icon.component.scss +47 -0
  152. package/src/lib/components/icon/icon.component.spec.ts +254 -0
  153. package/src/lib/components/icon/icon.component.ts +89 -0
  154. package/src/lib/components/icon/icon.module.ts +11 -0
  155. package/src/lib/components/icon/index.ts +5 -0
  156. package/src/lib/components/icon/kirby-icon-settings.ts +65 -0
  157. package/src/lib/components/icon/readme.md +16 -0
  158. package/src/lib/components/icon/selection.json +1776 -0
  159. package/src/lib/components/index.ts +67 -0
  160. package/src/lib/components/item/_item.utils.scss +36 -0
  161. package/src/lib/components/item/index.ts +3 -0
  162. package/src/lib/components/item/item.component.html +16 -0
  163. package/src/lib/components/item/item.component.integration.spec.ts +64 -0
  164. package/src/lib/components/item/item.component.scss +156 -0
  165. package/src/lib/components/item/item.component.spec.ts +85 -0
  166. package/src/lib/components/item/item.component.ts +37 -0
  167. package/src/lib/components/item/item.module.ts +14 -0
  168. package/src/lib/components/item/label/label.component.html +3 -0
  169. package/src/lib/components/item/label/label.component.scss +36 -0
  170. package/src/lib/components/item/label/label.component.spec.ts +23 -0
  171. package/src/lib/components/item/label/label.component.ts +16 -0
  172. package/src/lib/components/item-group/item-group.component.html +1 -0
  173. package/src/lib/components/item-group/item-group.component.scss +3 -0
  174. package/src/lib/components/item-group/item-group.component.spec.ts +42 -0
  175. package/src/lib/components/item-group/item-group.component.ts +10 -0
  176. package/src/lib/components/item-sliding/index.ts +2 -0
  177. package/src/lib/components/item-sliding/item-sliding.component.html +20 -0
  178. package/src/lib/components/item-sliding/item-sliding.component.scss +9 -0
  179. package/src/lib/components/item-sliding/item-sliding.component.spec.ts +174 -0
  180. package/src/lib/components/item-sliding/item-sliding.component.ts +23 -0
  181. package/src/lib/components/item-sliding/item-sliding.shared.scss +18 -0
  182. package/src/lib/components/item-sliding/item-sliding.types.ts +13 -0
  183. package/src/lib/components/list/directives/infinite-scroll.directive.spec.ts +131 -0
  184. package/src/lib/components/list/directives/infinite-scroll.directive.ts +137 -0
  185. package/src/lib/components/list/directives/list-item-color.directive.ts +27 -0
  186. package/src/lib/components/list/directives/scroll.model.ts +5 -0
  187. package/src/lib/components/list/helpers/list-helper.spec.ts +109 -0
  188. package/src/lib/components/list/helpers/list-helper.ts +19 -0
  189. package/src/lib/components/list/index.ts +21 -0
  190. package/src/lib/components/list/list-experimental/list-experimental.component.html +4 -0
  191. package/src/lib/components/list/list-experimental/list-experimental.component.scss +6 -0
  192. package/src/lib/components/list/list-experimental/list-experimental.component.spec.ts +112 -0
  193. package/src/lib/components/list/list-experimental/list-experimental.component.ts +21 -0
  194. package/src/lib/components/list/list-header/list-header.component.html +1 -0
  195. package/src/lib/components/list/list-header/list-header.component.scss +10 -0
  196. package/src/lib/components/list/list-header/list-header.component.spec.ts +24 -0
  197. package/src/lib/components/list/list-header/list-header.component.ts +11 -0
  198. package/src/lib/components/list/list-item/list-item.component.html +39 -0
  199. package/src/lib/components/list/list-item/list-item.component.scss +13 -0
  200. package/src/lib/components/list/list-item/list-item.component.ts +144 -0
  201. package/src/lib/components/list/list-section-header/list-section-header.component.html +3 -0
  202. package/src/lib/components/list/list-section-header/list-section-header.component.spec.ts +24 -0
  203. package/src/lib/components/list/list-section-header/list-section-header.component.ts +13 -0
  204. package/src/lib/components/list/list-swipe-action.ts +2 -0
  205. package/src/lib/components/list/list-swipe-action.type.ts +23 -0
  206. package/src/lib/components/list/list.component.html +65 -0
  207. package/src/lib/components/list/list.component.integration.spec.ts +177 -0
  208. package/src/lib/components/list/list.component.scss +243 -0
  209. package/src/lib/components/list/list.component.spec.ts +219 -0
  210. package/src/lib/components/list/list.component.ts +213 -0
  211. package/src/lib/components/list/list.directive.ts +21 -0
  212. package/src/lib/components/list/list.event.ts +8 -0
  213. package/src/lib/components/list/list.module.ts +47 -0
  214. package/src/lib/components/list/pipes/group-by.pipe.spec.ts +71 -0
  215. package/src/lib/components/list/pipes/group-by.pipe.ts +34 -0
  216. package/src/lib/components/loading-overlay/index.ts +2 -0
  217. package/src/lib/components/loading-overlay/loading-overlay.component.html +8 -0
  218. package/src/lib/components/loading-overlay/loading-overlay.component.scss +37 -0
  219. package/src/lib/components/loading-overlay/loading-overlay.component.ts +12 -0
  220. package/src/lib/components/loading-overlay/loading-overlay.service.ts +44 -0
  221. package/src/lib/components/modal/action-sheet/action-sheet.component.html +24 -0
  222. package/src/lib/components/modal/action-sheet/action-sheet.component.scss +47 -0
  223. package/src/lib/components/modal/action-sheet/action-sheet.component.spec.ts +153 -0
  224. package/src/lib/components/modal/action-sheet/action-sheet.component.ts +27 -0
  225. package/src/lib/components/modal/action-sheet/config/action-sheet-config.ts +8 -0
  226. package/src/lib/components/modal/action-sheet/config/action-sheet-item.ts +4 -0
  227. package/src/lib/components/modal/alert/alert.component.html +29 -0
  228. package/src/lib/components/modal/alert/alert.component.scss +21 -0
  229. package/src/lib/components/modal/alert/alert.component.spec.ts +104 -0
  230. package/src/lib/components/modal/alert/alert.component.ts +67 -0
  231. package/src/lib/components/modal/alert/config/alert-config.ts +19 -0
  232. package/src/lib/components/modal/footer/modal-footer.component.html +3 -0
  233. package/src/lib/components/modal/footer/modal-footer.component.scss +57 -0
  234. package/src/lib/components/modal/footer/modal-footer.component.spec.ts +209 -0
  235. package/src/lib/components/modal/footer/modal-footer.component.ts +17 -0
  236. package/src/lib/components/modal/index.ts +9 -0
  237. package/src/lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component.html +3 -0
  238. package/src/lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component.scss +8 -0
  239. package/src/lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component.ts +79 -0
  240. package/src/lib/components/modal/modal-wrapper/config/drawer-supplementary-action.ts +4 -0
  241. package/src/lib/components/modal/modal-wrapper/config/modal-config.helper.ts +3 -0
  242. package/src/lib/components/modal/modal-wrapper/config/modal-config.ts +22 -0
  243. package/src/lib/components/modal/modal-wrapper/modal-wrapper.component.html +43 -0
  244. package/src/lib/components/modal/modal-wrapper/modal-wrapper.component.scss +159 -0
  245. package/src/lib/components/modal/modal-wrapper/modal-wrapper.component.spec.ts +942 -0
  246. package/src/lib/components/modal/modal-wrapper/modal-wrapper.component.ts +587 -0
  247. package/src/lib/components/modal/modal-wrapper/modal-wrapper.testbuilder.ts +155 -0
  248. package/src/lib/components/modal/services/action-sheet.helper.spec.ts +86 -0
  249. package/src/lib/components/modal/services/action-sheet.helper.ts +47 -0
  250. package/src/lib/components/modal/services/alert.helper.spec.ts +89 -0
  251. package/src/lib/components/modal/services/alert.helper.ts +57 -0
  252. package/src/lib/components/modal/services/modal-animation-builder.service.ts +276 -0
  253. package/src/lib/components/modal/services/modal-navigation.service.spec.ts +543 -0
  254. package/src/lib/components/modal/services/modal-navigation.service.ts +331 -0
  255. package/src/lib/components/modal/services/modal.controller.spec.ts +212 -0
  256. package/src/lib/components/modal/services/modal.controller.ts +194 -0
  257. package/src/lib/components/modal/services/modal.helper.spec.ts +828 -0
  258. package/src/lib/components/modal/services/modal.helper.ts +128 -0
  259. package/src/lib/components/modal/services/modal.interfaces.ts +28 -0
  260. package/src/lib/components/page/index.ts +13 -0
  261. package/src/lib/components/page/page-footer/page-footer.component.html +3 -0
  262. package/src/lib/components/page/page-footer/page-footer.component.scss +23 -0
  263. package/src/lib/components/page/page-footer/page-footer.component.spec.ts +52 -0
  264. package/src/lib/components/page/page-footer/page-footer.component.ts +46 -0
  265. package/src/lib/components/page/page.component.html +101 -0
  266. package/src/lib/components/page/page.component.scss +141 -0
  267. package/src/lib/components/page/page.component.spec.ts +224 -0
  268. package/src/lib/components/page/page.component.ts +415 -0
  269. package/src/lib/components/page/page.module.ts +52 -0
  270. package/src/lib/components/popover/popover.component.scss +26 -0
  271. package/src/lib/components/popover/popover.component.spec.ts +0 -0
  272. package/src/lib/components/popover/popover.component.ts +221 -0
  273. package/src/lib/components/progress-circle/progress-circle-ring.component.scss +22 -0
  274. package/src/lib/components/progress-circle/progress-circle-ring.component.spec.ts +143 -0
  275. package/src/lib/components/progress-circle/progress-circle-ring.component.svg +23 -0
  276. package/src/lib/components/progress-circle/progress-circle-ring.component.ts +42 -0
  277. package/src/lib/components/progress-circle/progress-circle.component.html +11 -0
  278. package/src/lib/components/progress-circle/progress-circle.component.scss +28 -0
  279. package/src/lib/components/progress-circle/progress-circle.component.spec.ts +339 -0
  280. package/src/lib/components/progress-circle/progress-circle.component.ts +96 -0
  281. package/src/lib/components/radio/index.ts +2 -0
  282. package/src/lib/components/radio/radio-group/radio-group.component.html +24 -0
  283. package/src/lib/components/radio/radio-group/radio-group.component.spec.ts +1328 -0
  284. package/src/lib/components/radio/radio-group/radio-group.component.ts +272 -0
  285. package/src/lib/components/radio/radio.component.html +9 -0
  286. package/src/lib/components/radio/radio.component.integration.spec.ts +93 -0
  287. package/src/lib/components/radio/radio.component.scss +133 -0
  288. package/src/lib/components/radio/radio.component.spec.ts +244 -0
  289. package/src/lib/components/radio/radio.component.ts +50 -0
  290. package/src/lib/components/range/range.component.html +16 -0
  291. package/src/lib/components/range/range.component.scss +81 -0
  292. package/src/lib/components/range/range.component.ts +105 -0
  293. package/src/lib/components/reorder-list/index.ts +3 -0
  294. package/src/lib/components/reorder-list/reorder-event.ts +17 -0
  295. package/src/lib/components/reorder-list/reorder-list.component.html +30 -0
  296. package/src/lib/components/reorder-list/reorder-list.component.scss +90 -0
  297. package/src/lib/components/reorder-list/reorder-list.component.spec.ts +123 -0
  298. package/src/lib/components/reorder-list/reorder-list.component.ts +86 -0
  299. package/src/lib/components/router-outlet/index.ts +5 -0
  300. package/src/lib/components/router-outlet/router-outlet.component.html +6 -0
  301. package/src/lib/components/router-outlet/router-outlet.component.scss +13 -0
  302. package/src/lib/components/router-outlet/router-outlet.component.spec.ts +28 -0
  303. package/src/lib/components/router-outlet/router-outlet.component.ts +11 -0
  304. package/src/lib/components/router-outlet/router-outlet.module.ts +12 -0
  305. package/src/lib/components/section-header/_section-header.utils.scss +34 -0
  306. package/src/lib/components/section-header/section-header.component.html +3 -0
  307. package/src/lib/components/section-header/section-header.component.scss +15 -0
  308. package/src/lib/components/section-header/section-header.component.spec.ts +59 -0
  309. package/src/lib/components/section-header/section-header.component.ts +9 -0
  310. package/src/lib/components/section-header/section-header.integration.spec.ts +67 -0
  311. package/src/lib/components/segmented-control/segment-item.ts +18 -0
  312. package/src/lib/components/segmented-control/segmented-control.component.html +39 -0
  313. package/src/lib/components/segmented-control/segmented-control.component.scss +84 -0
  314. package/src/lib/components/segmented-control/segmented-control.component.spec.ts +247 -0
  315. package/src/lib/components/segmented-control/segmented-control.component.ts +96 -0
  316. package/src/lib/components/shared/component-configuration.ts +6 -0
  317. package/src/lib/components/shared/component-loader.directive.ts +42 -0
  318. package/src/lib/components/shared/dynamic-component.ts +3 -0
  319. package/src/lib/components/shared/index.ts +9 -0
  320. package/src/lib/components/shared/resize-observer/resize-observer.factory.ts +20 -0
  321. package/src/lib/components/shared/resize-observer/resize-observer.service.ts +65 -0
  322. package/src/lib/components/shared/resize-observer/types/resize-observer-callback.ts +7 -0
  323. package/src/lib/components/shared/resize-observer/types/resize-observer-entry.ts +14 -0
  324. package/src/lib/components/shared/resize-observer/types/resize-observer.ts +17 -0
  325. package/src/lib/components/slide-button/slide-button.component.html +14 -0
  326. package/src/lib/components/slide-button/slide-button.component.scss +81 -0
  327. package/src/lib/components/slide-button/slide-button.component.shared.scss +12 -0
  328. package/src/lib/components/slide-button/slide-button.component.spec.ts +75 -0
  329. package/src/lib/components/slide-button/slide-button.component.ts +81 -0
  330. package/src/lib/components/slides/slides.component.spec.ts +76 -0
  331. package/src/lib/components/slides/slides.component.ts +57 -0
  332. package/src/lib/components/spinner/index.ts +2 -0
  333. package/src/lib/components/spinner/spinner.component.html +4 -0
  334. package/src/lib/components/spinner/spinner.component.scss +37 -0
  335. package/src/lib/components/spinner/spinner.component.ts +13 -0
  336. package/src/lib/components/spinner/spinner.module.ts +12 -0
  337. package/src/lib/components/stock-chart-deprecated/index.ts +2 -0
  338. package/src/lib/components/stock-chart-deprecated/options/stock-chart-deprecated-options.ts +220 -0
  339. package/src/lib/components/stock-chart-deprecated/stock-chart-deprecated.component.scss +3 -0
  340. package/src/lib/components/stock-chart-deprecated/stock-chart-deprecated.component.spec.ts +32 -0
  341. package/src/lib/components/stock-chart-deprecated/stock-chart-deprecated.component.ts +92 -0
  342. package/src/lib/components/tabs/index.ts +5 -0
  343. package/src/lib/components/tabs/tab-button/tab-button.component.html +13 -0
  344. package/src/lib/components/tabs/tab-button/tab-button.component.scss +48 -0
  345. package/src/lib/components/tabs/tab-button/tab-button.component.spec.ts +24 -0
  346. package/src/lib/components/tabs/tab-button/tab-button.component.ts +47 -0
  347. package/src/lib/components/tabs/tab-button/tab-button.events.ts +1 -0
  348. package/src/lib/components/tabs/tabs.component.html +5 -0
  349. package/src/lib/components/tabs/tabs.component.scss +52 -0
  350. package/src/lib/components/tabs/tabs.component.spec.ts +125 -0
  351. package/src/lib/components/tabs/tabs.component.ts +21 -0
  352. package/src/lib/components/tabs/tabs.module.ts +16 -0
  353. package/src/lib/components/tabs/tabs.service.ts +17 -0
  354. package/src/lib/components/toast/config/toast-config.ts +8 -0
  355. package/src/lib/components/toast/index.ts +2 -0
  356. package/src/lib/components/toast/services/toast.controller.ts +18 -0
  357. package/src/lib/components/toast/services/toast.helper.spec.ts +89 -0
  358. package/src/lib/components/toast/services/toast.helper.ts +39 -0
  359. package/src/lib/components/toggle/toggle.component.html +5 -0
  360. package/src/lib/components/toggle/toggle.component.scss +5 -0
  361. package/src/lib/components/toggle/toggle.component.spec.ts +62 -0
  362. package/src/lib/components/toggle/toggle.component.ts +17 -0
  363. package/src/lib/components/toggle-button/index.ts +2 -0
  364. package/src/lib/components/toggle-button/toggle-button.component.html +6 -0
  365. package/src/lib/components/toggle-button/toggle-button.component.spec.ts +23 -0
  366. package/src/lib/components/toggle-button/toggle-button.component.ts +24 -0
  367. package/src/lib/components/toggle-button/toggle-button.module.ts +13 -0
  368. package/src/lib/components/web-component-proxies.component.ts +25 -0
  369. package/src/lib/custom-elements-initializer.ts +19 -0
  370. package/src/lib/directives/element-as-button/element-as-button.directive.spec.ts +31 -0
  371. package/src/lib/directives/element-as-button/element-as-button.directive.ts +26 -0
  372. package/src/lib/directives/fit-heading/fit-heading.directive.ts +131 -0
  373. package/src/lib/directives/fit-heading/fit-heading.module.ts +9 -0
  374. package/src/lib/directives/index.ts +9 -0
  375. package/src/lib/directives/key-handler/key-handler.directive.ts +20 -0
  376. package/src/lib/directives/modal-router-link/modal-router-link.directive.ts +24 -0
  377. package/src/lib/directives/theme-color/theme-color.directive.ts +117 -0
  378. package/src/lib/helpers/color-helper.styles.ts +193 -0
  379. package/src/lib/helpers/color-helper.ts +1 -0
  380. package/src/lib/helpers/deep-copy.ts +13 -0
  381. package/src/lib/helpers/design-token-helper.styles.ts +78 -0
  382. package/src/lib/helpers/design-token-helper.ts +6 -0
  383. package/src/lib/helpers/element-has-ancestor.ts +28 -0
  384. package/src/lib/helpers/index.ts +8 -0
  385. package/src/lib/helpers/line-clamp-helper.ts +28 -0
  386. package/src/lib/helpers/merge-deep.spec.ts +11 -0
  387. package/src/lib/helpers/merge-deep.ts +41 -0
  388. package/src/lib/helpers/platform.service.ts +22 -0
  389. package/src/lib/helpers/string-helper.ts +6 -0
  390. package/src/lib/helpers/theme-color.type.ts +1 -0
  391. package/src/lib/helpers/unique-id-generator.helper.spec.ts +58 -0
  392. package/src/lib/helpers/unique-id-generator.helper.ts +19 -0
  393. package/src/lib/icons/svg/QR.svg +7 -0
  394. package/src/lib/icons/svg/accounts-outline.svg +9 -0
  395. package/src/lib/icons/svg/accounts.svg +9 -0
  396. package/src/lib/icons/svg/add.svg +7 -0
  397. package/src/lib/icons/svg/arrow-back.svg +7 -0
  398. package/src/lib/icons/svg/arrow-down.svg +7 -0
  399. package/src/lib/icons/svg/arrow-more.svg +7 -0
  400. package/src/lib/icons/svg/arrow-up.svg +7 -0
  401. package/src/lib/icons/svg/attach.svg +7 -0
  402. package/src/lib/icons/svg/backspace.svg +9 -0
  403. package/src/lib/icons/svg/calendar.svg +7 -0
  404. package/src/lib/icons/svg/camera.svg +9 -0
  405. package/src/lib/icons/svg/checkbox-outline.svg +7 -0
  406. package/src/lib/icons/svg/checkbox.svg +7 -0
  407. package/src/lib/icons/svg/checkmark-selected.svg +3 -0
  408. package/src/lib/icons/svg/clock.svg +7 -0
  409. package/src/lib/icons/svg/close.svg +7 -0
  410. package/src/lib/icons/svg/cog.svg +7 -0
  411. package/src/lib/icons/svg/copy.svg +9 -0
  412. package/src/lib/icons/svg/edit.svg +7 -0
  413. package/src/lib/icons/svg/filter.svg +7 -0
  414. package/src/lib/icons/svg/flag.svg +9 -0
  415. package/src/lib/icons/svg/flash-off.svg +7 -0
  416. package/src/lib/icons/svg/flash.svg +7 -0
  417. package/src/lib/icons/svg/foreign-payment.svg +7 -0
  418. package/src/lib/icons/svg/help.svg +7 -0
  419. package/src/lib/icons/svg/home.svg +5 -0
  420. package/src/lib/icons/svg/inbox-outline.svg +9 -0
  421. package/src/lib/icons/svg/inbox.svg +9 -0
  422. package/src/lib/icons/svg/information.svg +9 -0
  423. package/src/lib/icons/svg/investment.svg +5 -0
  424. package/src/lib/icons/svg/kirby.svg +3 -0
  425. package/src/lib/icons/svg/link.svg +7 -0
  426. package/src/lib/icons/svg/log-out.svg +7 -0
  427. package/src/lib/icons/svg/menu-outline.svg +9 -0
  428. package/src/lib/icons/svg/menu.svg +9 -0
  429. package/src/lib/icons/svg/misc.svg +5 -0
  430. package/src/lib/icons/svg/moneybag.svg +7 -0
  431. package/src/lib/icons/svg/more.svg +5 -0
  432. package/src/lib/icons/svg/move.svg +7 -0
  433. package/src/lib/icons/svg/payment-card.svg +6 -0
  434. package/src/lib/icons/svg/pension.svg +7 -0
  435. package/src/lib/icons/svg/person-outline.svg +9 -0
  436. package/src/lib/icons/svg/person.svg +9 -0
  437. package/src/lib/icons/svg/remove.svg +6 -0
  438. package/src/lib/icons/svg/reorder.svg +9 -0
  439. package/src/lib/icons/svg/search.svg +7 -0
  440. package/src/lib/icons/svg/share.svg +7 -0
  441. package/src/lib/icons/svg/sort.svg +7 -0
  442. package/src/lib/icons/svg/support.svg +9 -0
  443. package/src/lib/icons/svg/swap.svg +7 -0
  444. package/src/lib/icons/svg/trash.svg +7 -0
  445. package/src/lib/icons/svg/unsubscribe.svg +7 -0
  446. package/src/lib/icons/svg/verify.svg +7 -0
  447. package/src/lib/icons/svg/warning.svg +7 -0
  448. package/src/lib/icons/svg/write-message.svg +7 -0
  449. package/src/lib/index.ts +8 -0
  450. package/src/lib/kirby.module.spec.ts +20 -0
  451. package/src/lib/kirby.module.ts +219 -0
  452. package/src/lib/polyfills/intersection-observer-polyfill-loader.js +14 -0
  453. package/src/lib/polyfills/intersection-observer-polyfill-loader.min.js +1 -0
  454. package/src/lib/polyfills/intersection-observer-polyfill.js +2 -0
  455. package/src/lib/polyfills/intersection-observer-polyfill.min.js +1 -0
  456. package/src/lib/polyfills/resize-observer-polyfill-loader.js +14 -0
  457. package/src/lib/polyfills/resize-observer-polyfill-loader.min.js +1 -0
  458. package/src/lib/polyfills/resize-observer-polyfill.js +2 -0
  459. package/src/lib/polyfills/resize-observer-polyfill.min.js +1 -0
  460. package/src/lib/scss/link.spec.ts +47 -0
  461. package/src/lib/scss/scss-helper.ts +8 -0
  462. package/src/lib/scss/typography.spec.ts +241 -0
  463. package/src/lib/testing/element-css-custom-matchers.d.ts +7 -0
  464. package/src/lib/testing/element-css-custom-matchers.ts +139 -0
  465. package/src/lib/testing/styles.scss +13 -0
  466. package/src/lib/testing/test-helper.ts +158 -0
  467. package/src/lib/types/index.ts +1 -0
  468. package/src/lib/types/window-ref.ts +10 -0
  469. package/src/test.ts +34 -0
  470. package/src/typings.test.d.ts +1 -0
  471. package/testing-base/ng-package.json +3 -0
  472. package/testing-base/src/lib/components/index.ts +66 -0
  473. package/testing-base/src/lib/components/mock.accordion-item.component.ts +21 -0
  474. package/testing-base/src/lib/components/mock.action-sheet.component.ts +27 -0
  475. package/testing-base/src/lib/components/mock.app.component.ts +18 -0
  476. package/testing-base/src/lib/components/mock.avatar.component.ts +38 -0
  477. package/testing-base/src/lib/components/mock.badge.component.ts +20 -0
  478. package/testing-base/src/lib/components/mock.button.component.ts +26 -0
  479. package/testing-base/src/lib/components/mock.calendar.component.ts +36 -0
  480. package/testing-base/src/lib/components/mock.card-footer.component.ts +18 -0
  481. package/testing-base/src/lib/components/mock.card-header.component.ts +23 -0
  482. package/testing-base/src/lib/components/mock.card.component.ts +25 -0
  483. package/testing-base/src/lib/components/mock.chart-deprecated.component.ts +28 -0
  484. package/testing-base/src/lib/components/mock.chart.component.ts +36 -0
  485. package/testing-base/src/lib/components/mock.checkbox.component.ts +26 -0
  486. package/testing-base/src/lib/components/mock.chip.component.ts +21 -0
  487. package/testing-base/src/lib/components/mock.divider.component.ts +20 -0
  488. package/testing-base/src/lib/components/mock.dropdown.component.ts +32 -0
  489. package/testing-base/src/lib/components/mock.empty-state.component.ts +23 -0
  490. package/testing-base/src/lib/components/mock.fab-sheet.component.ts +21 -0
  491. package/testing-base/src/lib/components/mock.flag.component.ts +21 -0
  492. package/testing-base/src/lib/components/mock.form-field-message.component.ts +21 -0
  493. package/testing-base/src/lib/components/mock.form-field.component.ts +23 -0
  494. package/testing-base/src/lib/components/mock.grid.component.ts +21 -0
  495. package/testing-base/src/lib/components/mock.icon.component.ts +22 -0
  496. package/testing-base/src/lib/components/mock.input-counter.component.ts +24 -0
  497. package/testing-base/src/lib/components/mock.input.component.ts +29 -0
  498. package/testing-base/src/lib/components/mock.item-group.component.ts +18 -0
  499. package/testing-base/src/lib/components/mock.item-sliding.component.ts +21 -0
  500. package/testing-base/src/lib/components/mock.item.component.ts +24 -0
  501. package/testing-base/src/lib/components/mock.label.component.ts +20 -0
  502. package/testing-base/src/lib/components/mock.list-experimental.component.ts +18 -0
  503. package/testing-base/src/lib/components/mock.list-header.component.ts +18 -0
  504. package/testing-base/src/lib/components/mock.list-item.component.ts +33 -0
  505. package/testing-base/src/lib/components/mock.list-section-header.component.ts +20 -0
  506. package/testing-base/src/lib/components/mock.list.component.ts +39 -0
  507. package/testing-base/src/lib/components/mock.loading-overlay.component.ts +21 -0
  508. package/testing-base/src/lib/components/mock.modal-footer.component.ts +21 -0
  509. package/testing-base/src/lib/components/mock.page-footer.component.ts +20 -0
  510. package/testing-base/src/lib/components/mock.page.component.ts +152 -0
  511. package/testing-base/src/lib/components/mock.popover.component.ts +22 -0
  512. package/testing-base/src/lib/components/mock.progress-circle.component.ts +22 -0
  513. package/testing-base/src/lib/components/mock.radio-group.component.ts +27 -0
  514. package/testing-base/src/lib/components/mock.radio.component.ts +23 -0
  515. package/testing-base/src/lib/components/mock.range.component.ts +35 -0
  516. package/testing-base/src/lib/components/mock.reorder-list.component.ts +25 -0
  517. package/testing-base/src/lib/components/mock.router-outlet.component.ts +20 -0
  518. package/testing-base/src/lib/components/mock.section-header.component.ts +18 -0
  519. package/testing-base/src/lib/components/mock.segmented-control.component.ts +29 -0
  520. package/testing-base/src/lib/components/mock.slide-button.component.ts +23 -0
  521. package/testing-base/src/lib/components/mock.slides.component.ts +29 -0
  522. package/testing-base/src/lib/components/mock.spinner.component.ts +18 -0
  523. package/testing-base/src/lib/components/mock.tab-button.component.ts +21 -0
  524. package/testing-base/src/lib/components/mock.tabs.component.ts +18 -0
  525. package/testing-base/src/lib/components/mock.textarea.component.ts +26 -0
  526. package/testing-base/src/lib/components/mock.toggle-button.component.ts +21 -0
  527. package/testing-base/src/lib/components/mock.toggle.component.ts +22 -0
  528. package/testing-base/src/lib/components/mock.web-component-proxies.component.ts +32 -0
  529. package/testing-base/src/lib/directives/index.ts +3 -0
  530. package/testing-base/src/lib/directives/mock.accordion.directive.ts +15 -0
  531. package/testing-base/src/lib/directives/mock.fit-heading.directive.ts +19 -0
  532. package/testing-base/src/lib/directives/mock.theme-color.directive.ts +19 -0
  533. package/testing-base/src/lib/index.ts +4 -0
  534. package/testing-base/src/lib/kirby-testing-base.module.ts +10 -0
  535. package/testing-base/src/lib/mock-components.ts +133 -0
  536. package/testing-base/src/lib/mock-directives.ts +9 -0
  537. package/testing-base/src/public_api.ts +1 -0
  538. package/testing-base/src/tsconfig.json +9 -0
  539. package/testing-jasmine/ng-package.json +3 -0
  540. package/testing-jasmine/src/lib/kirby-testing.module.ts +14 -0
  541. package/testing-jasmine/src/lib/mock-providers.ts +68 -0
  542. package/testing-jasmine/src/public_api.ts +1 -0
  543. package/testing-jasmine/src/tsconfig.json +10 -0
  544. package/testing-jest/ng-package.json +3 -0
  545. package/testing-jest/src/lib/kirby-testing.module.ts +14 -0
  546. package/testing-jest/src/lib/mock-providers.ts +76 -0
  547. package/testing-jest/src/public_api.ts +1 -0
  548. package/testing-jest/src/tsconfig.json +10 -0
  549. package/tsconfig.json +17 -0
  550. package/tsconfig.lib.json +23 -0
  551. package/tsconfig.spec.json +9 -0
  552. package/tslint.json +10 -0
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="icon/calendar" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M17.2803,18.5586 L6.7193,18.5586 C5.4883,18.5586 4.4883,17.5886 4.4883,16.3976 L4.4883,10.3146 L19.5123,10.3146 L19.5123,16.3976 C19.5123,17.5886 18.5103,18.5586 17.2803,18.5586 M6.7193,6.4346 L7.4373,6.4346 L7.4373,6.7076 C7.4373,7.1056 7.7703,7.4286 8.1813,7.4286 C8.5923,7.4286 8.9253,7.1056 8.9253,6.7076 L8.9253,6.4346 L15.0673,6.4346 L15.0673,6.7076 C15.0673,7.1056 15.4003,7.4286 15.8113,7.4286 C16.2213,7.4286 16.5553,7.1056 16.5553,6.7076 L16.5553,6.4346 L17.2803,6.4346 C18.5103,6.4346 19.5123,7.4046 19.5123,8.5966 L19.5123,8.8736 L4.4883,8.8736 L4.4883,8.5966 C4.4883,7.4046 5.4883,6.4346 6.7193,6.4346 M17.2803,4.9936 L16.5553,4.9936 L16.5553,4.7206 C16.5553,4.3226 16.2213,3.9996 15.8113,3.9996 C15.4003,3.9996 15.0673,4.3226 15.0673,4.7206 L15.0673,4.9936 L8.9253,4.9936 L8.9253,4.7206 C8.9253,4.3226 8.5923,3.9996 8.1813,3.9996 C7.7703,3.9996 7.4373,4.3226 7.4373,4.7206 L7.4373,4.9936 L6.7193,4.9936 C4.6683,4.9936 3.0003,6.6096 3.0003,8.5966 L3.0003,16.3976 C3.0003,18.3836 4.6683,19.9996 6.7193,19.9996 L17.2803,19.9996 C19.3313,19.9996 21.0003,18.3836 21.0003,16.3976 L21.0003,8.5966 C21.0003,6.6096 19.3313,4.9936 17.2803,4.9936" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>communication/camera</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="communication/camera" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M14.63,4.4997 C16.116,4.4997 17.364,5.5707 17.675,6.9977 L17.675,6.9977 L18.25,6.9977 C20.042,6.9977 21.5,8.4307 21.5,10.1927 L21.5,10.1927 L21.5,16.3047 C21.5,18.0667 20.042,19.4997 18.25,19.4997 L18.25,19.4997 L5.75,19.4997 C3.958,19.4997 2.5,18.0667 2.5,16.3047 L2.5,16.3047 L2.5,10.1927 C2.5,8.4307 3.958,6.9977 5.75,6.9977 L5.75,6.9977 L6.332,6.9977 C6.656,5.5537 7.895,4.4997 9.37,4.4997 L9.37,4.4997 Z M14.63,5.9997 L9.37,5.9997 C8.477,5.9997 7.75,6.7607 7.75,7.6947 C7.75,8.1087 7.414,8.4977 7,8.4977 L7,8.4977 L5.75,8.4977 C4.785,8.4977 4,9.2587 4,10.1927 L4,10.1927 L4,16.3047 C4,17.2397 4.785,17.9997 5.75,17.9997 L5.75,17.9997 L18.25,17.9997 C19.215,17.9997 20,17.2397 20,16.3047 L20,16.3047 L20,10.1927 C20,9.2587 19.215,8.4977 18.25,8.4977 L18.25,8.4977 L17,8.4977 C16.586,8.4977 16.25,8.1617 16.25,7.7477 C16.25,6.7607 15.523,5.9997 14.63,5.9997 L14.63,5.9997 Z M12,9.7568 C13.778,9.7568 15.225,11.1868 15.225,12.9448 C15.225,14.7018 13.778,16.1318 12,16.1318 C10.222,16.1318 8.775,14.7018 8.775,12.9448 C8.775,11.1868 10.222,9.7568 12,9.7568 Z M12,11.2568 C11.049,11.2568 10.275,12.0138 10.275,12.9448 C10.275,13.8748 11.049,14.6318 12,14.6318 C12.951,14.6318 13.725,13.8748 13.725,12.9448 C13.725,12.0138 12.951,11.2568 12,11.2568 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="checkbox-outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M14.8916,8.9429 C15.1496,8.6329 15.6086,8.5929 15.9166,8.8499 C16.2246,9.1069 16.2666,9.5649 16.0096,9.8739 L11.6916,15.0579 C11.5476,15.2309 11.3406,15.3189 11.1326,15.3189 C10.9686,15.3189 10.8036,15.2639 10.6676,15.1509 L8.0836,12.9989 C7.7746,12.7409 7.7336,12.2829 7.9906,11.9749 C8.2466,11.6649 8.7056,11.6239 9.0146,11.8809 L11.0396,13.5679 L14.8916,8.9429 Z M18.5459,16.3633 L18.5459,7.6363 C18.5459,6.4333 17.5669,5.4543 16.3629,5.4543 L7.6359,5.4543 C6.4329,5.4543 5.4549,6.4333 5.4549,7.6363 L5.4549,16.3633 C5.4549,17.5663 6.4329,18.5453 7.6359,18.5453 L16.3629,18.5453 C17.5669,18.5453 18.5459,17.5663 18.5459,16.3633 Z M16.3629,4.0003 C18.3679,4.0003 19.9999,5.6313 19.9999,7.6363 L19.9999,16.3633 C19.9999,18.3683 18.3679,20.0003 16.3629,20.0003 L7.6359,20.0003 C5.6309,20.0003 3.9999,18.3683 3.9999,16.3633 L3.9999,7.6363 C3.9999,5.6313 5.6309,4.0003 7.6359,4.0003 L16.3629,4.0003 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="checkbox" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M16.4102,9.6611 L11.6612,15.3631 C11.5022,15.5531 11.2752,15.6511 11.0462,15.6511 C10.8662,15.6511 10.6842,15.5911 10.5342,15.4661 L7.6922,13.0991 C7.3522,12.8151 7.3062,12.3111 7.5892,11.9721 C7.8712,11.6321 8.3762,11.5861 8.7162,11.8691 L10.9442,13.7231 L15.1812,8.6371 C15.4652,8.2961 15.9692,8.2521 16.3082,8.5341 C16.6462,8.8171 16.6932,9.3211 16.4102,9.6611 M16.8002,4.0001 L7.2002,4.0001 C5.4322,4.0001 4.0002,5.4321 4.0002,7.2001 L4.0002,16.8001 C4.0002,18.5671 5.4322,20.0001 7.2002,20.0001 L16.8002,20.0001 C18.5672,20.0001 20.0002,18.5671 20.0002,16.8001 L20.0002,7.2001 C20.0002,5.4321 18.5672,4.0001 16.8002,4.0001" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="currentColor" fill-rule="nonzero" d="M10.288 18.5c-.276 0-.546-.1-.76-.284l-5.1-4.38a1.25 1.25 0 0 1-.153-1.724c.42-.52 1.17-.59 1.672-.157l4.188 3.597L17.9 5.94c.42-.52 1.17-.59 1.672-.157a1.25 1.25 0 0 1 .153 1.723L11.2 18.059a1.174 1.174 0 0 1-.912.44"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="ur" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M19.263,14 L11.738,14 C11.331,14 11,13.677 11,13.277 L11,3.724 C11,3.324 11.331,3 11.738,3 C12.145,3 12.475,3.324 12.475,3.724 L12.475,12.554 L19.263,12.554 C19.67,12.554 20,12.878 20,13.277 C20,13.677 19.67,14 19.263,14" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="close" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M13.0996,12 L18.7726,6.328 C19.0766,6.024 19.0766,5.532 18.7726,5.228 C18.4686,4.924 17.9766,4.924 17.6716,5.228 L11.9996,10.9 L6.3276,5.228 C6.0236,4.924 5.5316,4.924 5.2276,5.228 C4.9236,5.532 4.9236,6.024 5.2276,6.328 L10.9006,12 L5.2276,17.672 C4.9236,17.977 4.9236,18.469 5.2276,18.772 C5.3796,18.924 5.5786,19 5.7776,19 C5.9766,19 6.1756,18.924 6.3276,18.772 L11.9996,13.1 L17.6716,18.772 C17.8246,18.924 18.0226,19 18.2226,19 C18.4216,19 18.6206,18.924 18.7726,18.772 C19.0766,18.469 19.0766,17.977 18.7726,17.672 L13.0996,12 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="cog" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M11.9999,13.8486 C13.0249,13.8486 13.8589,13.0206 13.8589,11.9996 C13.8589,10.9806 13.0249,10.1516 11.9999,10.1516 C10.9749,10.1516 10.1419,10.9806 10.1419,11.9996 C10.1419,13.0206 10.9749,13.8486 11.9999,13.8486 Z M11.9999,8.6556 C13.8549,8.6556 15.3639,10.1566 15.3639,11.9996 C15.3639,13.8446 13.8549,15.3446 11.9999,15.3446 C10.1459,15.3446 8.6369,13.8446 8.6369,11.9996 C8.6369,10.1566 10.1459,8.6556 11.9999,8.6556 Z M18.9335,14.7012 C18.9955,14.5942 19.0105,14.4712 18.9785,14.3522 C18.9465,14.2352 18.8715,14.1392 18.7665,14.0812 L17.9685,13.6332 C17.6975,13.4792 17.5485,13.1762 17.5955,12.8702 C17.6415,12.5602 17.6835,12.2852 17.6835,12.0182 C17.6835,11.7252 17.6525,11.4202 17.5815,11.0262 C17.5265,10.7172 17.6715,10.4052 17.9455,10.2472 L18.7065,9.8082 C18.8165,9.7472 18.8615,9.6492 18.8795,9.5792 C18.9125,9.4582 18.8935,9.3282 18.8265,9.2122 L17.7155,7.3042 C17.6515,7.1922 17.5505,7.1112 17.4335,7.0782 C17.3725,7.0592 17.2535,7.0412 17.1365,7.1082 L16.2755,7.6042 C16.0095,7.7562 15.6825,7.7332 15.4395,7.5512 C14.9965,7.2122 14.5295,6.9472 14.0495,6.7622 C13.7605,6.6502 13.5695,6.3732 13.5695,6.0642 L13.5695,5.4542 C13.5695,5.2012 13.3625,4.9962 13.1085,4.9962 L10.8925,4.9962 C10.6375,4.9962 10.4315,5.2012 10.4315,5.4542 L10.4315,6.0642 C10.4315,6.3732 10.2405,6.6502 9.9515,6.7622 C9.4735,6.9462 9.0075,7.2102 8.5655,7.5472 C8.3255,7.7282 7.9995,7.7502 7.7375,7.6042 L6.8065,7.0812 C6.6755,7.0072 6.5465,7.0262 6.4845,7.0462 C6.3665,7.0802 6.2665,7.1592 6.2045,7.2682 L5.1135,9.1872 C5.0515,9.2972 5.0345,9.4222 5.0655,9.5402 C5.0825,9.6032 5.1305,9.7222 5.2615,9.7962 L6.0485,10.2392 C6.3275,10.3952 6.4755,10.7102 6.4185,11.0212 C6.3485,11.4102 6.3165,11.7262 6.3165,12.0182 C6.3165,12.2742 6.3565,12.5392 6.3985,12.8182 C6.4455,13.1222 6.3045,13.4592 6.0375,13.6132 L5.2205,14.0832 C5.1205,14.1402 5.0495,14.2342 5.0195,14.3472 C4.9895,14.4672 5.0065,14.5912 5.0705,14.6982 L6.1795,16.6052 C6.3065,16.8262 6.5795,16.9062 6.7915,16.7832 L7.5915,16.3222 C7.7095,16.2552 7.8385,16.2222 7.9685,16.2222 C8.1375,16.2222 8.3055,16.2782 8.4435,16.3892 C8.9215,16.7752 9.4285,17.0732 9.9515,17.2742 C10.2415,17.3872 10.4315,17.6632 10.4315,17.9722 L10.4315,18.5612 C10.4315,18.8052 10.6375,19.0042 10.8925,19.0042 L13.1085,19.0042 C13.3625,19.0042 13.5695,18.8052 13.5695,18.5612 L13.5695,17.9722 C13.5695,17.6632 13.7595,17.3872 14.0495,17.2742 C14.5685,17.0742 15.0725,16.7792 15.5455,16.3982 C15.7875,16.2052 16.1215,16.1782 16.3905,16.3292 L17.2225,16.7982 C17.4385,16.9202 17.7175,16.8402 17.8445,16.6202 L18.9335,14.7012 Z M20.4295,13.9562 C20.5675,14.4592 20.5015,14.9842 20.2435,15.4372 L19.1545,17.3562 C18.6205,18.2932 17.4195,18.6282 16.4815,18.0992 L16.0785,17.8732 C15.7535,18.0992 15.4175,18.2972 15.0745,18.4612 L15.0745,18.5612 C15.0745,19.6302 14.1925,20.5002 13.1085,20.5002 L10.8925,20.5002 C9.8085,20.5002 8.9265,19.6302 8.9265,18.5612 L8.9265,18.4622 C8.5795,18.2962 8.2415,18.0962 7.9135,17.8662 L7.5455,18.0782 C6.6175,18.6122 5.4195,18.2872 4.8765,17.3552 L3.7675,15.4482 C3.5055,14.9982 3.4325,14.4742 3.5635,13.9732 C3.6945,13.4692 4.0155,13.0472 4.4675,12.7872 L4.8455,12.5702 C4.8255,12.3892 4.8115,12.2092 4.8115,12.0182 C4.8115,11.7862 4.8265,11.5472 4.8575,11.2882 L4.5205,11.0982 C4.0685,10.8452 3.7455,10.4262 3.6115,9.9222 C3.4785,9.4242 3.5465,8.9012 3.8035,8.4502 L4.8955,6.5322 C5.1515,6.0812 5.5665,5.7532 6.0635,5.6092 C6.5695,5.4642 7.0945,5.5242 7.5465,5.7782 L8.0605,6.0672 C8.3425,5.8812 8.6315,5.7162 8.9265,5.5752 L8.9265,5.4542 C8.9265,4.3772 9.8085,3.5002 10.8925,3.5002 L13.1085,3.5002 C14.1925,3.5002 15.0745,4.3772 15.0745,5.4542 L15.0745,5.5752 C15.3705,5.7162 15.6595,5.8812 15.9415,6.0682 L16.3825,5.8132 C16.8295,5.5562 17.3545,5.4962 17.8575,5.6412 C18.3465,5.7842 18.7585,6.1092 19.0185,6.5552 L20.1285,8.4632 C20.3975,8.9242 20.4695,9.4572 20.3325,9.9652 C20.2035,10.4512 19.8935,10.8562 19.4605,11.1042 L19.1425,11.2882 C19.1735,11.5482 19.1885,11.7862 19.1885,12.0182 C19.1885,12.2142 19.1745,12.4002 19.1545,12.5802 L19.5065,12.7772 L19.5065,12.7782 C19.9625,13.0342 20.2895,13.4532 20.4295,13.9562 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>copy</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="copy" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M17.2996,16.981 L9.6046,16.981 C8.9676,16.981 8.4486,16.44 8.4486,15.776 L8.4486,5.689 C8.4486,5.024 8.9676,4.484 9.6046,4.484 L14.9776,4.484 L14.9776,6.836 C14.9776,7.534 15.5706,8.101 16.3006,8.101 L18.4876,8.101 L18.4556,15.776 C18.4556,16.44 17.9366,16.981 17.2996,16.981 L17.2996,16.981 Z M14.3606,19.516 L6.6656,19.516 C6.0286,19.516 5.5096,18.976 5.5096,18.311 L5.5096,8.224 C5.5096,7.56 6.0286,7.02 6.6656,7.02 L6.9396,7.02 L6.9396,15.776 C6.9396,17.258 8.1356,18.464 9.6046,18.464 L15.4876,18.464 C15.4106,19.053 14.9456,19.516 14.3606,19.516 L14.3606,19.516 Z M17.6386,6.617 L16.4866,6.617 L16.4866,5.486 L17.6386,6.617 Z M19.4996,6.347 L16.6146,3.517 C16.2956,3.189 15.8506,3 15.3926,3 L9.6046,3 C8.1876,3 7.0356,4.125 6.9546,5.536 L6.6656,5.536 C5.1956,5.536 3.9996,6.741 3.9996,8.224 L3.9996,18.311 C3.9996,19.794 5.1956,21.001 6.6656,21.001 L14.3606,21.001 C15.7786,21.001 16.9296,19.876 17.0106,18.464 L17.2996,18.464 C18.7686,18.464 19.9646,17.258 19.9646,15.779 L19.9996,7.558 C19.9996,7.107 19.8266,6.681 19.4996,6.347 L19.4996,6.347 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="edit" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M18.0169,8.1354 L17.8939,8.2584 L15.7199,6.0804 L15.8419,5.9564 C16.1329,5.6664 16.5189,5.5054 16.9299,5.5054 C17.3409,5.5054 17.7269,5.6664 18.0169,5.9564 C18.3069,6.2484 18.4679,6.6354 18.4679,7.0464 C18.4679,7.4574 18.3069,7.8434 18.0169,8.1354 L18.0169,8.1354 Z M9.4709,16.6984 L7.2959,14.5194 L14.6359,7.1654 L16.8109,9.3434 L9.4709,16.6984 Z M6.4689,15.8614 L8.1309,17.5274 L5.6749,18.3224 L6.4689,15.8614 Z M19.0999,4.8714 C17.9409,3.7094 15.9179,3.7094 14.7589,4.8714 L5.6709,13.9764 C5.4729,14.1764 5.3229,14.4214 5.2359,14.6914 L4.0669,18.3154 C3.9129,18.7784 4.0309,19.2804 4.3749,19.6244 C4.6209,19.8694 4.9449,19.9994 5.2749,19.9994 C5.4089,19.9994 5.5439,19.9794 5.6749,19.9354 L9.2999,18.7614 C9.5669,18.6754 9.8129,18.5244 10.0139,18.3234 L19.0999,9.2204 C19.6799,8.6394 19.9999,7.8674 19.9999,7.0464 C19.9999,6.2244 19.6799,5.4524 19.0999,4.8714 L19.0999,4.8714 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="filter" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M7.9227,5.4544 L10.8747,11.0124 C11.1537,11.5394 11.3017,12.1334 11.3017,12.7314 L11.3017,17.7874 L12.6987,16.6944 L12.6987,12.7314 C12.6987,12.1324 12.8467,11.5374 13.1267,11.0114 L16.0777,5.4544 L7.9227,5.4544 Z M10.5817,20.0004 C10.4737,20.0004 10.3657,19.9754 10.2647,19.9254 C10.0187,19.8034 9.8617,19.5504 9.8617,19.2724 L9.8617,12.7314 C9.8617,12.3724 9.7727,12.0164 9.6047,11.6994 L6.0847,5.0714 C5.9657,4.8454 5.9727,4.5734 6.1027,4.3534 C6.2317,4.1344 6.4667,4.0004 6.7197,4.0004 L17.2797,4.0004 C17.5337,4.0004 17.7677,4.1344 17.8977,4.3534 C18.0277,4.5734 18.0337,4.8454 17.9147,5.0714 L14.3957,11.6994 C14.2277,12.0154 14.1387,12.3724 14.1387,12.7314 L14.1387,17.0504 C14.1387,17.2744 14.0357,17.4874 13.8597,17.6254 L11.0227,19.8474 C10.8947,19.9474 10.7387,20.0004 10.5817,20.0004 L10.5817,20.0004 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>flag</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="flag" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M16.4897,11.5269 C15.3567,11.7389 13.6827,11.5229 12.0587,11.3109 C10.8637,11.1559 9.7047,11.0059 8.6807,11.0059 C8.2657,11.0059 7.8737,11.0299 7.5107,11.0899 L7.5107,6.2009 C8.4677,5.7849 10.4687,6.0589 12.2537,6.3049 C13.7117,6.5059 15.2107,6.7109 16.4897,6.6329 L16.4897,11.5269 Z M17.7197,5.2149 C17.5447,5.0739 17.3147,5.0179 17.0907,5.0649 C15.9077,5.3069 14.1557,5.0669 12.4637,4.8339 C9.9507,4.4879 7.5787,4.1619 6.2747,5.2179 C6.1007,5.3589 5.9997,5.5689 5.9997,5.7909 L5.9997,5.9319 L5.9997,12.0889 L5.9997,18.7569 C5.9997,19.1679 6.3387,19.4999 6.7557,19.4999 C7.1727,19.4999 7.5107,19.1679 7.5107,18.7569 L7.5107,12.6029 C8.5237,12.3499 10.2167,12.5699 11.8617,12.7839 C13.0547,12.9379 14.2717,13.0959 15.3677,13.0959 C16.1657,13.0959 16.8997,13.0129 17.5127,12.7829 C17.8057,12.6729 18.0007,12.3969 18.0007,12.0889 L18.0007,5.7909 C18.0007,5.5679 17.8977,5.3559 17.7197,5.2149 L17.7197,5.2149 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="flash-off" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M3.9705,11.9998 C3.9705,9.6418 4.9985,7.5248 6.6225,6.0548 L9.1965,9.3638 L8.6575,11.2208 C8.5535,11.5828 8.6225,11.9618 8.8485,12.2618 C9.0745,12.5628 9.4185,12.7348 9.7945,12.7348 L11.3705,12.7348 L10.5955,18.0808 C10.5435,18.4338 10.7545,18.7728 11.0945,18.8848 C11.1695,18.9098 11.2465,18.9208 11.3225,18.9208 C11.5885,18.9208 11.8415,18.7748 11.9715,18.5298 L13.7365,15.2008 L16.4445,18.6828 C15.1695,19.5318 13.6425,20.0298 11.9995,20.0298 C7.5725,20.0298 3.9705,16.4278 3.9705,11.9998 M12.9285,11.8038 C12.8995,11.6978 12.8465,11.6008 12.7765,11.5198 C12.7055,11.4378 12.6165,11.3708 12.5145,11.3258 C12.4395,11.2928 12.3585,11.2728 12.2735,11.2668 C12.2515,11.2648 12.2325,11.2658 12.2065,11.2648 L10.1765,11.2648 L11.5445,6.5488 L13.0355,6.5488 L12.4085,9.1248 C12.3555,9.3438 12.4055,9.5758 12.5445,9.7528 C12.6845,9.9308 12.8975,10.0338 13.1235,10.0338 L14.8095,10.0338 L12.6595,14.0928 L12.9455,12.1178 C12.9495,12.0968 12.9515,12.0748 12.9535,12.0528 C12.9595,11.9668 12.9505,11.8838 12.9285,11.8038 M20.0305,11.9998 C20.0305,14.2568 19.0895,16.2968 17.5855,17.7568 L14.4905,13.7768 L16.3315,10.3008 C16.5285,9.9308 16.5155,9.4948 16.2985,9.1358 C16.0825,8.7778 15.7035,8.5638 15.2845,8.5638 L14.0585,8.5638 L14.5305,6.6208 C14.6445,6.2618 14.5785,5.8668 14.3565,5.5628 C14.1345,5.2598 13.7775,5.0788 13.4015,5.0788 L11.3295,5.0788 C10.8055,5.0788 10.3385,5.4298 10.1925,5.9328 L9.7025,7.6198 L7.7975,5.1708 C9.0215,4.4148 10.4585,3.9708 11.9995,3.9708 C16.4275,3.9708 20.0305,7.5718 20.0305,11.9998 M21.4995,11.9998 C21.4995,6.7618 17.2385,2.4998 11.9995,2.4998 C9.8645,2.4998 7.8975,3.2168 6.3095,4.4108 C6.3015,4.4168 6.2925,4.4168 6.2845,4.4228 C6.2785,4.4278 6.2765,4.4358 6.2695,4.4398 C3.9845,6.1768 2.4995,8.9148 2.4995,11.9998 C2.4995,17.2378 6.7615,21.4998 11.9995,21.4998 C14.2325,21.4998 16.2835,20.7218 17.9065,19.4278 C17.9165,19.4198 17.9295,19.4178 17.9405,19.4088 C17.9475,19.4038 17.9495,19.3958 17.9565,19.3898 C20.1155,17.6458 21.4995,14.9828 21.4995,11.9998" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="flash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M11.5487,17.063 L12.2617,12.121 C12.2657,12.099 12.2677,12.077 12.2697,12.055 C12.2757,11.967 12.2667,11.881 12.2447,11.801 C12.2157,11.691 12.1607,11.591 12.0887,11.508 C12.0167,11.424 11.9267,11.356 11.8227,11.311 C11.7477,11.278 11.6647,11.257 11.5787,11.251 C11.5567,11.249 11.5357,11.249 11.5107,11.249 L8.0227,11.249 L10.1987,3.503 L13.1777,3.503 L12.1407,7.785 C12.0867,8.009 12.1377,8.245 12.2787,8.427 C12.4217,8.608 12.6377,8.714 12.8667,8.714 L15.9487,8.714 L11.5487,17.063 Z M17.2957,7.9 C17.0377,7.468 16.5837,7.21 16.0827,7.21 L13.8197,7.21 L14.6307,3.852 C14.7677,3.421 14.6897,2.947 14.4237,2.583 C14.1577,2.218 13.7317,2 13.2807,2 L10.1987,2 C9.5727,2 9.0137,2.422 8.8397,3.026 L6.5567,10.933 C6.4317,11.367 6.5147,11.823 6.7847,12.184 C7.0547,12.544 7.4667,12.751 7.9167,12.751 L10.6597,12.751 L9.4487,21.141 C9.3967,21.501 9.6107,21.849 9.9567,21.962 C10.0337,21.988 10.1117,22 10.1887,22 C10.4597,22 10.7167,21.851 10.8497,21.601 L17.3337,9.299 C17.5687,8.854 17.5547,8.332 17.2957,7.9 L17.2957,7.9 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="Udlansk-betaling" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M4.614,14.0642 C5.428,15.7702 6.981,17.0632 8.867,17.5432 C8.36,16.6972 7.963,15.7502 7.698,14.7362 C6.539,14.5882 5.501,14.3602 4.614,14.0642 Z M9.269,5.0682 C7.371,5.4262 5.766,6.5992 4.842,8.2032 C5.605,8.4772 6.561,8.6892 7.626,8.8302 C7.949,7.4312 8.507,6.1442 9.269,5.0682 Z M16.205,8.3362 C15.371,6.8022 13.964,5.6822 12.301,5.2092 C13.01,6.2492 13.541,7.4822 13.851,8.8282 C14.723,8.7102 15.523,8.5462 16.205,8.3362 Z M9.12,8.9762 C9.643,9.0092 10.178,9.0302 10.727,9.0302 C11.276,9.0302 11.815,9.0112 12.34,8.9782 C12.016,7.6752 11.469,6.5042 10.734,5.5762 C9.99,6.5132 9.44,7.6812 9.12,8.9762 Z M7.415,13.2272 C7.346,12.6962 7.3,12.1572 7.3,11.6092 C7.3,11.1532 7.331,10.7032 7.38,10.2582 C6.198,10.0972 5.128,9.8552 4.263,9.5412 C4.09,10.1162 3.994,10.7232 3.994,11.3532 C3.994,11.6692 4.025,11.9792 4.071,12.2842 C4.89,12.6972 6.065,13.0202 7.415,13.2272 Z M10.974,17.9372 C11.133,18.0702 11.239,18.2602 11.239,18.4802 C11.239,18.8002 11.022,19.0642 10.725,19.1602 C10.716,19.1632 10.706,19.1632 10.697,19.1662 C10.631,19.1842 10.565,19.2062 10.492,19.2062 C10.485,19.2062 10.478,19.2052 10.471,19.2052 C10.469,19.2052 10.467,19.2062 10.465,19.2062 C10.462,19.2062 10.459,19.2042 10.456,19.2042 C6.066,19.1852 2.5,15.6712 2.5,11.3532 C2.5,7.0322 6.07,3.5162 10.464,3.5012 L10.468,3.5012 C10.476,3.5012 10.484,3.5002 10.492,3.5002 C10.61,3.5002 10.724,3.5202 10.841,3.5252 C10.976,3.5012 11.113,3.5062 11.242,3.5542 C14.153,3.8232 16.702,5.6132 17.857,8.2992 C17.97,8.5622 17.906,8.8492 17.725,9.0512 C17.657,9.2492 17.512,9.4202 17.297,9.5022 C15.656,10.1252 13.262,10.4812 10.727,10.4812 C10.093,10.4812 9.47,10.4562 8.864,10.4122 C8.822,10.8062 8.794,11.2042 8.794,11.6092 C8.794,14.0712 9.589,16.3692 10.974,17.9372 Z M13.1663,15.2087 C13.4583,15.4917 13.4583,15.9507 13.1663,16.2347 C13.0203,16.3767 12.8293,16.4467 12.6383,16.4467 C12.4473,16.4467 12.2563,16.3767 12.1103,16.2347 L9.9633,14.1487 C9.6723,13.8657 9.6723,13.4057 9.9633,13.1227 L12.0763,11.0717 C12.3683,10.7887 12.8403,10.7887 13.1323,11.0717 C13.4243,11.3547 13.4243,11.8137 13.1323,12.0977 L12.2773,12.9277 L17.3323,12.9277 C17.7453,12.9277 18.0793,13.2527 18.0793,13.6527 C18.0793,14.0537 17.7453,14.3787 17.3323,14.3787 L12.3123,14.3787 L13.1663,15.2087 Z M21.2815,17.2097 C21.5725,17.4927 21.5725,17.9517 21.2815,18.2357 L19.1695,20.2877 C19.0225,20.4297 18.8325,20.4997 18.6405,20.4997 C18.4495,20.4997 18.2585,20.4297 18.1125,20.2877 C17.8205,20.0037 17.8205,19.5447 18.1125,19.2617 L18.9665,18.4327 L13.9125,18.4327 C13.5005,18.4327 13.1655,18.1067 13.1655,17.7067 C13.1655,17.3067 13.5005,16.9807 13.9125,16.9807 L18.9335,16.9807 L18.0785,16.1507 C17.7865,15.8667 17.7865,15.4077 18.0785,15.1247 C18.3705,14.8417 18.8435,14.8417 19.1355,15.1247 L21.2815,17.2097 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="help" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M12.1653,5.0002 C15.3613,5.0002 16.5003,6.9502 16.5003,8.7742 C16.5003,10.5022 15.4033,11.3572 14.4363,12.1112 C13.4663,12.8692 12.6263,13.5222 12.6493,15.0652 C12.6553,15.4732 12.3303,15.8092 11.9213,15.8142 L11.9113,15.8142 C11.5083,15.8142 11.1783,15.4902 11.1723,15.0862 C11.1393,12.8112 12.4643,11.7772 13.5283,10.9472 C14.4833,10.2032 15.0223,9.7352 15.0223,8.7742 C15.0223,7.7262 14.5263,6.4772 12.1653,6.4772 C9.6443,6.4772 8.9773,8.1482 8.9773,9.0322 C8.9773,9.4392 8.6463,9.7702 8.2383,9.7702 C7.8313,9.7702 7.5003,9.4392 7.5003,9.0322 C7.5003,7.4112 8.7423,5.0002 12.1653,5.0002 Z M12.0002,17.2277 C12.4892,17.2277 12.8862,17.6237 12.8862,18.1137 C12.8862,18.6037 12.4892,18.9997 12.0002,18.9997 C11.5102,18.9997 11.1132,18.6037 11.1132,18.1137 C11.1132,17.6237 11.5102,17.2277 12.0002,17.2277 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="s-ion-icon">
2
+ <g id="home" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
3
+ <path d="M14.6919,18.9763 L18.4899,18.9763 L18.4899,9.9693 C18.4899,9.8543 18.4369,9.7453 18.3459,9.6773 L12.2139,5.0973 C12.0869,5.0013 11.9139,5.0023 11.7859,5.0973 L11.7859,5.0973 L5.6549,9.6773 C5.5639,9.7453 5.5089,9.8553 5.5089,9.9693 L5.5089,18.9763 L9.4519,18.9763 L9.4519,14.4543 C9.4519,14.0343 9.7899,13.6923 10.2069,13.6923 L13.9379,13.6923 C14.3549,13.6923 14.6919,14.0343 14.6919,14.4543 L14.6919,18.9763 Z M18.6889,20.5003 L14.4949,20.5003 C13.7719,20.5003 13.1839,19.9063 13.1839,19.1753 L13.1839,15.2153 L10.9619,15.2153 L10.9619,19.1753 C10.9619,19.9063 10.3729,20.5003 9.6499,20.5003 L5.3119,20.5003 C4.5889,20.5003 3.9999,19.9063 3.9999,19.1753 L3.9999,9.9693 C3.9999,9.3733 4.2839,8.8063 4.7579,8.4533 L10.8879,3.8733 C11.5529,3.3763 12.4479,3.3753 13.1119,3.8733 L19.2429,8.4533 C19.7169,8.8063 19.9999,9.3733 19.9999,9.9693 L19.9999,19.1753 C19.9999,19.9063 19.4109,20.5003 18.6889,20.5003 L18.6889,20.5003 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>inbox-outline</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="inbox-outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M20.005,15.727 C20.005,16.975 18.999,17.991 17.763,17.991 L6.238,17.991 C5.001,17.991 3.995,16.975 3.995,15.727 L3.995,8.274 C3.995,7.825 4.129,7.409 4.353,7.056 L10.956,12.145 C11.266,12.384 11.64,12.503 12.015,12.503 C12.376,12.503 12.738,12.392 13.042,12.168 L19.744,7.236 C19.905,7.548 20.005,7.898 20.005,8.274 L20.005,15.727 Z M17.763,6.01 C18.071,6.01 18.365,6.073 18.633,6.187 L12.162,10.949 C12.073,11.015 11.952,11.014 11.863,10.945 L5.596,6.115 C5.801,6.053 6.013,6.01 6.238,6.01 L17.763,6.01 Z M20.531,5.762 C20.526,5.753 20.525,5.742 20.519,5.733 C20.506,5.716 20.488,5.708 20.475,5.693 C19.793,4.963 18.833,4.5 17.763,4.5 L6.238,4.5 C5.343,4.5 4.532,4.832 3.888,5.363 C3.836,5.392 3.794,5.438 3.748,5.48 C2.988,6.171 2.5,7.162 2.5,8.274 L2.5,15.727 C2.5,17.807 4.177,19.5 6.238,19.5 L17.763,19.5 C19.823,19.5 21.5,17.807 21.5,15.727 L21.5,8.274 C21.5,7.306 21.127,6.431 20.531,5.762 L20.531,5.762 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>inbox</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="inbox" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M3.1638,6.2989 L10.9538,12.3079 C11.2648,12.5449 11.6408,12.6629 12.0168,12.6629 C12.3798,12.6629 12.7428,12.5529 13.0488,12.3289 L13.0488,12.3289 L20.9588,6.5249 C21.2938,7.1099 21.4998,7.7779 21.4998,8.4999 L21.4998,8.4999 L21.4998,15.4999 C21.4998,17.7089 19.7088,19.4999 17.4998,19.4999 L17.4998,19.4999 L6.4998,19.4999 C4.2908,19.4999 2.4998,17.7089 2.4998,15.4999 L2.4998,15.4999 L2.4998,8.4999 C2.4998,7.6859 2.7468,6.9309 3.1638,6.2989 L3.1638,6.2989 Z M17.5001,4.4999 C18.4421,4.4999 19.2961,4.8389 19.9791,5.3839 L19.9791,5.3839 L12.1631,11.1189 C12.0741,11.1839 11.9531,11.1819 11.8671,11.1169 L11.8671,11.1169 L4.2201,5.2199 C4.8671,4.7679 5.6511,4.4999 6.5001,4.4999 L6.5001,4.4999 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>information</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="information" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M12.4999,8.8219 C12.9139,8.8219 13.2499,9.1639 13.2499,9.5849 L13.2499,18.7369 C13.2499,19.1579 12.9139,19.4999 12.4999,19.4999 C12.0859,19.4999 11.7499,19.1579 11.7499,18.7369 L11.7499,9.5849 C11.7499,9.1639 12.0859,8.8219 12.4999,8.8219 Z M12.4999,4.4996 C12.9139,4.4996 13.2499,4.8416 13.2499,5.2626 C13.2499,5.6836 12.9139,6.0256 12.4999,6.0256 C12.0859,6.0256 11.7499,5.6836 11.7499,5.2626 C11.7499,4.8416 12.0859,4.4996 12.4999,4.4996 Z" id="ICON-COLOR" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="s-ion-icon">
2
+ <g id="investment" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
3
+ <path d="M21.974,7.1878 C21.887,6.6588 21.594,6.1948 21.149,5.8808 C20.703,5.5668 20.15,5.4408 19.617,5.5258 C19.074,5.6108 18.599,5.8968 18.276,6.3308 C17.746,7.0448 17.779,7.9838 18.278,8.6658 L16.113,11.4778 C15.276,11.1928 14.315,11.4528 13.772,12.1868 C13.762,12.2018 13.755,12.2188 13.744,12.2338 L10.752,11.1408 C10.682,10.6108 10.402,10.1078 9.924,9.7708 C9.003,9.1228 7.715,9.3248 7.052,10.2198 C6.596,10.8348 6.559,11.6148 6.872,12.2558 L4.787,14.6268 C4.021,14.3438 3.123,14.5208 2.538,15.1438 C2.168,15.5398 1.977,16.0518 2.002,16.5878 C2.027,17.1228 2.265,17.6158 2.67,17.9758 C3.052,18.3158 3.54,18.5008 4.054,18.5008 C4.086,18.5008 4.119,18.5008 4.15,18.4988 C4.699,18.4738 5.206,18.2428 5.575,17.8468 C5.946,17.4528 6.136,16.9398 6.111,16.4048 C6.098,16.1138 6.017,15.8378 5.885,15.5868 L7.952,13.2348 C8.2,13.3328 8.455,13.3978 8.715,13.3978 C9.353,13.3978 9.982,13.1108 10.385,12.5698 C10.39,12.5618 10.393,12.5528 10.399,12.5458 L13.406,13.6448 C13.483,14.1648 13.764,14.6538 14.233,14.9848 C14.597,15.2418 15.019,15.3648 15.436,15.3648 C16.074,15.3648 16.704,15.0768 17.105,14.5358 C17.587,13.8858 17.604,13.0508 17.231,12.3918 C17.248,12.3748 17.27,12.3678 17.285,12.3488 L19.52,9.4448 C19.659,9.4738 19.799,9.5078 19.94,9.5078 C20.578,9.5078 21.208,9.2208 21.609,8.6798 C21.932,8.2458 22.061,7.7158 21.974,7.1878 L15.436,13.2348" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="currentColor" fill-rule="nonzero" d="M10.056 4.5c1.178 0 2.136.967 2.136 2.156v10.687c0 1.19-.958 2.156-2.136 2.156h-5.92A2.148 2.148 0 0 1 2 17.343V6.656C2 5.467 2.958 4.5 4.136 4.5h5.92zm0 1.268h-5.92a.884.884 0 0 0-.88.888v10.687c0 .49.395.888.88.888h5.92a.884.884 0 0 0 .879-.888V6.656a.884.884 0 0 0-.88-.888zm6.99 6.205c1.178 0 2.136.967 2.136 2.157v1.656a2.148 2.148 0 0 1-2.136 2.156h-1.641a2.148 2.148 0 0 1-2.136-2.156V14.13c0-1.19.958-2.157 2.136-2.157h1.64zm0 1.268h-1.641a.885.885 0 0 0-.88.889v1.656c0 .489.395.888.88.888h1.64c.486 0 .88-.399.88-.888V14.13a.885.885 0 0 0-.88-.889zm2.818-8.182A2.15 2.15 0 0 1 22 7.216v1.656a2.15 2.15 0 0 1-2.137 2.157h-4.46a2.148 2.148 0 0 1-2.135-2.157V7.216c0-1.189.958-2.157 2.136-2.157h4.459zm0 1.27h-4.46a.885.885 0 0 0-.88.887v1.656c0 .49.396.89.88.89h4.46c.485 0 .88-.4.88-.89V7.216a.885.885 0 0 0-.88-.888z"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="link" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M19.7469,3.4995 C20.1629,3.4995 20.4999,3.8405 20.4999,4.2595 L20.4999,7.7765 C20.4999,8.1955 20.1629,8.5355 19.7469,8.5355 C19.3309,8.5355 18.9929,8.1955 18.9929,7.7765 L18.9929,6.0615 L13.3049,11.7945 C13.1579,11.9425 12.9649,12.0175 12.7719,12.0175 C12.5789,12.0175 12.3869,11.9425 12.2389,11.7945 C11.9449,11.4975 11.9449,11.0175 12.2389,10.7215 L17.8979,5.0185 L16.1999,5.0185 C15.7839,5.0185 15.4469,4.6785 15.4469,4.2595 C15.4469,3.8405 15.7839,3.4995 16.1999,3.4995 L19.7469,3.4995 Z M18.3046,9.9117 C18.7206,9.9117 19.0586,10.2517 19.0586,10.6707 L19.0586,16.8077 C19.0586,18.8437 17.2806,20.4997 15.0936,20.4997 L7.4646,20.4997 C5.2796,20.4997 3.4996,18.8437 3.4996,16.8077 L3.4996,8.5147 C3.4996,6.4767 5.2796,4.8207 7.4646,4.8207 L13.3426,4.8207 C13.7586,4.8207 14.0966,5.1607 14.0966,5.5797 C14.0966,5.9987 13.7586,6.3387 13.3426,6.3387 L7.4646,6.3387 C6.1096,6.3387 5.0066,7.3137 5.0066,8.5147 L5.0066,16.8077 C5.0066,18.0067 6.1096,18.9817 7.4646,18.9817 L15.0936,18.9817 C16.4496,18.9817 17.5516,18.0067 17.5516,16.8077 L17.5516,10.6707 C17.5516,10.2517 17.8896,9.9117 18.3046,9.9117 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="log-out" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M14.7197,7.05515726 C17.3197,8.11092458 18.9997,10.548114 18.9997,13.2644362 C18.9997,16.9786104 15.8607,19.9997 11.9997,19.9997 C8.1397,19.9997 4.9997,16.9786104 4.9997,13.2644362 C4.9997,10.63831 6.6027,8.23435061 9.0817,7.13870719 C9.4457,6.97825335 9.8757,7.13016232 10.0437,7.47480578 C10.2117,7.82134811 10.0537,8.23150232 9.6917,8.39195616 C7.7207,9.26258442 6.4487,11.1747385 6.4487,13.2644362 C6.4487,16.2171668 8.9387,18.6192273 11.9997,18.6192273 C15.0617,18.6192273 17.5517,16.2171668 17.5517,13.2644362 C17.5517,11.1025818 16.2177,9.16384359 14.1517,8.32549599 C13.7837,8.17643532 13.6127,7.77007883 13.7687,7.41973878 C13.9267,7.06749987 14.3547,6.90609659 14.7197,7.05515726 Z M12,13.6406 C11.6,13.6406 11.276,13.3156 11.276,12.9136 L11.276,4.7266 C11.276,4.3256 11.6,3.9996 12,3.9996 C12.4,3.9996 12.724,4.3256 12.724,4.7266 L12.724,12.9136 C12.724,13.3156 12.4,13.6406 12,13.6406 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>menu-outline</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="menu-outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M12,3 C16.962,3 21,7.038 21,12 C21,16.963 16.962,21 12,21 C7.038,21 3,16.963 3,12 C3,7.038 7.038,3 12,3 Z M12,4.5 C7.864,4.5 4.5,7.864 4.5,12 C4.5,16.136 7.864,19.5 12,19.5 C16.135,19.5 19.5,16.136 19.5,12 C19.5,7.864 16.135,4.5 12,4.5 Z M16.2026,14.25 C16.6166,14.25 16.9526,14.586 16.9526,15 C16.9526,15.3795 16.6702667,15.6934583 16.3043257,15.7431493 L16.2026,15.75 L7.7976,15.75 C7.3836,15.75 7.0476,15.414 7.0476,15 C7.0476,14.6205 7.32993333,14.3065417 7.69587431,14.2568507 L7.7976,14.25 L16.2026,14.25 Z M16.2026,11.25 C16.6166,11.25 16.9526,11.586 16.9526,12 C16.9526,12.3795 16.6702667,12.6934583 16.3043257,12.7431493 L16.2026,12.75 L7.7976,12.75 C7.3836,12.75 7.0476,12.414 7.0476,12 C7.0476,11.6205 7.32993333,11.3065417 7.69587431,11.2568507 L7.7976,11.25 L16.2026,11.25 Z M7.7976,8.25 L16.2026,8.25 C16.6166,8.25 16.9526,8.586 16.9526,9 C16.9526,9.3795 16.6702667,9.69345833 16.3043257,9.74314931 L16.2026,9.75 L7.7976,9.75 C7.3836,9.75 7.0476,9.414 7.0476,9 C7.0476,8.6205 7.32993333,8.30654167 7.69587431,8.25685069 L7.7976,8.25 L16.2026,8.25 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>menu</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="menu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M16.2025,9.7504 L7.7975,9.7504 C7.3835,9.7504 7.0475,9.4144 7.0475,9.0004 C7.0475,8.5864 7.3835,8.2504 7.7975,8.2504 L16.2025,8.2504 C16.6165,8.2504 16.9525,8.5864 16.9525,9.0004 C16.9525,9.4144 16.6165,9.7504 16.2025,9.7504 M16.2025,12.7504 L7.7975,12.7504 C7.3835,12.7504 7.0475,12.4144 7.0475,12.0004 C7.0475,11.5864 7.3835,11.2504 7.7975,11.2504 L16.2025,11.2504 C16.6165,11.2504 16.9525,11.5864 16.9525,12.0004 C16.9525,12.4144 16.6165,12.7504 16.2025,12.7504 M16.2025,15.7504 L7.7975,15.7504 C7.3835,15.7504 7.0475,15.4144 7.0475,15.0004 C7.0475,14.5864 7.3835,14.2504 7.7975,14.2504 L16.2025,14.2504 C16.6165,14.2504 16.9525,14.5864 16.9525,15.0004 C16.9525,15.4144 16.6165,15.7504 16.2025,15.7504 M11.9995,3.0004 C7.0295,3.0004 2.9995,7.0294 2.9995,12.0004 C2.9995,16.9704 7.0295,21.0004 11.9995,21.0004 C16.9705,21.0004 20.9995,16.9704 20.9995,12.0004 C20.9995,7.0294 16.9705,3.0004 11.9995,3.0004" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="s-ion-icon">
2
+ <g id="misc" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
3
+ <path d="M20.0935252,13.0968754 C20.6515097,13.4007928 20.9995,13.9836345 20.9995,14.6194617 C20.9995,15.2542893 20.6515097,15.8371309 20.0935252,16.1410484 L13.8576984,19.525129 C13.2767145,19.8420429 12.6387323,20 11.99975,20 C11.3597678,20 10.7217855,19.8420429 10.1388017,19.525129 L3.90497486,16.1410484 C3.34699036,15.8371309 3,15.2542893 3,14.6194617 C3,13.9836345 3.34699036,13.4007928 3.90497486,13.0968754 C4.2709647,12.9009286 4.72695203,13.0348922 4.92294658,13.3977936 C5.11994111,13.7616948 4.98494486,14.2175709 4.62195495,14.4155171 C4.51595789,14.4725017 4.49995833,14.5674759 4.49995833,14.6194617 C4.49995833,14.6704479 4.51595789,14.7654221 4.62195495,14.8234063 L10.8547818,18.207487 C11.5717619,18.5983808 12.4277381,18.5973811 13.1427183,18.207487 L19.3775451,14.8234063 C19.4825422,14.7654221 19.4995417,14.6704479 19.4995417,14.6194617 C19.4995417,14.5674759 19.4825422,14.4725017 19.3765451,14.4155171 C19.0135552,14.2175709 18.8785589,13.7616948 19.0755535,13.3977936 C19.272548,13.0338925 19.7285353,12.9009286 20.0935252,13.0968754 Z M13.8591984,5.4747461 L20.0930252,8.85882674 C20.6520097,9.16174445 21,9.74558583 21,10.3804134 C21,11.0162406 20.6520097,11.5990823 20.0920252,11.9029997 L13.8591984,15.2870804 C13.2772145,15.6029945 12.6382323,15.7609516 11.99925,15.7609516 C11.3602678,15.7609516 10.7212855,15.6039943 10.1393017,15.2870804 L10.1383017,15.2870804 L3.90547485,11.9029997 C3.34649038,11.5990823 3.00049999,11.0162406 3.00049999,10.3804134 C3.00049999,9.74558583 3.34649038,9.16174445 3.90647482,8.85882674 L10.1383017,5.47374637 C11.3062693,4.84191802 12.6972306,4.84191802 13.8591984,5.4747461 Z M10.8552818,6.79238813 L4.62245493,10.1774685 C4.5154579,10.234453 4.50045832,10.3294272 4.50045832,10.3804134 C4.50045832,10.4323992 4.5154579,10.5273734 4.62145496,10.584358 L10.8542818,13.9694383 C11.5712619,14.3583327 12.4272381,14.3583327 13.1422183,13.9694383 L19.3760451,10.584358 C19.4830421,10.5273734 19.5000417,10.4323992 19.5000417,10.3804134 C19.5000417,10.3294272 19.4830421,10.234453 19.3770451,10.1774685 L13.1422183,6.79238813 C12.4272381,6.40249406 11.5722619,6.40149433 10.8552818,6.79238813 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="Formue" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M17.1298,19.4593 C19.0658,18.6533 19.5198,17.0493 18.5208,14.5573 C17.4878,11.9843 15.4628,8.7623 12.8378,7.3293 L10.9998,7.3293 C8.4368,8.7343 5.7358,12.7213 5.1708,15.1783 C4.6068,17.6273 5.1508,19.0203 6.9328,19.6943 C10.0428,20.8763 13.9488,20.7833 17.1298,19.4593 Z M10.3988,3.6813 C10.0248,3.5263 9.8758,3.4783 9.7788,3.5073 C9.7938,3.8993 10.4128,4.9423 11.1578,5.8453 L12.6648,5.8453 C13.3778,4.9213 13.9358,3.8733 13.9088,3.4883 C13.7648,3.5103 13.5018,3.6063 13.3168,3.6743 C12.9088,3.8223 12.4018,4.0083 11.8508,4.0243 C11.2608,4.0423 10.7868,3.8413 10.3988,3.6813 Z M19.8728,13.9963 C21.6448,18.4133 19.2618,20.1753 17.6838,20.8333 C15.8198,21.6093 13.7278,22.0003 11.6588,22.0003 C9.8368,22.0003 8.0338,21.6973 6.4218,21.0873 C3.9128,20.1353 3.0128,18.0333 3.7488,14.8393 C4.3648,12.1623 6.9478,8.2333 9.7108,6.3923 C9.0608,5.5443 8.2138,4.2333 8.3328,3.2633 C8.3818,2.8633 8.5848,2.5223 8.9038,2.3043 C9.6718,1.7773 10.4098,2.0833 10.9498,2.3063 C11.2498,2.4313 11.5328,2.5453 11.8088,2.5413 C12.1268,2.5313 12.4808,2.4023 12.8218,2.2773 C13.4758,2.0393 14.3708,1.7113 15.0228,2.4843 C15.8898,3.5133 14.9218,5.2563 14.1018,6.3883 C16.7808,8.1293 18.8188,11.3703 19.8728,13.9963 Z M10.4725,14.6419 L12.0685,17.0319 C12.2955,17.3709 12.2085,17.8309 11.8745,18.0619 C11.7485,18.1489 11.6065,18.1909 11.4645,18.1909 C11.2305,18.1909 11.0015,18.0769 10.8605,17.8649 L9.4195,15.7079 L9.2615,15.8699 L9.2615,17.4489 C9.2615,17.8579 8.9345,18.1909 8.5315,18.1909 C8.1275,18.1909 7.8005,17.8579 7.8005,17.4489 L7.8005,15.5599 L7.8005,12.6249 C7.8005,12.2159 8.1275,11.8828994 8.5315,11.8828994 C8.9345,11.8828994 9.2615,12.2159 9.2615,12.6249 L9.2615,13.7719 L10.9115,12.0999 C11.1975,11.8099 11.6605,11.8109 11.9445,12.1009 C12.2295,12.3919 12.2285,12.8619 11.9435,13.1519 L10.4725,14.6419 Z M14.1093,13.3675 L14.1093,14.2945 L14.7383,14.2945 C14.9903,14.2945 15.1943,14.0875 15.1943,13.8305 C15.1943,13.5755 14.9903,13.3675 14.7383,13.3675 L14.1093,13.3675 Z M15.9623,15.3175 L16.9633,17.0775 C17.1643,17.4315 17.0453,17.8865 16.6953,18.0915 C16.5803,18.1585 16.4553,18.1905 16.3313,18.1905 C16.0783,18.1905 15.8333,18.0575 15.6973,17.8195 L14.5373,15.7785 L14.1093,15.7785 L14.1093,17.4485 C14.1093,17.8575 13.7823,18.1905 13.3793,18.1905 C12.9753,18.1905 12.6483,17.8575 12.6483,17.4485 L12.6483,15.0365 L12.6483,12.6255 C12.6483,12.2155 12.9753,11.8835 13.3793,11.8835 L14.7383,11.8835 C15.7963,11.8835 16.6553,12.7575 16.6553,13.8305 C16.6553,14.4295 16.3813,14.9605 15.9623,15.3175 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="s-ion-icon">
2
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
3
+ <path d="M13.5002,12.0002 C13.5002,12.8282 12.8282,13.5002 12.0002,13.5002 C11.1712,13.5002 10.5002,12.8282 10.5002,12.0002 C10.5002,11.1712 11.1712,10.5002 12.0002,10.5002 C12.8282,10.5002 13.5002,11.1712 13.5002,12.0002 M20.5002,12.0002 C20.5002,12.8282 19.8282,13.5002 19.0002,13.5002 C18.1712,13.5002 17.5002,12.8282 17.5002,12.0002 C17.5002,11.1712 18.1712,10.5002 19.0002,10.5002 C19.8282,10.5002 20.5002,11.1712 20.5002,12.0002 M6.5002,12.0002 C6.5002,12.8282 5.8282,13.5002 5.0002,13.5002 C4.1712,13.5002 3.5002,12.8282 3.5002,12.0002 C3.5002,11.1712 4.1712,10.5002 5.0002,10.5002 C5.8282,10.5002 6.5002,11.1712 6.5002,12.0002" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="move" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M13.7383,13.4169 C13.9313,13.4169 14.1183,13.4889 14.2593,13.6189 C14.4053,13.7549 14.4883,13.9429 14.4883,14.1409 L14.4883,16.5299 L19.1843,11.9999 L14.4883,7.4699 L14.4883,9.7019 C14.4883,10.0709 14.1983,10.3819 13.8173,10.4209 C13.4743,10.4559 6.1653,11.2699 4.7393,16.5049 C6.4613,15.2709 9.5603,13.5699 13.7093,13.4179 C13.7193,13.4169 13.7293,13.4169 13.7383,13.4169 M3.7503,18.9999768 C3.6563,18.9999768 3.5613,18.9829 3.4713,18.9479 C3.1843,18.8369 2.9973,18.5669 3.00026443,18.2689 C3.0723,11.3539 10.6583,9.4909 12.9883,9.0819 L12.9883,5.7239 C12.9883,5.4319 13.1713,5.1669 13.4513,5.0559 C13.7303,4.9419 14.0533,5.0059 14.2683,5.2119 L20.7753,11.4879 C20.9163,11.6239 20.9953,11.8079 20.9953,11.999898 C20.9953,12.1919 20.9163,12.3759 20.7753,12.5119 L14.2683,18.7879 C14.0533,18.9949 13.7303,19.0569 13.4513,18.9449 C13.1713,18.8329 12.9883,18.5689 12.9883,18.2759 L12.9883,14.9129 C7.6223,15.4019 4.3323,18.7349 4.2983,18.7709 C4.1533,18.9199 3.9533,18.9999768 3.7503,18.9999768" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="payment-cards/payment-card" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <path d="M5.7305,7.0078 C5.0455,7.0078 4.4895,7.5708 4.4895,8.2638 L4.4895,15.7358 C4.4895,16.4288 5.0455,16.9918 5.7305,16.9918 L18.2695,16.9918 C18.9545,16.9918 19.5105,16.4288 19.5105,15.7358 L19.5105,8.2638 C19.5105,7.5708 18.9545,7.0078 18.2695,7.0078 L5.7305,7.0078 Z M18.2695,18.4998 L5.7305,18.4998 C4.2255,18.4998 3.0005,17.2598 3.0005,15.7358 L3.0005,8.2638 C3.0005,6.7398 4.2255,5.4998 5.7305,5.4998 L18.2695,5.4998 C19.7755,5.4998 21.0005,6.7398 21.0005,8.2638 L21.0005,15.7358 C21.0005,17.2598 19.7755,18.4998 18.2695,18.4998 Z M9.522,9.7241 L6.518,9.7241 C6.107,9.7241 5.773,9.3861 5.773,8.9701 C5.773,8.5541 6.107,8.2161 6.518,8.2161 L9.522,8.2161 C9.933,8.2161 10.267,8.5541 10.267,8.9701 C10.267,9.3861 9.933,9.7241 9.522,9.7241 Z M10.8589,14.8306 C10.8589,15.2456 10.5229,15.5806 10.1089,15.5806 C9.6949,15.5806 9.3589,15.2456 9.3589,14.8306 C9.3589,14.4166 9.6949,14.0806 10.1089,14.0806 C10.5229,14.0806 10.8589,14.4166 10.8589,14.8306 Z M13.2715,14.8306 C13.2715,15.2456 12.9355,15.5806 12.5215,15.5806 C12.1075,15.5806 11.7715,15.2456 11.7715,14.8306 C11.7715,14.4166 12.1075,14.0806 12.5215,14.0806 C12.9355,14.0806 13.2715,14.4166 13.2715,14.8306 Z M15.5937,14.8306 C15.5937,15.2456 15.2577,15.5806 14.8437,15.5806 C14.4287,15.5806 14.0937,15.2456 14.0937,14.8306 C14.0937,14.4166 14.4287,14.0806 14.8437,14.0806 C15.2577,14.0806 15.5937,14.4166 15.5937,14.8306 Z M17.9668,14.8306 C17.9668,15.2456 17.6308,15.5806 17.2168,15.5806 C16.8028,15.5806 16.4668,15.2456 16.4668,14.8306 C16.4668,14.4166 16.8028,14.0806 17.2168,14.0806 C17.6308,14.0806 17.9668,14.4166 17.9668,14.8306 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="pension" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M13.3464,19.3533 C13.3464,19.5133 13.2114,19.6433 13.0474,19.6433 L10.9514,19.6433 C10.7864,19.6433 10.6524,19.5133 10.6524,19.3533 L10.6524,17.6183 L13.3464,17.6183 L13.3464,19.3533 Z M6.8994,9.2763 C6.8994,6.8393 8.1074,5.1973 10.1854,4.6093 C9.4834,6.2193 9.2554,8.6963 9.2554,10.4243 C9.2554,12.7133 9.5974,14.8023 10.1644,16.1513 C10.0964,16.0743 10.0344,16.0023 9.9614,15.9193 C8.7424,14.5473 6.8994,12.4733 6.8994,9.2763 L6.8994,9.2763 Z M11.7524,16.2613 C11.7384,16.2273 11.7344,16.1903 11.7134,16.1583 C11.0714,15.1383 10.6554,12.8893 10.6554,10.4243 C10.6554,6.4933 11.6214,4.5023 11.9744,4.3583 C11.9774,4.3583 11.9814,4.3573 11.9844,4.3573 C12.3764,4.4993 13.3434,6.4903 13.3434,10.4243 C13.3434,13.2743 12.8014,15.3743 12.2634,16.1913 C12.2484,16.2133 12.2464,16.2393 12.2354,16.2613 L11.7524,16.2613 Z M17.1004,9.2763 C17.1004,12.4723 15.2584,14.5463 14.0384,15.9183 C13.9644,16.0023 13.9014,16.0763 13.8314,16.1553 C14.4014,14.8073 14.7434,12.7243 14.7434,10.4243 C14.7434,8.6963 14.5164,6.2193 13.8144,4.6093 C15.8934,5.1973 17.1004,6.8393 17.1004,9.2763 L17.1004,9.2763 Z M18.4994,9.2763 C18.4994,5.4633 15.9484,2.9993 11.9994,2.9993 C8.0514,2.9993 5.4994,5.4633 5.4994,9.2763 C5.4994,12.9773 7.6294,15.3733 8.9014,16.8043 C9.0274,16.9473 9.1424,17.0783 9.2524,17.2053 L9.2524,19.3533 C9.2524,20.2613 10.0144,20.9993 10.9514,20.9993 L13.0474,20.9993 C13.9844,20.9993 14.7464,20.2613 14.7464,19.3533 L14.7464,17.2063 C14.8574,17.0793 14.9724,16.9473 15.1004,16.8033 C16.3714,15.3723 18.4994,12.9763 18.4994,9.2763 L18.4994,9.2763 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>person-outline</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="person-outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M18.438,19.5718 L5.563,19.5718 C5.225,19.5718 4.949,19.3008 4.949,18.9668 C4.949,15.1338 8.112,12.0148 12.001,12.0148 C15.888,12.0148 19.051,15.1338 19.051,18.9668 C19.051,19.3008 18.776,19.5718 18.438,19.5718 M11.96,4.4278 C13.682,4.4278 15.083,5.8098 15.083,7.5078 C15.083,9.2048 13.682,10.5858 11.96,10.5858 C10.238,10.5858 8.837,9.2048 8.837,7.5078 C8.837,5.8098 10.238,4.4278 11.96,4.4278 M14.756,11.0468 C15.829,10.2208 16.532,8.9498 16.532,7.5078 C16.532,5.0218 14.481,2.9998 11.96,2.9998 C9.439,2.9998 7.388,5.0218 7.388,7.5078 C7.388,8.9608 8.102,10.2428 9.189,11.0678 C5.882,12.2158 3.5,15.3178 3.5,18.9668 C3.5,20.0878 4.426,21.0008 5.563,21.0008 L18.438,21.0008 C19.576,21.0008 20.501,20.0878 20.501,18.9668 C20.501,15.2978 18.092,12.1788 14.756,11.0468" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>person</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="person" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M14.9066,11.388 C18.1676,12.598 20.5006,15.773 20.5006,19.511 C20.5006,20.333 19.8446,21 19.0376,21 L19.0376,21 L4.9626,21 C4.1546,21 3.4996,20.333 3.4996,19.511 C3.4996,15.773 5.8326,12.598 9.0936,11.388 C9.8816,12.066 10.8866,12.49 11.9996,12.49 C13.1126,12.49 14.1186,12.066 14.9066,11.388 Z M11.9995,3.0002 C14.2755,3.0002 16.1195,4.8782 16.1195,7.1942 C16.1195,9.5102 14.2755,11.3882 11.9995,11.3882 C9.7245,11.3882 7.8805,9.5102 7.8805,7.1942 C7.8805,4.8782 9.7245,3.0002 11.9995,3.0002 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <path d="M18.25,12.75 L5.75,12.75 C5.336,12.75 5,12.414 5,12 C5,11.586 5.336,11.25 5.75,11.25 L18.25,11.25 C18.664,11.25 19,11.586 19,12 C19,12.414 18.664,12.75 18.25,12.75" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
4
+ <title>01 Icons/Reorder</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="01-Icons/Reorder" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M18.25,13.5 C18.664,13.5 19,13.836 19,14.25 C19,14.664 18.664,15 18.25,15 L5.75,15 C5.336,15 5,14.664 5,14.25 C5,13.836 5.336,13.5 5.75,13.5 L18.25,13.5 Z M18.25,9 C18.664,9 19,9.336 19,9.75 C19,10.164 18.664,10.5 18.25,10.5 L5.75,10.5 C5.336,10.5 5,10.164 5,9.75 C5,9.336 5.336,9 5.75,9 L18.25,9 Z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M10.5989,15.6139 C7.8339,15.6139 5.5839,13.3639 5.5839,10.5989 C5.5839,7.8339 7.8339,5.5839 10.5989,5.5839 C13.3639,5.5839 15.6139,7.8339 15.6139,10.5989 C15.6139,13.3639 13.3639,15.6139 10.5989,15.6139 M19.7679,18.8649 L15.6919,14.7889 C16.6329,13.6489 17.1969,12.1889 17.1969,10.5989 C17.1969,6.9599 14.2369,3.9999 10.5989,3.9999 C6.9599,3.9999 3.9999,6.9599 3.9999,10.5989 C3.9999,14.2369 6.9599,17.1979 10.5989,17.1979 C12.0779,17.1979 13.4399,16.7029 14.5419,15.8779 L18.6479,19.9849 C18.8029,20.1389 19.0049,20.2169 19.2079,20.2169 C19.4109,20.2169 19.6129,20.1389 19.7679,19.9849 C20.0769,19.6759 20.0769,19.1749 19.7679,18.8649" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="share" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M9.0957,7.3003 C8.9007,7.3003 8.7047,7.2303 8.5547,7.0903 C8.2487,6.8063 8.2437,6.3413 8.5427,6.0513 L11.4687,3.2123 C11.7597,2.9293 12.2837,2.9293 12.5747,3.2123 L15.4547,6.0063 C15.7537,6.2963 15.7477,6.7613 15.4427,7.0453 C15.1387,7.3283 14.6497,7.3263 14.3477,7.0343 L12.7697,5.5033 L12.7697,15.0143 C12.7697,15.4193 12.4227,15.7483 11.9957,15.7483 C11.5677,15.7483 11.2207,15.4193 11.2207,15.0143 L11.2207,5.5543 L9.6497,7.0793 C9.4977,7.2263 9.2967,7.3003 9.0957,7.3003 Z M16.2314,8.8315 C18.3094,8.8315 20.0004,10.2575 20.0004,12.0115 L20.0004,17.8185 C20.0004,19.5725 18.3094,21.0005 16.2314,21.0005 L7.7684,21.0005 C5.6904,21.0005 4.0004,19.5725 4.0004,17.8185 L4.0004,12.0115 C4.0004,10.2575 5.6904,8.8315 7.7684,8.8315 L9.0054,8.8315 C9.4334,8.8315 9.7804,9.1615 9.7804,9.5665 C9.7804,9.9725 9.4334,10.3015 9.0054,10.3015 L7.7684,10.3015 C6.5444,10.3015 5.5484,11.0685 5.5484,12.0115 L5.5484,17.8185 C5.5484,18.7625 6.5444,19.5295 7.7684,19.5295 L16.2314,19.5295 C17.4564,19.5295 18.4514,18.7625 18.4514,17.8185 L18.4514,12.0115 C18.4514,11.0685 17.4564,10.3015 16.2314,10.3015 L14.9944,10.3015 C14.5664,10.3015 14.2194,9.9725 14.2194,9.5665 C14.2194,9.1615 14.5664,8.8315 14.9944,8.8315 L16.2314,8.8315 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="sort" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M5.5821,9.4029 L7.7291,11.5429 C8.0211,11.8339 8.0211,12.3059 7.7291,12.5969 C7.5831,12.7419 7.3921,12.8159 7.2001,12.8159 C7.0091,12.8159 6.8171,12.7419 6.6711,12.5969 L3.2191,9.1569 C2.9271,8.8659 2.9271,8.3949 3.2191,8.1039 L6.6161,4.7189 C6.9081,4.4269 7.3821,4.4269 7.6741,4.7189 C7.9671,5.0099 7.9671,5.4819 7.6741,5.7729 L5.5271,7.9119 L13.7501,7.9119 C14.1641,7.9119 14.4991,8.2459 14.4991,8.6579 C14.4991,9.0699 14.1641,9.4029 13.7501,9.4029 L5.5821,9.4029 Z M20.7808,14.8428 C21.0728,15.1338 21.0728,15.6068 20.7808,15.8978 L17.3848,19.2818 C17.2378,19.4278 17.0468,19.4998 16.8548,19.4998 C16.6628,19.4998 16.4718,19.4278 16.3258,19.2818 C16.0338,18.9898 16.0338,18.5188 16.3258,18.2278 L18.4718,16.0888 L10.2498,16.0888 C9.8368,16.0888 9.5008,15.7548 9.5008,15.3428 C9.5008,14.9318 9.8368,14.5978 10.2498,14.5978 L18.4178,14.5978 L16.2698,12.4578 C15.9778,12.1668 15.9778,11.6958 16.2698,11.4038 C16.5618,11.1128 17.0358,11.1128 17.3288,11.4038 L20.7808,14.8428 Z" id="icon-color-copy" fill="currentColor" fill-rule="nonzero" transform="translate(11.999950, 11.999850) rotate(-270.000000) translate(-11.999950, -11.999850) "></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
4
+ <title>communication/support</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="communication/support" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M19.904,12.637 C19.904,13.045 19.5556667,13.373 19.1207778,13.393 L19.1207778,11.234 C19.1207778,11.177 19.1144444,11.121 19.1123333,11.065 C19.5514444,11.082 19.904,11.412 19.904,11.823 L19.904,12.637 Z M4.09494444,12.637 L4.09494444,11.823 C4.09494444,11.412 4.4475,11.082 4.88661111,11.065 C4.88555556,11.121 4.87816667,11.177 4.87816667,11.234 L4.87816667,13.393 C4.44433333,13.373 4.09494444,13.045 4.09494444,12.637 L4.09494444,12.637 Z M19.0796111,9.579 L18.9307778,9.579 C18.2098333,6.387 15.4590556,4 12.1794444,4 L11.8205556,4 C8.53988889,4 5.79016667,6.387 5.06922222,9.579 L4.91933333,9.579 C3.58511111,9.579 2.5,10.585 2.5,11.823 L2.5,12.637 C2.5,13.875 3.58511111,14.882 4.91933333,14.882 L5.67616667,14.882 C6.11633333,14.882 6.47416667,14.55 6.47416667,14.141 L6.47416667,11.234 C6.47416667,8.061 8.87238889,5.48 11.8205556,5.48 L12.1794444,5.48 C15.1276111,5.48 17.5258333,8.061 17.5258333,11.234 L17.5258333,14.141 C17.5258333,16.484 15.3513889,17.346 13.7268889,17.666 C13.4503333,17.376 13.0502778,17.189 12.6006111,17.189 C11.7656667,17.189 11.0858889,17.821 11.0858889,18.595 C11.0858889,19.37 11.7656667,20 12.6006111,20 C13.2318333,20 13.7722778,19.639 14.0002778,19.129 C16.1905556,18.698 18.6732222,17.509 19.0669444,14.882 L19.0796111,14.882 C20.4138333,14.882 21.5,13.875 21.5,12.637 L21.5,11.823 C21.5,10.585 20.4138333,9.579 19.0796111,9.579 L19.0796111,9.579 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="swap" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M5.5823,9.4026 L7.7293,11.5426 C8.0213,11.8336 8.0213,12.3056 7.7293,12.5966 C7.5833,12.7416 7.3923,12.8156 7.2003,12.8156 C7.0093,12.8156 6.8173,12.7416 6.6713,12.5966 L3.2193,9.1566 C2.9273,8.8656 2.9273,8.3946 3.2193,8.1036 L6.6163,4.7186 C6.9083,4.4266 7.3823,4.4266 7.6743,4.7186 C7.9673,5.0096 7.9673,5.4816 7.6743,5.7726 L5.5273,7.9116 L13.7503,7.9116 C14.1643,7.9116 14.4993,8.2456 14.4993,8.6576 C14.4993,9.0696 14.1643,9.4026 13.7503,9.4026 L5.5823,9.4026 Z M20.781,14.8425 C21.073,15.1335 21.073,15.6065 20.781,15.8975 L17.385,19.2815 C17.238,19.4275 17.047,19.4995 16.855,19.4995 C16.663,19.4995 16.472,19.4275 16.326,19.2815 C16.034,18.9895 16.034,18.5185 16.326,18.2275 L18.472,16.0885 L10.25,16.0885 C9.837,16.0885 9.501,15.7545 9.501,15.3425 C9.501,14.9315 9.837,14.5975 10.25,14.5975 L18.418,14.5975 L16.27,12.4575 C15.978,12.1665 15.978,11.6955 16.27,11.4035 C16.562,11.1125 17.036,11.1125 17.329,11.4035 L20.781,14.8425 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="icon/trash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M10.3867,8.1179 C10.7907,8.1179 11.1187,8.4399 11.1187,8.8379 L11.1187,17.2269 C11.1187,17.6249 10.7907,17.9469 10.3867,17.9469 C9.9827,17.9469 9.6547,17.6249 9.6547,17.2269 L9.6547,8.8379 C9.6547,8.4399 9.9827,8.1179 10.3867,8.1179 Z M13.6123,8.1179 C14.0163,8.1179 14.3443,8.4399 14.3443,8.8379 L14.3443,17.2269 C14.3443,17.6249 14.0163,17.9469 13.6123,17.9469 C13.2093,17.9469 12.8813,17.6249 12.8813,17.2269 L12.8813,8.8379 C12.8813,8.4399 13.2093,8.1179 13.6123,8.1179 Z M16.3594,18.1912 L17.3924,6.7072 L6.6084,6.7072 L7.6374,18.1282 C7.6404,18.9462 8.2704,19.5612 9.0434,19.5612 L14.9564,19.5612 C15.7304,19.5612 16.3594,18.9462 16.3594,18.1912 Z M10.3114,4.7992 L10.3114,5.2682 L13.6884,5.2682 L13.6884,4.7992 C13.6884,4.6942 13.4134,4.4392 12.9014,4.4392 L11.0984,4.4392 C10.5874,4.4392 10.3114,4.6942 10.3114,4.7992 Z M19.5004,5.9872 C19.5004,6.3512 19.2204,6.6402 18.8634,6.6882 L17.8204,18.2542 C17.8234,19.7402 16.5384,21.0002 14.9564,21.0002 L9.0434,21.0002 C7.4634,21.0002 6.1764,19.7402 6.1764,18.1912 L5.1364,6.6882 C4.7794,6.6402 4.5004,6.3512 4.5004,5.9872 C4.5004,5.5902 4.8274,5.2682 5.2324,5.2682 L8.8474,5.2682 L8.8474,4.7992 C8.8474,3.7902 9.8364,3.0002 11.0984,3.0002 L12.9014,3.0002 C14.1634,3.0002 15.1534,3.7902 15.1534,4.7992 L15.1534,5.2682 L18.7674,5.2682 C19.1724,5.2682 19.5004,5.5902 19.5004,5.9872 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="afmeld" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M15.7344,8.2646 C16.0264,8.5566 16.0264,9.0286 15.7344,9.3196 L13.0544,11.9996 L15.7344,14.6796 C16.0264,14.9716 16.0264,15.4436 15.7344,15.7346 C15.5884,15.8796 15.3984,15.9526 15.2074,15.9526 C15.0154,15.9526 14.8254,15.8796 14.6794,15.7346 L12.0004,13.0546 L9.3204,15.7346 C9.1744,15.8796 8.9834,15.9526 8.7934,15.9526 C8.6024,15.9526 8.4114,15.8796 8.2654,15.7346 C7.9744,15.4436 7.9744,14.9716 8.2654,14.6796 L10.9454,11.9996 L8.2654,9.3196 C7.9744,9.0286 7.9744,8.5566 8.2654,8.2646 C8.5564,7.9736 9.0284,7.9736 9.3204,8.2646 L12.0004,10.9446 L14.6794,8.2646 C14.9704,7.9736 15.4434,7.9736 15.7344,8.2646 Z M12,19.5078 C16.14,19.5078 19.508,16.1398 19.508,11.9998 C19.508,7.8598 16.14,4.4918 12,4.4918 C7.86,4.4918 4.492,7.8598 4.492,11.9998 C4.492,16.1398 7.86,19.5078 12,19.5078 Z M12,2.9998 C16.962,2.9998 21,7.0368 21,11.9998 C21,16.9618 16.962,20.9998 12,20.9998 C7.037,20.9998 3,16.9618 3,11.9998 C3,7.0368 7.037,2.9998 12,2.9998 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="verify" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M10.3761,19.5001 C10.2321,19.5001 10.0871,19.4591 9.9591,19.3751 L3.8261,15.2971 C3.4861,15.0711 3.3981,14.6191 3.6281,14.2861 C3.8581,13.9541 4.3201,13.8691 4.6591,14.0931 L10.1791,17.7621 L19.1431,4.8191 C19.3721,4.4871 19.8341,4.4001 20.1741,4.6251 C20.5141,4.8511 20.6031,5.3041 20.3721,5.6361 L10.9911,19.1811 C10.8471,19.3881 10.6141,19.5001 10.3761,19.5001" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="warring" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M12.258,2.5 C12.667,2.5 13,2.832 13,3.241 L13,15.896 C13,16.305 12.667,16.637 12.258,16.637 C11.848,16.637 11.516,16.305 11.516,15.896 L11.516,3.241 C11.516,2.832 11.848,2.5 12.258,2.5 Z M12.241,20.0181 C12.651,20.0181 12.991,20.3501 12.991,20.7591 C12.991,21.1681 12.667,21.4991 12.258,21.4991 L12.241,21.4991 C11.832,21.4991 11.5,21.1681 11.5,20.7591 C11.5,20.3501 11.832,20.0181 12.241,20.0181 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.1 (78136) - https://sketchapp.com -->
4
+ <g id="write-message" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <path d="M18.2078,11.4467 C18.6218,11.4467 18.9568,11.7737 18.9568,12.1757 L18.9568,15.3527 C18.9568,17.3637 17.2758,19.0007 15.2118,19.0007 L6.7458,19.0007 C4.6798,19.0007 2.9998,17.3637 2.9998,15.3527 L2.9998,10.4207 C2.9998,8.4097 4.6798,6.7737 6.7458,6.7737 L13.3908,6.7737 C13.8048,6.7737 14.1398,7.0997 14.1398,7.5027 C14.1398,7.9057 13.8048,8.2327 13.3908,8.2327 L6.7458,8.2327 C6.4338,8.2327 6.1358,8.2957 5.8658,8.4077 L11.0978,12.5507 C11.1658,12.6067 11.2508,12.6067 11.3198,12.5507 L14.9198,9.7017 C15.2388,9.4517 15.6978,9.5057 15.9478,9.8197 C16.1998,10.1347 16.1468,10.5937 15.8308,10.8437 L12.2308,13.6927 C11.9308,13.9317 11.5698,14.0507 11.2088,14.0507 C10.8478,14.0507 10.4868,13.9317 10.1858,13.6927 L4.7688,9.4017 C4.6018,9.7077 4.4988,10.0507 4.4988,10.4207 L4.4988,15.3527 C4.4988,16.5587 5.5058,17.5417 6.7458,17.5417 L15.2118,17.5417 C16.4498,17.5417 17.4588,16.5587 17.4588,15.3527 L17.4588,12.1757 C17.4588,11.7737 17.7948,11.4467 18.2078,11.4467 Z M20.2791,7.0473 C20.6771,7.0473 21.0001,7.3503 21.0001,7.7223 C21.0001,8.0953 20.6771,8.3983 20.2791,8.3983 L18.8131,8.3983 L18.8131,9.7703 C18.8131,10.1423 18.4911,10.4443 18.0921,10.4443 C17.6951,10.4443 17.3721,10.1423 17.3721,9.7703 L17.3721,8.3983 L15.9081,8.3983 C15.5091,8.3983 15.1871,8.0953 15.1871,7.7223 C15.1871,7.3503 15.5091,7.0473 15.9081,7.0473 L17.3721,7.0473 L17.3721,5.6753 C17.3721,5.3023 17.6951,5.0003 18.0921,5.0003 C18.4911,5.0003 18.8131,5.3023 18.8131,5.6753 L18.8131,7.0473 L20.2791,7.0473 Z" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,8 @@
1
+ export * from './animation/kirby-animation';
2
+ export * from './components';
3
+ export * from './directives';
4
+ export * from './helpers';
5
+ export * from './scss/scss-helper';
6
+ // export * from './testing';
7
+
8
+ export { KirbyModule } from './kirby.module';
@@ -0,0 +1,20 @@
1
+ import { ModalController } from './components/modal/services/modal.controller';
2
+ import { KirbyModule } from './kirby.module';
3
+
4
+ describe('KirbyModule', () => {
5
+ let kirbyModule: KirbyModule;
6
+ let modalControllerSpy: ModalController;
7
+
8
+ beforeEach(() => {
9
+ modalControllerSpy = jasmine.createSpyObj<ModalController>('ModalController', ['initialize']);
10
+ kirbyModule = new KirbyModule(modalControllerSpy);
11
+ });
12
+
13
+ it('should create an instance', () => {
14
+ expect(kirbyModule).toBeTruthy();
15
+ });
16
+
17
+ it('should initialize modalController', () => {
18
+ expect(modalControllerSpy.initialize).toHaveBeenCalledTimes(1);
19
+ });
20
+ });