@sapphire-ion/framework 1.2.41 → 1.2.43
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.
- package/build.ps1 +39 -0
- package/ng-package.json +10 -0
- package/package.json +43 -47
- package/src/lib/classes/comparison/comparison-operator.ts +17 -0
- package/src/lib/classes/comparison/comparison-value-type.ts +34 -0
- package/src/lib/classes/comparison/comparison.ts +45 -0
- package/src/lib/classes/comparison/properties/bool-property.ts +16 -0
- package/src/lib/classes/comparison/properties/date-property.ts +28 -0
- package/src/lib/classes/comparison/properties/datetime-property.ts +28 -0
- package/src/lib/classes/comparison/properties/decimal-property.ts +28 -0
- package/src/lib/classes/comparison/properties/enum-property.ts +28 -0
- package/src/lib/classes/comparison/properties/implicit-property.ts +13 -0
- package/src/lib/classes/comparison/properties/int-property.ts +28 -0
- package/src/lib/classes/comparison/properties/long-property.ts +28 -0
- package/src/lib/classes/comparison/properties/string-property.ts +16 -0
- package/src/lib/classes/comparison/properties/time-property.ts +28 -0
- package/{lib/classes/credentials.d.ts → src/lib/classes/credentials.ts} +5 -5
- package/src/lib/classes/environment.ts +37 -0
- package/src/lib/classes/filters/view-filtros.ts +18 -0
- package/src/lib/classes/infinite-scroll.ts +112 -0
- package/src/lib/classes/inputs/table-field-form-builder.ts +12 -0
- package/src/lib/classes/inputs/table-field.ts +62 -0
- package/src/lib/classes/page-option.ts +8 -0
- package/src/lib/classes/routes/default-routing-factory.ts +24 -0
- package/src/lib/classes/routes/id-preloader-configuration.ts +21 -0
- package/src/lib/classes/routes/route-data.ts +9 -0
- package/{themes → src/lib}/compiled-styles.scss +2551 -2551
- package/src/lib/components/carousel/carousel-image/carousel-image.component.html +4 -0
- package/src/lib/components/carousel/carousel-image/carousel-image.component.ts +15 -0
- package/src/lib/components/carousel/carousel-item/carousel-item.component.html +3 -0
- package/src/lib/components/carousel/carousel-item/carousel-item.component.ts +14 -0
- package/src/lib/components/carousel/carousel.component.html +22 -0
- package/src/lib/components/carousel/carousel.component.ts +83 -0
- package/src/lib/components/carousel/carousel.module.ts +20 -0
- package/src/lib/components/carousel/i-carousel-item.component.ts +8 -0
- package/src/lib/components/content-block/content-block.component.html +6 -0
- package/src/lib/components/content-block/content-block.component.ts +25 -0
- package/src/lib/components/default/default-list/abstract-list.ts +56 -0
- package/src/lib/components/default/default-list/default-list.component.html +60 -0
- package/src/lib/components/default/default-list/default-list.component.ts +72 -0
- package/src/lib/components/default/default-list/header-list/header-list.component.html +32 -0
- package/src/lib/components/default/default-list/header-list/header-list.component.ts +85 -0
- package/src/lib/components/default/default-list/list.ts +127 -0
- package/src/lib/components/default/default-pagination/default-pagination.component.html +52 -0
- package/src/lib/components/default/default-pagination/default-pagination.component.ts +118 -0
- package/src/lib/components/default/default-table/default-table.component.html +104 -0
- package/src/lib/components/default/default-table/default-table.component.ts +255 -0
- package/src/lib/components/default/default-table/th-filter/th-filter.component.html +69 -0
- package/src/lib/components/default/default-table/th-filter/th-filter.component.ts +183 -0
- package/src/lib/components/default/default-view/abstract-view.ts +25 -0
- package/src/lib/components/default/default-view/default-view.component.html +111 -0
- package/src/lib/components/default/default-view/default-view.component.ts +44 -0
- package/src/lib/components/default/default-view/header-view/header-view.component.html +64 -0
- package/src/lib/components/default/default-view/header-view/header-view.component.ts +57 -0
- package/src/lib/components/default/default-view/view.ts +183 -0
- package/src/lib/components/default/default.module.ts +61 -0
- package/src/lib/components/default-page/default.page.html +63 -0
- package/src/lib/components/default-page/default.page.ts +84 -0
- package/src/lib/components/drag-drop-file/drag-drop-file.directive.ts +44 -0
- package/src/lib/components/drag-drop-file/drag-drop-file.module.ts +21 -0
- package/src/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.html +5 -0
- package/src/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.ts +17 -0
- package/src/lib/components/drawer/default-drawer-end/default-drawer-end.component.html +12 -0
- package/src/lib/components/drawer/default-drawer-end/default-drawer-end.component.ts +35 -0
- package/src/lib/components/drawer/drawer-group/drawer-group.component.html +79 -0
- package/src/lib/components/drawer/drawer-group/drawer-group.component.ts +49 -0
- package/src/lib/components/drawer/drawer.component.html +120 -0
- package/src/lib/components/drawer/drawer.component.ts +157 -0
- package/src/lib/components/drawer/menu.ts +20 -0
- package/src/lib/components/filter/filter.component.html +43 -0
- package/src/lib/components/filter/filter.component.ts +141 -0
- package/src/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.html +35 -0
- package/src/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.ts +19 -0
- package/src/lib/components/image/image.component.html +17 -0
- package/src/lib/components/image/image.component.ts +95 -0
- package/src/lib/components/info-popover/info-popover.component.html +23 -0
- package/src/lib/components/info-popover/info-popover.component.ts +75 -0
- package/src/lib/components/inputs/custom-input.ts +94 -0
- package/src/lib/components/inputs/input-bool/input-bool.component.html +26 -0
- package/src/lib/components/inputs/input-bool/input-bool.component.ts +39 -0
- package/src/lib/components/inputs/input-bool/input-bool.configuration.ts +14 -0
- package/src/lib/components/inputs/input-cep/input-cep.component.html +27 -0
- package/src/lib/components/inputs/input-cep/input-cep.component.ts +41 -0
- package/src/lib/components/inputs/input-cep/input-cep.configuration.ts +4 -0
- package/src/lib/components/inputs/input-color/input-color.component.html +79 -0
- package/src/lib/components/inputs/input-color/input-color.component.ts +544 -0
- package/{lib/components/inputs/input-configuration.d.ts → src/lib/components/inputs/input-configuration.ts} +23 -10
- package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.html +28 -0
- package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.ts +99 -0
- package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.ts +4 -0
- package/src/lib/components/inputs/input-date/input-date.component.html +88 -0
- package/src/lib/components/inputs/input-date/input-date.component.ts +241 -0
- package/src/lib/components/inputs/input-date/input-date.configuration.ts +6 -0
- package/src/lib/components/inputs/input-decimal/input-decimal.component.html +31 -0
- package/src/lib/components/inputs/input-decimal/input-decimal.component.ts +249 -0
- package/src/lib/components/inputs/input-decimal/input-decimal.configuration.ts +47 -0
- package/src/lib/components/inputs/input-default-configurations.ts +15 -0
- package/src/lib/components/inputs/input-file/download-button/download-button.component.html +56 -0
- package/src/lib/components/inputs/input-file/download-button/download-button.component.ts +89 -0
- package/src/lib/components/inputs/input-file/input-file.component.html +59 -0
- package/src/lib/components/inputs/input-file/input-file.component.ts +96 -0
- package/src/lib/components/inputs/input-file/input-file.configuration.ts +25 -0
- package/src/lib/components/inputs/input-icon/fluenticons.ts +3733 -0
- package/src/lib/components/inputs/input-icon/input-icon.component.html +8 -0
- package/src/lib/components/inputs/input-icon/input-icon.component.ts +52 -0
- package/src/lib/components/inputs/input-icon/ionicons.ts +1359 -0
- package/src/lib/components/inputs/input-provider-factory.ts +12 -0
- package/src/lib/components/inputs/input-select/directives/sion-label-template.directive.ts +19 -0
- package/src/lib/components/inputs/input-select/directives/sion-option-template.directive.ts +16 -0
- package/src/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.ts +19 -0
- package/src/lib/components/inputs/input-select/input-select.component.html +176 -0
- package/src/lib/components/inputs/input-select/input-select.component.ts +361 -0
- package/src/lib/components/inputs/input-select/input.select.configuration.ts +292 -0
- package/src/lib/components/inputs/input-string/input-string.component.html +27 -0
- package/src/lib/components/inputs/input-string/input-string.component.ts +31 -0
- package/src/lib/components/inputs/input-string/input-string.configuration.ts +18 -0
- package/src/lib/components/inputs/input-telefone/input-telefone.component.html +29 -0
- package/src/lib/components/inputs/input-telefone/input-telefone.component.ts +63 -0
- package/src/lib/components/inputs/input-telefone/input-telefone.configuration.ts +8 -0
- package/src/lib/components/inputs/input-textarea/input-textarea.component.html +27 -0
- package/src/lib/components/inputs/input-textarea/input-textarea.component.ts +31 -0
- package/src/lib/components/inputs/input-textarea/input-textarea.configuration.ts +7 -0
- package/src/lib/components/inputs/input-type.ts +22 -0
- package/src/lib/components/inputs/input-validators.ts +111 -0
- package/src/lib/components/inputs/inputs.module.ts +74 -0
- package/src/lib/components/loading/loading.component.html +28 -0
- package/src/lib/components/loading/loading.component.ts +29 -0
- package/src/lib/components/login/login-admin/login-admin.component.html +28 -0
- package/src/lib/components/login/login-admin/login-admin.component.ts +51 -0
- package/src/lib/components/login/login.component.html +104 -0
- package/src/lib/components/login/login.component.ts +96 -0
- package/src/lib/components/main-content/main-content.component.html +145 -0
- package/src/lib/components/main-content/main-content.component.ts +93 -0
- package/src/lib/components/popover/sion-popover/sion-popover.component.html +21 -0
- package/src/lib/components/popover/sion-popover/sion-popover.component.ts +182 -0
- package/src/lib/components/popover/sion-popover.module.ts +12 -0
- package/src/lib/components/sion-card/sion-card.component.html +12 -0
- package/src/lib/components/sion-card/sion-card.component.ts +23 -0
- package/src/lib/components/stepper/step/step.component.html +11 -0
- package/src/lib/components/stepper/step/step.component.ts +44 -0
- package/src/lib/components/stepper/stepper.component.html +3 -0
- package/src/lib/components/stepper/stepper.component.ts +37 -0
- package/src/lib/components/stepper/stepper.module.ts +15 -0
- package/src/lib/components/tabs/tab/tab.component.html +8 -0
- package/src/lib/components/tabs/tab/tab.component.ts +28 -0
- package/src/lib/components/tabs/tabs/tabs.component.html +14 -0
- package/src/lib/components/tabs/tabs/tabs.component.ts +42 -0
- package/src/lib/components/tabs/tabs.module.ts +15 -0
- package/src/lib/components/text-tooltip/text-tooltip.component.html +8 -0
- package/src/lib/components/text-tooltip/text-tooltip.component.scss +0 -0
- package/src/lib/components/text-tooltip/text-tooltip.component.ts +45 -0
- package/src/lib/components/tooltip/tooltip.component.html +53 -0
- package/src/lib/components/tooltip/tooltip.component.ts +16 -0
- package/src/lib/core.module.ts +29 -0
- package/src/lib/directives/ng-var.directive.ts +26 -0
- package/src/lib/guards/auth.guard.ts +19 -0
- package/src/lib/guards/error.interceptor.ts +108 -0
- package/src/lib/guards/token.interceptor.ts +28 -0
- package/src/lib/index.ts +190 -0
- package/src/lib/pipes/secure.pipe.ts +39 -0
- package/src/lib/services/auth.service.ts +153 -0
- package/src/lib/services/crypto.service.ts +164 -0
- package/src/lib/services/environment.service.ts +17 -0
- package/src/lib/services/generic.service.ts +85 -0
- package/src/lib/services/modal-focus-trap.service.ts +65 -0
- package/src/lib/services/popover-focus-trap.service.ts +65 -0
- package/src/lib/services/route/route.cache.service.ts +17 -0
- package/src/lib/services/route/route.provider.service.ts +49 -0
- package/src/lib/services/usuario.service.ts +44 -0
- package/src/lib/services/utils.service.ts +216 -0
- package/src/lib/services/web/api-url-provider.service.ts +48 -0
- package/src/lib/services/web/http.ativo.service.ts +37 -0
- package/src/lib/services/web/http.service.ts +193 -0
- package/src/lib/services/web/storage.service.ts +206 -0
- package/src/public-api.ts +5 -0
- package/tailwind.config.js +27 -0
- package/tsconfig.lib.json +29 -0
- package/tsconfig.lib.prod.json +23 -0
- package/tsconfig.spec.json +27 -0
- package/esm2022/lib/classes/comparison/comparison-operator.mjs +0 -18
- package/esm2022/lib/classes/comparison/comparison-value-type.mjs +0 -25
- package/esm2022/lib/classes/comparison/comparison.mjs +0 -41
- package/esm2022/lib/classes/comparison/properties/bool-property.mjs +0 -15
- package/esm2022/lib/classes/comparison/properties/date-property.mjs +0 -27
- package/esm2022/lib/classes/comparison/properties/datetime-property.mjs +0 -27
- package/esm2022/lib/classes/comparison/properties/decimal-property.mjs +0 -27
- package/esm2022/lib/classes/comparison/properties/enum-property.mjs +0 -27
- package/esm2022/lib/classes/comparison/properties/implicit-property.mjs +0 -12
- package/esm2022/lib/classes/comparison/properties/int-property.mjs +0 -27
- package/esm2022/lib/classes/comparison/properties/long-property.mjs +0 -27
- package/esm2022/lib/classes/comparison/properties/string-property.mjs +0 -15
- package/esm2022/lib/classes/comparison/properties/time-property.mjs +0 -27
- package/esm2022/lib/classes/credentials.mjs +0 -2
- package/esm2022/lib/classes/environment.mjs +0 -34
- package/esm2022/lib/classes/filters/view-filtros.mjs +0 -18
- package/esm2022/lib/classes/infinite-scroll.mjs +0 -90
- package/esm2022/lib/classes/inputs/table-field-form-builder.mjs +0 -10
- package/esm2022/lib/classes/inputs/table-field.mjs +0 -79
- package/esm2022/lib/classes/page-option.mjs +0 -2
- package/esm2022/lib/classes/routes/default-routing-factory.mjs +0 -23
- package/esm2022/lib/classes/routes/id-preloader-configuration.mjs +0 -22
- package/esm2022/lib/classes/routes/route-data.mjs +0 -9
- package/esm2022/lib/components/carousel/carousel-image/carousel-image.component.mjs +0 -18
- package/esm2022/lib/components/carousel/carousel-item/carousel-item.component.mjs +0 -15
- package/esm2022/lib/components/carousel/carousel.component.mjs +0 -79
- package/esm2022/lib/components/carousel/carousel.module.mjs +0 -31
- package/esm2022/lib/components/carousel/i-carousel-item.component.mjs +0 -16
- package/esm2022/lib/components/content-block/content-block.component.mjs +0 -27
- package/esm2022/lib/components/default/default-list/abstract-list.mjs +0 -49
- package/esm2022/lib/components/default/default-list/default-list.component.mjs +0 -95
- package/esm2022/lib/components/default/default-list/header-list/header-list.component.mjs +0 -98
- package/esm2022/lib/components/default/default-list/list.mjs +0 -120
- package/esm2022/lib/components/default/default-pagination/default-pagination.component.mjs +0 -123
- package/esm2022/lib/components/default/default-table/default-table.component.mjs +0 -216
- package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +0 -206
- package/esm2022/lib/components/default/default-view/abstract-view.mjs +0 -22
- package/esm2022/lib/components/default/default-view/default-view.component.mjs +0 -63
- package/esm2022/lib/components/default/default-view/header-view/header-view.component.mjs +0 -78
- package/esm2022/lib/components/default/default-view/view.mjs +0 -188
- package/esm2022/lib/components/default/default.module.mjs +0 -98
- package/esm2022/lib/components/default-page/default.page.mjs +0 -75
- package/esm2022/lib/components/drag-drop-file/drag-drop-file.directive.mjs +0 -60
- package/esm2022/lib/components/drag-drop-file/drag-drop-file.module.mjs +0 -31
- package/esm2022/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.mjs +0 -15
- package/esm2022/lib/components/drawer/default-drawer-end/default-drawer-end.component.mjs +0 -34
- package/esm2022/lib/components/drawer/drawer-group/drawer-group.component.mjs +0 -52
- package/esm2022/lib/components/drawer/drawer.component.mjs +0 -156
- package/esm2022/lib/components/drawer/menu.mjs +0 -15
- package/esm2022/lib/components/filter/filter.component.mjs +0 -145
- package/esm2022/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.mjs +0 -17
- package/esm2022/lib/components/image/image.component.mjs +0 -91
- package/esm2022/lib/components/info-popover/info-popover.component.mjs +0 -91
- package/esm2022/lib/components/inputs/custom-input.mjs +0 -85
- package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +0 -46
- package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +0 -16
- package/esm2022/lib/components/inputs/input-cep/input-cep.component.mjs +0 -50
- package/esm2022/lib/components/inputs/input-cep/input-cep.configuration.mjs +0 -4
- package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +0 -481
- package/esm2022/lib/components/inputs/input-configuration.mjs +0 -2
- package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +0 -116
- package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +0 -6
- package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +0 -216
- package/esm2022/lib/components/inputs/input-date/input-date.configuration.mjs +0 -8
- package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +0 -243
- package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +0 -50
- package/esm2022/lib/components/inputs/input-default-configurations.mjs +0 -14
- package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +0 -93
- package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +0 -101
- package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +0 -24
- package/esm2022/lib/components/inputs/input-icon/fluenticons.mjs +0 -3734
- package/esm2022/lib/components/inputs/input-icon/input-icon.component.mjs +0 -60
- package/esm2022/lib/components/inputs/input-icon/ionicons.mjs +0 -1360
- package/esm2022/lib/components/inputs/input-provider-factory.mjs +0 -12
- package/esm2022/lib/components/inputs/input-select/directives/sion-label-template.directive.mjs +0 -16
- package/esm2022/lib/components/inputs/input-select/directives/sion-option-template.directive.mjs +0 -16
- package/esm2022/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.mjs +0 -16
- package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +0 -373
- package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +0 -229
- package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +0 -41
- package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +0 -18
- package/esm2022/lib/components/inputs/input-telefone/input-telefone.component.mjs +0 -74
- package/esm2022/lib/components/inputs/input-telefone/input-telefone.configuration.mjs +0 -12
- package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +0 -41
- package/esm2022/lib/components/inputs/input-textarea/input-textarea.configuration.mjs +0 -7
- package/esm2022/lib/components/inputs/input-type.mjs +0 -24
- package/esm2022/lib/components/inputs/input-validators.mjs +0 -121
- package/esm2022/lib/components/inputs/inputs.module.mjs +0 -133
- package/esm2022/lib/components/loading/loading.component.mjs +0 -34
- package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +0 -52
- package/esm2022/lib/components/login/login.component.mjs +0 -99
- package/esm2022/lib/components/main-content/main-content.component.mjs +0 -100
- package/esm2022/lib/components/popover/sion-popover/sion-popover.component.mjs +0 -182
- package/esm2022/lib/components/popover/sion-popover.module.mjs +0 -21
- package/esm2022/lib/components/sion-card/sion-card.component.mjs +0 -26
- package/esm2022/lib/components/stepper/step/step.component.mjs +0 -43
- package/esm2022/lib/components/stepper/stepper.component.mjs +0 -36
- package/esm2022/lib/components/stepper/stepper.module.mjs +0 -25
- package/esm2022/lib/components/tabs/tab/tab.component.mjs +0 -41
- package/esm2022/lib/components/tabs/tabs/tabs.component.mjs +0 -56
- package/esm2022/lib/components/tabs/tabs.module.mjs +0 -22
- package/esm2022/lib/components/text-tooltip/text-tooltip.component.mjs +0 -51
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +0 -21
- package/esm2022/lib/core.module.mjs +0 -38
- package/esm2022/lib/directives/ng-var.directive.mjs +0 -29
- package/esm2022/lib/guards/auth.guard.mjs +0 -26
- package/esm2022/lib/guards/error.interceptor.mjs +0 -107
- package/esm2022/lib/guards/token.interceptor.mjs +0 -25
- package/esm2022/lib/index.mjs +0 -187
- package/esm2022/lib/pipes/secure.pipe.mjs +0 -42
- package/esm2022/lib/services/auth.service.mjs +0 -150
- package/esm2022/lib/services/environment.service.mjs +0 -26
- package/esm2022/lib/services/generic.service.mjs +0 -84
- package/esm2022/lib/services/modal-focus-trap.service.mjs +0 -62
- package/esm2022/lib/services/popover-focus-trap.service.mjs +0 -62
- package/esm2022/lib/services/route/route.cache.service.mjs +0 -15
- package/esm2022/lib/services/route/route.provider.service.mjs +0 -42
- package/esm2022/lib/services/usuario.service.mjs +0 -49
- package/esm2022/lib/services/utils.service.mjs +0 -190
- package/esm2022/lib/services/web/api-url-provider.service.mjs +0 -29
- package/esm2022/lib/services/web/http.ativo.service.mjs +0 -37
- package/esm2022/lib/services/web/http.service.mjs +0 -177
- package/esm2022/lib/services/web/storage.service.mjs +0 -183
- package/esm2022/public-api.mjs +0 -5
- package/esm2022/sapphire-ion-framework.mjs +0 -5
- package/fesm2022/sapphire-ion-framework.mjs +0 -12209
- package/fesm2022/sapphire-ion-framework.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/classes/comparison/comparison-operator.d.ts +0 -9
- package/lib/classes/comparison/comparison-value-type.d.ts +0 -23
- package/lib/classes/comparison/comparison.d.ts +0 -25
- package/lib/classes/comparison/properties/bool-property.d.ts +0 -7
- package/lib/classes/comparison/properties/date-property.d.ts +0 -11
- package/lib/classes/comparison/properties/datetime-property.d.ts +0 -11
- package/lib/classes/comparison/properties/decimal-property.d.ts +0 -11
- package/lib/classes/comparison/properties/enum-property.d.ts +0 -11
- package/lib/classes/comparison/properties/implicit-property.d.ts +0 -6
- package/lib/classes/comparison/properties/int-property.d.ts +0 -11
- package/lib/classes/comparison/properties/long-property.d.ts +0 -11
- package/lib/classes/comparison/properties/string-property.d.ts +0 -7
- package/lib/classes/comparison/properties/time-property.d.ts +0 -11
- package/lib/classes/environment.d.ts +0 -14
- package/lib/classes/filters/view-filtros.d.ts +0 -10
- package/lib/classes/infinite-scroll.d.ts +0 -26
- package/lib/classes/inputs/table-field-form-builder.d.ts +0 -5
- package/lib/classes/inputs/table-field.d.ts +0 -20
- package/lib/classes/page-option.d.ts +0 -7
- package/lib/classes/routes/default-routing-factory.d.ts +0 -8
- package/lib/classes/routes/id-preloader-configuration.d.ts +0 -28
- package/lib/classes/routes/route-data.d.ts +0 -5
- package/lib/components/carousel/carousel-image/carousel-image.component.d.ts +0 -10
- package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +0 -9
- package/lib/components/carousel/carousel.component.d.ts +0 -32
- package/lib/components/carousel/carousel.module.d.ts +0 -12
- package/lib/components/carousel/i-carousel-item.component.d.ts +0 -9
- package/lib/components/content-block/content-block.component.d.ts +0 -15
- package/lib/components/default/default-list/abstract-list.d.ts +0 -21
- package/lib/components/default/default-list/default-list.component.d.ts +0 -47
- package/lib/components/default/default-list/header-list/header-list.component.d.ts +0 -45
- package/lib/components/default/default-list/list.d.ts +0 -40
- package/lib/components/default/default-pagination/default-pagination.component.d.ts +0 -36
- package/lib/components/default/default-table/default-table.component.d.ts +0 -90
- package/lib/components/default/default-table/th-filter/th-filter.component.d.ts +0 -23
- package/lib/components/default/default-view/abstract-view.d.ts +0 -18
- package/lib/components/default/default-view/default-view.component.d.ts +0 -32
- package/lib/components/default/default-view/header-view/header-view.component.d.ts +0 -29
- package/lib/components/default/default-view/view.d.ts +0 -59
- package/lib/components/default/default.module.d.ts +0 -31
- package/lib/components/default-page/default.page.d.ts +0 -35
- package/lib/components/drag-drop-file/drag-drop-file.directive.d.ts +0 -14
- package/lib/components/drag-drop-file/drag-drop-file.module.d.ts +0 -10
- package/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.d.ts +0 -9
- package/lib/components/drawer/default-drawer-end/default-drawer-end.component.d.ts +0 -13
- package/lib/components/drawer/drawer-group/drawer-group.component.d.ts +0 -22
- package/lib/components/drawer/drawer.component.d.ts +0 -31
- package/lib/components/drawer/menu.d.ts +0 -9
- package/lib/components/filter/filter.component.d.ts +0 -29
- package/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.d.ts +0 -8
- package/lib/components/image/image.component.d.ts +0 -23
- package/lib/components/info-popover/info-popover.component.d.ts +0 -15
- package/lib/components/inputs/custom-input.d.ts +0 -40
- package/lib/components/inputs/input-bool/input-bool.component.d.ts +0 -16
- package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +0 -17
- package/lib/components/inputs/input-cep/input-cep.component.d.ts +0 -18
- package/lib/components/inputs/input-cep/input-cep.configuration.d.ts +0 -3
- package/lib/components/inputs/input-color/input-color.component.d.ts +0 -77
- package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +0 -19
- package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +0 -5
- package/lib/components/inputs/input-date/input-date.component.d.ts +0 -60
- package/lib/components/inputs/input-date/input-date.configuration.d.ts +0 -7
- package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +0 -26
- package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +0 -28
- package/lib/components/inputs/input-default-configurations.d.ts +0 -13
- package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +0 -37
- package/lib/components/inputs/input-file/input-file.component.d.ts +0 -27
- package/lib/components/inputs/input-file/input-file.configuration.d.ts +0 -8
- package/lib/components/inputs/input-icon/fluenticons.d.ts +0 -1
- package/lib/components/inputs/input-icon/input-icon.component.d.ts +0 -20
- package/lib/components/inputs/input-icon/ionicons.d.ts +0 -1
- package/lib/components/inputs/input-provider-factory.d.ts +0 -4
- package/lib/components/inputs/input-select/directives/sion-label-template.directive.d.ts +0 -18
- package/lib/components/inputs/input-select/directives/sion-option-template.directive.d.ts +0 -14
- package/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.d.ts +0 -18
- package/lib/components/inputs/input-select/input-select.component.d.ts +0 -83
- package/lib/components/inputs/input-select/input.select.configuration.d.ts +0 -122
- package/lib/components/inputs/input-string/input-string.component.d.ts +0 -14
- package/lib/components/inputs/input-string/input-string.configuration.d.ts +0 -14
- package/lib/components/inputs/input-telefone/input-telefone.component.d.ts +0 -19
- package/lib/components/inputs/input-telefone/input-telefone.configuration.d.ts +0 -9
- package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +0 -14
- package/lib/components/inputs/input-textarea/input-textarea.configuration.d.ts +0 -4
- package/lib/components/inputs/input-type.d.ts +0 -22
- package/lib/components/inputs/input-validators.d.ts +0 -25
- package/lib/components/inputs/inputs.module.d.ts +0 -33
- package/lib/components/loading/loading.component.d.ts +0 -18
- package/lib/components/login/login-admin/login-admin.component.d.ts +0 -20
- package/lib/components/login/login.component.d.ts +0 -29
- package/lib/components/main-content/main-content.component.d.ts +0 -27
- package/lib/components/popover/sion-popover/sion-popover.component.d.ts +0 -43
- package/lib/components/popover/sion-popover.module.d.ts +0 -9
- package/lib/components/sion-card/sion-card.component.d.ts +0 -11
- package/lib/components/stepper/step/step.component.d.ts +0 -15
- package/lib/components/stepper/stepper.component.d.ts +0 -14
- package/lib/components/stepper/stepper.module.d.ts +0 -10
- package/lib/components/tabs/tab/tab.component.d.ts +0 -19
- package/lib/components/tabs/tabs/tabs.component.d.ts +0 -18
- package/lib/components/tabs/tabs.module.d.ts +0 -12
- package/lib/components/text-tooltip/text-tooltip.component.d.ts +0 -16
- package/lib/components/tooltip/tooltip.component.d.ts +0 -7
- package/lib/core.module.d.ts +0 -16
- package/lib/directives/ng-var.directive.d.ts +0 -12
- package/lib/guards/auth.guard.d.ts +0 -11
- package/lib/guards/error.interceptor.d.ts +0 -32
- package/lib/guards/token.interceptor.d.ts +0 -11
- package/lib/index.d.ts +0 -117
- package/lib/pipes/secure.pipe.d.ts +0 -15
- package/lib/services/auth.service.d.ts +0 -47
- package/lib/services/environment.service.d.ts +0 -10
- package/lib/services/generic.service.d.ts +0 -22
- package/lib/services/modal-focus-trap.service.d.ts +0 -13
- package/lib/services/popover-focus-trap.service.d.ts +0 -13
- package/lib/services/route/route.cache.service.d.ts +0 -7
- package/lib/services/route/route.provider.service.d.ts +0 -13
- package/lib/services/usuario.service.d.ts +0 -21
- package/lib/services/utils.service.d.ts +0 -53
- package/lib/services/web/api-url-provider.service.d.ts +0 -13
- package/lib/services/web/http.ativo.service.d.ts +0 -20
- package/lib/services/web/http.service.d.ts +0 -59
- package/lib/services/web/storage.service.d.ts +0 -46
- package/public-api.d.ts +0 -1
- /package/{themes → src/lib}/components/carousel/carousel-image/carousel-image.component.scss +0 -0
- /package/{themes → src/lib}/components/carousel/carousel-item/carousel-item.component.scss +0 -0
- /package/{themes → src/lib}/components/carousel/carousel.component.scss +0 -0
- /package/{themes → src/lib}/components/content-block/content-block.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-list/default-list.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-list/header-list/header-list.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-pagination/default-pagination.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-table/default-table.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-table/th-filter/th-filter.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-view/default-view.component.scss +0 -0
- /package/{themes → src/lib}/components/default/default-view/header-view/header-view.component.scss +0 -0
- /package/{themes → src/lib}/components/default-page/default.page.scss +0 -0
- /package/{themes → src/lib}/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.scss +0 -0
- /package/{themes → src/lib}/components/drawer/default-drawer-end/default-drawer-end.component.scss +0 -0
- /package/{themes → src/lib}/components/drawer/drawer-group/drawer-group.component.scss +0 -0
- /package/{themes → src/lib}/components/drawer/drawer.component.scss +0 -0
- /package/{themes → src/lib}/components/filter/filter.component.scss +0 -0
- /package/{themes → src/lib}/components/http-responses-pages/forbidden-403/forbidden-403.component.scss +0 -0
- /package/{themes → src/lib}/components/image/image.component.scss +0 -0
- /package/{themes → src/lib}/components/info-popover/info-popover.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/input-bool/input-bool.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/input-cep/input-cep.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/input-color/input-color.component.scss +0 -0
- /package/{themes/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss → src/lib/components/inputs/input-color/input-color.configuration.ts} +0 -0
- /package/{themes/components/inputs/input-icon/input-icon.component.scss → src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss} +0 -0
- /package/{themes → src/lib}/components/inputs/input-date/input-date.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/input-decimal/input-decimal.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/input-file/download-button/download-button.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/input-file/input-file.component.scss +0 -0
- /package/{themes/components/inputs/input-string/input-string.component.scss → src/lib/components/inputs/input-icon/input-icon.component.scss} +0 -0
- /package/{themes → src/lib}/components/inputs/input-select/input-select.component.scss +0 -0
- /package/{themes/components/inputs/input-telefone/input-telefone.component.scss → src/lib/components/inputs/input-string/input-string.component.scss} +0 -0
- /package/{themes/components/loading/loading.component.scss → src/lib/components/inputs/input-telefone/input-telefone.component.scss} +0 -0
- /package/{themes → src/lib}/components/inputs/input-textarea/input-textarea.component.scss +0 -0
- /package/{themes → src/lib}/components/inputs/inputs.scss +0 -0
- /package/{themes/components/sion-card/sion-card.component.scss → src/lib/components/loading/loading.component.scss} +0 -0
- /package/{themes → src/lib}/components/login/login-admin/login-admin.component.scss +0 -0
- /package/{themes → src/lib}/components/login/login.component.scss +0 -0
- /package/{themes → src/lib}/components/main-content/main-content.component.scss +0 -0
- /package/{themes → src/lib}/components/popover/sion-popover/sion-popover.component.scss +0 -0
- /package/{themes/components/stepper/stepper.component.scss → src/lib/components/sion-card/sion-card.component.scss} +0 -0
- /package/{themes → src/lib}/components/stepper/step/step.component.scss +0 -0
- /package/{themes/components/tabs/tab/tab.component.scss → src/lib/components/stepper/stepper.component.scss} +0 -0
- /package/{themes/components/text-tooltip/text-tooltip.component.scss → src/lib/components/tabs/tab/tab.component.scss} +0 -0
- /package/{themes → src/lib}/components/tabs/tabs/tabs.component.scss +0 -0
- /package/{themes → src/lib}/components/tooltip/tooltip.component.scss +0 -0
- /package/{themes → src/lib}/styles/components.scss +0 -0
- /package/{themes → src/lib}/styles/core.styles.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-action-sheet.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-alert.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-button.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-card.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-content.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-datetime.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-item.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-list.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-modal.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-popover.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-progress-bar.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-searchbar.scss +0 -0
- /package/{themes → src/lib}/styles/ionic/ion-toast.scss +0 -0
- /package/{themes → src/lib}/styles/ionic.scss +0 -0
- /package/{themes → src/lib}/styles/login-default.scss +0 -0
- /package/{themes → src/lib}/styles/mixins.scss +0 -0
- /package/{themes → src/lib}/styles/styles.scss +0 -0
- /package/{themes → src/lib}/styles/translucid.scss +0 -0
|
@@ -0,0 +1,1359 @@
|
|
|
1
|
+
export const lstIconsIonicons = [
|
|
2
|
+
"accessibility-outline.svg",
|
|
3
|
+
"accessibility-sharp.svg",
|
|
4
|
+
"accessibility.svg",
|
|
5
|
+
"add-circle-outline.svg",
|
|
6
|
+
"add-circle-sharp.svg",
|
|
7
|
+
"add-circle.svg",
|
|
8
|
+
"add-outline.svg",
|
|
9
|
+
"add-sharp.svg",
|
|
10
|
+
"add.svg",
|
|
11
|
+
"airplane-outline.svg",
|
|
12
|
+
"airplane-sharp.svg",
|
|
13
|
+
"airplane.svg",
|
|
14
|
+
"alarm-outline.svg",
|
|
15
|
+
"alarm-sharp.svg",
|
|
16
|
+
"alarm.svg",
|
|
17
|
+
"albums-outline.svg",
|
|
18
|
+
"albums-sharp.svg",
|
|
19
|
+
"albums.svg",
|
|
20
|
+
"alert-circle-outline.svg",
|
|
21
|
+
"alert-circle-sharp.svg",
|
|
22
|
+
"alert-circle.svg",
|
|
23
|
+
"alert-outline.svg",
|
|
24
|
+
"alert-sharp.svg",
|
|
25
|
+
"alert.svg",
|
|
26
|
+
"american-football-outline.svg",
|
|
27
|
+
"american-football-sharp.svg",
|
|
28
|
+
"american-football.svg",
|
|
29
|
+
"analytics-outline.svg",
|
|
30
|
+
"analytics-sharp.svg",
|
|
31
|
+
"analytics.svg",
|
|
32
|
+
"aperture-outline.svg",
|
|
33
|
+
"aperture-sharp.svg",
|
|
34
|
+
"aperture.svg",
|
|
35
|
+
"apps-outline.svg",
|
|
36
|
+
"apps-sharp.svg",
|
|
37
|
+
"apps.svg",
|
|
38
|
+
"archive-outline.svg",
|
|
39
|
+
"archive-sharp.svg",
|
|
40
|
+
"archive.svg",
|
|
41
|
+
"arrow-back-circle-outline.svg",
|
|
42
|
+
"arrow-back-circle-sharp.svg",
|
|
43
|
+
"arrow-back-circle.svg",
|
|
44
|
+
"arrow-back-outline.svg",
|
|
45
|
+
"arrow-back-sharp.svg",
|
|
46
|
+
"arrow-back.svg",
|
|
47
|
+
"arrow-down-circle-outline.svg",
|
|
48
|
+
"arrow-down-circle-sharp.svg",
|
|
49
|
+
"arrow-down-circle.svg",
|
|
50
|
+
"arrow-down-left-box-outline.svg",
|
|
51
|
+
"arrow-down-left-box-sharp.svg",
|
|
52
|
+
"arrow-down-left-box.svg",
|
|
53
|
+
"arrow-down-outline.svg",
|
|
54
|
+
"arrow-down-right-box-outline.svg",
|
|
55
|
+
"arrow-down-right-box-sharp.svg",
|
|
56
|
+
"arrow-down-right-box.svg",
|
|
57
|
+
"arrow-down-sharp.svg",
|
|
58
|
+
"arrow-down.svg",
|
|
59
|
+
"arrow-forward-circle-outline.svg",
|
|
60
|
+
"arrow-forward-circle-sharp.svg",
|
|
61
|
+
"arrow-forward-circle.svg",
|
|
62
|
+
"arrow-forward-outline.svg",
|
|
63
|
+
"arrow-forward-sharp.svg",
|
|
64
|
+
"arrow-forward.svg",
|
|
65
|
+
"arrow-redo-circle-outline.svg",
|
|
66
|
+
"arrow-redo-circle-sharp.svg",
|
|
67
|
+
"arrow-redo-circle.svg",
|
|
68
|
+
"arrow-redo-outline.svg",
|
|
69
|
+
"arrow-redo-sharp.svg",
|
|
70
|
+
"arrow-redo.svg",
|
|
71
|
+
"arrow-undo-circle-outline.svg",
|
|
72
|
+
"arrow-undo-circle-sharp.svg",
|
|
73
|
+
"arrow-undo-circle.svg",
|
|
74
|
+
"arrow-undo-outline.svg",
|
|
75
|
+
"arrow-undo-sharp.svg",
|
|
76
|
+
"arrow-undo.svg",
|
|
77
|
+
"arrow-up-circle-outline.svg",
|
|
78
|
+
"arrow-up-circle-sharp.svg",
|
|
79
|
+
"arrow-up-circle.svg",
|
|
80
|
+
"arrow-up-left-box-outline.svg",
|
|
81
|
+
"arrow-up-left-box-sharp.svg",
|
|
82
|
+
"arrow-up-left-box.svg",
|
|
83
|
+
"arrow-up-outline.svg",
|
|
84
|
+
"arrow-up-right-box-outline.svg",
|
|
85
|
+
"arrow-up-right-box-sharp.svg",
|
|
86
|
+
"arrow-up-right-box.svg",
|
|
87
|
+
"arrow-up-sharp.svg",
|
|
88
|
+
"arrow-up.svg",
|
|
89
|
+
"at-circle-outline.svg",
|
|
90
|
+
"at-circle-sharp.svg",
|
|
91
|
+
"at-circle.svg",
|
|
92
|
+
"at-outline.svg",
|
|
93
|
+
"at-sharp.svg",
|
|
94
|
+
"at.svg",
|
|
95
|
+
"attach-outline.svg",
|
|
96
|
+
"attach-sharp.svg",
|
|
97
|
+
"attach.svg",
|
|
98
|
+
"backspace-outline.svg",
|
|
99
|
+
"backspace-sharp.svg",
|
|
100
|
+
"backspace.svg",
|
|
101
|
+
"bag-add-outline.svg",
|
|
102
|
+
"bag-add-sharp.svg",
|
|
103
|
+
"bag-add.svg",
|
|
104
|
+
"bag-check-outline.svg",
|
|
105
|
+
"bag-check-sharp.svg",
|
|
106
|
+
"bag-check.svg",
|
|
107
|
+
"bag-handle-outline.svg",
|
|
108
|
+
"bag-handle-sharp.svg",
|
|
109
|
+
"bag-handle.svg",
|
|
110
|
+
"bag-outline.svg",
|
|
111
|
+
"bag-remove-outline.svg",
|
|
112
|
+
"bag-remove-sharp.svg",
|
|
113
|
+
"bag-remove.svg",
|
|
114
|
+
"bag-sharp.svg",
|
|
115
|
+
"bag.svg",
|
|
116
|
+
"balloon-outline.svg",
|
|
117
|
+
"balloon-sharp.svg",
|
|
118
|
+
"balloon.svg",
|
|
119
|
+
"ban-outline.svg",
|
|
120
|
+
"ban-sharp.svg",
|
|
121
|
+
"ban.svg",
|
|
122
|
+
"bandage-outline.svg",
|
|
123
|
+
"bandage-sharp.svg",
|
|
124
|
+
"bandage.svg",
|
|
125
|
+
"bar-chart-outline.svg",
|
|
126
|
+
"bar-chart-sharp.svg",
|
|
127
|
+
"bar-chart.svg",
|
|
128
|
+
"barbell-outline.svg",
|
|
129
|
+
"barbell-sharp.svg",
|
|
130
|
+
"barbell.svg",
|
|
131
|
+
"barcode-outline.svg",
|
|
132
|
+
"barcode-sharp.svg",
|
|
133
|
+
"barcode.svg",
|
|
134
|
+
"baseball-outline.svg",
|
|
135
|
+
"baseball-sharp.svg",
|
|
136
|
+
"baseball.svg",
|
|
137
|
+
"basket-outline.svg",
|
|
138
|
+
"basket-sharp.svg",
|
|
139
|
+
"basket.svg",
|
|
140
|
+
"basketball-outline.svg",
|
|
141
|
+
"basketball-sharp.svg",
|
|
142
|
+
"basketball.svg",
|
|
143
|
+
"battery-charging-outline.svg",
|
|
144
|
+
"battery-charging-sharp.svg",
|
|
145
|
+
"battery-charging.svg",
|
|
146
|
+
"battery-dead-outline.svg",
|
|
147
|
+
"battery-dead-sharp.svg",
|
|
148
|
+
"battery-dead.svg",
|
|
149
|
+
"battery-full-outline.svg",
|
|
150
|
+
"battery-full-sharp.svg",
|
|
151
|
+
"battery-full.svg",
|
|
152
|
+
"battery-half-outline.svg",
|
|
153
|
+
"battery-half-sharp.svg",
|
|
154
|
+
"battery-half.svg",
|
|
155
|
+
"beaker-outline.svg",
|
|
156
|
+
"beaker-sharp.svg",
|
|
157
|
+
"beaker.svg",
|
|
158
|
+
"bed-outline.svg",
|
|
159
|
+
"bed-sharp.svg",
|
|
160
|
+
"bed.svg",
|
|
161
|
+
"beer-outline.svg",
|
|
162
|
+
"beer-sharp.svg",
|
|
163
|
+
"beer.svg",
|
|
164
|
+
"bicycle-outline.svg",
|
|
165
|
+
"bicycle-sharp.svg",
|
|
166
|
+
"bicycle.svg",
|
|
167
|
+
"binoculars-outline.svg",
|
|
168
|
+
"binoculars-sharp.svg",
|
|
169
|
+
"binoculars.svg",
|
|
170
|
+
"bluetooth-outline.svg",
|
|
171
|
+
"bluetooth-sharp.svg",
|
|
172
|
+
"bluetooth.svg",
|
|
173
|
+
"boat-outline.svg",
|
|
174
|
+
"boat-sharp.svg",
|
|
175
|
+
"boat.svg",
|
|
176
|
+
"body-outline.svg",
|
|
177
|
+
"body-sharp.svg",
|
|
178
|
+
"body.svg",
|
|
179
|
+
"bonfire-outline.svg",
|
|
180
|
+
"bonfire-sharp.svg",
|
|
181
|
+
"bonfire.svg",
|
|
182
|
+
"book-outline.svg",
|
|
183
|
+
"book-sharp.svg",
|
|
184
|
+
"book.svg",
|
|
185
|
+
"bookmark-outline.svg",
|
|
186
|
+
"bookmark-sharp.svg",
|
|
187
|
+
"bookmark.svg",
|
|
188
|
+
"bookmarks-outline.svg",
|
|
189
|
+
"bookmarks-sharp.svg",
|
|
190
|
+
"bookmarks.svg",
|
|
191
|
+
"bowling-ball-outline.svg",
|
|
192
|
+
"bowling-ball-sharp.svg",
|
|
193
|
+
"bowling-ball.svg",
|
|
194
|
+
"briefcase-outline.svg",
|
|
195
|
+
"briefcase-sharp.svg",
|
|
196
|
+
"briefcase.svg",
|
|
197
|
+
"browsers-outline.svg",
|
|
198
|
+
"browsers-sharp.svg",
|
|
199
|
+
"browsers.svg",
|
|
200
|
+
"brush-outline.svg",
|
|
201
|
+
"brush-sharp.svg",
|
|
202
|
+
"brush.svg",
|
|
203
|
+
"bug-outline.svg",
|
|
204
|
+
"bug-sharp.svg",
|
|
205
|
+
"bug.svg",
|
|
206
|
+
"build-outline.svg",
|
|
207
|
+
"build-sharp.svg",
|
|
208
|
+
"build.svg",
|
|
209
|
+
"bulb-outline.svg",
|
|
210
|
+
"bulb-sharp.svg",
|
|
211
|
+
"bulb.svg",
|
|
212
|
+
"bus-outline.svg",
|
|
213
|
+
"bus-sharp.svg",
|
|
214
|
+
"bus.svg",
|
|
215
|
+
"business-outline.svg",
|
|
216
|
+
"business-sharp.svg",
|
|
217
|
+
"business.svg",
|
|
218
|
+
"cafe-outline.svg",
|
|
219
|
+
"cafe-sharp.svg",
|
|
220
|
+
"cafe.svg",
|
|
221
|
+
"calculator-outline.svg",
|
|
222
|
+
"calculator-sharp.svg",
|
|
223
|
+
"calculator.svg",
|
|
224
|
+
"calendar-clear-outline.svg",
|
|
225
|
+
"calendar-clear-sharp.svg",
|
|
226
|
+
"calendar-clear.svg",
|
|
227
|
+
"calendar-number-outline.svg",
|
|
228
|
+
"calendar-number-sharp.svg",
|
|
229
|
+
"calendar-number.svg",
|
|
230
|
+
"calendar-outline.svg",
|
|
231
|
+
"calendar-sharp.svg",
|
|
232
|
+
"calendar.svg",
|
|
233
|
+
"call-outline.svg",
|
|
234
|
+
"call-sharp.svg",
|
|
235
|
+
"call.svg",
|
|
236
|
+
"camera-outline.svg",
|
|
237
|
+
"camera-reverse-outline.svg",
|
|
238
|
+
"camera-reverse-sharp.svg",
|
|
239
|
+
"camera-reverse.svg",
|
|
240
|
+
"camera-sharp.svg",
|
|
241
|
+
"camera.svg",
|
|
242
|
+
"car-outline.svg",
|
|
243
|
+
"car-sharp.svg",
|
|
244
|
+
"car-sport-outline.svg",
|
|
245
|
+
"car-sport-sharp.svg",
|
|
246
|
+
"car-sport.svg",
|
|
247
|
+
"car.svg",
|
|
248
|
+
"card-outline.svg",
|
|
249
|
+
"card-sharp.svg",
|
|
250
|
+
"card.svg",
|
|
251
|
+
"caret-back-circle-outline.svg",
|
|
252
|
+
"caret-back-circle-sharp.svg",
|
|
253
|
+
"caret-back-circle.svg",
|
|
254
|
+
"caret-back-outline.svg",
|
|
255
|
+
"caret-back-sharp.svg",
|
|
256
|
+
"caret-back.svg",
|
|
257
|
+
"caret-down-circle-outline.svg",
|
|
258
|
+
"caret-down-circle-sharp.svg",
|
|
259
|
+
"caret-down-circle.svg",
|
|
260
|
+
"caret-down-outline.svg",
|
|
261
|
+
"caret-down-sharp.svg",
|
|
262
|
+
"caret-down.svg",
|
|
263
|
+
"caret-forward-circle-outline.svg",
|
|
264
|
+
"caret-forward-circle-sharp.svg",
|
|
265
|
+
"caret-forward-circle.svg",
|
|
266
|
+
"caret-forward-outline.svg",
|
|
267
|
+
"caret-forward-sharp.svg",
|
|
268
|
+
"caret-forward.svg",
|
|
269
|
+
"caret-up-circle-outline.svg",
|
|
270
|
+
"caret-up-circle-sharp.svg",
|
|
271
|
+
"caret-up-circle.svg",
|
|
272
|
+
"caret-up-outline.svg",
|
|
273
|
+
"caret-up-sharp.svg",
|
|
274
|
+
"caret-up.svg",
|
|
275
|
+
"cart-outline.svg",
|
|
276
|
+
"cart-sharp.svg",
|
|
277
|
+
"cart.svg",
|
|
278
|
+
"cash-outline.svg",
|
|
279
|
+
"cash-sharp.svg",
|
|
280
|
+
"cash.svg",
|
|
281
|
+
"cellular-outline.svg",
|
|
282
|
+
"cellular-sharp.svg",
|
|
283
|
+
"cellular.svg",
|
|
284
|
+
"chatbox-ellipses-outline.svg",
|
|
285
|
+
"chatbox-ellipses-sharp.svg",
|
|
286
|
+
"chatbox-ellipses.svg",
|
|
287
|
+
"chatbox-outline.svg",
|
|
288
|
+
"chatbox-sharp.svg",
|
|
289
|
+
"chatbox.svg",
|
|
290
|
+
"chatbubble-ellipses-outline.svg",
|
|
291
|
+
"chatbubble-ellipses-sharp.svg",
|
|
292
|
+
"chatbubble-ellipses.svg",
|
|
293
|
+
"chatbubble-outline.svg",
|
|
294
|
+
"chatbubble-sharp.svg",
|
|
295
|
+
"chatbubble.svg",
|
|
296
|
+
"chatbubbles-outline.svg",
|
|
297
|
+
"chatbubbles-sharp.svg",
|
|
298
|
+
"chatbubbles.svg",
|
|
299
|
+
"checkbox-outline.svg",
|
|
300
|
+
"checkbox-sharp.svg",
|
|
301
|
+
"checkbox.svg",
|
|
302
|
+
"checkmark-circle-outline.svg",
|
|
303
|
+
"checkmark-circle-sharp.svg",
|
|
304
|
+
"checkmark-circle.svg",
|
|
305
|
+
"checkmark-done-circle-outline.svg",
|
|
306
|
+
"checkmark-done-circle-sharp.svg",
|
|
307
|
+
"checkmark-done-circle.svg",
|
|
308
|
+
"checkmark-done-outline.svg",
|
|
309
|
+
"checkmark-done-sharp.svg",
|
|
310
|
+
"checkmark-done.svg",
|
|
311
|
+
"checkmark-outline.svg",
|
|
312
|
+
"checkmark-sharp.svg",
|
|
313
|
+
"checkmark.svg",
|
|
314
|
+
"chevron-back-circle-outline.svg",
|
|
315
|
+
"chevron-back-circle-sharp.svg",
|
|
316
|
+
"chevron-back-circle.svg",
|
|
317
|
+
"chevron-back-outline.svg",
|
|
318
|
+
"chevron-back-sharp.svg",
|
|
319
|
+
"chevron-back.svg",
|
|
320
|
+
"chevron-collapse-outline.svg",
|
|
321
|
+
"chevron-collapse-sharp.svg",
|
|
322
|
+
"chevron-collapse.svg",
|
|
323
|
+
"chevron-down-circle-outline.svg",
|
|
324
|
+
"chevron-down-circle-sharp.svg",
|
|
325
|
+
"chevron-down-circle.svg",
|
|
326
|
+
"chevron-down-outline.svg",
|
|
327
|
+
"chevron-down-sharp.svg",
|
|
328
|
+
"chevron-down.svg",
|
|
329
|
+
"chevron-expand-outline.svg",
|
|
330
|
+
"chevron-expand-sharp.svg",
|
|
331
|
+
"chevron-expand.svg",
|
|
332
|
+
"chevron-forward-circle-outline.svg",
|
|
333
|
+
"chevron-forward-circle-sharp.svg",
|
|
334
|
+
"chevron-forward-circle.svg",
|
|
335
|
+
"chevron-forward-outline.svg",
|
|
336
|
+
"chevron-forward-sharp.svg",
|
|
337
|
+
"chevron-forward.svg",
|
|
338
|
+
"chevron-up-circle-outline.svg",
|
|
339
|
+
"chevron-up-circle-sharp.svg",
|
|
340
|
+
"chevron-up-circle.svg",
|
|
341
|
+
"chevron-up-outline.svg",
|
|
342
|
+
"chevron-up-sharp.svg",
|
|
343
|
+
"chevron-up.svg",
|
|
344
|
+
"clipboard-outline.svg",
|
|
345
|
+
"clipboard-sharp.svg",
|
|
346
|
+
"clipboard.svg",
|
|
347
|
+
"close-circle-outline.svg",
|
|
348
|
+
"close-circle-sharp.svg",
|
|
349
|
+
"close-circle.svg",
|
|
350
|
+
"close-outline.svg",
|
|
351
|
+
"close-sharp.svg",
|
|
352
|
+
"close.svg",
|
|
353
|
+
"cloud-circle-outline.svg",
|
|
354
|
+
"cloud-circle-sharp.svg",
|
|
355
|
+
"cloud-circle.svg",
|
|
356
|
+
"cloud-done-outline.svg",
|
|
357
|
+
"cloud-done-sharp.svg",
|
|
358
|
+
"cloud-done.svg",
|
|
359
|
+
"cloud-download-outline.svg",
|
|
360
|
+
"cloud-download-sharp.svg",
|
|
361
|
+
"cloud-download.svg",
|
|
362
|
+
"cloud-offline-outline.svg",
|
|
363
|
+
"cloud-offline-sharp.svg",
|
|
364
|
+
"cloud-offline.svg",
|
|
365
|
+
"cloud-outline.svg",
|
|
366
|
+
"cloud-sharp.svg",
|
|
367
|
+
"cloud-upload-outline.svg",
|
|
368
|
+
"cloud-upload-sharp.svg",
|
|
369
|
+
"cloud-upload.svg",
|
|
370
|
+
"cloud.svg",
|
|
371
|
+
"cloudy-night-outline.svg",
|
|
372
|
+
"cloudy-night-sharp.svg",
|
|
373
|
+
"cloudy-night.svg",
|
|
374
|
+
"cloudy-outline.svg",
|
|
375
|
+
"cloudy-sharp.svg",
|
|
376
|
+
"cloudy.svg",
|
|
377
|
+
"code-download-outline.svg",
|
|
378
|
+
"code-download-sharp.svg",
|
|
379
|
+
"code-download.svg",
|
|
380
|
+
"code-outline.svg",
|
|
381
|
+
"code-sharp.svg",
|
|
382
|
+
"code-slash-outline.svg",
|
|
383
|
+
"code-slash-sharp.svg",
|
|
384
|
+
"code-slash.svg",
|
|
385
|
+
"code-working-outline.svg",
|
|
386
|
+
"code-working-sharp.svg",
|
|
387
|
+
"code-working.svg",
|
|
388
|
+
"code.svg",
|
|
389
|
+
"cog-outline.svg",
|
|
390
|
+
"cog-sharp.svg",
|
|
391
|
+
"cog.svg",
|
|
392
|
+
"color-fill-outline.svg",
|
|
393
|
+
"color-fill-sharp.svg",
|
|
394
|
+
"color-fill.svg",
|
|
395
|
+
"color-filter-outline.svg",
|
|
396
|
+
"color-filter-sharp.svg",
|
|
397
|
+
"color-filter.svg",
|
|
398
|
+
"color-palette-outline.svg",
|
|
399
|
+
"color-palette-sharp.svg",
|
|
400
|
+
"color-palette.svg",
|
|
401
|
+
"color-wand-outline.svg",
|
|
402
|
+
"color-wand-sharp.svg",
|
|
403
|
+
"color-wand.svg",
|
|
404
|
+
"compass-outline.svg",
|
|
405
|
+
"compass-sharp.svg",
|
|
406
|
+
"compass.svg",
|
|
407
|
+
"construct-outline.svg",
|
|
408
|
+
"construct-sharp.svg",
|
|
409
|
+
"construct.svg",
|
|
410
|
+
"contract-outline.svg",
|
|
411
|
+
"contract-sharp.svg",
|
|
412
|
+
"contract.svg",
|
|
413
|
+
"contrast-outline.svg",
|
|
414
|
+
"contrast-sharp.svg",
|
|
415
|
+
"contrast.svg",
|
|
416
|
+
"copy-outline.svg",
|
|
417
|
+
"copy-sharp.svg",
|
|
418
|
+
"copy.svg",
|
|
419
|
+
"create-outline.svg",
|
|
420
|
+
"create-sharp.svg",
|
|
421
|
+
"create.svg",
|
|
422
|
+
"crop-outline.svg",
|
|
423
|
+
"crop-sharp.svg",
|
|
424
|
+
"crop.svg",
|
|
425
|
+
"cube-outline.svg",
|
|
426
|
+
"cube-sharp.svg",
|
|
427
|
+
"cube.svg",
|
|
428
|
+
"cut-outline.svg",
|
|
429
|
+
"cut-sharp.svg",
|
|
430
|
+
"cut.svg",
|
|
431
|
+
"desktop-outline.svg",
|
|
432
|
+
"desktop-sharp.svg",
|
|
433
|
+
"desktop.svg",
|
|
434
|
+
"diamond-outline.svg",
|
|
435
|
+
"diamond-sharp.svg",
|
|
436
|
+
"diamond.svg",
|
|
437
|
+
"dice-outline.svg",
|
|
438
|
+
"dice-sharp.svg",
|
|
439
|
+
"dice.svg",
|
|
440
|
+
"disc-outline.svg",
|
|
441
|
+
"disc-sharp.svg",
|
|
442
|
+
"disc.svg",
|
|
443
|
+
"document-attach-outline.svg",
|
|
444
|
+
"document-attach-sharp.svg",
|
|
445
|
+
"document-attach.svg",
|
|
446
|
+
"document-lock-outline.svg",
|
|
447
|
+
"document-lock-sharp.svg",
|
|
448
|
+
"document-lock.svg",
|
|
449
|
+
"document-outline.svg",
|
|
450
|
+
"document-sharp.svg",
|
|
451
|
+
"document-text-outline.svg",
|
|
452
|
+
"document-text-sharp.svg",
|
|
453
|
+
"document-text.svg",
|
|
454
|
+
"document.svg",
|
|
455
|
+
"documents-outline.svg",
|
|
456
|
+
"documents-sharp.svg",
|
|
457
|
+
"documents.svg",
|
|
458
|
+
"download-outline.svg",
|
|
459
|
+
"download-sharp.svg",
|
|
460
|
+
"download.svg",
|
|
461
|
+
"duplicate-outline.svg",
|
|
462
|
+
"duplicate-sharp.svg",
|
|
463
|
+
"duplicate.svg",
|
|
464
|
+
"ear-outline.svg",
|
|
465
|
+
"ear-sharp.svg",
|
|
466
|
+
"ear.svg",
|
|
467
|
+
"earth-outline.svg",
|
|
468
|
+
"earth-sharp.svg",
|
|
469
|
+
"earth.svg",
|
|
470
|
+
"easel-outline.svg",
|
|
471
|
+
"easel-sharp.svg",
|
|
472
|
+
"easel.svg",
|
|
473
|
+
"egg-outline.svg",
|
|
474
|
+
"egg-sharp.svg",
|
|
475
|
+
"egg.svg",
|
|
476
|
+
"ellipse-outline.svg",
|
|
477
|
+
"ellipse-sharp.svg",
|
|
478
|
+
"ellipse.svg",
|
|
479
|
+
"ellipsis-horizontal-circle-outline.svg",
|
|
480
|
+
"ellipsis-horizontal-circle-sharp.svg",
|
|
481
|
+
"ellipsis-horizontal-circle.svg",
|
|
482
|
+
"ellipsis-horizontal-outline.svg",
|
|
483
|
+
"ellipsis-horizontal-sharp.svg",
|
|
484
|
+
"ellipsis-horizontal.svg",
|
|
485
|
+
"ellipsis-vertical-circle-outline.svg",
|
|
486
|
+
"ellipsis-vertical-circle-sharp.svg",
|
|
487
|
+
"ellipsis-vertical-circle.svg",
|
|
488
|
+
"ellipsis-vertical-outline.svg",
|
|
489
|
+
"ellipsis-vertical-sharp.svg",
|
|
490
|
+
"ellipsis-vertical.svg",
|
|
491
|
+
"enter-outline.svg",
|
|
492
|
+
"enter-sharp.svg",
|
|
493
|
+
"enter.svg",
|
|
494
|
+
"exit-outline.svg",
|
|
495
|
+
"exit-sharp.svg",
|
|
496
|
+
"exit.svg",
|
|
497
|
+
"expand-outline.svg",
|
|
498
|
+
"expand-sharp.svg",
|
|
499
|
+
"expand.svg",
|
|
500
|
+
"extension-puzzle-outline.svg",
|
|
501
|
+
"extension-puzzle-sharp.svg",
|
|
502
|
+
"extension-puzzle.svg",
|
|
503
|
+
"eye-off-outline.svg",
|
|
504
|
+
"eye-off-sharp.svg",
|
|
505
|
+
"eye-off.svg",
|
|
506
|
+
"eye-outline.svg",
|
|
507
|
+
"eye-sharp.svg",
|
|
508
|
+
"eye.svg",
|
|
509
|
+
"eyedrop-outline.svg",
|
|
510
|
+
"eyedrop-sharp.svg",
|
|
511
|
+
"eyedrop.svg",
|
|
512
|
+
"fast-food-outline.svg",
|
|
513
|
+
"fast-food-sharp.svg",
|
|
514
|
+
"fast-food.svg",
|
|
515
|
+
"female-outline.svg",
|
|
516
|
+
"female-sharp.svg",
|
|
517
|
+
"female.svg",
|
|
518
|
+
"file-tray-full-outline.svg",
|
|
519
|
+
"file-tray-full-sharp.svg",
|
|
520
|
+
"file-tray-full.svg",
|
|
521
|
+
"file-tray-outline.svg",
|
|
522
|
+
"file-tray-sharp.svg",
|
|
523
|
+
"file-tray-stacked-outline.svg",
|
|
524
|
+
"file-tray-stacked-sharp.svg",
|
|
525
|
+
"file-tray-stacked.svg",
|
|
526
|
+
"file-tray.svg",
|
|
527
|
+
"film-outline.svg",
|
|
528
|
+
"film-sharp.svg",
|
|
529
|
+
"film.svg",
|
|
530
|
+
"filter-circle-outline.svg",
|
|
531
|
+
"filter-circle-sharp.svg",
|
|
532
|
+
"filter-circle.svg",
|
|
533
|
+
"filter-outline.svg",
|
|
534
|
+
"filter-sharp.svg",
|
|
535
|
+
"filter.svg",
|
|
536
|
+
"finger-print-outline.svg",
|
|
537
|
+
"finger-print-sharp.svg",
|
|
538
|
+
"finger-print.svg",
|
|
539
|
+
"fish-outline.svg",
|
|
540
|
+
"fish-sharp.svg",
|
|
541
|
+
"fish.svg",
|
|
542
|
+
"fitness-outline.svg",
|
|
543
|
+
"fitness-sharp.svg",
|
|
544
|
+
"fitness.svg",
|
|
545
|
+
"flag-outline.svg",
|
|
546
|
+
"flag-sharp.svg",
|
|
547
|
+
"flag.svg",
|
|
548
|
+
"flame-outline.svg",
|
|
549
|
+
"flame-sharp.svg",
|
|
550
|
+
"flame.svg",
|
|
551
|
+
"flash-off-outline.svg",
|
|
552
|
+
"flash-off-sharp.svg",
|
|
553
|
+
"flash-off.svg",
|
|
554
|
+
"flash-outline.svg",
|
|
555
|
+
"flash-sharp.svg",
|
|
556
|
+
"flash.svg",
|
|
557
|
+
"flashlight-outline.svg",
|
|
558
|
+
"flashlight-sharp.svg",
|
|
559
|
+
"flashlight.svg",
|
|
560
|
+
"flask-outline.svg",
|
|
561
|
+
"flask-sharp.svg",
|
|
562
|
+
"flask.svg",
|
|
563
|
+
"flower-outline.svg",
|
|
564
|
+
"flower-sharp.svg",
|
|
565
|
+
"flower.svg",
|
|
566
|
+
"folder-open-outline.svg",
|
|
567
|
+
"folder-open-sharp.svg",
|
|
568
|
+
"folder-open.svg",
|
|
569
|
+
"folder-outline.svg",
|
|
570
|
+
"folder-sharp.svg",
|
|
571
|
+
"folder.svg",
|
|
572
|
+
"football-outline.svg",
|
|
573
|
+
"football-sharp.svg",
|
|
574
|
+
"football.svg",
|
|
575
|
+
"footsteps-outline.svg",
|
|
576
|
+
"footsteps-sharp.svg",
|
|
577
|
+
"footsteps.svg",
|
|
578
|
+
"funnel-outline.svg",
|
|
579
|
+
"funnel-sharp.svg",
|
|
580
|
+
"funnel.svg",
|
|
581
|
+
"game-controller-outline.svg",
|
|
582
|
+
"game-controller-sharp.svg",
|
|
583
|
+
"game-controller.svg",
|
|
584
|
+
"gift-outline.svg",
|
|
585
|
+
"gift-sharp.svg",
|
|
586
|
+
"gift.svg",
|
|
587
|
+
"git-branch-outline.svg",
|
|
588
|
+
"git-branch-sharp.svg",
|
|
589
|
+
"git-branch.svg",
|
|
590
|
+
"git-commit-outline.svg",
|
|
591
|
+
"git-commit-sharp.svg",
|
|
592
|
+
"git-commit.svg",
|
|
593
|
+
"git-compare-outline.svg",
|
|
594
|
+
"git-compare-sharp.svg",
|
|
595
|
+
"git-compare.svg",
|
|
596
|
+
"git-merge-outline.svg",
|
|
597
|
+
"git-merge-sharp.svg",
|
|
598
|
+
"git-merge.svg",
|
|
599
|
+
"git-network-outline.svg",
|
|
600
|
+
"git-network-sharp.svg",
|
|
601
|
+
"git-network.svg",
|
|
602
|
+
"git-pull-request-outline.svg",
|
|
603
|
+
"git-pull-request-sharp.svg",
|
|
604
|
+
"git-pull-request.svg",
|
|
605
|
+
"glasses-outline.svg",
|
|
606
|
+
"glasses-sharp.svg",
|
|
607
|
+
"glasses.svg",
|
|
608
|
+
"globe-outline.svg",
|
|
609
|
+
"globe-sharp.svg",
|
|
610
|
+
"globe.svg",
|
|
611
|
+
"golf-outline.svg",
|
|
612
|
+
"golf-sharp.svg",
|
|
613
|
+
"golf.svg",
|
|
614
|
+
"grid-outline.svg",
|
|
615
|
+
"grid-sharp.svg",
|
|
616
|
+
"grid.svg",
|
|
617
|
+
"hammer-outline.svg",
|
|
618
|
+
"hammer-sharp.svg",
|
|
619
|
+
"hammer.svg",
|
|
620
|
+
"hand-left-outline.svg",
|
|
621
|
+
"hand-left-sharp.svg",
|
|
622
|
+
"hand-left.svg",
|
|
623
|
+
"hand-right-outline.svg",
|
|
624
|
+
"hand-right-sharp.svg",
|
|
625
|
+
"hand-right.svg",
|
|
626
|
+
"happy-outline.svg",
|
|
627
|
+
"happy-sharp.svg",
|
|
628
|
+
"happy.svg",
|
|
629
|
+
"hardware-chip-outline.svg",
|
|
630
|
+
"hardware-chip-sharp.svg",
|
|
631
|
+
"hardware-chip.svg",
|
|
632
|
+
"headset-outline.svg",
|
|
633
|
+
"headset-sharp.svg",
|
|
634
|
+
"headset.svg",
|
|
635
|
+
"heart-circle-outline.svg",
|
|
636
|
+
"heart-circle-sharp.svg",
|
|
637
|
+
"heart-circle.svg",
|
|
638
|
+
"heart-dislike-circle-outline.svg",
|
|
639
|
+
"heart-dislike-circle-sharp.svg",
|
|
640
|
+
"heart-dislike-circle.svg",
|
|
641
|
+
"heart-dislike-outline.svg",
|
|
642
|
+
"heart-dislike-sharp.svg",
|
|
643
|
+
"heart-dislike.svg",
|
|
644
|
+
"heart-half-outline.svg",
|
|
645
|
+
"heart-half-sharp.svg",
|
|
646
|
+
"heart-half.svg",
|
|
647
|
+
"heart-outline.svg",
|
|
648
|
+
"heart-sharp.svg",
|
|
649
|
+
"heart.svg",
|
|
650
|
+
"help-buoy-outline.svg",
|
|
651
|
+
"help-buoy-sharp.svg",
|
|
652
|
+
"help-buoy.svg",
|
|
653
|
+
"help-circle-outline.svg",
|
|
654
|
+
"help-circle-sharp.svg",
|
|
655
|
+
"help-circle.svg",
|
|
656
|
+
"help-outline.svg",
|
|
657
|
+
"help-sharp.svg",
|
|
658
|
+
"help.svg",
|
|
659
|
+
"home-outline.svg",
|
|
660
|
+
"home-sharp.svg",
|
|
661
|
+
"home.svg",
|
|
662
|
+
"hourglass-outline.svg",
|
|
663
|
+
"hourglass-sharp.svg",
|
|
664
|
+
"hourglass.svg",
|
|
665
|
+
"ice-cream-outline.svg",
|
|
666
|
+
"ice-cream-sharp.svg",
|
|
667
|
+
"ice-cream.svg",
|
|
668
|
+
"id-card-outline.svg",
|
|
669
|
+
"id-card-sharp.svg",
|
|
670
|
+
"id-card.svg",
|
|
671
|
+
"image-outline.svg",
|
|
672
|
+
"image-sharp.svg",
|
|
673
|
+
"image.svg",
|
|
674
|
+
"images-outline.svg",
|
|
675
|
+
"images-sharp.svg",
|
|
676
|
+
"images.svg",
|
|
677
|
+
"infinite-outline.svg",
|
|
678
|
+
"infinite-sharp.svg",
|
|
679
|
+
"infinite.svg",
|
|
680
|
+
"information-circle-outline.svg",
|
|
681
|
+
"information-circle-sharp.svg",
|
|
682
|
+
"information-circle.svg",
|
|
683
|
+
"information-outline.svg",
|
|
684
|
+
"information-sharp.svg",
|
|
685
|
+
"information.svg",
|
|
686
|
+
"invert-mode-outline.svg",
|
|
687
|
+
"invert-mode-sharp.svg",
|
|
688
|
+
"invert-mode.svg",
|
|
689
|
+
"journal-outline.svg",
|
|
690
|
+
"journal-sharp.svg",
|
|
691
|
+
"journal.svg",
|
|
692
|
+
"key-outline.svg",
|
|
693
|
+
"key-sharp.svg",
|
|
694
|
+
"key.svg",
|
|
695
|
+
"keypad-outline.svg",
|
|
696
|
+
"keypad-sharp.svg",
|
|
697
|
+
"keypad.svg",
|
|
698
|
+
"language-outline.svg",
|
|
699
|
+
"language-sharp.svg",
|
|
700
|
+
"language.svg",
|
|
701
|
+
"laptop-outline.svg",
|
|
702
|
+
"laptop-sharp.svg",
|
|
703
|
+
"laptop.svg",
|
|
704
|
+
"layers-outline.svg",
|
|
705
|
+
"layers-sharp.svg",
|
|
706
|
+
"layers.svg",
|
|
707
|
+
"leaf-outline.svg",
|
|
708
|
+
"leaf-sharp.svg",
|
|
709
|
+
"leaf.svg",
|
|
710
|
+
"library-outline.svg",
|
|
711
|
+
"library-sharp.svg",
|
|
712
|
+
"library.svg",
|
|
713
|
+
"link-outline.svg",
|
|
714
|
+
"link-sharp.svg",
|
|
715
|
+
"link.svg",
|
|
716
|
+
"list-circle-outline.svg",
|
|
717
|
+
"list-circle-sharp.svg",
|
|
718
|
+
"list-circle.svg",
|
|
719
|
+
"list-outline.svg",
|
|
720
|
+
"list-sharp.svg",
|
|
721
|
+
"list.svg",
|
|
722
|
+
"locate-outline.svg",
|
|
723
|
+
"locate-sharp.svg",
|
|
724
|
+
"locate.svg",
|
|
725
|
+
"location-outline.svg",
|
|
726
|
+
"location-sharp.svg",
|
|
727
|
+
"location.svg",
|
|
728
|
+
"lock-closed-outline.svg",
|
|
729
|
+
"lock-closed-sharp.svg",
|
|
730
|
+
"lock-closed.svg",
|
|
731
|
+
"lock-open-outline.svg",
|
|
732
|
+
"lock-open-sharp.svg",
|
|
733
|
+
"lock-open.svg",
|
|
734
|
+
"log-in-outline.svg",
|
|
735
|
+
"log-in-sharp.svg",
|
|
736
|
+
"log-in.svg",
|
|
737
|
+
"log-out-outline.svg",
|
|
738
|
+
"log-out-sharp.svg",
|
|
739
|
+
"log-out.svg",
|
|
740
|
+
"logo-alipay.svg",
|
|
741
|
+
"logo-amazon.svg",
|
|
742
|
+
"logo-amplify.svg",
|
|
743
|
+
"logo-android.svg",
|
|
744
|
+
"logo-angular.svg",
|
|
745
|
+
"logo-appflow.svg",
|
|
746
|
+
"logo-apple-appstore.svg",
|
|
747
|
+
"logo-apple-ar.svg",
|
|
748
|
+
"logo-apple.svg",
|
|
749
|
+
"logo-behance.svg",
|
|
750
|
+
"logo-bitbucket.svg",
|
|
751
|
+
"logo-bitcoin.svg",
|
|
752
|
+
"logo-buffer.svg",
|
|
753
|
+
"logo-capacitor.svg",
|
|
754
|
+
"logo-chrome.svg",
|
|
755
|
+
"logo-closed-captioning.svg",
|
|
756
|
+
"logo-codepen.svg",
|
|
757
|
+
"logo-css3.svg",
|
|
758
|
+
"logo-designernews.svg",
|
|
759
|
+
"logo-deviantart.svg",
|
|
760
|
+
"logo-discord.svg",
|
|
761
|
+
"logo-docker.svg",
|
|
762
|
+
"logo-dribbble.svg",
|
|
763
|
+
"logo-dropbox.svg",
|
|
764
|
+
"logo-edge.svg",
|
|
765
|
+
"logo-electron.svg",
|
|
766
|
+
"logo-euro.svg",
|
|
767
|
+
"logo-facebook.svg",
|
|
768
|
+
"logo-figma.svg",
|
|
769
|
+
"logo-firebase.svg",
|
|
770
|
+
"logo-firefox.svg",
|
|
771
|
+
"logo-flickr.svg",
|
|
772
|
+
"logo-foursquare.svg",
|
|
773
|
+
"logo-github.svg",
|
|
774
|
+
"logo-gitlab.svg",
|
|
775
|
+
"logo-google-playstore.svg",
|
|
776
|
+
"logo-google.svg",
|
|
777
|
+
"logo-hackernews.svg",
|
|
778
|
+
"logo-html5.svg",
|
|
779
|
+
"logo-instagram.svg",
|
|
780
|
+
"logo-ionic.svg",
|
|
781
|
+
"logo-ionitron.svg",
|
|
782
|
+
"logo-javascript.svg",
|
|
783
|
+
"logo-laravel.svg",
|
|
784
|
+
"logo-linkedin.svg",
|
|
785
|
+
"logo-markdown.svg",
|
|
786
|
+
"logo-mastodon.svg",
|
|
787
|
+
"logo-medium.svg",
|
|
788
|
+
"logo-microsoft.svg",
|
|
789
|
+
"logo-no-smoking.svg",
|
|
790
|
+
"logo-nodejs.svg",
|
|
791
|
+
"logo-npm.svg",
|
|
792
|
+
"logo-octocat.svg",
|
|
793
|
+
"logo-paypal.svg",
|
|
794
|
+
"logo-pinterest.svg",
|
|
795
|
+
"logo-playstation.svg",
|
|
796
|
+
"logo-pwa.svg",
|
|
797
|
+
"logo-python.svg",
|
|
798
|
+
"logo-react.svg",
|
|
799
|
+
"logo-reddit.svg",
|
|
800
|
+
"logo-rss.svg",
|
|
801
|
+
"logo-sass.svg",
|
|
802
|
+
"logo-skype.svg",
|
|
803
|
+
"logo-slack.svg",
|
|
804
|
+
"logo-snapchat.svg",
|
|
805
|
+
"logo-soundcloud.svg",
|
|
806
|
+
"logo-stackoverflow.svg",
|
|
807
|
+
"logo-steam.svg",
|
|
808
|
+
"logo-stencil.svg",
|
|
809
|
+
"logo-tableau.svg",
|
|
810
|
+
"logo-threads.svg",
|
|
811
|
+
"logo-tiktok.svg",
|
|
812
|
+
"logo-trapeze.svg",
|
|
813
|
+
"logo-tumblr.svg",
|
|
814
|
+
"logo-tux.svg",
|
|
815
|
+
"logo-twitch.svg",
|
|
816
|
+
"logo-twitter.svg",
|
|
817
|
+
"logo-usd.svg",
|
|
818
|
+
"logo-venmo.svg",
|
|
819
|
+
"logo-vercel.svg",
|
|
820
|
+
"logo-vimeo.svg",
|
|
821
|
+
"logo-vk.svg",
|
|
822
|
+
"logo-vue.svg",
|
|
823
|
+
"logo-web-component.svg",
|
|
824
|
+
"logo-wechat.svg",
|
|
825
|
+
"logo-whatsapp.svg",
|
|
826
|
+
"logo-windows.svg",
|
|
827
|
+
"logo-wordpress.svg",
|
|
828
|
+
"logo-x.svg",
|
|
829
|
+
"logo-xbox.svg",
|
|
830
|
+
"logo-xing.svg",
|
|
831
|
+
"logo-yahoo.svg",
|
|
832
|
+
"logo-yen.svg",
|
|
833
|
+
"logo-youtube.svg",
|
|
834
|
+
"magnet-outline.svg",
|
|
835
|
+
"magnet-sharp.svg",
|
|
836
|
+
"magnet.svg",
|
|
837
|
+
"mail-open-outline.svg",
|
|
838
|
+
"mail-open-sharp.svg",
|
|
839
|
+
"mail-open.svg",
|
|
840
|
+
"mail-outline.svg",
|
|
841
|
+
"mail-sharp.svg",
|
|
842
|
+
"mail-unread-outline.svg",
|
|
843
|
+
"mail-unread-sharp.svg",
|
|
844
|
+
"mail-unread.svg",
|
|
845
|
+
"mail.svg",
|
|
846
|
+
"male-female-outline.svg",
|
|
847
|
+
"male-female-sharp.svg",
|
|
848
|
+
"male-female.svg",
|
|
849
|
+
"male-outline.svg",
|
|
850
|
+
"male-sharp.svg",
|
|
851
|
+
"male.svg",
|
|
852
|
+
"man-outline.svg",
|
|
853
|
+
"man-sharp.svg",
|
|
854
|
+
"man.svg",
|
|
855
|
+
"map-outline.svg",
|
|
856
|
+
"map-sharp.svg",
|
|
857
|
+
"map.svg",
|
|
858
|
+
"medal-outline.svg",
|
|
859
|
+
"medal-sharp.svg",
|
|
860
|
+
"medal.svg",
|
|
861
|
+
"medical-outline.svg",
|
|
862
|
+
"medical-sharp.svg",
|
|
863
|
+
"medical.svg",
|
|
864
|
+
"medkit-outline.svg",
|
|
865
|
+
"medkit-sharp.svg",
|
|
866
|
+
"medkit.svg",
|
|
867
|
+
"megaphone-outline.svg",
|
|
868
|
+
"megaphone-sharp.svg",
|
|
869
|
+
"megaphone.svg",
|
|
870
|
+
"menu-outline.svg",
|
|
871
|
+
"menu-sharp.svg",
|
|
872
|
+
"menu.svg",
|
|
873
|
+
"mic-circle-outline.svg",
|
|
874
|
+
"mic-circle-sharp.svg",
|
|
875
|
+
"mic-circle.svg",
|
|
876
|
+
"mic-off-circle-outline.svg",
|
|
877
|
+
"mic-off-circle-sharp.svg",
|
|
878
|
+
"mic-off-circle.svg",
|
|
879
|
+
"mic-off-outline.svg",
|
|
880
|
+
"mic-off-sharp.svg",
|
|
881
|
+
"mic-off.svg",
|
|
882
|
+
"mic-outline.svg",
|
|
883
|
+
"mic-sharp.svg",
|
|
884
|
+
"mic.svg",
|
|
885
|
+
"moon-outline.svg",
|
|
886
|
+
"moon-sharp.svg",
|
|
887
|
+
"moon.svg",
|
|
888
|
+
"move-outline.svg",
|
|
889
|
+
"move-sharp.svg",
|
|
890
|
+
"move.svg",
|
|
891
|
+
"musical-note-outline.svg",
|
|
892
|
+
"musical-note-sharp.svg",
|
|
893
|
+
"musical-note.svg",
|
|
894
|
+
"musical-notes-outline.svg",
|
|
895
|
+
"musical-notes-sharp.svg",
|
|
896
|
+
"musical-notes.svg",
|
|
897
|
+
"navigate-circle-outline.svg",
|
|
898
|
+
"navigate-circle-sharp.svg",
|
|
899
|
+
"navigate-circle.svg",
|
|
900
|
+
"navigate-outline.svg",
|
|
901
|
+
"navigate-sharp.svg",
|
|
902
|
+
"navigate.svg",
|
|
903
|
+
"newspaper-outline.svg",
|
|
904
|
+
"newspaper-sharp.svg",
|
|
905
|
+
"newspaper.svg",
|
|
906
|
+
"notifications-circle-outline.svg",
|
|
907
|
+
"notifications-circle-sharp.svg",
|
|
908
|
+
"notifications-circle.svg",
|
|
909
|
+
"notifications-off-circle-outline.svg",
|
|
910
|
+
"notifications-off-circle-sharp.svg",
|
|
911
|
+
"notifications-off-circle.svg",
|
|
912
|
+
"notifications-off-outline.svg",
|
|
913
|
+
"notifications-off-sharp.svg",
|
|
914
|
+
"notifications-off.svg",
|
|
915
|
+
"notifications-outline.svg",
|
|
916
|
+
"notifications-sharp.svg",
|
|
917
|
+
"notifications.svg",
|
|
918
|
+
"nuclear-outline.svg",
|
|
919
|
+
"nuclear-sharp.svg",
|
|
920
|
+
"nuclear.svg",
|
|
921
|
+
"nutrition-outline.svg",
|
|
922
|
+
"nutrition-sharp.svg",
|
|
923
|
+
"nutrition.svg",
|
|
924
|
+
"open-outline.svg",
|
|
925
|
+
"open-sharp.svg",
|
|
926
|
+
"open.svg",
|
|
927
|
+
"options-outline.svg",
|
|
928
|
+
"options-sharp.svg",
|
|
929
|
+
"options.svg",
|
|
930
|
+
"paper-plane-outline.svg",
|
|
931
|
+
"paper-plane-sharp.svg",
|
|
932
|
+
"paper-plane.svg",
|
|
933
|
+
"partly-sunny-outline.svg",
|
|
934
|
+
"partly-sunny-sharp.svg",
|
|
935
|
+
"partly-sunny.svg",
|
|
936
|
+
"pause-circle-outline.svg",
|
|
937
|
+
"pause-circle-sharp.svg",
|
|
938
|
+
"pause-circle.svg",
|
|
939
|
+
"pause-outline.svg",
|
|
940
|
+
"pause-sharp.svg",
|
|
941
|
+
"pause.svg",
|
|
942
|
+
"paw-outline.svg",
|
|
943
|
+
"paw-sharp.svg",
|
|
944
|
+
"paw.svg",
|
|
945
|
+
"pencil-outline.svg",
|
|
946
|
+
"pencil-sharp.svg",
|
|
947
|
+
"pencil.svg",
|
|
948
|
+
"people-circle-outline.svg",
|
|
949
|
+
"people-circle-sharp.svg",
|
|
950
|
+
"people-circle.svg",
|
|
951
|
+
"people-outline.svg",
|
|
952
|
+
"people-sharp.svg",
|
|
953
|
+
"people.svg",
|
|
954
|
+
"person-add-outline.svg",
|
|
955
|
+
"person-add-sharp.svg",
|
|
956
|
+
"person-add.svg",
|
|
957
|
+
"person-circle-outline.svg",
|
|
958
|
+
"person-circle-sharp.svg",
|
|
959
|
+
"person-circle.svg",
|
|
960
|
+
"person-outline.svg",
|
|
961
|
+
"person-remove-outline.svg",
|
|
962
|
+
"person-remove-sharp.svg",
|
|
963
|
+
"person-remove.svg",
|
|
964
|
+
"person-sharp.svg",
|
|
965
|
+
"person.svg",
|
|
966
|
+
"phone-landscape-outline.svg",
|
|
967
|
+
"phone-landscape-sharp.svg",
|
|
968
|
+
"phone-landscape.svg",
|
|
969
|
+
"phone-portrait-outline.svg",
|
|
970
|
+
"phone-portrait-sharp.svg",
|
|
971
|
+
"phone-portrait.svg",
|
|
972
|
+
"pie-chart-outline.svg",
|
|
973
|
+
"pie-chart-sharp.svg",
|
|
974
|
+
"pie-chart.svg",
|
|
975
|
+
"pin-outline.svg",
|
|
976
|
+
"pin-sharp.svg",
|
|
977
|
+
"pin.svg",
|
|
978
|
+
"pint-outline.svg",
|
|
979
|
+
"pint-sharp.svg",
|
|
980
|
+
"pint.svg",
|
|
981
|
+
"pizza-outline.svg",
|
|
982
|
+
"pizza-sharp.svg",
|
|
983
|
+
"pizza.svg",
|
|
984
|
+
"planet-outline.svg",
|
|
985
|
+
"planet-sharp.svg",
|
|
986
|
+
"planet.svg",
|
|
987
|
+
"play-back-circle-outline.svg",
|
|
988
|
+
"play-back-circle-sharp.svg",
|
|
989
|
+
"play-back-circle.svg",
|
|
990
|
+
"play-back-outline.svg",
|
|
991
|
+
"play-back-sharp.svg",
|
|
992
|
+
"play-back.svg",
|
|
993
|
+
"play-circle-outline.svg",
|
|
994
|
+
"play-circle-sharp.svg",
|
|
995
|
+
"play-circle.svg",
|
|
996
|
+
"play-forward-circle-outline.svg",
|
|
997
|
+
"play-forward-circle-sharp.svg",
|
|
998
|
+
"play-forward-circle.svg",
|
|
999
|
+
"play-forward-outline.svg",
|
|
1000
|
+
"play-forward-sharp.svg",
|
|
1001
|
+
"play-forward.svg",
|
|
1002
|
+
"play-outline.svg",
|
|
1003
|
+
"play-sharp.svg",
|
|
1004
|
+
"play-skip-back-circle-outline.svg",
|
|
1005
|
+
"play-skip-back-circle-sharp.svg",
|
|
1006
|
+
"play-skip-back-circle.svg",
|
|
1007
|
+
"play-skip-back-outline.svg",
|
|
1008
|
+
"play-skip-back-sharp.svg",
|
|
1009
|
+
"play-skip-back.svg",
|
|
1010
|
+
"play-skip-forward-circle-outline.svg",
|
|
1011
|
+
"play-skip-forward-circle-sharp.svg",
|
|
1012
|
+
"play-skip-forward-circle.svg",
|
|
1013
|
+
"play-skip-forward-outline.svg",
|
|
1014
|
+
"play-skip-forward-sharp.svg",
|
|
1015
|
+
"play-skip-forward.svg",
|
|
1016
|
+
"play.svg",
|
|
1017
|
+
"podium-outline.svg",
|
|
1018
|
+
"podium-sharp.svg",
|
|
1019
|
+
"podium.svg",
|
|
1020
|
+
"power-outline.svg",
|
|
1021
|
+
"power-sharp.svg",
|
|
1022
|
+
"power.svg",
|
|
1023
|
+
"pricetag-outline.svg",
|
|
1024
|
+
"pricetag-sharp.svg",
|
|
1025
|
+
"pricetag.svg",
|
|
1026
|
+
"pricetags-outline.svg",
|
|
1027
|
+
"pricetags-sharp.svg",
|
|
1028
|
+
"pricetags.svg",
|
|
1029
|
+
"print-outline.svg",
|
|
1030
|
+
"print-sharp.svg",
|
|
1031
|
+
"print.svg",
|
|
1032
|
+
"prism-outline.svg",
|
|
1033
|
+
"prism-sharp.svg",
|
|
1034
|
+
"prism.svg",
|
|
1035
|
+
"pulse-outline.svg",
|
|
1036
|
+
"pulse-sharp.svg",
|
|
1037
|
+
"pulse.svg",
|
|
1038
|
+
"push-outline.svg",
|
|
1039
|
+
"push-sharp.svg",
|
|
1040
|
+
"push.svg",
|
|
1041
|
+
"qr-code-outline.svg",
|
|
1042
|
+
"qr-code-sharp.svg",
|
|
1043
|
+
"qr-code.svg",
|
|
1044
|
+
"radio-button-off-outline.svg",
|
|
1045
|
+
"radio-button-off-sharp.svg",
|
|
1046
|
+
"radio-button-off.svg",
|
|
1047
|
+
"radio-button-on-outline.svg",
|
|
1048
|
+
"radio-button-on-sharp.svg",
|
|
1049
|
+
"radio-button-on.svg",
|
|
1050
|
+
"radio-outline.svg",
|
|
1051
|
+
"radio-sharp.svg",
|
|
1052
|
+
"radio.svg",
|
|
1053
|
+
"rainy-outline.svg",
|
|
1054
|
+
"rainy-sharp.svg",
|
|
1055
|
+
"rainy.svg",
|
|
1056
|
+
"reader-outline.svg",
|
|
1057
|
+
"reader-sharp.svg",
|
|
1058
|
+
"reader.svg",
|
|
1059
|
+
"receipt-outline.svg",
|
|
1060
|
+
"receipt-sharp.svg",
|
|
1061
|
+
"receipt.svg",
|
|
1062
|
+
"recording-outline.svg",
|
|
1063
|
+
"recording-sharp.svg",
|
|
1064
|
+
"recording.svg",
|
|
1065
|
+
"refresh-circle-outline.svg",
|
|
1066
|
+
"refresh-circle-sharp.svg",
|
|
1067
|
+
"refresh-circle.svg",
|
|
1068
|
+
"refresh-outline.svg",
|
|
1069
|
+
"refresh-sharp.svg",
|
|
1070
|
+
"refresh.svg",
|
|
1071
|
+
"reload-circle-outline.svg",
|
|
1072
|
+
"reload-circle-sharp.svg",
|
|
1073
|
+
"reload-circle.svg",
|
|
1074
|
+
"reload-outline.svg",
|
|
1075
|
+
"reload-sharp.svg",
|
|
1076
|
+
"reload.svg",
|
|
1077
|
+
"remove-circle-outline.svg",
|
|
1078
|
+
"remove-circle-sharp.svg",
|
|
1079
|
+
"remove-circle.svg",
|
|
1080
|
+
"remove-outline.svg",
|
|
1081
|
+
"remove-sharp.svg",
|
|
1082
|
+
"remove.svg",
|
|
1083
|
+
"reorder-four-outline.svg",
|
|
1084
|
+
"reorder-four-sharp.svg",
|
|
1085
|
+
"reorder-four.svg",
|
|
1086
|
+
"reorder-three-outline.svg",
|
|
1087
|
+
"reorder-three-sharp.svg",
|
|
1088
|
+
"reorder-three.svg",
|
|
1089
|
+
"reorder-two-outline.svg",
|
|
1090
|
+
"reorder-two-sharp.svg",
|
|
1091
|
+
"reorder-two.svg",
|
|
1092
|
+
"repeat-outline.svg",
|
|
1093
|
+
"repeat-sharp.svg",
|
|
1094
|
+
"repeat.svg",
|
|
1095
|
+
"resize-outline.svg",
|
|
1096
|
+
"resize-sharp.svg",
|
|
1097
|
+
"resize.svg",
|
|
1098
|
+
"restaurant-outline.svg",
|
|
1099
|
+
"restaurant-sharp.svg",
|
|
1100
|
+
"restaurant.svg",
|
|
1101
|
+
"return-down-back-outline.svg",
|
|
1102
|
+
"return-down-back-sharp.svg",
|
|
1103
|
+
"return-down-back.svg",
|
|
1104
|
+
"return-down-forward-outline.svg",
|
|
1105
|
+
"return-down-forward-sharp.svg",
|
|
1106
|
+
"return-down-forward.svg",
|
|
1107
|
+
"return-up-back-outline.svg",
|
|
1108
|
+
"return-up-back-sharp.svg",
|
|
1109
|
+
"return-up-back.svg",
|
|
1110
|
+
"return-up-forward-outline.svg",
|
|
1111
|
+
"return-up-forward-sharp.svg",
|
|
1112
|
+
"return-up-forward.svg",
|
|
1113
|
+
"ribbon-outline.svg",
|
|
1114
|
+
"ribbon-sharp.svg",
|
|
1115
|
+
"ribbon.svg",
|
|
1116
|
+
"rocket-outline.svg",
|
|
1117
|
+
"rocket-sharp.svg",
|
|
1118
|
+
"rocket.svg",
|
|
1119
|
+
"rose-outline.svg",
|
|
1120
|
+
"rose-sharp.svg",
|
|
1121
|
+
"rose.svg",
|
|
1122
|
+
"sad-outline.svg",
|
|
1123
|
+
"sad-sharp.svg",
|
|
1124
|
+
"sad.svg",
|
|
1125
|
+
"save-outline.svg",
|
|
1126
|
+
"save-sharp.svg",
|
|
1127
|
+
"save.svg",
|
|
1128
|
+
"scale-outline.svg",
|
|
1129
|
+
"scale-sharp.svg",
|
|
1130
|
+
"scale.svg",
|
|
1131
|
+
"scan-circle-outline.svg",
|
|
1132
|
+
"scan-circle-sharp.svg",
|
|
1133
|
+
"scan-circle.svg",
|
|
1134
|
+
"scan-outline.svg",
|
|
1135
|
+
"scan-sharp.svg",
|
|
1136
|
+
"scan.svg",
|
|
1137
|
+
"school-outline.svg",
|
|
1138
|
+
"school-sharp.svg",
|
|
1139
|
+
"school.svg",
|
|
1140
|
+
"search-circle-outline.svg",
|
|
1141
|
+
"search-circle-sharp.svg",
|
|
1142
|
+
"search-circle.svg",
|
|
1143
|
+
"search-outline.svg",
|
|
1144
|
+
"search-sharp.svg",
|
|
1145
|
+
"search.svg",
|
|
1146
|
+
"send-outline.svg",
|
|
1147
|
+
"send-sharp.svg",
|
|
1148
|
+
"send.svg",
|
|
1149
|
+
"server-outline.svg",
|
|
1150
|
+
"server-sharp.svg",
|
|
1151
|
+
"server.svg",
|
|
1152
|
+
"settings-outline.svg",
|
|
1153
|
+
"settings-sharp.svg",
|
|
1154
|
+
"settings.svg",
|
|
1155
|
+
"shapes-outline.svg",
|
|
1156
|
+
"shapes-sharp.svg",
|
|
1157
|
+
"shapes.svg",
|
|
1158
|
+
"share-outline.svg",
|
|
1159
|
+
"share-sharp.svg",
|
|
1160
|
+
"share-social-outline.svg",
|
|
1161
|
+
"share-social-sharp.svg",
|
|
1162
|
+
"share-social.svg",
|
|
1163
|
+
"share.svg",
|
|
1164
|
+
"shield-checkmark-outline.svg",
|
|
1165
|
+
"shield-checkmark-sharp.svg",
|
|
1166
|
+
"shield-checkmark.svg",
|
|
1167
|
+
"shield-half-outline.svg",
|
|
1168
|
+
"shield-half-sharp.svg",
|
|
1169
|
+
"shield-half.svg",
|
|
1170
|
+
"shield-outline.svg",
|
|
1171
|
+
"shield-sharp.svg",
|
|
1172
|
+
"shield.svg",
|
|
1173
|
+
"shirt-outline.svg",
|
|
1174
|
+
"shirt-sharp.svg",
|
|
1175
|
+
"shirt.svg",
|
|
1176
|
+
"shuffle-outline.svg",
|
|
1177
|
+
"shuffle-sharp.svg",
|
|
1178
|
+
"shuffle.svg",
|
|
1179
|
+
"skull-outline.svg",
|
|
1180
|
+
"skull-sharp.svg",
|
|
1181
|
+
"skull.svg",
|
|
1182
|
+
"snow-outline.svg",
|
|
1183
|
+
"snow-sharp.svg",
|
|
1184
|
+
"snow.svg",
|
|
1185
|
+
"sparkles-outline.svg",
|
|
1186
|
+
"sparkles-sharp.svg",
|
|
1187
|
+
"sparkles.svg",
|
|
1188
|
+
"speedometer-outline.svg",
|
|
1189
|
+
"speedometer-sharp.svg",
|
|
1190
|
+
"speedometer.svg",
|
|
1191
|
+
"square-outline.svg",
|
|
1192
|
+
"square-sharp.svg",
|
|
1193
|
+
"square.svg",
|
|
1194
|
+
"star-half-outline.svg",
|
|
1195
|
+
"star-half-sharp.svg",
|
|
1196
|
+
"star-half.svg",
|
|
1197
|
+
"star-outline.svg",
|
|
1198
|
+
"star-sharp.svg",
|
|
1199
|
+
"star.svg",
|
|
1200
|
+
"stats-chart-outline.svg",
|
|
1201
|
+
"stats-chart-sharp.svg",
|
|
1202
|
+
"stats-chart.svg",
|
|
1203
|
+
"stop-circle-outline.svg",
|
|
1204
|
+
"stop-circle-sharp.svg",
|
|
1205
|
+
"stop-circle.svg",
|
|
1206
|
+
"stop-outline.svg",
|
|
1207
|
+
"stop-sharp.svg",
|
|
1208
|
+
"stop.svg",
|
|
1209
|
+
"stopwatch-outline.svg",
|
|
1210
|
+
"stopwatch-sharp.svg",
|
|
1211
|
+
"stopwatch.svg",
|
|
1212
|
+
"storefront-outline.svg",
|
|
1213
|
+
"storefront-sharp.svg",
|
|
1214
|
+
"storefront.svg",
|
|
1215
|
+
"subway-outline.svg",
|
|
1216
|
+
"subway-sharp.svg",
|
|
1217
|
+
"subway.svg",
|
|
1218
|
+
"sunny-outline.svg",
|
|
1219
|
+
"sunny-sharp.svg",
|
|
1220
|
+
"sunny.svg",
|
|
1221
|
+
"swap-horizontal-outline.svg",
|
|
1222
|
+
"swap-horizontal-sharp.svg",
|
|
1223
|
+
"swap-horizontal.svg",
|
|
1224
|
+
"swap-vertical-outline.svg",
|
|
1225
|
+
"swap-vertical-sharp.svg",
|
|
1226
|
+
"swap-vertical.svg",
|
|
1227
|
+
"sync-circle-outline.svg",
|
|
1228
|
+
"sync-circle-sharp.svg",
|
|
1229
|
+
"sync-circle.svg",
|
|
1230
|
+
"sync-outline.svg",
|
|
1231
|
+
"sync-sharp.svg",
|
|
1232
|
+
"sync.svg",
|
|
1233
|
+
"tablet-landscape-outline.svg",
|
|
1234
|
+
"tablet-landscape-sharp.svg",
|
|
1235
|
+
"tablet-landscape.svg",
|
|
1236
|
+
"tablet-portrait-outline.svg",
|
|
1237
|
+
"tablet-portrait-sharp.svg",
|
|
1238
|
+
"tablet-portrait.svg",
|
|
1239
|
+
"telescope-outline.svg",
|
|
1240
|
+
"telescope-sharp.svg",
|
|
1241
|
+
"telescope.svg",
|
|
1242
|
+
"tennisball-outline.svg",
|
|
1243
|
+
"tennisball-sharp.svg",
|
|
1244
|
+
"tennisball.svg",
|
|
1245
|
+
"terminal-outline.svg",
|
|
1246
|
+
"terminal-sharp.svg",
|
|
1247
|
+
"terminal.svg",
|
|
1248
|
+
"text-outline.svg",
|
|
1249
|
+
"text-sharp.svg",
|
|
1250
|
+
"text.svg",
|
|
1251
|
+
"thermometer-outline.svg",
|
|
1252
|
+
"thermometer-sharp.svg",
|
|
1253
|
+
"thermometer.svg",
|
|
1254
|
+
"thumbs-down-outline.svg",
|
|
1255
|
+
"thumbs-down-sharp.svg",
|
|
1256
|
+
"thumbs-down.svg",
|
|
1257
|
+
"thumbs-up-outline.svg",
|
|
1258
|
+
"thumbs-up-sharp.svg",
|
|
1259
|
+
"thumbs-up.svg",
|
|
1260
|
+
"thunderstorm-outline.svg",
|
|
1261
|
+
"thunderstorm-sharp.svg",
|
|
1262
|
+
"thunderstorm.svg",
|
|
1263
|
+
"ticket-outline.svg",
|
|
1264
|
+
"ticket-sharp.svg",
|
|
1265
|
+
"ticket.svg",
|
|
1266
|
+
"time-outline.svg",
|
|
1267
|
+
"time-sharp.svg",
|
|
1268
|
+
"time.svg",
|
|
1269
|
+
"timer-outline.svg",
|
|
1270
|
+
"timer-sharp.svg",
|
|
1271
|
+
"timer.svg",
|
|
1272
|
+
"today-outline.svg",
|
|
1273
|
+
"today-sharp.svg",
|
|
1274
|
+
"today.svg",
|
|
1275
|
+
"toggle-outline.svg",
|
|
1276
|
+
"toggle-sharp.svg",
|
|
1277
|
+
"toggle.svg",
|
|
1278
|
+
"trail-sign-outline.svg",
|
|
1279
|
+
"trail-sign-sharp.svg",
|
|
1280
|
+
"trail-sign.svg",
|
|
1281
|
+
"train-outline.svg",
|
|
1282
|
+
"train-sharp.svg",
|
|
1283
|
+
"train.svg",
|
|
1284
|
+
"transgender-outline.svg",
|
|
1285
|
+
"transgender-sharp.svg",
|
|
1286
|
+
"transgender.svg",
|
|
1287
|
+
"trash-bin-outline.svg",
|
|
1288
|
+
"trash-bin-sharp.svg",
|
|
1289
|
+
"trash-bin.svg",
|
|
1290
|
+
"trash-outline.svg",
|
|
1291
|
+
"trash-sharp.svg",
|
|
1292
|
+
"trash.svg",
|
|
1293
|
+
"trending-down-outline.svg",
|
|
1294
|
+
"trending-down-sharp.svg",
|
|
1295
|
+
"trending-down.svg",
|
|
1296
|
+
"trending-up-outline.svg",
|
|
1297
|
+
"trending-up-sharp.svg",
|
|
1298
|
+
"trending-up.svg",
|
|
1299
|
+
"triangle-outline.svg",
|
|
1300
|
+
"triangle-sharp.svg",
|
|
1301
|
+
"triangle.svg",
|
|
1302
|
+
"trophy-outline.svg",
|
|
1303
|
+
"trophy-sharp.svg",
|
|
1304
|
+
"trophy.svg",
|
|
1305
|
+
"tv-outline.svg",
|
|
1306
|
+
"tv-sharp.svg",
|
|
1307
|
+
"tv.svg",
|
|
1308
|
+
"umbrella-outline.svg",
|
|
1309
|
+
"umbrella-sharp.svg",
|
|
1310
|
+
"umbrella.svg",
|
|
1311
|
+
"unlink-outline.svg",
|
|
1312
|
+
"unlink-sharp.svg",
|
|
1313
|
+
"unlink.svg",
|
|
1314
|
+
"videocam-off-outline.svg",
|
|
1315
|
+
"videocam-off-sharp.svg",
|
|
1316
|
+
"videocam-off.svg",
|
|
1317
|
+
"videocam-outline.svg",
|
|
1318
|
+
"videocam-sharp.svg",
|
|
1319
|
+
"videocam.svg",
|
|
1320
|
+
"volume-high-outline.svg",
|
|
1321
|
+
"volume-high-sharp.svg",
|
|
1322
|
+
"volume-high.svg",
|
|
1323
|
+
"volume-low-outline.svg",
|
|
1324
|
+
"volume-low-sharp.svg",
|
|
1325
|
+
"volume-low.svg",
|
|
1326
|
+
"volume-medium-outline.svg",
|
|
1327
|
+
"volume-medium-sharp.svg",
|
|
1328
|
+
"volume-medium.svg",
|
|
1329
|
+
"volume-mute-outline.svg",
|
|
1330
|
+
"volume-mute-sharp.svg",
|
|
1331
|
+
"volume-mute.svg",
|
|
1332
|
+
"volume-off-outline.svg",
|
|
1333
|
+
"volume-off-sharp.svg",
|
|
1334
|
+
"volume-off.svg",
|
|
1335
|
+
"walk-outline.svg",
|
|
1336
|
+
"walk-sharp.svg",
|
|
1337
|
+
"walk.svg",
|
|
1338
|
+
"wallet-outline.svg",
|
|
1339
|
+
"wallet-sharp.svg",
|
|
1340
|
+
"wallet.svg",
|
|
1341
|
+
"warning-outline.svg",
|
|
1342
|
+
"warning-sharp.svg",
|
|
1343
|
+
"warning.svg",
|
|
1344
|
+
"watch-outline.svg",
|
|
1345
|
+
"watch-sharp.svg",
|
|
1346
|
+
"watch.svg",
|
|
1347
|
+
"water-outline.svg",
|
|
1348
|
+
"water-sharp.svg",
|
|
1349
|
+
"water.svg",
|
|
1350
|
+
"wifi-outline.svg",
|
|
1351
|
+
"wifi-sharp.svg",
|
|
1352
|
+
"wifi.svg",
|
|
1353
|
+
"wine-outline.svg",
|
|
1354
|
+
"wine-sharp.svg",
|
|
1355
|
+
"wine.svg",
|
|
1356
|
+
"woman-outline.svg",
|
|
1357
|
+
"woman-sharp.svg",
|
|
1358
|
+
"woman.svg"
|
|
1359
|
+
];
|