@unofficialbox/box-open-elements 0.1.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.
- package/LICENSE +21 -0
- package/README.md +125 -0
- package/dist/components/actions/button-group.d.ts +22 -0
- package/dist/components/actions/button-group.js +255 -0
- package/dist/components/actions/button.d.ts +16 -0
- package/dist/components/actions/button.js +190 -0
- package/dist/components/actions/icon-button.d.ts +20 -0
- package/dist/components/actions/icon-button.js +187 -0
- package/dist/components/actions/link-button.d.ts +14 -0
- package/dist/components/actions/link-button.js +137 -0
- package/dist/components/actions/menu-item.d.ts +17 -0
- package/dist/components/actions/menu-item.js +137 -0
- package/dist/components/actions/menu.d.ts +22 -0
- package/dist/components/actions/menu.js +178 -0
- package/dist/components/actions/segmented-control.d.ts +27 -0
- package/dist/components/actions/segmented-control.js +273 -0
- package/dist/components/collections/card.d.ts +13 -0
- package/dist/components/collections/card.js +110 -0
- package/dist/components/collections/carousel.d.ts +40 -0
- package/dist/components/collections/carousel.js +406 -0
- package/dist/components/collections/datalist-item.d.ts +32 -0
- package/dist/components/collections/datalist-item.js +196 -0
- package/dist/components/collections/draggable-list.d.ts +33 -0
- package/dist/components/collections/draggable-list.js +306 -0
- package/dist/components/collections/grid-view.d.ts +38 -0
- package/dist/components/collections/grid-view.js +321 -0
- package/dist/components/collections/pagination.d.ts +19 -0
- package/dist/components/collections/pagination.js +147 -0
- package/dist/components/collections/tree-grid.d.ts +47 -0
- package/dist/components/collections/tree-grid.js +593 -0
- package/dist/components/collections/tree.d.ts +37 -0
- package/dist/components/collections/tree.js +526 -0
- package/dist/components/feedback/alert.d.ts +27 -0
- package/dist/components/feedback/alert.js +263 -0
- package/dist/components/feedback/badge.d.ts +12 -0
- package/dist/components/feedback/badge.js +99 -0
- package/dist/components/feedback/chip.d.ts +33 -0
- package/dist/components/feedback/chip.js +261 -0
- package/dist/components/feedback/empty-state.d.ts +19 -0
- package/dist/components/feedback/empty-state.js +137 -0
- package/dist/components/feedback/error-mask.d.ts +25 -0
- package/dist/components/feedback/error-mask.js +199 -0
- package/dist/components/feedback/help-text.d.ts +22 -0
- package/dist/components/feedback/help-text.js +176 -0
- package/dist/components/feedback/nudge.d.ts +32 -0
- package/dist/components/feedback/nudge.js +299 -0
- package/dist/components/feedback/progress-bar.d.ts +18 -0
- package/dist/components/feedback/progress-bar.js +128 -0
- package/dist/components/feedback/progress-ring.d.ts +21 -0
- package/dist/components/feedback/progress-ring.js +155 -0
- package/dist/components/feedback/progress-steps.d.ts +25 -0
- package/dist/components/feedback/progress-steps.js +276 -0
- package/dist/components/feedback/skeleton.d.ts +14 -0
- package/dist/components/feedback/skeleton.js +95 -0
- package/dist/components/feedback/spinner.d.ts +10 -0
- package/dist/components/feedback/spinner.js +80 -0
- package/dist/components/feedback/toast.d.ts +26 -0
- package/dist/components/feedback/toast.js +205 -0
- package/dist/components/files/drop-zone.d.ts +19 -0
- package/dist/components/files/drop-zone.js +169 -0
- package/dist/components/forms/calendar.d.ts +47 -0
- package/dist/components/forms/calendar.js +499 -0
- package/dist/components/forms/category-selector.d.ts +35 -0
- package/dist/components/forms/category-selector.js +269 -0
- package/dist/components/forms/checkbox-group.d.ts +31 -0
- package/dist/components/forms/checkbox-group.js +267 -0
- package/dist/components/forms/checkbox.d.ts +28 -0
- package/dist/components/forms/checkbox.js +250 -0
- package/dist/components/forms/color-picker.d.ts +34 -0
- package/dist/components/forms/color-picker.js +314 -0
- package/dist/components/forms/combobox.d.ts +37 -0
- package/dist/components/forms/combobox.js +234 -0
- package/dist/components/forms/date-field.d.ts +27 -0
- package/dist/components/forms/date-field.js +187 -0
- package/dist/components/forms/dropdown.d.ts +38 -0
- package/dist/components/forms/dropdown.js +405 -0
- package/dist/components/forms/dual-listbox.d.ts +44 -0
- package/dist/components/forms/dual-listbox.js +484 -0
- package/dist/components/forms/fieldset.d.ts +32 -0
- package/dist/components/forms/fieldset.js +168 -0
- package/dist/components/forms/multi-select.d.ts +30 -0
- package/dist/components/forms/multi-select.js +264 -0
- package/dist/components/forms/number-input.d.ts +32 -0
- package/dist/components/forms/number-input.js +245 -0
- package/dist/components/forms/pill-cloud.d.ts +35 -0
- package/dist/components/forms/pill-cloud.js +230 -0
- package/dist/components/forms/pill-selector-dropdown.d.ts +55 -0
- package/dist/components/forms/pill-selector-dropdown.js +499 -0
- package/dist/components/forms/radio-group.d.ts +32 -0
- package/dist/components/forms/radio-group.js +285 -0
- package/dist/components/forms/range-slider.d.ts +36 -0
- package/dist/components/forms/range-slider.js +294 -0
- package/dist/components/forms/rating.d.ts +31 -0
- package/dist/components/forms/rating.js +302 -0
- package/dist/components/forms/rich-text-input.d.ts +32 -0
- package/dist/components/forms/rich-text-input.js +403 -0
- package/dist/components/forms/search-field.d.ts +27 -0
- package/dist/components/forms/search-field.js +293 -0
- package/dist/components/forms/select.d.ts +30 -0
- package/dist/components/forms/select.js +198 -0
- package/dist/components/forms/slider.d.ts +31 -0
- package/dist/components/forms/slider.js +221 -0
- package/dist/components/forms/spin-button.d.ts +33 -0
- package/dist/components/forms/spin-button.js +352 -0
- package/dist/components/forms/switch.d.ts +32 -0
- package/dist/components/forms/switch.js +302 -0
- package/dist/components/forms/tag-input.d.ts +46 -0
- package/dist/components/forms/tag-input.js +420 -0
- package/dist/components/forms/text-area.d.ts +26 -0
- package/dist/components/forms/text-area.js +188 -0
- package/dist/components/forms/text-field.d.ts +24 -0
- package/dist/components/forms/text-field.js +151 -0
- package/dist/components/forms/time-field.d.ts +29 -0
- package/dist/components/forms/time-field.js +203 -0
- package/dist/components/identity/avatar.d.ts +21 -0
- package/dist/components/identity/avatar.js +191 -0
- package/dist/components/identity/contact-datalist-item.d.ts +31 -0
- package/dist/components/identity/contact-datalist-item.js +235 -0
- package/dist/components/identity/persona.d.ts +28 -0
- package/dist/components/identity/persona.js +272 -0
- package/dist/components/layout/app-shell.d.ts +26 -0
- package/dist/components/layout/app-shell.js +258 -0
- package/dist/components/layout/divider.d.ts +12 -0
- package/dist/components/layout/divider.js +119 -0
- package/dist/components/layout/nav-sidebar.d.ts +23 -0
- package/dist/components/layout/nav-sidebar.js +167 -0
- package/dist/components/layout/section.d.ts +20 -0
- package/dist/components/layout/section.js +143 -0
- package/dist/components/layout/sidebar-toggle-button.d.ts +26 -0
- package/dist/components/layout/sidebar-toggle-button.js +137 -0
- package/dist/components/layout/split-view.d.ts +19 -0
- package/dist/components/layout/split-view.js +157 -0
- package/dist/components/navigation/accordion.d.ts +25 -0
- package/dist/components/navigation/accordion.js +253 -0
- package/dist/components/navigation/tabs.d.ts +27 -0
- package/dist/components/navigation/tabs.js +289 -0
- package/dist/components/overlays/dialog.d.ts +26 -0
- package/dist/components/overlays/dialog.js +267 -0
- package/dist/components/overlays/drawer.d.ts +32 -0
- package/dist/components/overlays/drawer.js +323 -0
- package/dist/components/overlays/popover.d.ts +35 -0
- package/dist/components/overlays/popover.js +317 -0
- package/dist/components/overlays/tooltip.d.ts +26 -0
- package/dist/components/overlays/tooltip.js +204 -0
- package/dist/components/visuals/illustration.d.ts +26 -0
- package/dist/components/visuals/illustration.js +319 -0
- package/dist/core/controller.d.ts +11 -0
- package/dist/core/controller.js +23 -0
- package/dist/core/element.d.ts +22 -0
- package/dist/core/element.js +28 -0
- package/dist/core/event-emitter.d.ts +9 -0
- package/dist/core/event-emitter.js +33 -0
- package/dist/core/form-associated.d.ts +63 -0
- package/dist/core/form-associated.js +218 -0
- package/dist/core/index.d.ts +6 -0
- package/dist/core/index.js +4 -0
- package/dist/core/json-schema.d.ts +1 -0
- package/dist/core/json-schema.js +1 -0
- package/dist/foundations/a11y/focus.d.ts +17 -0
- package/dist/foundations/a11y/focus.js +94 -0
- package/dist/foundations/a11y/heading.d.ts +26 -0
- package/dist/foundations/a11y/heading.js +40 -0
- package/dist/foundations/a11y/index.d.ts +5 -0
- package/dist/foundations/a11y/index.js +3 -0
- package/dist/foundations/a11y/keyboard.d.ts +28 -0
- package/dist/foundations/a11y/keyboard.js +77 -0
- package/dist/foundations/geometry/index.d.ts +1 -0
- package/dist/foundations/geometry/index.js +1 -0
- package/dist/foundations/geometry/tokens.d.ts +123 -0
- package/dist/foundations/geometry/tokens.js +154 -0
- package/dist/foundations/icons/box-iconography.d.ts +479 -0
- package/dist/foundations/icons/box-iconography.generated.d.ts +2370 -0
- package/dist/foundations/icons/box-iconography.generated.js +4010 -0
- package/dist/foundations/icons/box-iconography.js +39 -0
- package/dist/foundations/icons/index.d.ts +1 -0
- package/dist/foundations/icons/index.js +1 -0
- package/dist/foundations/motion/index.d.ts +2 -0
- package/dist/foundations/motion/index.js +1 -0
- package/dist/foundations/motion/tokens.d.ts +39 -0
- package/dist/foundations/motion/tokens.js +43 -0
- package/dist/foundations/tokens/box-dark.d.ts +11 -0
- package/dist/foundations/tokens/box-dark.js +46 -0
- package/dist/foundations/tokens/box-defaults.d.ts +5 -0
- package/dist/foundations/tokens/box-defaults.js +52 -0
- package/dist/foundations/tokens/index.d.ts +5 -0
- package/dist/foundations/tokens/index.js +4 -0
- package/dist/foundations/tokens/interaction.d.ts +28 -0
- package/dist/foundations/tokens/interaction.js +72 -0
- package/dist/foundations/tokens/registry.d.ts +14 -0
- package/dist/foundations/tokens/registry.js +92 -0
- package/dist/foundations/tokens/types.d.ts +16 -0
- package/dist/foundations/tokens/types.js +1 -0
- package/dist/foundations/typography/index.d.ts +2 -0
- package/dist/foundations/typography/index.js +1 -0
- package/dist/foundations/typography/tokens.d.ts +76 -0
- package/dist/foundations/typography/tokens.js +27 -0
- package/dist/index.d.ts +87 -0
- package/dist/index.js +98 -0
- package/dist/patterns/content-explorer/actions/controller.d.ts +12 -0
- package/dist/patterns/content-explorer/actions/controller.js +36 -0
- package/dist/patterns/content-explorer/actions/index.d.ts +2 -0
- package/dist/patterns/content-explorer/actions/index.js +1 -0
- package/dist/patterns/content-explorer/actions/types.d.ts +13 -0
- package/dist/patterns/content-explorer/actions/types.js +1 -0
- package/dist/patterns/content-explorer/adapters/action-menu.d.ts +24 -0
- package/dist/patterns/content-explorer/adapters/action-menu.js +312 -0
- package/dist/patterns/content-explorer/adapters/breadcrumbs.d.ts +15 -0
- package/dist/patterns/content-explorer/adapters/breadcrumbs.js +161 -0
- package/dist/patterns/content-explorer/adapters/item-summary.d.ts +11 -0
- package/dist/patterns/content-explorer/adapters/item-summary.js +72 -0
- package/dist/patterns/content-explorer/adapters/items.d.ts +4 -0
- package/dist/patterns/content-explorer/adapters/items.js +12 -0
- package/dist/patterns/content-explorer/adapters/list.d.ts +28 -0
- package/dist/patterns/content-explorer/adapters/list.js +527 -0
- package/dist/patterns/content-explorer/adapters/table.d.ts +23 -0
- package/dist/patterns/content-explorer/adapters/table.js +467 -0
- package/dist/patterns/content-explorer/adapters/toolbar.d.ts +19 -0
- package/dist/patterns/content-explorer/adapters/toolbar.js +234 -0
- package/dist/patterns/content-explorer/box-transport.d.ts +44 -0
- package/dist/patterns/content-explorer/box-transport.js +229 -0
- package/dist/patterns/content-explorer/collection/controller.d.ts +17 -0
- package/dist/patterns/content-explorer/collection/controller.js +67 -0
- package/dist/patterns/content-explorer/collection/index.d.ts +2 -0
- package/dist/patterns/content-explorer/collection/index.js +1 -0
- package/dist/patterns/content-explorer/collection/types.d.ts +20 -0
- package/dist/patterns/content-explorer/collection/types.js +1 -0
- package/dist/patterns/content-explorer/content-explorer.d.ts +85 -0
- package/dist/patterns/content-explorer/content-explorer.js +745 -0
- package/dist/patterns/content-explorer/contracts.d.ts +32 -0
- package/dist/patterns/content-explorer/contracts.js +114 -0
- package/dist/patterns/content-explorer/controller.d.ts +34 -0
- package/dist/patterns/content-explorer/controller.js +399 -0
- package/dist/patterns/content-explorer/host-bindings.d.ts +50 -0
- package/dist/patterns/content-explorer/host-bindings.js +76 -0
- package/dist/patterns/content-explorer/index.d.ts +18 -0
- package/dist/patterns/content-explorer/index.js +24 -0
- package/dist/patterns/content-explorer/navigation/controller.d.ts +10 -0
- package/dist/patterns/content-explorer/navigation/controller.js +48 -0
- package/dist/patterns/content-explorer/navigation/index.d.ts +2 -0
- package/dist/patterns/content-explorer/navigation/index.js +1 -0
- package/dist/patterns/content-explorer/navigation/types.d.ts +20 -0
- package/dist/patterns/content-explorer/navigation/types.js +1 -0
- package/dist/patterns/content-explorer/schemas.d.ts +6 -0
- package/dist/patterns/content-explorer/schemas.js +120 -0
- package/dist/patterns/content-explorer/selection/controller.d.ts +12 -0
- package/dist/patterns/content-explorer/selection/controller.js +54 -0
- package/dist/patterns/content-explorer/selection/index.d.ts +2 -0
- package/dist/patterns/content-explorer/selection/index.js +1 -0
- package/dist/patterns/content-explorer/selection/types.d.ts +14 -0
- package/dist/patterns/content-explorer/selection/types.js +1 -0
- package/dist/patterns/content-explorer/types.d.ts +209 -0
- package/dist/patterns/content-explorer/types.js +10 -0
- package/dist/patterns/file-request/file-request-builder.d.ts +36 -0
- package/dist/patterns/file-request/file-request-builder.js +344 -0
- package/dist/patterns/file-request/index.d.ts +1 -0
- package/dist/patterns/file-request/index.js +1 -0
- package/dist/patterns/governance/governance-panel.d.ts +40 -0
- package/dist/patterns/governance/governance-panel.js +351 -0
- package/dist/patterns/governance/index.d.ts +1 -0
- package/dist/patterns/governance/index.js +1 -0
- package/dist/patterns/insights/bar-chart.d.ts +43 -0
- package/dist/patterns/insights/bar-chart.js +462 -0
- package/dist/patterns/insights/chart-panel.d.ts +43 -0
- package/dist/patterns/insights/chart-panel.js +436 -0
- package/dist/patterns/insights/donut-chart.d.ts +43 -0
- package/dist/patterns/insights/donut-chart.js +535 -0
- package/dist/patterns/insights/index.d.ts +5 -0
- package/dist/patterns/insights/index.js +5 -0
- package/dist/patterns/insights/line-chart.d.ts +46 -0
- package/dist/patterns/insights/line-chart.js +511 -0
- package/dist/patterns/insights/metric-card.d.ts +36 -0
- package/dist/patterns/insights/metric-card.js +278 -0
- package/dist/patterns/item/bulk-action-bar.d.ts +35 -0
- package/dist/patterns/item/bulk-action-bar.js +325 -0
- package/dist/patterns/item/index.d.ts +4 -0
- package/dist/patterns/item/index.js +4 -0
- package/dist/patterns/item/item-details-panel.d.ts +61 -0
- package/dist/patterns/item/item-details-panel.js +429 -0
- package/dist/patterns/item/item-form.d.ts +54 -0
- package/dist/patterns/item/item-form.js +485 -0
- package/dist/patterns/item/preview-header.d.ts +46 -0
- package/dist/patterns/item/preview-header.js +323 -0
- package/dist/patterns/metadata/contracts.d.ts +75 -0
- package/dist/patterns/metadata/contracts.js +91 -0
- package/dist/patterns/metadata/index.d.ts +4 -0
- package/dist/patterns/metadata/index.js +4 -0
- package/dist/patterns/metadata/metadata-filter-builder.d.ts +43 -0
- package/dist/patterns/metadata/metadata-filter-builder.js +362 -0
- package/dist/patterns/metadata/metadata-inspector.d.ts +31 -0
- package/dist/patterns/metadata/metadata-inspector.js +245 -0
- package/dist/patterns/metadata/schemas.d.ts +5 -0
- package/dist/patterns/metadata/schemas.js +66 -0
- package/dist/patterns/preview/annotation-inspector.d.ts +44 -0
- package/dist/patterns/preview/annotation-inspector.js +380 -0
- package/dist/patterns/preview/annotation-thread.d.ts +37 -0
- package/dist/patterns/preview/annotation-thread.js +338 -0
- package/dist/patterns/preview/annotation-toolbar.d.ts +42 -0
- package/dist/patterns/preview/annotation-toolbar.js +393 -0
- package/dist/patterns/preview/content-preview-adapter.d.ts +13 -0
- package/dist/patterns/preview/content-preview-adapter.js +30 -0
- package/dist/patterns/preview/index.d.ts +6 -0
- package/dist/patterns/preview/index.js +6 -0
- package/dist/patterns/preview/preview-element.d.ts +41 -0
- package/dist/patterns/preview/preview-element.js +429 -0
- package/dist/patterns/preview/provider-adapter.d.ts +36 -0
- package/dist/patterns/preview/provider-adapter.js +29 -0
- package/dist/patterns/search/filter-bar.d.ts +50 -0
- package/dist/patterns/search/filter-bar.js +379 -0
- package/dist/patterns/search/index.d.ts +3 -0
- package/dist/patterns/search/index.js +3 -0
- package/dist/patterns/search/saved-view-picker.d.ts +25 -0
- package/dist/patterns/search/saved-view-picker.js +239 -0
- package/dist/patterns/search/search-results-header.d.ts +34 -0
- package/dist/patterns/search/search-results-header.js +288 -0
- package/dist/patterns/share/access-stats.d.ts +19 -0
- package/dist/patterns/share/access-stats.js +204 -0
- package/dist/patterns/share/collaborator-avatars.d.ts +22 -0
- package/dist/patterns/share/collaborator-avatars.js +214 -0
- package/dist/patterns/share/contracts.d.ts +65 -0
- package/dist/patterns/share/contracts.js +75 -0
- package/dist/patterns/share/index.d.ts +14 -0
- package/dist/patterns/share/index.js +14 -0
- package/dist/patterns/share/invite-collaborators-contracts.d.ts +38 -0
- package/dist/patterns/share/invite-collaborators-contracts.js +1 -0
- package/dist/patterns/share/invite-collaborators-controller.d.ts +40 -0
- package/dist/patterns/share/invite-collaborators-controller.js +86 -0
- package/dist/patterns/share/invite-collaborators-modal.d.ts +46 -0
- package/dist/patterns/share/invite-collaborators-modal.js +465 -0
- package/dist/patterns/share/permission-matrix.d.ts +37 -0
- package/dist/patterns/share/permission-matrix.js +360 -0
- package/dist/patterns/share/presence-contracts.d.ts +26 -0
- package/dist/patterns/share/presence-contracts.js +1 -0
- package/dist/patterns/share/presence-controller.d.ts +31 -0
- package/dist/patterns/share/presence-controller.js +47 -0
- package/dist/patterns/share/presence.d.ts +32 -0
- package/dist/patterns/share/presence.js +255 -0
- package/dist/patterns/share/schemas.d.ts +4 -0
- package/dist/patterns/share/schemas.js +41 -0
- package/dist/patterns/share/share-panel.d.ts +75 -0
- package/dist/patterns/share/share-panel.js +565 -0
- package/dist/patterns/share/unified-share-controller.d.ts +52 -0
- package/dist/patterns/share/unified-share-controller.js +97 -0
- package/dist/patterns/share/unified-share-modal.d.ts +50 -0
- package/dist/patterns/share/unified-share-modal.js +646 -0
- package/dist/patterns/task/index.d.ts +2 -0
- package/dist/patterns/task/index.js +2 -0
- package/dist/patterns/task/review-queue-item.d.ts +45 -0
- package/dist/patterns/task/review-queue-item.js +403 -0
- package/dist/patterns/task/task-assignment-panel.d.ts +50 -0
- package/dist/patterns/task/task-assignment-panel.js +450 -0
- package/package.json +151 -0
|
@@ -0,0 +1,2370 @@
|
|
|
1
|
+
export declare const boxGeneratedIcons: {
|
|
2
|
+
readonly "2-chat-question": string;
|
|
3
|
+
readonly "2-chat": string;
|
|
4
|
+
readonly "2-overlay-squares": string;
|
|
5
|
+
readonly "3-overlay-squares": string;
|
|
6
|
+
readonly "3-square-circle": string;
|
|
7
|
+
readonly "3-tier": string;
|
|
8
|
+
readonly "4-squares": string;
|
|
9
|
+
readonly "4-squares-2": string;
|
|
10
|
+
readonly "6-dots": string;
|
|
11
|
+
readonly "add-small": string;
|
|
12
|
+
readonly "add-squares": string;
|
|
13
|
+
readonly "add-to-cart": string;
|
|
14
|
+
readonly aid: string;
|
|
15
|
+
readonly "app-cloud": string;
|
|
16
|
+
readonly "arrow-down": string;
|
|
17
|
+
readonly "arrow-right": string;
|
|
18
|
+
readonly attachment: string;
|
|
19
|
+
readonly audio: string;
|
|
20
|
+
readonly award: string;
|
|
21
|
+
readonly badge: string;
|
|
22
|
+
readonly bag: string;
|
|
23
|
+
readonly bank: string;
|
|
24
|
+
readonly battery: string;
|
|
25
|
+
readonly bell: string;
|
|
26
|
+
readonly binders: string;
|
|
27
|
+
readonly "bolt-bubble": string;
|
|
28
|
+
readonly bolt: string;
|
|
29
|
+
readonly brain: string;
|
|
30
|
+
readonly briefcase: string;
|
|
31
|
+
readonly broadcast: string;
|
|
32
|
+
readonly browser: string;
|
|
33
|
+
readonly brush: string;
|
|
34
|
+
readonly "calendar-added": string;
|
|
35
|
+
readonly calendar: string;
|
|
36
|
+
readonly "calendar-2": string;
|
|
37
|
+
readonly cart: string;
|
|
38
|
+
readonly "cart-2": string;
|
|
39
|
+
readonly cash: string;
|
|
40
|
+
readonly "caution-file": string;
|
|
41
|
+
readonly "caution-phone": string;
|
|
42
|
+
readonly "caution-triangle": string;
|
|
43
|
+
readonly center: string;
|
|
44
|
+
readonly "chat-bubble": string;
|
|
45
|
+
readonly "chat-question": string;
|
|
46
|
+
readonly check: string;
|
|
47
|
+
readonly checkmark: string;
|
|
48
|
+
readonly clipboard: string;
|
|
49
|
+
readonly clock1: string;
|
|
50
|
+
readonly clock2: string;
|
|
51
|
+
readonly clock3: string;
|
|
52
|
+
readonly "cloud-server": string;
|
|
53
|
+
readonly cloud: string;
|
|
54
|
+
readonly "code-browser": string;
|
|
55
|
+
readonly code: string;
|
|
56
|
+
readonly compass: string;
|
|
57
|
+
readonly "computer-badge": string;
|
|
58
|
+
readonly "computer-download": string;
|
|
59
|
+
readonly "computer-upoad": string;
|
|
60
|
+
readonly computer: string;
|
|
61
|
+
readonly "connected-dots": string;
|
|
62
|
+
readonly "connected-together": string;
|
|
63
|
+
readonly "container-lines-2": string;
|
|
64
|
+
readonly "container-lines": string;
|
|
65
|
+
readonly "cube-dot-line": string;
|
|
66
|
+
readonly "cube-line": string;
|
|
67
|
+
readonly cycle: string;
|
|
68
|
+
readonly dna: string;
|
|
69
|
+
readonly "desktop-laptop": string;
|
|
70
|
+
readonly devices: string;
|
|
71
|
+
readonly distribute: string;
|
|
72
|
+
readonly "distribute-2": string;
|
|
73
|
+
readonly "dollar-sign": string;
|
|
74
|
+
readonly "donut-coffee": string;
|
|
75
|
+
readonly download: string;
|
|
76
|
+
readonly drop: string;
|
|
77
|
+
readonly "enterprise-building": string;
|
|
78
|
+
readonly "envelope-bug": string;
|
|
79
|
+
readonly "envelope-doc": string;
|
|
80
|
+
readonly "envelope-shred": string;
|
|
81
|
+
readonly envelope: string;
|
|
82
|
+
readonly "exclamation-mark": string;
|
|
83
|
+
readonly eye: string;
|
|
84
|
+
readonly "ftp-folder": string;
|
|
85
|
+
readonly "file-approved": string;
|
|
86
|
+
readonly "file-blank": string;
|
|
87
|
+
readonly "file-check": string;
|
|
88
|
+
readonly "file-cloud": string;
|
|
89
|
+
readonly "file-copy": string;
|
|
90
|
+
readonly "file-document": string;
|
|
91
|
+
readonly "file-image": string;
|
|
92
|
+
readonly "file-infographic": string;
|
|
93
|
+
readonly "file-insights": string;
|
|
94
|
+
readonly "file-presentations": string;
|
|
95
|
+
readonly "file-speed": string;
|
|
96
|
+
readonly "file-spreadsheet": string;
|
|
97
|
+
readonly "file-text": string;
|
|
98
|
+
readonly "file-video": string;
|
|
99
|
+
readonly "file-bug": string;
|
|
100
|
+
readonly "file-move": string;
|
|
101
|
+
readonly "file-music": string;
|
|
102
|
+
readonly "file-plus": string;
|
|
103
|
+
readonly "finger-print": string;
|
|
104
|
+
readonly flight: string;
|
|
105
|
+
readonly "folder-up": string;
|
|
106
|
+
readonly "folder-upload": string;
|
|
107
|
+
readonly folder: string;
|
|
108
|
+
readonly funnel: string;
|
|
109
|
+
readonly gear: string;
|
|
110
|
+
readonly gears: string;
|
|
111
|
+
readonly "graduation-cap": string;
|
|
112
|
+
readonly "graph-increase": string;
|
|
113
|
+
readonly "graph-measure": string;
|
|
114
|
+
readonly "group-call": string;
|
|
115
|
+
readonly heart: string;
|
|
116
|
+
readonly home: string;
|
|
117
|
+
readonly image: string;
|
|
118
|
+
readonly "key-safe": string;
|
|
119
|
+
readonly "leaves-growing": string;
|
|
120
|
+
readonly light: string;
|
|
121
|
+
readonly "line-graph-v2": string;
|
|
122
|
+
readonly "line-graph": string;
|
|
123
|
+
readonly link: string;
|
|
124
|
+
readonly lock: string;
|
|
125
|
+
readonly "magnifying-glass": string;
|
|
126
|
+
readonly martini: string;
|
|
127
|
+
readonly maze: string;
|
|
128
|
+
readonly "med-tool": string;
|
|
129
|
+
readonly megaphone: string;
|
|
130
|
+
readonly metadata: string;
|
|
131
|
+
readonly microphone: string;
|
|
132
|
+
readonly minus: string;
|
|
133
|
+
readonly "mixed-media-download": string;
|
|
134
|
+
readonly "music-note": string;
|
|
135
|
+
readonly "note-pad": string;
|
|
136
|
+
readonly number0: string;
|
|
137
|
+
readonly number1: string;
|
|
138
|
+
readonly number2: string;
|
|
139
|
+
readonly number3: string;
|
|
140
|
+
readonly number4: string;
|
|
141
|
+
readonly number5: string;
|
|
142
|
+
readonly number6: string;
|
|
143
|
+
readonly number7: string;
|
|
144
|
+
readonly number8: string;
|
|
145
|
+
readonly number9: string;
|
|
146
|
+
readonly "o-maru": string;
|
|
147
|
+
readonly overlay: string;
|
|
148
|
+
readonly paper: string;
|
|
149
|
+
readonly pen: string;
|
|
150
|
+
readonly person: string;
|
|
151
|
+
readonly "phone-browser": string;
|
|
152
|
+
readonly phone: string;
|
|
153
|
+
readonly "phone-2": string;
|
|
154
|
+
readonly "pie-chart-3": string;
|
|
155
|
+
readonly "pie-chart": string;
|
|
156
|
+
readonly pin: string;
|
|
157
|
+
readonly "pin-2": string;
|
|
158
|
+
readonly plane: string;
|
|
159
|
+
readonly plus: string;
|
|
160
|
+
readonly podium: string;
|
|
161
|
+
readonly "point-center": string;
|
|
162
|
+
readonly point: string;
|
|
163
|
+
readonly "question-mark": string;
|
|
164
|
+
readonly raft: string;
|
|
165
|
+
readonly "retail-tag": string;
|
|
166
|
+
readonly "right-to-forget": string;
|
|
167
|
+
readonly ring: string;
|
|
168
|
+
readonly rocket: string;
|
|
169
|
+
readonly "smb-building": string;
|
|
170
|
+
readonly scale: string;
|
|
171
|
+
readonly "scale-2": string;
|
|
172
|
+
readonly scan: string;
|
|
173
|
+
readonly server: string;
|
|
174
|
+
readonly "shake-love": string;
|
|
175
|
+
readonly "shared-users": string;
|
|
176
|
+
readonly "shield-2-tone": string;
|
|
177
|
+
readonly "shield-check": string;
|
|
178
|
+
readonly "shield-varified": string;
|
|
179
|
+
readonly slice: string;
|
|
180
|
+
readonly slider: string;
|
|
181
|
+
readonly "solid-arrow-down": string;
|
|
182
|
+
readonly "solid-arrow-right": string;
|
|
183
|
+
readonly "solid-check": string;
|
|
184
|
+
readonly "solid-checkmark": string;
|
|
185
|
+
readonly "solid-clock1": string;
|
|
186
|
+
readonly "solid-clock2": string;
|
|
187
|
+
readonly "solid-compass": string;
|
|
188
|
+
readonly "solid-dollar-sign": string;
|
|
189
|
+
readonly "solid-exclamation-mark": string;
|
|
190
|
+
readonly "solid-minus": string;
|
|
191
|
+
readonly "solid-o-maru": string;
|
|
192
|
+
readonly "solid-play": string;
|
|
193
|
+
readonly "solid-plus": string;
|
|
194
|
+
readonly "solid-question-mark": string;
|
|
195
|
+
readonly "solid-x-batsu": string;
|
|
196
|
+
readonly "speach-bubble": string;
|
|
197
|
+
readonly spotlight: string;
|
|
198
|
+
readonly "spray-bottle": string;
|
|
199
|
+
readonly "squares-scale-top": string;
|
|
200
|
+
readonly "squares-scale": string;
|
|
201
|
+
readonly "squares-together": string;
|
|
202
|
+
readonly star: string;
|
|
203
|
+
readonly "stop-hand": string;
|
|
204
|
+
readonly "storage-cloud": string;
|
|
205
|
+
readonly "storage-key": string;
|
|
206
|
+
readonly storage: string;
|
|
207
|
+
readonly sun: string;
|
|
208
|
+
readonly target: string;
|
|
209
|
+
readonly "team-add": string;
|
|
210
|
+
readonly team: string;
|
|
211
|
+
readonly thumb: string;
|
|
212
|
+
readonly toggle: string;
|
|
213
|
+
readonly tools: string;
|
|
214
|
+
readonly trophy: string;
|
|
215
|
+
readonly truck: string;
|
|
216
|
+
readonly "two-files": string;
|
|
217
|
+
readonly "typing-now": string;
|
|
218
|
+
readonly typing: string;
|
|
219
|
+
readonly usb: string;
|
|
220
|
+
readonly "up-down": string;
|
|
221
|
+
readonly "upload-cloud": string;
|
|
222
|
+
readonly upload: string;
|
|
223
|
+
readonly "user-alert": string;
|
|
224
|
+
readonly "user-verified": string;
|
|
225
|
+
readonly "user-verified-unknown": string;
|
|
226
|
+
readonly "user-badge": string;
|
|
227
|
+
readonly "user-primary": string;
|
|
228
|
+
readonly "user-timed": string;
|
|
229
|
+
readonly "video-camera": string;
|
|
230
|
+
readonly "video-camera-2": string;
|
|
231
|
+
readonly video: string;
|
|
232
|
+
readonly writing: string;
|
|
233
|
+
readonly "x-batsu": string;
|
|
234
|
+
readonly zones: string;
|
|
235
|
+
readonly play: string;
|
|
236
|
+
readonly "2-chat-question-2": string;
|
|
237
|
+
readonly "2-chat-2": string;
|
|
238
|
+
readonly "2-overlay-squares-2": string;
|
|
239
|
+
readonly "3-overlay-squares-2": string;
|
|
240
|
+
readonly "3-square-circle-2": string;
|
|
241
|
+
readonly "3-tier-2": string;
|
|
242
|
+
readonly "4-squares-1": string;
|
|
243
|
+
readonly "4-squares-3": string;
|
|
244
|
+
readonly "6-dots-2": string;
|
|
245
|
+
readonly "add-small-2": string;
|
|
246
|
+
readonly "add-squares-2": string;
|
|
247
|
+
readonly "add-to-cart-2": string;
|
|
248
|
+
readonly "aid-2": string;
|
|
249
|
+
readonly "app-cloud-2": string;
|
|
250
|
+
readonly "arrow-down-2": string;
|
|
251
|
+
readonly "arrow-right-2": string;
|
|
252
|
+
readonly "attachment-2": string;
|
|
253
|
+
readonly "audio-2": string;
|
|
254
|
+
readonly "award-2": string;
|
|
255
|
+
readonly "badge-2": string;
|
|
256
|
+
readonly "bag-2": string;
|
|
257
|
+
readonly "bank-2": string;
|
|
258
|
+
readonly "battery-2": string;
|
|
259
|
+
readonly "bell-2": string;
|
|
260
|
+
readonly "binders-2": string;
|
|
261
|
+
readonly "bolt-bubble-2": string;
|
|
262
|
+
readonly "bolt-2": string;
|
|
263
|
+
readonly "brain-2": string;
|
|
264
|
+
readonly "briefcase-2": string;
|
|
265
|
+
readonly "broadcast-2": string;
|
|
266
|
+
readonly "browser-2": string;
|
|
267
|
+
readonly "brush-2": string;
|
|
268
|
+
readonly "calendar-1": string;
|
|
269
|
+
readonly "calendar-added-2": string;
|
|
270
|
+
readonly "calendar-3": string;
|
|
271
|
+
readonly "cart-1": string;
|
|
272
|
+
readonly "cart-3": string;
|
|
273
|
+
readonly "cash-2": string;
|
|
274
|
+
readonly "caution-file-2": string;
|
|
275
|
+
readonly "caution-phone-2": string;
|
|
276
|
+
readonly "caution-triangle-2": string;
|
|
277
|
+
readonly "center-2": string;
|
|
278
|
+
readonly "chat-bubble-2": string;
|
|
279
|
+
readonly "chat-question-2": string;
|
|
280
|
+
readonly "check-2": string;
|
|
281
|
+
readonly "checkmark-2": string;
|
|
282
|
+
readonly "clipboard-2": string;
|
|
283
|
+
readonly "clock1-2": string;
|
|
284
|
+
readonly "clock2-2": string;
|
|
285
|
+
readonly "clock3-2": string;
|
|
286
|
+
readonly "cloud-server-2": string;
|
|
287
|
+
readonly "cloud-2": string;
|
|
288
|
+
readonly "code-browser-2": string;
|
|
289
|
+
readonly "code-2": string;
|
|
290
|
+
readonly "compass-2": string;
|
|
291
|
+
readonly "computer-badge-2": string;
|
|
292
|
+
readonly "computer-download-2": string;
|
|
293
|
+
readonly "computer-upoad-2": string;
|
|
294
|
+
readonly "computer-2": string;
|
|
295
|
+
readonly "connected-dots-2": string;
|
|
296
|
+
readonly "connected-together-2": string;
|
|
297
|
+
readonly "container-lines-2-2": string;
|
|
298
|
+
readonly "container-lines-3": string;
|
|
299
|
+
readonly "cube-dot-line-2": string;
|
|
300
|
+
readonly "cube-line-2": string;
|
|
301
|
+
readonly "cycle-2": string;
|
|
302
|
+
readonly "dna-2": string;
|
|
303
|
+
readonly "desktop-laptop-2": string;
|
|
304
|
+
readonly "devices-2": string;
|
|
305
|
+
readonly "distribute-1": string;
|
|
306
|
+
readonly "distribute-3": string;
|
|
307
|
+
readonly "dollar-sign-2": string;
|
|
308
|
+
readonly "donut-coffee-2": string;
|
|
309
|
+
readonly "download-2": string;
|
|
310
|
+
readonly "drop-2": string;
|
|
311
|
+
readonly "enterprise-building-2": string;
|
|
312
|
+
readonly "envelope-bug-2": string;
|
|
313
|
+
readonly "envelope-doc-2": string;
|
|
314
|
+
readonly "envelope-shred-2": string;
|
|
315
|
+
readonly "envelope-2": string;
|
|
316
|
+
readonly "exclamation-mark-2": string;
|
|
317
|
+
readonly "eye-2": string;
|
|
318
|
+
readonly "ftp-folder-2": string;
|
|
319
|
+
readonly "file-approved-2": string;
|
|
320
|
+
readonly "file-blank-2": string;
|
|
321
|
+
readonly "file-check-2": string;
|
|
322
|
+
readonly "file-cloud-2": string;
|
|
323
|
+
readonly "file-copy-2": string;
|
|
324
|
+
readonly "file-document-2": string;
|
|
325
|
+
readonly "file-image-2": string;
|
|
326
|
+
readonly "file-infographic-2": string;
|
|
327
|
+
readonly "file-insights-2": string;
|
|
328
|
+
readonly "file-presentations-2": string;
|
|
329
|
+
readonly "file-speed-2": string;
|
|
330
|
+
readonly "file-spreadsheet-2": string;
|
|
331
|
+
readonly "file-text-2": string;
|
|
332
|
+
readonly "file-video-2": string;
|
|
333
|
+
readonly "file-bug-2": string;
|
|
334
|
+
readonly "file-move-2": string;
|
|
335
|
+
readonly "file-music-2": string;
|
|
336
|
+
readonly "file-plus-2": string;
|
|
337
|
+
readonly "finger-print-2": string;
|
|
338
|
+
readonly "flight-2": string;
|
|
339
|
+
readonly "folder-up-2": string;
|
|
340
|
+
readonly "folder-upload-2": string;
|
|
341
|
+
readonly "folder-2": string;
|
|
342
|
+
readonly "funnel-2": string;
|
|
343
|
+
readonly "gear-2": string;
|
|
344
|
+
readonly "gears-2": string;
|
|
345
|
+
readonly "graduation-cap-2": string;
|
|
346
|
+
readonly "graph-increase-2": string;
|
|
347
|
+
readonly "graph-measure-2": string;
|
|
348
|
+
readonly "group-call-2": string;
|
|
349
|
+
readonly "heart-2": string;
|
|
350
|
+
readonly "home-2": string;
|
|
351
|
+
readonly "image-2": string;
|
|
352
|
+
readonly "key-safe-2": string;
|
|
353
|
+
readonly "leaves-growing-2": string;
|
|
354
|
+
readonly "light-2": string;
|
|
355
|
+
readonly "line-graph-v2-2": string;
|
|
356
|
+
readonly "line-graph-2": string;
|
|
357
|
+
readonly "link-2": string;
|
|
358
|
+
readonly "lock-2": string;
|
|
359
|
+
readonly "magnifying-glass-2": string;
|
|
360
|
+
readonly "martini-2": string;
|
|
361
|
+
readonly "maze-2": string;
|
|
362
|
+
readonly "med-tool-2": string;
|
|
363
|
+
readonly "megaphone-2": string;
|
|
364
|
+
readonly "metadata-2": string;
|
|
365
|
+
readonly "microphone-2": string;
|
|
366
|
+
readonly "minus-2": string;
|
|
367
|
+
readonly "mixed-media-download-2": string;
|
|
368
|
+
readonly "music-note-2": string;
|
|
369
|
+
readonly "note-pad-2": string;
|
|
370
|
+
readonly "number0-2": string;
|
|
371
|
+
readonly "number1-2": string;
|
|
372
|
+
readonly "number2-2": string;
|
|
373
|
+
readonly "number3-2": string;
|
|
374
|
+
readonly "number4-2": string;
|
|
375
|
+
readonly "number5-2": string;
|
|
376
|
+
readonly "number6-2": string;
|
|
377
|
+
readonly "number7-2": string;
|
|
378
|
+
readonly "number8-2": string;
|
|
379
|
+
readonly "number9-2": string;
|
|
380
|
+
readonly "o-maru-2": string;
|
|
381
|
+
readonly "overlay-2": string;
|
|
382
|
+
readonly "paper-2": string;
|
|
383
|
+
readonly "pen-2": string;
|
|
384
|
+
readonly "person-2": string;
|
|
385
|
+
readonly "phone-1": string;
|
|
386
|
+
readonly "phone-browser-2": string;
|
|
387
|
+
readonly "phone-3": string;
|
|
388
|
+
readonly "pie-chart-3-2": string;
|
|
389
|
+
readonly "pie-chart-2": string;
|
|
390
|
+
readonly "pin-1": string;
|
|
391
|
+
readonly "pin-3": string;
|
|
392
|
+
readonly "plane-2": string;
|
|
393
|
+
readonly "plus-2": string;
|
|
394
|
+
readonly "podium-2": string;
|
|
395
|
+
readonly "point-center-2": string;
|
|
396
|
+
readonly "point-2": string;
|
|
397
|
+
readonly "question-mark-2": string;
|
|
398
|
+
readonly "raft-2": string;
|
|
399
|
+
readonly "retail-tag-2": string;
|
|
400
|
+
readonly "right-to-forget-2": string;
|
|
401
|
+
readonly "ring-2": string;
|
|
402
|
+
readonly "rocket-2": string;
|
|
403
|
+
readonly "smb-building-2": string;
|
|
404
|
+
readonly "scale-1": string;
|
|
405
|
+
readonly "scale-3": string;
|
|
406
|
+
readonly "scan-2": string;
|
|
407
|
+
readonly "server-2": string;
|
|
408
|
+
readonly "shake-love-2": string;
|
|
409
|
+
readonly "shared-users-2": string;
|
|
410
|
+
readonly "shield-2-tone-2": string;
|
|
411
|
+
readonly "shield-check-2": string;
|
|
412
|
+
readonly "shield-varified-2": string;
|
|
413
|
+
readonly "slice-2": string;
|
|
414
|
+
readonly "slider-2": string;
|
|
415
|
+
readonly "solid-arrow-down-2": string;
|
|
416
|
+
readonly "solid-arrow-right-2": string;
|
|
417
|
+
readonly "solid-check-2": string;
|
|
418
|
+
readonly "solid-checkmark-2": string;
|
|
419
|
+
readonly "solid-clock1-2": string;
|
|
420
|
+
readonly "solid-clock2-2": string;
|
|
421
|
+
readonly "solid-compass-2": string;
|
|
422
|
+
readonly "solid-dollar-sign-2": string;
|
|
423
|
+
readonly "solid-exclamation-mark-2": string;
|
|
424
|
+
readonly "solid-minus-2": string;
|
|
425
|
+
readonly "solid-o-maru-2": string;
|
|
426
|
+
readonly "solid-play-2": string;
|
|
427
|
+
readonly "solid-plus-2": string;
|
|
428
|
+
readonly "solid-question-mark-2": string;
|
|
429
|
+
readonly "solid-x-batsu-2": string;
|
|
430
|
+
readonly "speach-bubble-2": string;
|
|
431
|
+
readonly "spotlight-2": string;
|
|
432
|
+
readonly "spray-bottle-2": string;
|
|
433
|
+
readonly "squares-scale-top-2": string;
|
|
434
|
+
readonly "squares-scale-2": string;
|
|
435
|
+
readonly "squares-together-2": string;
|
|
436
|
+
readonly "star-2": string;
|
|
437
|
+
readonly "stop-hand-2": string;
|
|
438
|
+
readonly "storage-cloud-2": string;
|
|
439
|
+
readonly "storage-key-2": string;
|
|
440
|
+
readonly "storage-2": string;
|
|
441
|
+
readonly "sun-2": string;
|
|
442
|
+
readonly "target-2": string;
|
|
443
|
+
readonly "team-add-2": string;
|
|
444
|
+
readonly "team-2": string;
|
|
445
|
+
readonly "thumb-2": string;
|
|
446
|
+
readonly "toggle-2": string;
|
|
447
|
+
readonly "tools-2": string;
|
|
448
|
+
readonly "trophy-2": string;
|
|
449
|
+
readonly "truck-2": string;
|
|
450
|
+
readonly "two-files-2": string;
|
|
451
|
+
readonly "typing-now-2": string;
|
|
452
|
+
readonly "typing-2": string;
|
|
453
|
+
readonly "usb-2": string;
|
|
454
|
+
readonly "up-down-2": string;
|
|
455
|
+
readonly "upload-cloud-2": string;
|
|
456
|
+
readonly "upload-2": string;
|
|
457
|
+
readonly "user-alert-2": string;
|
|
458
|
+
readonly "user-verified-unknown-2": string;
|
|
459
|
+
readonly "user-verified-2": string;
|
|
460
|
+
readonly "user-badge-2": string;
|
|
461
|
+
readonly "user-primary-2": string;
|
|
462
|
+
readonly "user-timed-2": string;
|
|
463
|
+
readonly "video-camera-1": string;
|
|
464
|
+
readonly "video-camera-3": string;
|
|
465
|
+
readonly "video-2": string;
|
|
466
|
+
readonly "white-arrow-right": string;
|
|
467
|
+
readonly "white-check": string;
|
|
468
|
+
readonly "white-plus": string;
|
|
469
|
+
readonly "white-stop": string;
|
|
470
|
+
readonly "writing-2": string;
|
|
471
|
+
readonly "x-batsu-2": string;
|
|
472
|
+
readonly "zones-2": string;
|
|
473
|
+
readonly "play-2": string;
|
|
474
|
+
};
|
|
475
|
+
export declare const boxGeneratedIconMetadata: {
|
|
476
|
+
readonly "2-chat-question": {
|
|
477
|
+
readonly tone: "blue";
|
|
478
|
+
readonly filename: "Icon_2-Chat-Question_blue.svg";
|
|
479
|
+
};
|
|
480
|
+
readonly "2-chat": {
|
|
481
|
+
readonly tone: "blue";
|
|
482
|
+
readonly filename: "Icon_2-Chat_blue.svg";
|
|
483
|
+
};
|
|
484
|
+
readonly "2-overlay-squares": {
|
|
485
|
+
readonly tone: "blue";
|
|
486
|
+
readonly filename: "Icon_2-Overlay-Squares_blue.svg";
|
|
487
|
+
};
|
|
488
|
+
readonly "3-overlay-squares": {
|
|
489
|
+
readonly tone: "blue";
|
|
490
|
+
readonly filename: "Icon_3-Overlay-Squares_blue.svg";
|
|
491
|
+
};
|
|
492
|
+
readonly "3-square-circle": {
|
|
493
|
+
readonly tone: "blue";
|
|
494
|
+
readonly filename: "Icon_3-Square-Circle_blue.svg";
|
|
495
|
+
};
|
|
496
|
+
readonly "3-tier": {
|
|
497
|
+
readonly tone: "blue";
|
|
498
|
+
readonly filename: "Icon_3-Tier_blue.svg";
|
|
499
|
+
};
|
|
500
|
+
readonly "4-squares": {
|
|
501
|
+
readonly tone: "blue";
|
|
502
|
+
readonly filename: "Icon_4-Squares_blue-1.svg";
|
|
503
|
+
};
|
|
504
|
+
readonly "4-squares-2": {
|
|
505
|
+
readonly tone: "blue";
|
|
506
|
+
readonly filename: "Icon_4-Squares_blue.svg";
|
|
507
|
+
};
|
|
508
|
+
readonly "6-dots": {
|
|
509
|
+
readonly tone: "blue";
|
|
510
|
+
readonly filename: "Icon_6-Dots_blue.svg";
|
|
511
|
+
};
|
|
512
|
+
readonly "add-small": {
|
|
513
|
+
readonly tone: "blue";
|
|
514
|
+
readonly filename: "Icon_Add-Small_blue.svg";
|
|
515
|
+
};
|
|
516
|
+
readonly "add-squares": {
|
|
517
|
+
readonly tone: "blue";
|
|
518
|
+
readonly filename: "Icon_Add-Squares_blue.svg";
|
|
519
|
+
};
|
|
520
|
+
readonly "add-to-cart": {
|
|
521
|
+
readonly tone: "blue";
|
|
522
|
+
readonly filename: "Icon_Add-to-cart_blue.svg";
|
|
523
|
+
};
|
|
524
|
+
readonly aid: {
|
|
525
|
+
readonly tone: "blue";
|
|
526
|
+
readonly filename: "Icon_Aid_blue.svg";
|
|
527
|
+
};
|
|
528
|
+
readonly "app-cloud": {
|
|
529
|
+
readonly tone: "blue";
|
|
530
|
+
readonly filename: "Icon_App-Cloud_blue.svg";
|
|
531
|
+
};
|
|
532
|
+
readonly "arrow-down": {
|
|
533
|
+
readonly tone: "blue";
|
|
534
|
+
readonly filename: "Icon_Arrow Down_blue.svg";
|
|
535
|
+
};
|
|
536
|
+
readonly "arrow-right": {
|
|
537
|
+
readonly tone: "blue";
|
|
538
|
+
readonly filename: "Icon_Arrow Right_blue.svg";
|
|
539
|
+
};
|
|
540
|
+
readonly attachment: {
|
|
541
|
+
readonly tone: "blue";
|
|
542
|
+
readonly filename: "Icon_Attachment_blue.svg";
|
|
543
|
+
};
|
|
544
|
+
readonly audio: {
|
|
545
|
+
readonly tone: "blue";
|
|
546
|
+
readonly filename: "Icon_Audio_blue.svg";
|
|
547
|
+
};
|
|
548
|
+
readonly award: {
|
|
549
|
+
readonly tone: "blue";
|
|
550
|
+
readonly filename: "Icon_Award_blue.svg";
|
|
551
|
+
};
|
|
552
|
+
readonly badge: {
|
|
553
|
+
readonly tone: "blue";
|
|
554
|
+
readonly filename: "Icon_Badge_blue.svg";
|
|
555
|
+
};
|
|
556
|
+
readonly bag: {
|
|
557
|
+
readonly tone: "blue";
|
|
558
|
+
readonly filename: "Icon_Bag_blue.svg";
|
|
559
|
+
};
|
|
560
|
+
readonly bank: {
|
|
561
|
+
readonly tone: "blue";
|
|
562
|
+
readonly filename: "Icon_Bank_blue.svg";
|
|
563
|
+
};
|
|
564
|
+
readonly battery: {
|
|
565
|
+
readonly tone: "blue";
|
|
566
|
+
readonly filename: "Icon_Battery_blue.svg";
|
|
567
|
+
};
|
|
568
|
+
readonly bell: {
|
|
569
|
+
readonly tone: "blue";
|
|
570
|
+
readonly filename: "Icon_Bell_blue.svg";
|
|
571
|
+
};
|
|
572
|
+
readonly binders: {
|
|
573
|
+
readonly tone: "blue";
|
|
574
|
+
readonly filename: "Icon_Binders_blue.svg";
|
|
575
|
+
};
|
|
576
|
+
readonly "bolt-bubble": {
|
|
577
|
+
readonly tone: "blue";
|
|
578
|
+
readonly filename: "Icon_Bolt-Bubble_blue.svg";
|
|
579
|
+
};
|
|
580
|
+
readonly bolt: {
|
|
581
|
+
readonly tone: "blue";
|
|
582
|
+
readonly filename: "Icon_Bolt_blue.svg";
|
|
583
|
+
};
|
|
584
|
+
readonly brain: {
|
|
585
|
+
readonly tone: "blue";
|
|
586
|
+
readonly filename: "Icon_Brain_blue.svg";
|
|
587
|
+
};
|
|
588
|
+
readonly briefcase: {
|
|
589
|
+
readonly tone: "blue";
|
|
590
|
+
readonly filename: "Icon_Briefcase_blue.svg";
|
|
591
|
+
};
|
|
592
|
+
readonly broadcast: {
|
|
593
|
+
readonly tone: "blue";
|
|
594
|
+
readonly filename: "Icon_Broadcast_blue.svg";
|
|
595
|
+
};
|
|
596
|
+
readonly browser: {
|
|
597
|
+
readonly tone: "blue";
|
|
598
|
+
readonly filename: "Icon_Browser_blue.svg";
|
|
599
|
+
};
|
|
600
|
+
readonly brush: {
|
|
601
|
+
readonly tone: "blue";
|
|
602
|
+
readonly filename: "Icon_Brush_blue.svg";
|
|
603
|
+
};
|
|
604
|
+
readonly "calendar-added": {
|
|
605
|
+
readonly tone: "blue";
|
|
606
|
+
readonly filename: "Icon_Calendar-Added_blue.svg";
|
|
607
|
+
};
|
|
608
|
+
readonly calendar: {
|
|
609
|
+
readonly tone: "blue";
|
|
610
|
+
readonly filename: "Icon_Calendar_blue-1.svg";
|
|
611
|
+
};
|
|
612
|
+
readonly "calendar-2": {
|
|
613
|
+
readonly tone: "blue";
|
|
614
|
+
readonly filename: "Icon_Calendar_blue.svg";
|
|
615
|
+
};
|
|
616
|
+
readonly cart: {
|
|
617
|
+
readonly tone: "blue";
|
|
618
|
+
readonly filename: "Icon_Cart_blue-1.svg";
|
|
619
|
+
};
|
|
620
|
+
readonly "cart-2": {
|
|
621
|
+
readonly tone: "blue";
|
|
622
|
+
readonly filename: "Icon_Cart_blue.svg";
|
|
623
|
+
};
|
|
624
|
+
readonly cash: {
|
|
625
|
+
readonly tone: "blue";
|
|
626
|
+
readonly filename: "Icon_Cash_blue.svg";
|
|
627
|
+
};
|
|
628
|
+
readonly "caution-file": {
|
|
629
|
+
readonly tone: "blue";
|
|
630
|
+
readonly filename: "Icon_Caution-File_blue.svg";
|
|
631
|
+
};
|
|
632
|
+
readonly "caution-phone": {
|
|
633
|
+
readonly tone: "blue";
|
|
634
|
+
readonly filename: "Icon_Caution-Phone_blue.svg";
|
|
635
|
+
};
|
|
636
|
+
readonly "caution-triangle": {
|
|
637
|
+
readonly tone: "blue";
|
|
638
|
+
readonly filename: "Icon_Caution-Triangle_blue.svg";
|
|
639
|
+
};
|
|
640
|
+
readonly center: {
|
|
641
|
+
readonly tone: "blue";
|
|
642
|
+
readonly filename: "Icon_Center_blue.svg";
|
|
643
|
+
};
|
|
644
|
+
readonly "chat-bubble": {
|
|
645
|
+
readonly tone: "blue";
|
|
646
|
+
readonly filename: "Icon_Chat-Bubble_blue.svg";
|
|
647
|
+
};
|
|
648
|
+
readonly "chat-question": {
|
|
649
|
+
readonly tone: "blue";
|
|
650
|
+
readonly filename: "Icon_Chat-Question_blue.svg";
|
|
651
|
+
};
|
|
652
|
+
readonly check: {
|
|
653
|
+
readonly tone: "blue";
|
|
654
|
+
readonly filename: "Icon_Check_blue.svg";
|
|
655
|
+
};
|
|
656
|
+
readonly checkmark: {
|
|
657
|
+
readonly tone: "blue";
|
|
658
|
+
readonly filename: "Icon_Checkmark_blue.svg";
|
|
659
|
+
};
|
|
660
|
+
readonly clipboard: {
|
|
661
|
+
readonly tone: "blue";
|
|
662
|
+
readonly filename: "Icon_Clipboard_blue.svg";
|
|
663
|
+
};
|
|
664
|
+
readonly clock1: {
|
|
665
|
+
readonly tone: "blue";
|
|
666
|
+
readonly filename: "Icon_Clock1_blue.svg";
|
|
667
|
+
};
|
|
668
|
+
readonly clock2: {
|
|
669
|
+
readonly tone: "blue";
|
|
670
|
+
readonly filename: "Icon_Clock2_blue.svg";
|
|
671
|
+
};
|
|
672
|
+
readonly clock3: {
|
|
673
|
+
readonly tone: "blue";
|
|
674
|
+
readonly filename: "Icon_Clock3_blue.svg";
|
|
675
|
+
};
|
|
676
|
+
readonly "cloud-server": {
|
|
677
|
+
readonly tone: "blue";
|
|
678
|
+
readonly filename: "Icon_Cloud-Server_blue.svg";
|
|
679
|
+
};
|
|
680
|
+
readonly cloud: {
|
|
681
|
+
readonly tone: "blue";
|
|
682
|
+
readonly filename: "Icon_Cloud_blue.svg";
|
|
683
|
+
};
|
|
684
|
+
readonly "code-browser": {
|
|
685
|
+
readonly tone: "blue";
|
|
686
|
+
readonly filename: "Icon_Code-Browser_blue.svg";
|
|
687
|
+
};
|
|
688
|
+
readonly code: {
|
|
689
|
+
readonly tone: "blue";
|
|
690
|
+
readonly filename: "Icon_Code_blue.svg";
|
|
691
|
+
};
|
|
692
|
+
readonly compass: {
|
|
693
|
+
readonly tone: "blue";
|
|
694
|
+
readonly filename: "Icon_Compass_blue.svg";
|
|
695
|
+
};
|
|
696
|
+
readonly "computer-badge": {
|
|
697
|
+
readonly tone: "blue";
|
|
698
|
+
readonly filename: "Icon_Computer-Badge_blue.svg";
|
|
699
|
+
};
|
|
700
|
+
readonly "computer-download": {
|
|
701
|
+
readonly tone: "blue";
|
|
702
|
+
readonly filename: "Icon_Computer-Download_blue.svg";
|
|
703
|
+
};
|
|
704
|
+
readonly "computer-upoad": {
|
|
705
|
+
readonly tone: "blue";
|
|
706
|
+
readonly filename: "Icon_Computer-Upoad_blue.svg";
|
|
707
|
+
};
|
|
708
|
+
readonly computer: {
|
|
709
|
+
readonly tone: "blue";
|
|
710
|
+
readonly filename: "Icon_Computer_blue.svg";
|
|
711
|
+
};
|
|
712
|
+
readonly "connected-dots": {
|
|
713
|
+
readonly tone: "blue";
|
|
714
|
+
readonly filename: "Icon_Connected-Dots_blue.svg";
|
|
715
|
+
};
|
|
716
|
+
readonly "connected-together": {
|
|
717
|
+
readonly tone: "blue";
|
|
718
|
+
readonly filename: "Icon_Connected-Together_blue.svg";
|
|
719
|
+
};
|
|
720
|
+
readonly "container-lines-2": {
|
|
721
|
+
readonly tone: "blue";
|
|
722
|
+
readonly filename: "Icon_Container-Lines-2_blue.svg";
|
|
723
|
+
};
|
|
724
|
+
readonly "container-lines": {
|
|
725
|
+
readonly tone: "blue";
|
|
726
|
+
readonly filename: "Icon_Container-Lines_blue.svg";
|
|
727
|
+
};
|
|
728
|
+
readonly "cube-dot-line": {
|
|
729
|
+
readonly tone: "blue";
|
|
730
|
+
readonly filename: "Icon_Cube-Dot-Line_blue.svg";
|
|
731
|
+
};
|
|
732
|
+
readonly "cube-line": {
|
|
733
|
+
readonly tone: "blue";
|
|
734
|
+
readonly filename: "Icon_Cube-Line_blue.svg";
|
|
735
|
+
};
|
|
736
|
+
readonly cycle: {
|
|
737
|
+
readonly tone: "blue";
|
|
738
|
+
readonly filename: "Icon_Cycle_blue.svg";
|
|
739
|
+
};
|
|
740
|
+
readonly dna: {
|
|
741
|
+
readonly tone: "blue";
|
|
742
|
+
readonly filename: "Icon_DNA_blue.svg";
|
|
743
|
+
};
|
|
744
|
+
readonly "desktop-laptop": {
|
|
745
|
+
readonly tone: "blue";
|
|
746
|
+
readonly filename: "Icon_Desktop-Laptop_blue.svg";
|
|
747
|
+
};
|
|
748
|
+
readonly devices: {
|
|
749
|
+
readonly tone: "blue";
|
|
750
|
+
readonly filename: "Icon_Devices_blue.svg";
|
|
751
|
+
};
|
|
752
|
+
readonly distribute: {
|
|
753
|
+
readonly tone: "blue";
|
|
754
|
+
readonly filename: "Icon_Distribute_blue-1.svg";
|
|
755
|
+
};
|
|
756
|
+
readonly "distribute-2": {
|
|
757
|
+
readonly tone: "blue";
|
|
758
|
+
readonly filename: "Icon_Distribute_blue.svg";
|
|
759
|
+
};
|
|
760
|
+
readonly "dollar-sign": {
|
|
761
|
+
readonly tone: "blue";
|
|
762
|
+
readonly filename: "Icon_Dollar sign_blue.svg";
|
|
763
|
+
};
|
|
764
|
+
readonly "donut-coffee": {
|
|
765
|
+
readonly tone: "blue";
|
|
766
|
+
readonly filename: "Icon_Donut-Coffee_blue.svg";
|
|
767
|
+
};
|
|
768
|
+
readonly download: {
|
|
769
|
+
readonly tone: "blue";
|
|
770
|
+
readonly filename: "Icon_Download_blue.svg";
|
|
771
|
+
};
|
|
772
|
+
readonly drop: {
|
|
773
|
+
readonly tone: "blue";
|
|
774
|
+
readonly filename: "Icon_Drop_blue.svg";
|
|
775
|
+
};
|
|
776
|
+
readonly "enterprise-building": {
|
|
777
|
+
readonly tone: "blue";
|
|
778
|
+
readonly filename: "Icon_Enterprise-building_blue.svg";
|
|
779
|
+
};
|
|
780
|
+
readonly "envelope-bug": {
|
|
781
|
+
readonly tone: "blue";
|
|
782
|
+
readonly filename: "Icon_Envelope-Bug_blue.svg";
|
|
783
|
+
};
|
|
784
|
+
readonly "envelope-doc": {
|
|
785
|
+
readonly tone: "blue";
|
|
786
|
+
readonly filename: "Icon_Envelope-Doc_blue.svg";
|
|
787
|
+
};
|
|
788
|
+
readonly "envelope-shred": {
|
|
789
|
+
readonly tone: "blue";
|
|
790
|
+
readonly filename: "Icon_Envelope-Shred_blue.svg";
|
|
791
|
+
};
|
|
792
|
+
readonly envelope: {
|
|
793
|
+
readonly tone: "blue";
|
|
794
|
+
readonly filename: "Icon_Envelope_blue.svg";
|
|
795
|
+
};
|
|
796
|
+
readonly "exclamation-mark": {
|
|
797
|
+
readonly tone: "blue";
|
|
798
|
+
readonly filename: "Icon_Exclamation mark_blue.svg";
|
|
799
|
+
};
|
|
800
|
+
readonly eye: {
|
|
801
|
+
readonly tone: "blue";
|
|
802
|
+
readonly filename: "Icon_Eye_blue.svg";
|
|
803
|
+
};
|
|
804
|
+
readonly "ftp-folder": {
|
|
805
|
+
readonly tone: "blue";
|
|
806
|
+
readonly filename: "Icon_FTP-Folder_blue.svg";
|
|
807
|
+
};
|
|
808
|
+
readonly "file-approved": {
|
|
809
|
+
readonly tone: "blue";
|
|
810
|
+
readonly filename: "Icon_File-Approved_blue.svg";
|
|
811
|
+
};
|
|
812
|
+
readonly "file-blank": {
|
|
813
|
+
readonly tone: "blue";
|
|
814
|
+
readonly filename: "Icon_File-Blank_blue.svg";
|
|
815
|
+
};
|
|
816
|
+
readonly "file-check": {
|
|
817
|
+
readonly tone: "blue";
|
|
818
|
+
readonly filename: "Icon_File-Check_blue.svg";
|
|
819
|
+
};
|
|
820
|
+
readonly "file-cloud": {
|
|
821
|
+
readonly tone: "blue";
|
|
822
|
+
readonly filename: "Icon_File-Cloud_blue.svg";
|
|
823
|
+
};
|
|
824
|
+
readonly "file-copy": {
|
|
825
|
+
readonly tone: "blue";
|
|
826
|
+
readonly filename: "Icon_File-Copy_blue.svg";
|
|
827
|
+
};
|
|
828
|
+
readonly "file-document": {
|
|
829
|
+
readonly tone: "blue";
|
|
830
|
+
readonly filename: "Icon_File-Document_blue.svg";
|
|
831
|
+
};
|
|
832
|
+
readonly "file-image": {
|
|
833
|
+
readonly tone: "blue";
|
|
834
|
+
readonly filename: "Icon_File-Image_blue.svg";
|
|
835
|
+
};
|
|
836
|
+
readonly "file-infographic": {
|
|
837
|
+
readonly tone: "blue";
|
|
838
|
+
readonly filename: "Icon_File-Infographic_blue.svg";
|
|
839
|
+
};
|
|
840
|
+
readonly "file-insights": {
|
|
841
|
+
readonly tone: "blue";
|
|
842
|
+
readonly filename: "Icon_File-Insights_blue.svg";
|
|
843
|
+
};
|
|
844
|
+
readonly "file-presentations": {
|
|
845
|
+
readonly tone: "blue";
|
|
846
|
+
readonly filename: "Icon_File-Presentations_blue.svg";
|
|
847
|
+
};
|
|
848
|
+
readonly "file-speed": {
|
|
849
|
+
readonly tone: "blue";
|
|
850
|
+
readonly filename: "Icon_File-Speed_blue.svg";
|
|
851
|
+
};
|
|
852
|
+
readonly "file-spreadsheet": {
|
|
853
|
+
readonly tone: "blue";
|
|
854
|
+
readonly filename: "Icon_File-Spreadsheet_blue.svg";
|
|
855
|
+
};
|
|
856
|
+
readonly "file-text": {
|
|
857
|
+
readonly tone: "blue";
|
|
858
|
+
readonly filename: "Icon_File-Text_blue.svg";
|
|
859
|
+
};
|
|
860
|
+
readonly "file-video": {
|
|
861
|
+
readonly tone: "blue";
|
|
862
|
+
readonly filename: "Icon_File-Video_blue.svg";
|
|
863
|
+
};
|
|
864
|
+
readonly "file-bug": {
|
|
865
|
+
readonly tone: "blue";
|
|
866
|
+
readonly filename: "Icon_File-bug_blue.svg";
|
|
867
|
+
};
|
|
868
|
+
readonly "file-move": {
|
|
869
|
+
readonly tone: "blue";
|
|
870
|
+
readonly filename: "Icon_File-move_blue.svg";
|
|
871
|
+
};
|
|
872
|
+
readonly "file-music": {
|
|
873
|
+
readonly tone: "blue";
|
|
874
|
+
readonly filename: "Icon_File-music_blue.svg";
|
|
875
|
+
};
|
|
876
|
+
readonly "file-plus": {
|
|
877
|
+
readonly tone: "blue";
|
|
878
|
+
readonly filename: "Icon_File-plus_blue.svg";
|
|
879
|
+
};
|
|
880
|
+
readonly "finger-print": {
|
|
881
|
+
readonly tone: "blue";
|
|
882
|
+
readonly filename: "Icon_Finger-Print_blue.svg";
|
|
883
|
+
};
|
|
884
|
+
readonly flight: {
|
|
885
|
+
readonly tone: "blue";
|
|
886
|
+
readonly filename: "Icon_Flight_blue.svg";
|
|
887
|
+
};
|
|
888
|
+
readonly "folder-up": {
|
|
889
|
+
readonly tone: "blue";
|
|
890
|
+
readonly filename: "Icon_Folder-Up_blue.svg";
|
|
891
|
+
};
|
|
892
|
+
readonly "folder-upload": {
|
|
893
|
+
readonly tone: "blue";
|
|
894
|
+
readonly filename: "Icon_Folder-Upload_blue.svg";
|
|
895
|
+
};
|
|
896
|
+
readonly folder: {
|
|
897
|
+
readonly tone: "blue";
|
|
898
|
+
readonly filename: "Icon_Folder_blue.svg";
|
|
899
|
+
};
|
|
900
|
+
readonly funnel: {
|
|
901
|
+
readonly tone: "blue";
|
|
902
|
+
readonly filename: "Icon_Funnel_blue.svg";
|
|
903
|
+
};
|
|
904
|
+
readonly gear: {
|
|
905
|
+
readonly tone: "blue";
|
|
906
|
+
readonly filename: "Icon_Gear_blue.svg";
|
|
907
|
+
};
|
|
908
|
+
readonly gears: {
|
|
909
|
+
readonly tone: "blue";
|
|
910
|
+
readonly filename: "Icon_Gears_blue.svg";
|
|
911
|
+
};
|
|
912
|
+
readonly "graduation-cap": {
|
|
913
|
+
readonly tone: "blue";
|
|
914
|
+
readonly filename: "Icon_Graduation-Cap_blue.svg";
|
|
915
|
+
};
|
|
916
|
+
readonly "graph-increase": {
|
|
917
|
+
readonly tone: "blue";
|
|
918
|
+
readonly filename: "Icon_Graph-increase_blue.svg";
|
|
919
|
+
};
|
|
920
|
+
readonly "graph-measure": {
|
|
921
|
+
readonly tone: "blue";
|
|
922
|
+
readonly filename: "Icon_Graph-measure_blue.svg";
|
|
923
|
+
};
|
|
924
|
+
readonly "group-call": {
|
|
925
|
+
readonly tone: "blue";
|
|
926
|
+
readonly filename: "Icon_Group-call_blue.svg";
|
|
927
|
+
};
|
|
928
|
+
readonly heart: {
|
|
929
|
+
readonly tone: "blue";
|
|
930
|
+
readonly filename: "Icon_Heart_blue.svg";
|
|
931
|
+
};
|
|
932
|
+
readonly home: {
|
|
933
|
+
readonly tone: "blue";
|
|
934
|
+
readonly filename: "Icon_Home_blue.svg";
|
|
935
|
+
};
|
|
936
|
+
readonly image: {
|
|
937
|
+
readonly tone: "blue";
|
|
938
|
+
readonly filename: "Icon_Image_blue.svg";
|
|
939
|
+
};
|
|
940
|
+
readonly "key-safe": {
|
|
941
|
+
readonly tone: "blue";
|
|
942
|
+
readonly filename: "Icon_Key-safe_blue.svg";
|
|
943
|
+
};
|
|
944
|
+
readonly "leaves-growing": {
|
|
945
|
+
readonly tone: "blue";
|
|
946
|
+
readonly filename: "Icon_Leaves-growing_blue.svg";
|
|
947
|
+
};
|
|
948
|
+
readonly light: {
|
|
949
|
+
readonly tone: "blue";
|
|
950
|
+
readonly filename: "Icon_Light_blue.svg";
|
|
951
|
+
};
|
|
952
|
+
readonly "line-graph-v2": {
|
|
953
|
+
readonly tone: "blue";
|
|
954
|
+
readonly filename: "Icon_Line graph-v2_blue.svg";
|
|
955
|
+
};
|
|
956
|
+
readonly "line-graph": {
|
|
957
|
+
readonly tone: "blue";
|
|
958
|
+
readonly filename: "Icon_Line-graph_blue.svg";
|
|
959
|
+
};
|
|
960
|
+
readonly link: {
|
|
961
|
+
readonly tone: "blue";
|
|
962
|
+
readonly filename: "Icon_Link_blue.svg";
|
|
963
|
+
};
|
|
964
|
+
readonly lock: {
|
|
965
|
+
readonly tone: "blue";
|
|
966
|
+
readonly filename: "Icon_Lock_blue.svg";
|
|
967
|
+
};
|
|
968
|
+
readonly "magnifying-glass": {
|
|
969
|
+
readonly tone: "blue";
|
|
970
|
+
readonly filename: "Icon_Magnifying-Glass_blue.svg";
|
|
971
|
+
};
|
|
972
|
+
readonly martini: {
|
|
973
|
+
readonly tone: "blue";
|
|
974
|
+
readonly filename: "Icon_Martini_blue.svg";
|
|
975
|
+
};
|
|
976
|
+
readonly maze: {
|
|
977
|
+
readonly tone: "blue";
|
|
978
|
+
readonly filename: "Icon_Maze_blue.svg";
|
|
979
|
+
};
|
|
980
|
+
readonly "med-tool": {
|
|
981
|
+
readonly tone: "blue";
|
|
982
|
+
readonly filename: "Icon_Med-tool_blue.svg";
|
|
983
|
+
};
|
|
984
|
+
readonly megaphone: {
|
|
985
|
+
readonly tone: "blue";
|
|
986
|
+
readonly filename: "Icon_Megaphone_blue.svg";
|
|
987
|
+
};
|
|
988
|
+
readonly metadata: {
|
|
989
|
+
readonly tone: "blue";
|
|
990
|
+
readonly filename: "Icon_Metadata_blue.svg";
|
|
991
|
+
};
|
|
992
|
+
readonly microphone: {
|
|
993
|
+
readonly tone: "blue";
|
|
994
|
+
readonly filename: "Icon_Microphone_blue.svg";
|
|
995
|
+
};
|
|
996
|
+
readonly minus: {
|
|
997
|
+
readonly tone: "blue";
|
|
998
|
+
readonly filename: "Icon_Minus_blue.svg";
|
|
999
|
+
};
|
|
1000
|
+
readonly "mixed-media-download": {
|
|
1001
|
+
readonly tone: "blue";
|
|
1002
|
+
readonly filename: "Icon_Mixed-Media-Download_blue.svg";
|
|
1003
|
+
};
|
|
1004
|
+
readonly "music-note": {
|
|
1005
|
+
readonly tone: "blue";
|
|
1006
|
+
readonly filename: "Icon_Music-Note_blue.svg";
|
|
1007
|
+
};
|
|
1008
|
+
readonly "note-pad": {
|
|
1009
|
+
readonly tone: "blue";
|
|
1010
|
+
readonly filename: "Icon_Note-Pad_blue.svg";
|
|
1011
|
+
};
|
|
1012
|
+
readonly number0: {
|
|
1013
|
+
readonly tone: "blue";
|
|
1014
|
+
readonly filename: "Icon_Number0_blue.svg";
|
|
1015
|
+
};
|
|
1016
|
+
readonly number1: {
|
|
1017
|
+
readonly tone: "blue";
|
|
1018
|
+
readonly filename: "Icon_Number1_blue.svg";
|
|
1019
|
+
};
|
|
1020
|
+
readonly number2: {
|
|
1021
|
+
readonly tone: "blue";
|
|
1022
|
+
readonly filename: "Icon_Number2_blue.svg";
|
|
1023
|
+
};
|
|
1024
|
+
readonly number3: {
|
|
1025
|
+
readonly tone: "blue";
|
|
1026
|
+
readonly filename: "Icon_Number3_blue.svg";
|
|
1027
|
+
};
|
|
1028
|
+
readonly number4: {
|
|
1029
|
+
readonly tone: "blue";
|
|
1030
|
+
readonly filename: "Icon_Number4_blue.svg";
|
|
1031
|
+
};
|
|
1032
|
+
readonly number5: {
|
|
1033
|
+
readonly tone: "blue";
|
|
1034
|
+
readonly filename: "Icon_Number5_blue.svg";
|
|
1035
|
+
};
|
|
1036
|
+
readonly number6: {
|
|
1037
|
+
readonly tone: "blue";
|
|
1038
|
+
readonly filename: "Icon_Number6_blue.svg";
|
|
1039
|
+
};
|
|
1040
|
+
readonly number7: {
|
|
1041
|
+
readonly tone: "blue";
|
|
1042
|
+
readonly filename: "Icon_Number7_blue.svg";
|
|
1043
|
+
};
|
|
1044
|
+
readonly number8: {
|
|
1045
|
+
readonly tone: "blue";
|
|
1046
|
+
readonly filename: "Icon_Number8_blue.svg";
|
|
1047
|
+
};
|
|
1048
|
+
readonly number9: {
|
|
1049
|
+
readonly tone: "blue";
|
|
1050
|
+
readonly filename: "Icon_Number9_blue.svg";
|
|
1051
|
+
};
|
|
1052
|
+
readonly "o-maru": {
|
|
1053
|
+
readonly tone: "blue";
|
|
1054
|
+
readonly filename: "Icon_O_Maru_blue.svg";
|
|
1055
|
+
};
|
|
1056
|
+
readonly overlay: {
|
|
1057
|
+
readonly tone: "blue";
|
|
1058
|
+
readonly filename: "Icon_Overlay_blue.svg";
|
|
1059
|
+
};
|
|
1060
|
+
readonly paper: {
|
|
1061
|
+
readonly tone: "blue";
|
|
1062
|
+
readonly filename: "Icon_Paper_blue.svg";
|
|
1063
|
+
};
|
|
1064
|
+
readonly pen: {
|
|
1065
|
+
readonly tone: "blue";
|
|
1066
|
+
readonly filename: "Icon_Pen_blue.svg";
|
|
1067
|
+
};
|
|
1068
|
+
readonly person: {
|
|
1069
|
+
readonly tone: "blue";
|
|
1070
|
+
readonly filename: "Icon_Person_blue.svg";
|
|
1071
|
+
};
|
|
1072
|
+
readonly "phone-browser": {
|
|
1073
|
+
readonly tone: "blue";
|
|
1074
|
+
readonly filename: "Icon_Phone-Browser_blue.svg";
|
|
1075
|
+
};
|
|
1076
|
+
readonly phone: {
|
|
1077
|
+
readonly tone: "blue";
|
|
1078
|
+
readonly filename: "Icon_Phone_blue-1.svg";
|
|
1079
|
+
};
|
|
1080
|
+
readonly "phone-2": {
|
|
1081
|
+
readonly tone: "blue";
|
|
1082
|
+
readonly filename: "Icon_Phone_blue.svg";
|
|
1083
|
+
};
|
|
1084
|
+
readonly "pie-chart-3": {
|
|
1085
|
+
readonly tone: "blue";
|
|
1086
|
+
readonly filename: "Icon_Pie-chart-3_blue.svg";
|
|
1087
|
+
};
|
|
1088
|
+
readonly "pie-chart": {
|
|
1089
|
+
readonly tone: "blue";
|
|
1090
|
+
readonly filename: "Icon_Pie-chart_blue.svg";
|
|
1091
|
+
};
|
|
1092
|
+
readonly pin: {
|
|
1093
|
+
readonly tone: "blue";
|
|
1094
|
+
readonly filename: "Icon_Pin_blue-1.svg";
|
|
1095
|
+
};
|
|
1096
|
+
readonly "pin-2": {
|
|
1097
|
+
readonly tone: "blue";
|
|
1098
|
+
readonly filename: "Icon_Pin_blue.svg";
|
|
1099
|
+
};
|
|
1100
|
+
readonly plane: {
|
|
1101
|
+
readonly tone: "blue";
|
|
1102
|
+
readonly filename: "Icon_Plane_blue.svg";
|
|
1103
|
+
};
|
|
1104
|
+
readonly plus: {
|
|
1105
|
+
readonly tone: "blue";
|
|
1106
|
+
readonly filename: "Icon_Plus_blue.svg";
|
|
1107
|
+
};
|
|
1108
|
+
readonly podium: {
|
|
1109
|
+
readonly tone: "blue";
|
|
1110
|
+
readonly filename: "Icon_Podium_blue.svg";
|
|
1111
|
+
};
|
|
1112
|
+
readonly "point-center": {
|
|
1113
|
+
readonly tone: "blue";
|
|
1114
|
+
readonly filename: "Icon_Point-center_blue.svg";
|
|
1115
|
+
};
|
|
1116
|
+
readonly point: {
|
|
1117
|
+
readonly tone: "blue";
|
|
1118
|
+
readonly filename: "Icon_Point_blue.svg";
|
|
1119
|
+
};
|
|
1120
|
+
readonly "question-mark": {
|
|
1121
|
+
readonly tone: "blue";
|
|
1122
|
+
readonly filename: "Icon_Question mark_blue.svg";
|
|
1123
|
+
};
|
|
1124
|
+
readonly raft: {
|
|
1125
|
+
readonly tone: "blue";
|
|
1126
|
+
readonly filename: "Icon_Raft_blue.svg";
|
|
1127
|
+
};
|
|
1128
|
+
readonly "retail-tag": {
|
|
1129
|
+
readonly tone: "blue";
|
|
1130
|
+
readonly filename: "Icon_Retail-tag_blue.svg";
|
|
1131
|
+
};
|
|
1132
|
+
readonly "right-to-forget": {
|
|
1133
|
+
readonly tone: "blue";
|
|
1134
|
+
readonly filename: "Icon_Right-to-forget_blue.svg";
|
|
1135
|
+
};
|
|
1136
|
+
readonly ring: {
|
|
1137
|
+
readonly tone: "blue";
|
|
1138
|
+
readonly filename: "Icon_Ring_blue.svg";
|
|
1139
|
+
};
|
|
1140
|
+
readonly rocket: {
|
|
1141
|
+
readonly tone: "blue";
|
|
1142
|
+
readonly filename: "Icon_Rocket_blue.svg";
|
|
1143
|
+
};
|
|
1144
|
+
readonly "smb-building": {
|
|
1145
|
+
readonly tone: "blue";
|
|
1146
|
+
readonly filename: "Icon_SMB-building_blue.svg";
|
|
1147
|
+
};
|
|
1148
|
+
readonly scale: {
|
|
1149
|
+
readonly tone: "blue";
|
|
1150
|
+
readonly filename: "Icon_Scale_blue-1.svg";
|
|
1151
|
+
};
|
|
1152
|
+
readonly "scale-2": {
|
|
1153
|
+
readonly tone: "blue";
|
|
1154
|
+
readonly filename: "Icon_Scale_blue.svg";
|
|
1155
|
+
};
|
|
1156
|
+
readonly scan: {
|
|
1157
|
+
readonly tone: "blue";
|
|
1158
|
+
readonly filename: "Icon_Scan_blue.svg";
|
|
1159
|
+
};
|
|
1160
|
+
readonly server: {
|
|
1161
|
+
readonly tone: "blue";
|
|
1162
|
+
readonly filename: "Icon_Server_blue.svg";
|
|
1163
|
+
};
|
|
1164
|
+
readonly "shake-love": {
|
|
1165
|
+
readonly tone: "blue";
|
|
1166
|
+
readonly filename: "Icon_Shake-Love_blue.svg";
|
|
1167
|
+
};
|
|
1168
|
+
readonly "shared-users": {
|
|
1169
|
+
readonly tone: "blue";
|
|
1170
|
+
readonly filename: "Icon_Shared-users_blue.svg";
|
|
1171
|
+
};
|
|
1172
|
+
readonly "shield-2-tone": {
|
|
1173
|
+
readonly tone: "blue";
|
|
1174
|
+
readonly filename: "Icon_Shield-2-Tone_blue.svg";
|
|
1175
|
+
};
|
|
1176
|
+
readonly "shield-check": {
|
|
1177
|
+
readonly tone: "blue";
|
|
1178
|
+
readonly filename: "Icon_Shield-Check_blue.svg";
|
|
1179
|
+
};
|
|
1180
|
+
readonly "shield-varified": {
|
|
1181
|
+
readonly tone: "blue";
|
|
1182
|
+
readonly filename: "Icon_Shield-Varified_blue.svg";
|
|
1183
|
+
};
|
|
1184
|
+
readonly slice: {
|
|
1185
|
+
readonly tone: "blue";
|
|
1186
|
+
readonly filename: "Icon_Slice_blue.svg";
|
|
1187
|
+
};
|
|
1188
|
+
readonly slider: {
|
|
1189
|
+
readonly tone: "blue";
|
|
1190
|
+
readonly filename: "Icon_Slider_blue.svg";
|
|
1191
|
+
};
|
|
1192
|
+
readonly "solid-arrow-down": {
|
|
1193
|
+
readonly tone: "blue";
|
|
1194
|
+
readonly filename: "Icon_Solid-Arrow Down_blue.svg";
|
|
1195
|
+
};
|
|
1196
|
+
readonly "solid-arrow-right": {
|
|
1197
|
+
readonly tone: "blue";
|
|
1198
|
+
readonly filename: "Icon_Solid-Arrow Right_blue.svg";
|
|
1199
|
+
};
|
|
1200
|
+
readonly "solid-check": {
|
|
1201
|
+
readonly tone: "blue";
|
|
1202
|
+
readonly filename: "Icon_Solid-Check_blue.svg";
|
|
1203
|
+
};
|
|
1204
|
+
readonly "solid-checkmark": {
|
|
1205
|
+
readonly tone: "blue";
|
|
1206
|
+
readonly filename: "Icon_Solid-Checkmark_blue.svg";
|
|
1207
|
+
};
|
|
1208
|
+
readonly "solid-clock1": {
|
|
1209
|
+
readonly tone: "blue";
|
|
1210
|
+
readonly filename: "Icon_Solid-Clock1_blue.svg";
|
|
1211
|
+
};
|
|
1212
|
+
readonly "solid-clock2": {
|
|
1213
|
+
readonly tone: "blue";
|
|
1214
|
+
readonly filename: "Icon_Solid-Clock2_blue.svg";
|
|
1215
|
+
};
|
|
1216
|
+
readonly "solid-compass": {
|
|
1217
|
+
readonly tone: "blue";
|
|
1218
|
+
readonly filename: "Icon_Solid-Compass_blue.svg";
|
|
1219
|
+
};
|
|
1220
|
+
readonly "solid-dollar-sign": {
|
|
1221
|
+
readonly tone: "blue";
|
|
1222
|
+
readonly filename: "Icon_Solid-Dollar sign_blue.svg";
|
|
1223
|
+
};
|
|
1224
|
+
readonly "solid-exclamation-mark": {
|
|
1225
|
+
readonly tone: "blue";
|
|
1226
|
+
readonly filename: "Icon_Solid-Exclamation mark_blue.svg";
|
|
1227
|
+
};
|
|
1228
|
+
readonly "solid-minus": {
|
|
1229
|
+
readonly tone: "blue";
|
|
1230
|
+
readonly filename: "Icon_Solid-Minus_blue.svg";
|
|
1231
|
+
};
|
|
1232
|
+
readonly "solid-o-maru": {
|
|
1233
|
+
readonly tone: "blue";
|
|
1234
|
+
readonly filename: "Icon_Solid-O_Maru_blue.svg";
|
|
1235
|
+
};
|
|
1236
|
+
readonly "solid-play": {
|
|
1237
|
+
readonly tone: "blue";
|
|
1238
|
+
readonly filename: "Icon_Solid-Play_blue.svg";
|
|
1239
|
+
};
|
|
1240
|
+
readonly "solid-plus": {
|
|
1241
|
+
readonly tone: "blue";
|
|
1242
|
+
readonly filename: "Icon_Solid-Plus_blue.svg";
|
|
1243
|
+
};
|
|
1244
|
+
readonly "solid-question-mark": {
|
|
1245
|
+
readonly tone: "blue";
|
|
1246
|
+
readonly filename: "Icon_Solid-Question mark_blue.svg";
|
|
1247
|
+
};
|
|
1248
|
+
readonly "solid-x-batsu": {
|
|
1249
|
+
readonly tone: "blue";
|
|
1250
|
+
readonly filename: "Icon_Solid-X_Batsu_blue.svg";
|
|
1251
|
+
};
|
|
1252
|
+
readonly "speach-bubble": {
|
|
1253
|
+
readonly tone: "blue";
|
|
1254
|
+
readonly filename: "Icon_Speach-Bubble_blue.svg";
|
|
1255
|
+
};
|
|
1256
|
+
readonly spotlight: {
|
|
1257
|
+
readonly tone: "blue";
|
|
1258
|
+
readonly filename: "Icon_Spotlight_blue.svg";
|
|
1259
|
+
};
|
|
1260
|
+
readonly "spray-bottle": {
|
|
1261
|
+
readonly tone: "blue";
|
|
1262
|
+
readonly filename: "Icon_Spray-Bottle_blue.svg";
|
|
1263
|
+
};
|
|
1264
|
+
readonly "squares-scale-top": {
|
|
1265
|
+
readonly tone: "blue";
|
|
1266
|
+
readonly filename: "Icon_Squares-Scale-Top_blue.svg";
|
|
1267
|
+
};
|
|
1268
|
+
readonly "squares-scale": {
|
|
1269
|
+
readonly tone: "blue";
|
|
1270
|
+
readonly filename: "Icon_Squares-Scale_blue.svg";
|
|
1271
|
+
};
|
|
1272
|
+
readonly "squares-together": {
|
|
1273
|
+
readonly tone: "blue";
|
|
1274
|
+
readonly filename: "Icon_Squares-Together_blue.svg";
|
|
1275
|
+
};
|
|
1276
|
+
readonly star: {
|
|
1277
|
+
readonly tone: "blue";
|
|
1278
|
+
readonly filename: "Icon_Star_blue.svg";
|
|
1279
|
+
};
|
|
1280
|
+
readonly "stop-hand": {
|
|
1281
|
+
readonly tone: "blue";
|
|
1282
|
+
readonly filename: "Icon_Stop-hand_blue.svg";
|
|
1283
|
+
};
|
|
1284
|
+
readonly "storage-cloud": {
|
|
1285
|
+
readonly tone: "blue";
|
|
1286
|
+
readonly filename: "Icon_Storage-Cloud_blue.svg";
|
|
1287
|
+
};
|
|
1288
|
+
readonly "storage-key": {
|
|
1289
|
+
readonly tone: "blue";
|
|
1290
|
+
readonly filename: "Icon_Storage-Key_blue.svg";
|
|
1291
|
+
};
|
|
1292
|
+
readonly storage: {
|
|
1293
|
+
readonly tone: "blue";
|
|
1294
|
+
readonly filename: "Icon_Storage_blue.svg";
|
|
1295
|
+
};
|
|
1296
|
+
readonly sun: {
|
|
1297
|
+
readonly tone: "blue";
|
|
1298
|
+
readonly filename: "Icon_Sun_blue.svg";
|
|
1299
|
+
};
|
|
1300
|
+
readonly target: {
|
|
1301
|
+
readonly tone: "blue";
|
|
1302
|
+
readonly filename: "Icon_Target_blue.svg";
|
|
1303
|
+
};
|
|
1304
|
+
readonly "team-add": {
|
|
1305
|
+
readonly tone: "blue";
|
|
1306
|
+
readonly filename: "Icon_Team-Add_blue.svg";
|
|
1307
|
+
};
|
|
1308
|
+
readonly team: {
|
|
1309
|
+
readonly tone: "blue";
|
|
1310
|
+
readonly filename: "Icon_Team_blue.svg";
|
|
1311
|
+
};
|
|
1312
|
+
readonly thumb: {
|
|
1313
|
+
readonly tone: "blue";
|
|
1314
|
+
readonly filename: "Icon_Thumb_blue.svg";
|
|
1315
|
+
};
|
|
1316
|
+
readonly toggle: {
|
|
1317
|
+
readonly tone: "blue";
|
|
1318
|
+
readonly filename: "Icon_Toggle_blue.svg";
|
|
1319
|
+
};
|
|
1320
|
+
readonly tools: {
|
|
1321
|
+
readonly tone: "blue";
|
|
1322
|
+
readonly filename: "Icon_Tools_blue.svg";
|
|
1323
|
+
};
|
|
1324
|
+
readonly trophy: {
|
|
1325
|
+
readonly tone: "blue";
|
|
1326
|
+
readonly filename: "Icon_Trophy_blue.svg";
|
|
1327
|
+
};
|
|
1328
|
+
readonly truck: {
|
|
1329
|
+
readonly tone: "blue";
|
|
1330
|
+
readonly filename: "Icon_Truck_blue.svg";
|
|
1331
|
+
};
|
|
1332
|
+
readonly "two-files": {
|
|
1333
|
+
readonly tone: "blue";
|
|
1334
|
+
readonly filename: "Icon_Two-files_blue.svg";
|
|
1335
|
+
};
|
|
1336
|
+
readonly "typing-now": {
|
|
1337
|
+
readonly tone: "blue";
|
|
1338
|
+
readonly filename: "Icon_Typing-now_blue.svg";
|
|
1339
|
+
};
|
|
1340
|
+
readonly typing: {
|
|
1341
|
+
readonly tone: "blue";
|
|
1342
|
+
readonly filename: "Icon_Typing_blue.svg";
|
|
1343
|
+
};
|
|
1344
|
+
readonly usb: {
|
|
1345
|
+
readonly tone: "blue";
|
|
1346
|
+
readonly filename: "Icon_USB_blue.svg";
|
|
1347
|
+
};
|
|
1348
|
+
readonly "up-down": {
|
|
1349
|
+
readonly tone: "blue";
|
|
1350
|
+
readonly filename: "Icon_Up-Down_blue.svg";
|
|
1351
|
+
};
|
|
1352
|
+
readonly "upload-cloud": {
|
|
1353
|
+
readonly tone: "blue";
|
|
1354
|
+
readonly filename: "Icon_Upload-Cloud_blue.svg";
|
|
1355
|
+
};
|
|
1356
|
+
readonly upload: {
|
|
1357
|
+
readonly tone: "blue";
|
|
1358
|
+
readonly filename: "Icon_Upload_blue.svg";
|
|
1359
|
+
};
|
|
1360
|
+
readonly "user-alert": {
|
|
1361
|
+
readonly tone: "blue";
|
|
1362
|
+
readonly filename: "Icon_User Alert_blue.svg";
|
|
1363
|
+
};
|
|
1364
|
+
readonly "user-verified": {
|
|
1365
|
+
readonly tone: "blue";
|
|
1366
|
+
readonly filename: "Icon_User verified_blue.svg";
|
|
1367
|
+
};
|
|
1368
|
+
readonly "user-verified-unknown": {
|
|
1369
|
+
readonly tone: "blue";
|
|
1370
|
+
readonly filename: "Icon_User verified_unknown_blue.svg";
|
|
1371
|
+
};
|
|
1372
|
+
readonly "user-badge": {
|
|
1373
|
+
readonly tone: "blue";
|
|
1374
|
+
readonly filename: "Icon_User-badge_blue.svg";
|
|
1375
|
+
};
|
|
1376
|
+
readonly "user-primary": {
|
|
1377
|
+
readonly tone: "blue";
|
|
1378
|
+
readonly filename: "Icon_User-primary_blue.svg";
|
|
1379
|
+
};
|
|
1380
|
+
readonly "user-timed": {
|
|
1381
|
+
readonly tone: "blue";
|
|
1382
|
+
readonly filename: "Icon_User-timed_blue.svg";
|
|
1383
|
+
};
|
|
1384
|
+
readonly "video-camera": {
|
|
1385
|
+
readonly tone: "blue";
|
|
1386
|
+
readonly filename: "Icon_Video-Camera_blue-1.svg";
|
|
1387
|
+
};
|
|
1388
|
+
readonly "video-camera-2": {
|
|
1389
|
+
readonly tone: "blue";
|
|
1390
|
+
readonly filename: "Icon_Video-Camera_blue.svg";
|
|
1391
|
+
};
|
|
1392
|
+
readonly video: {
|
|
1393
|
+
readonly tone: "blue";
|
|
1394
|
+
readonly filename: "Icon_Video_blue.svg";
|
|
1395
|
+
};
|
|
1396
|
+
readonly writing: {
|
|
1397
|
+
readonly tone: "blue";
|
|
1398
|
+
readonly filename: "Icon_Writing_blue.svg";
|
|
1399
|
+
};
|
|
1400
|
+
readonly "x-batsu": {
|
|
1401
|
+
readonly tone: "blue";
|
|
1402
|
+
readonly filename: "Icon_X_Batsu_blue.svg";
|
|
1403
|
+
};
|
|
1404
|
+
readonly zones: {
|
|
1405
|
+
readonly tone: "blue";
|
|
1406
|
+
readonly filename: "Icon_Zones_blue.svg";
|
|
1407
|
+
};
|
|
1408
|
+
readonly play: {
|
|
1409
|
+
readonly tone: "blue";
|
|
1410
|
+
readonly filename: "Icon_play_blue.svg";
|
|
1411
|
+
};
|
|
1412
|
+
readonly "2-chat-question-2": {
|
|
1413
|
+
readonly tone: "white";
|
|
1414
|
+
readonly filename: "Icon_2-Chat-Question_white.svg";
|
|
1415
|
+
};
|
|
1416
|
+
readonly "2-chat-2": {
|
|
1417
|
+
readonly tone: "white";
|
|
1418
|
+
readonly filename: "Icon_2-Chat_white.svg";
|
|
1419
|
+
};
|
|
1420
|
+
readonly "2-overlay-squares-2": {
|
|
1421
|
+
readonly tone: "white";
|
|
1422
|
+
readonly filename: "Icon_2-Overlay-Squares_white.svg";
|
|
1423
|
+
};
|
|
1424
|
+
readonly "3-overlay-squares-2": {
|
|
1425
|
+
readonly tone: "white";
|
|
1426
|
+
readonly filename: "Icon_3-Overlay-Squares_white.svg";
|
|
1427
|
+
};
|
|
1428
|
+
readonly "3-square-circle-2": {
|
|
1429
|
+
readonly tone: "white";
|
|
1430
|
+
readonly filename: "Icon_3-Square-Circle_white.svg";
|
|
1431
|
+
};
|
|
1432
|
+
readonly "3-tier-2": {
|
|
1433
|
+
readonly tone: "white";
|
|
1434
|
+
readonly filename: "Icon_3-Tier_white.svg";
|
|
1435
|
+
};
|
|
1436
|
+
readonly "4-squares-1": {
|
|
1437
|
+
readonly tone: "white";
|
|
1438
|
+
readonly filename: "Icon_4-Squares-1_white.svg";
|
|
1439
|
+
};
|
|
1440
|
+
readonly "4-squares-3": {
|
|
1441
|
+
readonly tone: "white";
|
|
1442
|
+
readonly filename: "Icon_4-Squares_white.svg";
|
|
1443
|
+
};
|
|
1444
|
+
readonly "6-dots-2": {
|
|
1445
|
+
readonly tone: "white";
|
|
1446
|
+
readonly filename: "Icon_6-Dots_white.svg";
|
|
1447
|
+
};
|
|
1448
|
+
readonly "add-small-2": {
|
|
1449
|
+
readonly tone: "white";
|
|
1450
|
+
readonly filename: "Icon_Add-Small_white.svg";
|
|
1451
|
+
};
|
|
1452
|
+
readonly "add-squares-2": {
|
|
1453
|
+
readonly tone: "white";
|
|
1454
|
+
readonly filename: "Icon_Add-Squares_white.svg";
|
|
1455
|
+
};
|
|
1456
|
+
readonly "add-to-cart-2": {
|
|
1457
|
+
readonly tone: "white";
|
|
1458
|
+
readonly filename: "Icon_Add-to-cart_white.svg";
|
|
1459
|
+
};
|
|
1460
|
+
readonly "aid-2": {
|
|
1461
|
+
readonly tone: "white";
|
|
1462
|
+
readonly filename: "Icon_Aid_white.svg";
|
|
1463
|
+
};
|
|
1464
|
+
readonly "app-cloud-2": {
|
|
1465
|
+
readonly tone: "white";
|
|
1466
|
+
readonly filename: "Icon_App-Cloud_white.svg";
|
|
1467
|
+
};
|
|
1468
|
+
readonly "arrow-down-2": {
|
|
1469
|
+
readonly tone: "white";
|
|
1470
|
+
readonly filename: "Icon_Arrow Down_white.svg";
|
|
1471
|
+
};
|
|
1472
|
+
readonly "arrow-right-2": {
|
|
1473
|
+
readonly tone: "white";
|
|
1474
|
+
readonly filename: "Icon_Arrow Right_white.svg";
|
|
1475
|
+
};
|
|
1476
|
+
readonly "attachment-2": {
|
|
1477
|
+
readonly tone: "white";
|
|
1478
|
+
readonly filename: "Icon_Attachment_white.svg";
|
|
1479
|
+
};
|
|
1480
|
+
readonly "audio-2": {
|
|
1481
|
+
readonly tone: "white";
|
|
1482
|
+
readonly filename: "Icon_Audio_white.svg";
|
|
1483
|
+
};
|
|
1484
|
+
readonly "award-2": {
|
|
1485
|
+
readonly tone: "white";
|
|
1486
|
+
readonly filename: "Icon_Award_white.svg";
|
|
1487
|
+
};
|
|
1488
|
+
readonly "badge-2": {
|
|
1489
|
+
readonly tone: "white";
|
|
1490
|
+
readonly filename: "Icon_Badge_white.svg";
|
|
1491
|
+
};
|
|
1492
|
+
readonly "bag-2": {
|
|
1493
|
+
readonly tone: "white";
|
|
1494
|
+
readonly filename: "Icon_Bag_white.svg";
|
|
1495
|
+
};
|
|
1496
|
+
readonly "bank-2": {
|
|
1497
|
+
readonly tone: "white";
|
|
1498
|
+
readonly filename: "Icon_Bank_white.svg";
|
|
1499
|
+
};
|
|
1500
|
+
readonly "battery-2": {
|
|
1501
|
+
readonly tone: "white";
|
|
1502
|
+
readonly filename: "Icon_Battery_white.svg";
|
|
1503
|
+
};
|
|
1504
|
+
readonly "bell-2": {
|
|
1505
|
+
readonly tone: "white";
|
|
1506
|
+
readonly filename: "Icon_Bell_white.svg";
|
|
1507
|
+
};
|
|
1508
|
+
readonly "binders-2": {
|
|
1509
|
+
readonly tone: "white";
|
|
1510
|
+
readonly filename: "Icon_Binders_white.svg";
|
|
1511
|
+
};
|
|
1512
|
+
readonly "bolt-bubble-2": {
|
|
1513
|
+
readonly tone: "white";
|
|
1514
|
+
readonly filename: "Icon_Bolt-Bubble_white.svg";
|
|
1515
|
+
};
|
|
1516
|
+
readonly "bolt-2": {
|
|
1517
|
+
readonly tone: "white";
|
|
1518
|
+
readonly filename: "Icon_Bolt_white.svg";
|
|
1519
|
+
};
|
|
1520
|
+
readonly "brain-2": {
|
|
1521
|
+
readonly tone: "white";
|
|
1522
|
+
readonly filename: "Icon_Brain_white.svg";
|
|
1523
|
+
};
|
|
1524
|
+
readonly "briefcase-2": {
|
|
1525
|
+
readonly tone: "white";
|
|
1526
|
+
readonly filename: "Icon_Briefcase_white.svg";
|
|
1527
|
+
};
|
|
1528
|
+
readonly "broadcast-2": {
|
|
1529
|
+
readonly tone: "white";
|
|
1530
|
+
readonly filename: "Icon_Broadcast_white.svg";
|
|
1531
|
+
};
|
|
1532
|
+
readonly "browser-2": {
|
|
1533
|
+
readonly tone: "white";
|
|
1534
|
+
readonly filename: "Icon_Browser_white.svg";
|
|
1535
|
+
};
|
|
1536
|
+
readonly "brush-2": {
|
|
1537
|
+
readonly tone: "white";
|
|
1538
|
+
readonly filename: "Icon_Brush_white.svg";
|
|
1539
|
+
};
|
|
1540
|
+
readonly "calendar-1": {
|
|
1541
|
+
readonly tone: "white";
|
|
1542
|
+
readonly filename: "Icon_Calendar-1_white.svg";
|
|
1543
|
+
};
|
|
1544
|
+
readonly "calendar-added-2": {
|
|
1545
|
+
readonly tone: "white";
|
|
1546
|
+
readonly filename: "Icon_Calendar-Added_white.svg";
|
|
1547
|
+
};
|
|
1548
|
+
readonly "calendar-3": {
|
|
1549
|
+
readonly tone: "white";
|
|
1550
|
+
readonly filename: "Icon_Calendar_white.svg";
|
|
1551
|
+
};
|
|
1552
|
+
readonly "cart-1": {
|
|
1553
|
+
readonly tone: "white";
|
|
1554
|
+
readonly filename: "Icon_Cart-1_white.svg";
|
|
1555
|
+
};
|
|
1556
|
+
readonly "cart-3": {
|
|
1557
|
+
readonly tone: "white";
|
|
1558
|
+
readonly filename: "Icon_Cart_white.svg";
|
|
1559
|
+
};
|
|
1560
|
+
readonly "cash-2": {
|
|
1561
|
+
readonly tone: "white";
|
|
1562
|
+
readonly filename: "Icon_Cash_white.svg";
|
|
1563
|
+
};
|
|
1564
|
+
readonly "caution-file-2": {
|
|
1565
|
+
readonly tone: "white";
|
|
1566
|
+
readonly filename: "Icon_Caution-File_white.svg";
|
|
1567
|
+
};
|
|
1568
|
+
readonly "caution-phone-2": {
|
|
1569
|
+
readonly tone: "white";
|
|
1570
|
+
readonly filename: "Icon_Caution-Phone_white.svg";
|
|
1571
|
+
};
|
|
1572
|
+
readonly "caution-triangle-2": {
|
|
1573
|
+
readonly tone: "white";
|
|
1574
|
+
readonly filename: "Icon_Caution-Triangle_white.svg";
|
|
1575
|
+
};
|
|
1576
|
+
readonly "center-2": {
|
|
1577
|
+
readonly tone: "white";
|
|
1578
|
+
readonly filename: "Icon_Center_white.svg";
|
|
1579
|
+
};
|
|
1580
|
+
readonly "chat-bubble-2": {
|
|
1581
|
+
readonly tone: "white";
|
|
1582
|
+
readonly filename: "Icon_Chat-Bubble_white.svg";
|
|
1583
|
+
};
|
|
1584
|
+
readonly "chat-question-2": {
|
|
1585
|
+
readonly tone: "white";
|
|
1586
|
+
readonly filename: "Icon_Chat-Question_white.svg";
|
|
1587
|
+
};
|
|
1588
|
+
readonly "check-2": {
|
|
1589
|
+
readonly tone: "white";
|
|
1590
|
+
readonly filename: "Icon_Check_white.svg";
|
|
1591
|
+
};
|
|
1592
|
+
readonly "checkmark-2": {
|
|
1593
|
+
readonly tone: "white";
|
|
1594
|
+
readonly filename: "Icon_Checkmark_white.svg";
|
|
1595
|
+
};
|
|
1596
|
+
readonly "clipboard-2": {
|
|
1597
|
+
readonly tone: "white";
|
|
1598
|
+
readonly filename: "Icon_Clipboard_white.svg";
|
|
1599
|
+
};
|
|
1600
|
+
readonly "clock1-2": {
|
|
1601
|
+
readonly tone: "white";
|
|
1602
|
+
readonly filename: "Icon_Clock1_white.svg";
|
|
1603
|
+
};
|
|
1604
|
+
readonly "clock2-2": {
|
|
1605
|
+
readonly tone: "white";
|
|
1606
|
+
readonly filename: "Icon_Clock2_white.svg";
|
|
1607
|
+
};
|
|
1608
|
+
readonly "clock3-2": {
|
|
1609
|
+
readonly tone: "white";
|
|
1610
|
+
readonly filename: "Icon_Clock3_white.svg";
|
|
1611
|
+
};
|
|
1612
|
+
readonly "cloud-server-2": {
|
|
1613
|
+
readonly tone: "white";
|
|
1614
|
+
readonly filename: "Icon_Cloud-Server_white.svg";
|
|
1615
|
+
};
|
|
1616
|
+
readonly "cloud-2": {
|
|
1617
|
+
readonly tone: "white";
|
|
1618
|
+
readonly filename: "Icon_Cloud_white.svg";
|
|
1619
|
+
};
|
|
1620
|
+
readonly "code-browser-2": {
|
|
1621
|
+
readonly tone: "white";
|
|
1622
|
+
readonly filename: "Icon_Code-Browser_white.svg";
|
|
1623
|
+
};
|
|
1624
|
+
readonly "code-2": {
|
|
1625
|
+
readonly tone: "white";
|
|
1626
|
+
readonly filename: "Icon_Code_white.svg";
|
|
1627
|
+
};
|
|
1628
|
+
readonly "compass-2": {
|
|
1629
|
+
readonly tone: "white";
|
|
1630
|
+
readonly filename: "Icon_Compass_white.svg";
|
|
1631
|
+
};
|
|
1632
|
+
readonly "computer-badge-2": {
|
|
1633
|
+
readonly tone: "white";
|
|
1634
|
+
readonly filename: "Icon_Computer-Badge_white.svg";
|
|
1635
|
+
};
|
|
1636
|
+
readonly "computer-download-2": {
|
|
1637
|
+
readonly tone: "white";
|
|
1638
|
+
readonly filename: "Icon_Computer-Download_white.svg";
|
|
1639
|
+
};
|
|
1640
|
+
readonly "computer-upoad-2": {
|
|
1641
|
+
readonly tone: "white";
|
|
1642
|
+
readonly filename: "Icon_Computer-Upoad_white.svg";
|
|
1643
|
+
};
|
|
1644
|
+
readonly "computer-2": {
|
|
1645
|
+
readonly tone: "white";
|
|
1646
|
+
readonly filename: "Icon_Computer_white.svg";
|
|
1647
|
+
};
|
|
1648
|
+
readonly "connected-dots-2": {
|
|
1649
|
+
readonly tone: "white";
|
|
1650
|
+
readonly filename: "Icon_Connected-Dots_white.svg";
|
|
1651
|
+
};
|
|
1652
|
+
readonly "connected-together-2": {
|
|
1653
|
+
readonly tone: "white";
|
|
1654
|
+
readonly filename: "Icon_Connected-Together_white.svg";
|
|
1655
|
+
};
|
|
1656
|
+
readonly "container-lines-2-2": {
|
|
1657
|
+
readonly tone: "white";
|
|
1658
|
+
readonly filename: "Icon_Container-Lines-2_white.svg";
|
|
1659
|
+
};
|
|
1660
|
+
readonly "container-lines-3": {
|
|
1661
|
+
readonly tone: "white";
|
|
1662
|
+
readonly filename: "Icon_Container-Lines_white.svg";
|
|
1663
|
+
};
|
|
1664
|
+
readonly "cube-dot-line-2": {
|
|
1665
|
+
readonly tone: "white";
|
|
1666
|
+
readonly filename: "Icon_Cube-Dot-Line_white.svg";
|
|
1667
|
+
};
|
|
1668
|
+
readonly "cube-line-2": {
|
|
1669
|
+
readonly tone: "white";
|
|
1670
|
+
readonly filename: "Icon_Cube-Line_white.svg";
|
|
1671
|
+
};
|
|
1672
|
+
readonly "cycle-2": {
|
|
1673
|
+
readonly tone: "white";
|
|
1674
|
+
readonly filename: "Icon_Cycle_white.svg";
|
|
1675
|
+
};
|
|
1676
|
+
readonly "dna-2": {
|
|
1677
|
+
readonly tone: "white";
|
|
1678
|
+
readonly filename: "Icon_DNA_white.svg";
|
|
1679
|
+
};
|
|
1680
|
+
readonly "desktop-laptop-2": {
|
|
1681
|
+
readonly tone: "white";
|
|
1682
|
+
readonly filename: "Icon_Desktop-Laptop_white.svg";
|
|
1683
|
+
};
|
|
1684
|
+
readonly "devices-2": {
|
|
1685
|
+
readonly tone: "white";
|
|
1686
|
+
readonly filename: "Icon_Devices_white.svg";
|
|
1687
|
+
};
|
|
1688
|
+
readonly "distribute-1": {
|
|
1689
|
+
readonly tone: "white";
|
|
1690
|
+
readonly filename: "Icon_Distribute-1_white.svg";
|
|
1691
|
+
};
|
|
1692
|
+
readonly "distribute-3": {
|
|
1693
|
+
readonly tone: "white";
|
|
1694
|
+
readonly filename: "Icon_Distribute_white.svg";
|
|
1695
|
+
};
|
|
1696
|
+
readonly "dollar-sign-2": {
|
|
1697
|
+
readonly tone: "white";
|
|
1698
|
+
readonly filename: "Icon_Dollar sign_white.svg";
|
|
1699
|
+
};
|
|
1700
|
+
readonly "donut-coffee-2": {
|
|
1701
|
+
readonly tone: "white";
|
|
1702
|
+
readonly filename: "Icon_Donut-Coffee_white.svg";
|
|
1703
|
+
};
|
|
1704
|
+
readonly "download-2": {
|
|
1705
|
+
readonly tone: "white";
|
|
1706
|
+
readonly filename: "Icon_Download_white.svg";
|
|
1707
|
+
};
|
|
1708
|
+
readonly "drop-2": {
|
|
1709
|
+
readonly tone: "white";
|
|
1710
|
+
readonly filename: "Icon_Drop_white.svg";
|
|
1711
|
+
};
|
|
1712
|
+
readonly "enterprise-building-2": {
|
|
1713
|
+
readonly tone: "white";
|
|
1714
|
+
readonly filename: "Icon_Enterprise-building_white.svg";
|
|
1715
|
+
};
|
|
1716
|
+
readonly "envelope-bug-2": {
|
|
1717
|
+
readonly tone: "white";
|
|
1718
|
+
readonly filename: "Icon_Envelope-Bug_white.svg";
|
|
1719
|
+
};
|
|
1720
|
+
readonly "envelope-doc-2": {
|
|
1721
|
+
readonly tone: "white";
|
|
1722
|
+
readonly filename: "Icon_Envelope-Doc_white.svg";
|
|
1723
|
+
};
|
|
1724
|
+
readonly "envelope-shred-2": {
|
|
1725
|
+
readonly tone: "white";
|
|
1726
|
+
readonly filename: "Icon_Envelope-Shred_white.svg";
|
|
1727
|
+
};
|
|
1728
|
+
readonly "envelope-2": {
|
|
1729
|
+
readonly tone: "white";
|
|
1730
|
+
readonly filename: "Icon_Envelope_white.svg";
|
|
1731
|
+
};
|
|
1732
|
+
readonly "exclamation-mark-2": {
|
|
1733
|
+
readonly tone: "white";
|
|
1734
|
+
readonly filename: "Icon_Exclamation mark_white.svg";
|
|
1735
|
+
};
|
|
1736
|
+
readonly "eye-2": {
|
|
1737
|
+
readonly tone: "white";
|
|
1738
|
+
readonly filename: "Icon_Eye_white.svg";
|
|
1739
|
+
};
|
|
1740
|
+
readonly "ftp-folder-2": {
|
|
1741
|
+
readonly tone: "white";
|
|
1742
|
+
readonly filename: "Icon_FTP-Folder_white.svg";
|
|
1743
|
+
};
|
|
1744
|
+
readonly "file-approved-2": {
|
|
1745
|
+
readonly tone: "white";
|
|
1746
|
+
readonly filename: "Icon_File-Approved_white.svg";
|
|
1747
|
+
};
|
|
1748
|
+
readonly "file-blank-2": {
|
|
1749
|
+
readonly tone: "white";
|
|
1750
|
+
readonly filename: "Icon_File-Blank_white.svg";
|
|
1751
|
+
};
|
|
1752
|
+
readonly "file-check-2": {
|
|
1753
|
+
readonly tone: "white";
|
|
1754
|
+
readonly filename: "Icon_File-Check_white.svg";
|
|
1755
|
+
};
|
|
1756
|
+
readonly "file-cloud-2": {
|
|
1757
|
+
readonly tone: "white";
|
|
1758
|
+
readonly filename: "Icon_File-Cloud_white.svg";
|
|
1759
|
+
};
|
|
1760
|
+
readonly "file-copy-2": {
|
|
1761
|
+
readonly tone: "white";
|
|
1762
|
+
readonly filename: "Icon_File-Copy_white.svg";
|
|
1763
|
+
};
|
|
1764
|
+
readonly "file-document-2": {
|
|
1765
|
+
readonly tone: "white";
|
|
1766
|
+
readonly filename: "Icon_File-Document_white.svg";
|
|
1767
|
+
};
|
|
1768
|
+
readonly "file-image-2": {
|
|
1769
|
+
readonly tone: "white";
|
|
1770
|
+
readonly filename: "Icon_File-Image_white.svg";
|
|
1771
|
+
};
|
|
1772
|
+
readonly "file-infographic-2": {
|
|
1773
|
+
readonly tone: "white";
|
|
1774
|
+
readonly filename: "Icon_File-Infographic_white.svg";
|
|
1775
|
+
};
|
|
1776
|
+
readonly "file-insights-2": {
|
|
1777
|
+
readonly tone: "white";
|
|
1778
|
+
readonly filename: "Icon_File-Insights_white.svg";
|
|
1779
|
+
};
|
|
1780
|
+
readonly "file-presentations-2": {
|
|
1781
|
+
readonly tone: "white";
|
|
1782
|
+
readonly filename: "Icon_File-Presentations_white.svg";
|
|
1783
|
+
};
|
|
1784
|
+
readonly "file-speed-2": {
|
|
1785
|
+
readonly tone: "white";
|
|
1786
|
+
readonly filename: "Icon_File-Speed_white.svg";
|
|
1787
|
+
};
|
|
1788
|
+
readonly "file-spreadsheet-2": {
|
|
1789
|
+
readonly tone: "white";
|
|
1790
|
+
readonly filename: "Icon_File-Spreadsheet_white.svg";
|
|
1791
|
+
};
|
|
1792
|
+
readonly "file-text-2": {
|
|
1793
|
+
readonly tone: "white";
|
|
1794
|
+
readonly filename: "Icon_File-Text_white.svg";
|
|
1795
|
+
};
|
|
1796
|
+
readonly "file-video-2": {
|
|
1797
|
+
readonly tone: "white";
|
|
1798
|
+
readonly filename: "Icon_File-Video_white.svg";
|
|
1799
|
+
};
|
|
1800
|
+
readonly "file-bug-2": {
|
|
1801
|
+
readonly tone: "white";
|
|
1802
|
+
readonly filename: "Icon_File-bug_white.svg";
|
|
1803
|
+
};
|
|
1804
|
+
readonly "file-move-2": {
|
|
1805
|
+
readonly tone: "white";
|
|
1806
|
+
readonly filename: "Icon_File-move_white.svg";
|
|
1807
|
+
};
|
|
1808
|
+
readonly "file-music-2": {
|
|
1809
|
+
readonly tone: "white";
|
|
1810
|
+
readonly filename: "Icon_File-music_white.svg";
|
|
1811
|
+
};
|
|
1812
|
+
readonly "file-plus-2": {
|
|
1813
|
+
readonly tone: "white";
|
|
1814
|
+
readonly filename: "Icon_File-plus_white.svg";
|
|
1815
|
+
};
|
|
1816
|
+
readonly "finger-print-2": {
|
|
1817
|
+
readonly tone: "white";
|
|
1818
|
+
readonly filename: "Icon_Finger-Print_white.svg";
|
|
1819
|
+
};
|
|
1820
|
+
readonly "flight-2": {
|
|
1821
|
+
readonly tone: "white";
|
|
1822
|
+
readonly filename: "Icon_Flight_white.svg";
|
|
1823
|
+
};
|
|
1824
|
+
readonly "folder-up-2": {
|
|
1825
|
+
readonly tone: "white";
|
|
1826
|
+
readonly filename: "Icon_Folder-Up_white.svg";
|
|
1827
|
+
};
|
|
1828
|
+
readonly "folder-upload-2": {
|
|
1829
|
+
readonly tone: "white";
|
|
1830
|
+
readonly filename: "Icon_Folder-Upload_white.svg";
|
|
1831
|
+
};
|
|
1832
|
+
readonly "folder-2": {
|
|
1833
|
+
readonly tone: "white";
|
|
1834
|
+
readonly filename: "Icon_Folder_white.svg";
|
|
1835
|
+
};
|
|
1836
|
+
readonly "funnel-2": {
|
|
1837
|
+
readonly tone: "white";
|
|
1838
|
+
readonly filename: "Icon_Funnel_white.svg";
|
|
1839
|
+
};
|
|
1840
|
+
readonly "gear-2": {
|
|
1841
|
+
readonly tone: "white";
|
|
1842
|
+
readonly filename: "Icon_Gear_white.svg";
|
|
1843
|
+
};
|
|
1844
|
+
readonly "gears-2": {
|
|
1845
|
+
readonly tone: "white";
|
|
1846
|
+
readonly filename: "Icon_Gears_white.svg";
|
|
1847
|
+
};
|
|
1848
|
+
readonly "graduation-cap-2": {
|
|
1849
|
+
readonly tone: "white";
|
|
1850
|
+
readonly filename: "Icon_Graduation-Cap_white.svg";
|
|
1851
|
+
};
|
|
1852
|
+
readonly "graph-increase-2": {
|
|
1853
|
+
readonly tone: "white";
|
|
1854
|
+
readonly filename: "Icon_Graph-increase_white.svg";
|
|
1855
|
+
};
|
|
1856
|
+
readonly "graph-measure-2": {
|
|
1857
|
+
readonly tone: "white";
|
|
1858
|
+
readonly filename: "Icon_Graph-measure_white.svg";
|
|
1859
|
+
};
|
|
1860
|
+
readonly "group-call-2": {
|
|
1861
|
+
readonly tone: "white";
|
|
1862
|
+
readonly filename: "Icon_Group-call_white.svg";
|
|
1863
|
+
};
|
|
1864
|
+
readonly "heart-2": {
|
|
1865
|
+
readonly tone: "white";
|
|
1866
|
+
readonly filename: "Icon_Heart_white.svg";
|
|
1867
|
+
};
|
|
1868
|
+
readonly "home-2": {
|
|
1869
|
+
readonly tone: "white";
|
|
1870
|
+
readonly filename: "Icon_Home_white.svg";
|
|
1871
|
+
};
|
|
1872
|
+
readonly "image-2": {
|
|
1873
|
+
readonly tone: "white";
|
|
1874
|
+
readonly filename: "Icon_Image_white.svg";
|
|
1875
|
+
};
|
|
1876
|
+
readonly "key-safe-2": {
|
|
1877
|
+
readonly tone: "white";
|
|
1878
|
+
readonly filename: "Icon_Key-safe_white.svg";
|
|
1879
|
+
};
|
|
1880
|
+
readonly "leaves-growing-2": {
|
|
1881
|
+
readonly tone: "white";
|
|
1882
|
+
readonly filename: "Icon_Leaves-growing_white.svg";
|
|
1883
|
+
};
|
|
1884
|
+
readonly "light-2": {
|
|
1885
|
+
readonly tone: "white";
|
|
1886
|
+
readonly filename: "Icon_Light_white.svg";
|
|
1887
|
+
};
|
|
1888
|
+
readonly "line-graph-v2-2": {
|
|
1889
|
+
readonly tone: "white";
|
|
1890
|
+
readonly filename: "Icon_Line graph-v2_white.svg";
|
|
1891
|
+
};
|
|
1892
|
+
readonly "line-graph-2": {
|
|
1893
|
+
readonly tone: "white";
|
|
1894
|
+
readonly filename: "Icon_Line-graph_white.svg";
|
|
1895
|
+
};
|
|
1896
|
+
readonly "link-2": {
|
|
1897
|
+
readonly tone: "white";
|
|
1898
|
+
readonly filename: "Icon_Link_white.svg";
|
|
1899
|
+
};
|
|
1900
|
+
readonly "lock-2": {
|
|
1901
|
+
readonly tone: "white";
|
|
1902
|
+
readonly filename: "Icon_Lock_white.svg";
|
|
1903
|
+
};
|
|
1904
|
+
readonly "magnifying-glass-2": {
|
|
1905
|
+
readonly tone: "white";
|
|
1906
|
+
readonly filename: "Icon_Magnifying-Glass_white.svg";
|
|
1907
|
+
};
|
|
1908
|
+
readonly "martini-2": {
|
|
1909
|
+
readonly tone: "white";
|
|
1910
|
+
readonly filename: "Icon_Martini_white.svg";
|
|
1911
|
+
};
|
|
1912
|
+
readonly "maze-2": {
|
|
1913
|
+
readonly tone: "white";
|
|
1914
|
+
readonly filename: "Icon_Maze_white.svg";
|
|
1915
|
+
};
|
|
1916
|
+
readonly "med-tool-2": {
|
|
1917
|
+
readonly tone: "white";
|
|
1918
|
+
readonly filename: "Icon_Med-tool_white.svg";
|
|
1919
|
+
};
|
|
1920
|
+
readonly "megaphone-2": {
|
|
1921
|
+
readonly tone: "white";
|
|
1922
|
+
readonly filename: "Icon_Megaphone_white.svg";
|
|
1923
|
+
};
|
|
1924
|
+
readonly "metadata-2": {
|
|
1925
|
+
readonly tone: "white";
|
|
1926
|
+
readonly filename: "Icon_Metadata_white.svg";
|
|
1927
|
+
};
|
|
1928
|
+
readonly "microphone-2": {
|
|
1929
|
+
readonly tone: "white";
|
|
1930
|
+
readonly filename: "Icon_Microphone_white.svg";
|
|
1931
|
+
};
|
|
1932
|
+
readonly "minus-2": {
|
|
1933
|
+
readonly tone: "white";
|
|
1934
|
+
readonly filename: "Icon_Minus_white.svg";
|
|
1935
|
+
};
|
|
1936
|
+
readonly "mixed-media-download-2": {
|
|
1937
|
+
readonly tone: "white";
|
|
1938
|
+
readonly filename: "Icon_Mixed-Media-Download_white.svg";
|
|
1939
|
+
};
|
|
1940
|
+
readonly "music-note-2": {
|
|
1941
|
+
readonly tone: "white";
|
|
1942
|
+
readonly filename: "Icon_Music-Note_white.svg";
|
|
1943
|
+
};
|
|
1944
|
+
readonly "note-pad-2": {
|
|
1945
|
+
readonly tone: "white";
|
|
1946
|
+
readonly filename: "Icon_Note-Pad_white.svg";
|
|
1947
|
+
};
|
|
1948
|
+
readonly "number0-2": {
|
|
1949
|
+
readonly tone: "white";
|
|
1950
|
+
readonly filename: "Icon_Number0_white.svg";
|
|
1951
|
+
};
|
|
1952
|
+
readonly "number1-2": {
|
|
1953
|
+
readonly tone: "white";
|
|
1954
|
+
readonly filename: "Icon_Number1_white.svg";
|
|
1955
|
+
};
|
|
1956
|
+
readonly "number2-2": {
|
|
1957
|
+
readonly tone: "white";
|
|
1958
|
+
readonly filename: "Icon_Number2_white.svg";
|
|
1959
|
+
};
|
|
1960
|
+
readonly "number3-2": {
|
|
1961
|
+
readonly tone: "white";
|
|
1962
|
+
readonly filename: "Icon_Number3_white.svg";
|
|
1963
|
+
};
|
|
1964
|
+
readonly "number4-2": {
|
|
1965
|
+
readonly tone: "white";
|
|
1966
|
+
readonly filename: "Icon_Number4_white.svg";
|
|
1967
|
+
};
|
|
1968
|
+
readonly "number5-2": {
|
|
1969
|
+
readonly tone: "white";
|
|
1970
|
+
readonly filename: "Icon_Number5_white.svg";
|
|
1971
|
+
};
|
|
1972
|
+
readonly "number6-2": {
|
|
1973
|
+
readonly tone: "white";
|
|
1974
|
+
readonly filename: "Icon_Number6_white.svg";
|
|
1975
|
+
};
|
|
1976
|
+
readonly "number7-2": {
|
|
1977
|
+
readonly tone: "white";
|
|
1978
|
+
readonly filename: "Icon_Number7_white.svg";
|
|
1979
|
+
};
|
|
1980
|
+
readonly "number8-2": {
|
|
1981
|
+
readonly tone: "white";
|
|
1982
|
+
readonly filename: "Icon_Number8_white.svg";
|
|
1983
|
+
};
|
|
1984
|
+
readonly "number9-2": {
|
|
1985
|
+
readonly tone: "white";
|
|
1986
|
+
readonly filename: "Icon_Number9_white.svg";
|
|
1987
|
+
};
|
|
1988
|
+
readonly "o-maru-2": {
|
|
1989
|
+
readonly tone: "white";
|
|
1990
|
+
readonly filename: "Icon_O_Maru_white.svg";
|
|
1991
|
+
};
|
|
1992
|
+
readonly "overlay-2": {
|
|
1993
|
+
readonly tone: "white";
|
|
1994
|
+
readonly filename: "Icon_Overlay_white.svg";
|
|
1995
|
+
};
|
|
1996
|
+
readonly "paper-2": {
|
|
1997
|
+
readonly tone: "white";
|
|
1998
|
+
readonly filename: "Icon_Paper_white.svg";
|
|
1999
|
+
};
|
|
2000
|
+
readonly "pen-2": {
|
|
2001
|
+
readonly tone: "white";
|
|
2002
|
+
readonly filename: "Icon_Pen_white.svg";
|
|
2003
|
+
};
|
|
2004
|
+
readonly "person-2": {
|
|
2005
|
+
readonly tone: "white";
|
|
2006
|
+
readonly filename: "Icon_Person_white.svg";
|
|
2007
|
+
};
|
|
2008
|
+
readonly "phone-1": {
|
|
2009
|
+
readonly tone: "white";
|
|
2010
|
+
readonly filename: "Icon_Phone-1_white.svg";
|
|
2011
|
+
};
|
|
2012
|
+
readonly "phone-browser-2": {
|
|
2013
|
+
readonly tone: "white";
|
|
2014
|
+
readonly filename: "Icon_Phone-Browser_white.svg";
|
|
2015
|
+
};
|
|
2016
|
+
readonly "phone-3": {
|
|
2017
|
+
readonly tone: "white";
|
|
2018
|
+
readonly filename: "Icon_Phone_white.svg";
|
|
2019
|
+
};
|
|
2020
|
+
readonly "pie-chart-3-2": {
|
|
2021
|
+
readonly tone: "white";
|
|
2022
|
+
readonly filename: "Icon_Pie-chart-3_white.svg";
|
|
2023
|
+
};
|
|
2024
|
+
readonly "pie-chart-2": {
|
|
2025
|
+
readonly tone: "white";
|
|
2026
|
+
readonly filename: "Icon_Pie-chart_white.svg";
|
|
2027
|
+
};
|
|
2028
|
+
readonly "pin-1": {
|
|
2029
|
+
readonly tone: "white";
|
|
2030
|
+
readonly filename: "Icon_Pin-1_white.svg";
|
|
2031
|
+
};
|
|
2032
|
+
readonly "pin-3": {
|
|
2033
|
+
readonly tone: "white";
|
|
2034
|
+
readonly filename: "Icon_Pin_white.svg";
|
|
2035
|
+
};
|
|
2036
|
+
readonly "plane-2": {
|
|
2037
|
+
readonly tone: "white";
|
|
2038
|
+
readonly filename: "Icon_Plane_white.svg";
|
|
2039
|
+
};
|
|
2040
|
+
readonly "plus-2": {
|
|
2041
|
+
readonly tone: "white";
|
|
2042
|
+
readonly filename: "Icon_Plus_white.svg";
|
|
2043
|
+
};
|
|
2044
|
+
readonly "podium-2": {
|
|
2045
|
+
readonly tone: "white";
|
|
2046
|
+
readonly filename: "Icon_Podium_white.svg";
|
|
2047
|
+
};
|
|
2048
|
+
readonly "point-center-2": {
|
|
2049
|
+
readonly tone: "white";
|
|
2050
|
+
readonly filename: "Icon_Point-center_white.svg";
|
|
2051
|
+
};
|
|
2052
|
+
readonly "point-2": {
|
|
2053
|
+
readonly tone: "white";
|
|
2054
|
+
readonly filename: "Icon_Point_white.svg";
|
|
2055
|
+
};
|
|
2056
|
+
readonly "question-mark-2": {
|
|
2057
|
+
readonly tone: "white";
|
|
2058
|
+
readonly filename: "Icon_Question mark_white.svg";
|
|
2059
|
+
};
|
|
2060
|
+
readonly "raft-2": {
|
|
2061
|
+
readonly tone: "white";
|
|
2062
|
+
readonly filename: "Icon_Raft_white.svg";
|
|
2063
|
+
};
|
|
2064
|
+
readonly "retail-tag-2": {
|
|
2065
|
+
readonly tone: "white";
|
|
2066
|
+
readonly filename: "Icon_Retail-tag_white.svg";
|
|
2067
|
+
};
|
|
2068
|
+
readonly "right-to-forget-2": {
|
|
2069
|
+
readonly tone: "white";
|
|
2070
|
+
readonly filename: "Icon_Right-to-forget_white.svg";
|
|
2071
|
+
};
|
|
2072
|
+
readonly "ring-2": {
|
|
2073
|
+
readonly tone: "white";
|
|
2074
|
+
readonly filename: "Icon_Ring_white.svg";
|
|
2075
|
+
};
|
|
2076
|
+
readonly "rocket-2": {
|
|
2077
|
+
readonly tone: "white";
|
|
2078
|
+
readonly filename: "Icon_Rocket_white.svg";
|
|
2079
|
+
};
|
|
2080
|
+
readonly "smb-building-2": {
|
|
2081
|
+
readonly tone: "white";
|
|
2082
|
+
readonly filename: "Icon_SMB-building_white.svg";
|
|
2083
|
+
};
|
|
2084
|
+
readonly "scale-1": {
|
|
2085
|
+
readonly tone: "white";
|
|
2086
|
+
readonly filename: "Icon_Scale-1_white.svg";
|
|
2087
|
+
};
|
|
2088
|
+
readonly "scale-3": {
|
|
2089
|
+
readonly tone: "white";
|
|
2090
|
+
readonly filename: "Icon_Scale_white.svg";
|
|
2091
|
+
};
|
|
2092
|
+
readonly "scan-2": {
|
|
2093
|
+
readonly tone: "white";
|
|
2094
|
+
readonly filename: "Icon_Scan_white.svg";
|
|
2095
|
+
};
|
|
2096
|
+
readonly "server-2": {
|
|
2097
|
+
readonly tone: "white";
|
|
2098
|
+
readonly filename: "Icon_Server_white.svg";
|
|
2099
|
+
};
|
|
2100
|
+
readonly "shake-love-2": {
|
|
2101
|
+
readonly tone: "white";
|
|
2102
|
+
readonly filename: "Icon_Shake-Love_white.svg";
|
|
2103
|
+
};
|
|
2104
|
+
readonly "shared-users-2": {
|
|
2105
|
+
readonly tone: "white";
|
|
2106
|
+
readonly filename: "Icon_Shared-users_white.svg";
|
|
2107
|
+
};
|
|
2108
|
+
readonly "shield-2-tone-2": {
|
|
2109
|
+
readonly tone: "white";
|
|
2110
|
+
readonly filename: "Icon_Shield-2-Tone_white.svg";
|
|
2111
|
+
};
|
|
2112
|
+
readonly "shield-check-2": {
|
|
2113
|
+
readonly tone: "white";
|
|
2114
|
+
readonly filename: "Icon_Shield-Check_white.svg";
|
|
2115
|
+
};
|
|
2116
|
+
readonly "shield-varified-2": {
|
|
2117
|
+
readonly tone: "white";
|
|
2118
|
+
readonly filename: "Icon_Shield-Varified_white.svg";
|
|
2119
|
+
};
|
|
2120
|
+
readonly "slice-2": {
|
|
2121
|
+
readonly tone: "white";
|
|
2122
|
+
readonly filename: "Icon_Slice_white.svg";
|
|
2123
|
+
};
|
|
2124
|
+
readonly "slider-2": {
|
|
2125
|
+
readonly tone: "white";
|
|
2126
|
+
readonly filename: "Icon_Slider_white.svg";
|
|
2127
|
+
};
|
|
2128
|
+
readonly "solid-arrow-down-2": {
|
|
2129
|
+
readonly tone: "white";
|
|
2130
|
+
readonly filename: "Icon_Solid-Arrow Down_white.svg";
|
|
2131
|
+
};
|
|
2132
|
+
readonly "solid-arrow-right-2": {
|
|
2133
|
+
readonly tone: "white";
|
|
2134
|
+
readonly filename: "Icon_Solid-Arrow Right_white.svg";
|
|
2135
|
+
};
|
|
2136
|
+
readonly "solid-check-2": {
|
|
2137
|
+
readonly tone: "white";
|
|
2138
|
+
readonly filename: "Icon_Solid-Check_white.svg";
|
|
2139
|
+
};
|
|
2140
|
+
readonly "solid-checkmark-2": {
|
|
2141
|
+
readonly tone: "white";
|
|
2142
|
+
readonly filename: "Icon_Solid-Checkmark_white.svg";
|
|
2143
|
+
};
|
|
2144
|
+
readonly "solid-clock1-2": {
|
|
2145
|
+
readonly tone: "white";
|
|
2146
|
+
readonly filename: "Icon_Solid-Clock1_white.svg";
|
|
2147
|
+
};
|
|
2148
|
+
readonly "solid-clock2-2": {
|
|
2149
|
+
readonly tone: "white";
|
|
2150
|
+
readonly filename: "Icon_Solid-Clock2_white.svg";
|
|
2151
|
+
};
|
|
2152
|
+
readonly "solid-compass-2": {
|
|
2153
|
+
readonly tone: "white";
|
|
2154
|
+
readonly filename: "Icon_Solid-Compass_white.svg";
|
|
2155
|
+
};
|
|
2156
|
+
readonly "solid-dollar-sign-2": {
|
|
2157
|
+
readonly tone: "white";
|
|
2158
|
+
readonly filename: "Icon_Solid-Dollar sign_white.svg";
|
|
2159
|
+
};
|
|
2160
|
+
readonly "solid-exclamation-mark-2": {
|
|
2161
|
+
readonly tone: "white";
|
|
2162
|
+
readonly filename: "Icon_Solid-Exclamation mark_white.svg";
|
|
2163
|
+
};
|
|
2164
|
+
readonly "solid-minus-2": {
|
|
2165
|
+
readonly tone: "white";
|
|
2166
|
+
readonly filename: "Icon_Solid-Minus_white.svg";
|
|
2167
|
+
};
|
|
2168
|
+
readonly "solid-o-maru-2": {
|
|
2169
|
+
readonly tone: "white";
|
|
2170
|
+
readonly filename: "Icon_Solid-O_Maru_white.svg";
|
|
2171
|
+
};
|
|
2172
|
+
readonly "solid-play-2": {
|
|
2173
|
+
readonly tone: "white";
|
|
2174
|
+
readonly filename: "Icon_Solid-Play_white.svg";
|
|
2175
|
+
};
|
|
2176
|
+
readonly "solid-plus-2": {
|
|
2177
|
+
readonly tone: "white";
|
|
2178
|
+
readonly filename: "Icon_Solid-Plus_white.svg";
|
|
2179
|
+
};
|
|
2180
|
+
readonly "solid-question-mark-2": {
|
|
2181
|
+
readonly tone: "white";
|
|
2182
|
+
readonly filename: "Icon_Solid-Question mark_white.svg";
|
|
2183
|
+
};
|
|
2184
|
+
readonly "solid-x-batsu-2": {
|
|
2185
|
+
readonly tone: "white";
|
|
2186
|
+
readonly filename: "Icon_Solid-X_Batsu_white.svg";
|
|
2187
|
+
};
|
|
2188
|
+
readonly "speach-bubble-2": {
|
|
2189
|
+
readonly tone: "white";
|
|
2190
|
+
readonly filename: "Icon_Speach-Bubble_white.svg";
|
|
2191
|
+
};
|
|
2192
|
+
readonly "spotlight-2": {
|
|
2193
|
+
readonly tone: "white";
|
|
2194
|
+
readonly filename: "Icon_Spotlight_white.svg";
|
|
2195
|
+
};
|
|
2196
|
+
readonly "spray-bottle-2": {
|
|
2197
|
+
readonly tone: "white";
|
|
2198
|
+
readonly filename: "Icon_Spray-Bottle_white.svg";
|
|
2199
|
+
};
|
|
2200
|
+
readonly "squares-scale-top-2": {
|
|
2201
|
+
readonly tone: "white";
|
|
2202
|
+
readonly filename: "Icon_Squares-Scale-Top_white.svg";
|
|
2203
|
+
};
|
|
2204
|
+
readonly "squares-scale-2": {
|
|
2205
|
+
readonly tone: "white";
|
|
2206
|
+
readonly filename: "Icon_Squares-Scale_white.svg";
|
|
2207
|
+
};
|
|
2208
|
+
readonly "squares-together-2": {
|
|
2209
|
+
readonly tone: "white";
|
|
2210
|
+
readonly filename: "Icon_Squares-Together_white.svg";
|
|
2211
|
+
};
|
|
2212
|
+
readonly "star-2": {
|
|
2213
|
+
readonly tone: "white";
|
|
2214
|
+
readonly filename: "Icon_Star_white.svg";
|
|
2215
|
+
};
|
|
2216
|
+
readonly "stop-hand-2": {
|
|
2217
|
+
readonly tone: "white";
|
|
2218
|
+
readonly filename: "Icon_Stop-hand_white.svg";
|
|
2219
|
+
};
|
|
2220
|
+
readonly "storage-cloud-2": {
|
|
2221
|
+
readonly tone: "white";
|
|
2222
|
+
readonly filename: "Icon_Storage-Cloud_white.svg";
|
|
2223
|
+
};
|
|
2224
|
+
readonly "storage-key-2": {
|
|
2225
|
+
readonly tone: "white";
|
|
2226
|
+
readonly filename: "Icon_Storage-Key_white.svg";
|
|
2227
|
+
};
|
|
2228
|
+
readonly "storage-2": {
|
|
2229
|
+
readonly tone: "white";
|
|
2230
|
+
readonly filename: "Icon_Storage_white.svg";
|
|
2231
|
+
};
|
|
2232
|
+
readonly "sun-2": {
|
|
2233
|
+
readonly tone: "white";
|
|
2234
|
+
readonly filename: "Icon_Sun_white.svg";
|
|
2235
|
+
};
|
|
2236
|
+
readonly "target-2": {
|
|
2237
|
+
readonly tone: "white";
|
|
2238
|
+
readonly filename: "Icon_Target_white.svg";
|
|
2239
|
+
};
|
|
2240
|
+
readonly "team-add-2": {
|
|
2241
|
+
readonly tone: "white";
|
|
2242
|
+
readonly filename: "Icon_Team-Add_white.svg";
|
|
2243
|
+
};
|
|
2244
|
+
readonly "team-2": {
|
|
2245
|
+
readonly tone: "white";
|
|
2246
|
+
readonly filename: "Icon_Team_white.svg";
|
|
2247
|
+
};
|
|
2248
|
+
readonly "thumb-2": {
|
|
2249
|
+
readonly tone: "white";
|
|
2250
|
+
readonly filename: "Icon_Thumb_white.svg";
|
|
2251
|
+
};
|
|
2252
|
+
readonly "toggle-2": {
|
|
2253
|
+
readonly tone: "white";
|
|
2254
|
+
readonly filename: "Icon_Toggle_white.svg";
|
|
2255
|
+
};
|
|
2256
|
+
readonly "tools-2": {
|
|
2257
|
+
readonly tone: "white";
|
|
2258
|
+
readonly filename: "Icon_Tools_white.svg";
|
|
2259
|
+
};
|
|
2260
|
+
readonly "trophy-2": {
|
|
2261
|
+
readonly tone: "white";
|
|
2262
|
+
readonly filename: "Icon_Trophy_white.svg";
|
|
2263
|
+
};
|
|
2264
|
+
readonly "truck-2": {
|
|
2265
|
+
readonly tone: "white";
|
|
2266
|
+
readonly filename: "Icon_Truck_white.svg";
|
|
2267
|
+
};
|
|
2268
|
+
readonly "two-files-2": {
|
|
2269
|
+
readonly tone: "white";
|
|
2270
|
+
readonly filename: "Icon_Two-files_white.svg";
|
|
2271
|
+
};
|
|
2272
|
+
readonly "typing-now-2": {
|
|
2273
|
+
readonly tone: "white";
|
|
2274
|
+
readonly filename: "Icon_Typing-now_white.svg";
|
|
2275
|
+
};
|
|
2276
|
+
readonly "typing-2": {
|
|
2277
|
+
readonly tone: "white";
|
|
2278
|
+
readonly filename: "Icon_Typing_white.svg";
|
|
2279
|
+
};
|
|
2280
|
+
readonly "usb-2": {
|
|
2281
|
+
readonly tone: "white";
|
|
2282
|
+
readonly filename: "Icon_USB_white.svg";
|
|
2283
|
+
};
|
|
2284
|
+
readonly "up-down-2": {
|
|
2285
|
+
readonly tone: "white";
|
|
2286
|
+
readonly filename: "Icon_Up-Down_white.svg";
|
|
2287
|
+
};
|
|
2288
|
+
readonly "upload-cloud-2": {
|
|
2289
|
+
readonly tone: "white";
|
|
2290
|
+
readonly filename: "Icon_Upload-Cloud_white.svg";
|
|
2291
|
+
};
|
|
2292
|
+
readonly "upload-2": {
|
|
2293
|
+
readonly tone: "white";
|
|
2294
|
+
readonly filename: "Icon_Upload_white.svg";
|
|
2295
|
+
};
|
|
2296
|
+
readonly "user-alert-2": {
|
|
2297
|
+
readonly tone: "white";
|
|
2298
|
+
readonly filename: "Icon_User Alert_white.svg";
|
|
2299
|
+
};
|
|
2300
|
+
readonly "user-verified-unknown-2": {
|
|
2301
|
+
readonly tone: "white";
|
|
2302
|
+
readonly filename: "Icon_User verified unknown_white.svg";
|
|
2303
|
+
};
|
|
2304
|
+
readonly "user-verified-2": {
|
|
2305
|
+
readonly tone: "white";
|
|
2306
|
+
readonly filename: "Icon_User verified_white.svg";
|
|
2307
|
+
};
|
|
2308
|
+
readonly "user-badge-2": {
|
|
2309
|
+
readonly tone: "white";
|
|
2310
|
+
readonly filename: "Icon_User-badge_white.svg";
|
|
2311
|
+
};
|
|
2312
|
+
readonly "user-primary-2": {
|
|
2313
|
+
readonly tone: "white";
|
|
2314
|
+
readonly filename: "Icon_User-primary_white.svg";
|
|
2315
|
+
};
|
|
2316
|
+
readonly "user-timed-2": {
|
|
2317
|
+
readonly tone: "white";
|
|
2318
|
+
readonly filename: "Icon_User-timed_white.svg";
|
|
2319
|
+
};
|
|
2320
|
+
readonly "video-camera-1": {
|
|
2321
|
+
readonly tone: "white";
|
|
2322
|
+
readonly filename: "Icon_Video-Camera-1_white.svg";
|
|
2323
|
+
};
|
|
2324
|
+
readonly "video-camera-3": {
|
|
2325
|
+
readonly tone: "white";
|
|
2326
|
+
readonly filename: "Icon_Video-Camera_white.svg";
|
|
2327
|
+
};
|
|
2328
|
+
readonly "video-2": {
|
|
2329
|
+
readonly tone: "white";
|
|
2330
|
+
readonly filename: "Icon_Video_white.svg";
|
|
2331
|
+
};
|
|
2332
|
+
readonly "white-arrow-right": {
|
|
2333
|
+
readonly tone: "white";
|
|
2334
|
+
readonly filename: "Icon_White-Arrow Right_white.svg";
|
|
2335
|
+
};
|
|
2336
|
+
readonly "white-check": {
|
|
2337
|
+
readonly tone: "white";
|
|
2338
|
+
readonly filename: "Icon_White-Check_white.svg";
|
|
2339
|
+
};
|
|
2340
|
+
readonly "white-plus": {
|
|
2341
|
+
readonly tone: "white";
|
|
2342
|
+
readonly filename: "Icon_White-Plus_white.svg";
|
|
2343
|
+
};
|
|
2344
|
+
readonly "white-stop": {
|
|
2345
|
+
readonly tone: "white";
|
|
2346
|
+
readonly filename: "Icon_White-Stop_white.svg";
|
|
2347
|
+
};
|
|
2348
|
+
readonly "writing-2": {
|
|
2349
|
+
readonly tone: "white";
|
|
2350
|
+
readonly filename: "Icon_Writing_white.svg";
|
|
2351
|
+
};
|
|
2352
|
+
readonly "x-batsu-2": {
|
|
2353
|
+
readonly tone: "white";
|
|
2354
|
+
readonly filename: "Icon_X_Batsu_white.svg";
|
|
2355
|
+
};
|
|
2356
|
+
readonly "zones-2": {
|
|
2357
|
+
readonly tone: "white";
|
|
2358
|
+
readonly filename: "Icon_Zones_white.svg";
|
|
2359
|
+
};
|
|
2360
|
+
readonly "play-2": {
|
|
2361
|
+
readonly tone: "white";
|
|
2362
|
+
readonly filename: "Icon_play_white.svg";
|
|
2363
|
+
};
|
|
2364
|
+
};
|
|
2365
|
+
export declare const boxGeneratedIconKeys: string[];
|
|
2366
|
+
export declare const boxGeneratedIconCounts: {
|
|
2367
|
+
readonly total: 472;
|
|
2368
|
+
readonly blue: 234;
|
|
2369
|
+
readonly white: 238;
|
|
2370
|
+
};
|