@blokkli/editor 2.0.0-alpha.28 → 2.0.0-alpha.29
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/dist/global/constants/index.d.ts +6 -0
- package/dist/global/constants/index.js +10 -0
- package/dist/global/types/adapter.d.ts +6 -0
- package/dist/global/types/blockOptions.d.ts +348 -0
- package/dist/global/types/definitions.d.ts +278 -0
- package/dist/global/types/features.d.ts +87 -0
- package/dist/module.d.mts +25 -7
- package/dist/module.json +1 -1
- package/dist/module.mjs +1026 -187
- package/dist/modules/drupal/graphql/features/import-existing.graphql +9 -2
- package/dist/modules/drupal/graphql/features/library.graphql +9 -2
- package/dist/modules/drupal/graphql/features/media-library.graphql +6 -14
- package/dist/modules/drupal/graphql/features/publishNew.graphql +3 -0
- package/dist/modules/drupal/index.d.mts +6 -5
- package/dist/modules/drupal/index.mjs +2 -4
- package/dist/modules/drupal/runtime/adapter/index.d.ts +1 -2
- package/dist/modules/drupal/runtime/adapter/index.js +36 -28
- package/dist/runtime/components/Blocks/Fragment/index.d.vue.ts +7 -0
- package/dist/runtime/components/Blocks/Fragment/index.vue +3 -2
- package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +2 -1
- package/dist/runtime/components/Blocks/FromLibrary/index.d.vue.ts +7 -0
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +7 -3
- package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +3 -2
- package/dist/runtime/components/Blocks/NotImplemented/index.d.vue.ts +7 -0
- package/dist/runtime/components/Blocks/NotImplemented/index.vue +3 -3
- package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +2 -1
- package/dist/runtime/components/BlokkliEditable.d.vue.ts +33 -0
- package/dist/runtime/components/BlokkliEditable.vue +12 -3
- package/dist/runtime/components/BlokkliEditable.vue.d.ts +3 -2
- package/dist/runtime/components/BlokkliField.d.vue.ts +96 -0
- package/dist/runtime/components/BlokkliField.vue +6 -23
- package/dist/runtime/components/BlokkliField.vue.d.ts +8 -5
- package/dist/runtime/components/BlokkliItem.d.vue.ts +31 -0
- package/dist/runtime/components/BlokkliItem.vue +25 -26
- package/dist/runtime/components/BlokkliItem.vue.d.ts +8 -7
- package/dist/runtime/components/BlokkliProvider.d.vue.ts +77 -0
- package/dist/runtime/components/BlokkliProvider.vue +6 -6
- package/dist/runtime/components/BlokkliProvider.vue.d.ts +12 -7
- package/dist/runtime/composables/defineBlokkli.d.ts +1 -1
- package/dist/runtime/composables/defineBlokkli.js +19 -22
- package/dist/runtime/composables/defineBlokkliFeature.d.ts +3 -3
- package/dist/runtime/composables/defineBlokkliFeature.js +2 -2
- package/dist/runtime/composables/defineBlokkliFragment.d.ts +1 -1
- package/dist/runtime/composables/defineBlokkliFragment.js +2 -5
- package/dist/runtime/composables/defineBlokkliProvider.d.ts +1 -1
- package/dist/runtime/composables/defineBlokkliProvider.js +1 -1
- package/dist/runtime/composables/useBlokkli.d.ts +1 -1
- package/dist/runtime/composables/useBlokkli.js +1 -1
- package/dist/runtime/composables/useBlokkliHelper.d.ts +2 -1
- package/dist/runtime/composables/useBlokkliHelper.js +5 -11
- package/dist/runtime/editor/adapter/index.d.ts +121 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.vue +66 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Actions/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Actions/index.vue +216 -0
- package/dist/runtime/editor/components/Actions/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +20 -0
- package/dist/runtime/editor/components/AddListItem/index.vue +66 -0
- package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +20 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +455 -0
- package/dist/runtime/editor/components/AnimationCanvas/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +29 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue +39 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +29 -0
- package/dist/runtime/editor/components/AppMenu/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/AppMenu/index.vue +85 -0
- package/dist/runtime/editor/components/AppMenu/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +33 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +89 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +33 -0
- package/dist/runtime/editor/components/Banner/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/Banner/index.vue +51 -0
- package/dist/runtime/editor/components/Banner/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/BlockProxy/index.d.vue.ts +11 -0
- package/dist/runtime/editor/components/BlockProxy/index.vue +88 -0
- package/dist/runtime/editor/components/BlockProxy/index.vue.d.ts +11 -0
- package/dist/runtime/editor/components/BlokkliErrorBoundary.d.vue.ts +27 -0
- package/dist/runtime/editor/components/BlokkliErrorBoundary.vue +47 -0
- package/dist/runtime/editor/components/BlokkliErrorBoundary.vue.d.ts +27 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +13 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +96 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +13 -0
- package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue +187 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/Dialog/index.d.vue.ts +49 -0
- package/dist/runtime/editor/components/Dialog/index.vue +134 -0
- package/dist/runtime/editor/components/Dialog/index.vue.d.ts +49 -0
- package/dist/runtime/editor/components/DiffViewer/State.d.vue.ts +17 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue +276 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue.d.ts +17 -0
- package/dist/runtime/editor/components/DraggableList.d.vue.ts +29 -0
- package/dist/runtime/editor/components/DraggableList.vue +145 -0
- package/dist/runtime/editor/components/DraggableList.vue.d.ts +29 -0
- package/dist/runtime/editor/components/EditIndicator.d.vue.ts +15 -0
- package/dist/runtime/editor/components/EditIndicator.vue +151 -0
- package/dist/runtime/editor/components/EditIndicator.vue.d.ts +15 -0
- package/dist/runtime/editor/components/EditProvider.d.vue.ts +34 -0
- package/dist/runtime/editor/components/EditProvider.vue +388 -0
- package/dist/runtime/editor/components/EditProvider.vue.d.ts +34 -0
- package/dist/runtime/editor/components/FeaturesRenderer/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/FeaturesRenderer/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +23 -0
- package/dist/runtime/editor/components/Form/Checkboxes/index.vue +49 -0
- package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +23 -0
- package/dist/runtime/editor/components/Form/Datepicker/index.d.vue.ts +17 -0
- package/dist/runtime/editor/components/Form/Datepicker/index.vue +198 -0
- package/dist/runtime/editor/components/Form/Datepicker/index.vue.d.ts +17 -0
- package/dist/runtime/editor/components/Form/Group/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/Form/Group/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/Form/Item/index.d.vue.ts +13 -0
- package/dist/runtime/editor/components/Form/Item/index.vue.d.ts +13 -0
- package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/RadioTabs/index.d.vue.ts +24 -0
- package/dist/runtime/editor/components/Form/RadioTabs/index.vue.d.ts +24 -0
- package/dist/runtime/editor/components/Form/Select/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Select/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +26 -0
- package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +26 -0
- package/dist/runtime/editor/components/FormOverlay/Header/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/FormOverlay/Header/index.vue +28 -0
- package/dist/runtime/editor/components/FormOverlay/Header/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/FormOverlay/index.d.vue.ts +27 -0
- package/dist/runtime/editor/components/FormOverlay/index.vue +55 -0
- package/dist/runtime/editor/components/FormOverlay/index.vue.d.ts +27 -0
- package/dist/runtime/editor/components/Highlight/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/Highlight/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/Icon/index.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Icon/index.vue +20 -0
- package/dist/runtime/editor/components/Icon/index.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Indicators/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Indicators/index.vue +123 -0
- package/dist/runtime/editor/components/Indicators/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/InfoBox/index.vue +18 -0
- package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/ItemIcon/index.vue +36 -0
- package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/ItemIconBox/index.d.vue.ts +18 -0
- package/dist/runtime/editor/components/ItemIconBox/index.vue +40 -0
- package/dist/runtime/editor/components/ItemIconBox/index.vue.d.ts +18 -0
- package/dist/runtime/editor/components/Konami/Game/PixelGrid.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue +66 -0
- package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Konami/Game/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Konami/Game/index.vue +751 -0
- package/dist/runtime/editor/components/Konami/Game/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Konami/Game/useIconRendering.d.ts +9 -0
- package/dist/runtime/editor/components/Konami/Game/useIconRendering.js +131 -0
- package/dist/runtime/editor/components/Konami/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Konami/index.vue +42 -0
- package/dist/runtime/editor/components/Konami/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Loading/index.d.vue.ts +9 -0
- package/dist/runtime/editor/components/Loading/index.vue +22 -0
- package/dist/runtime/editor/components/Loading/index.vue.d.ts +9 -0
- package/dist/runtime/editor/components/Messages/Item/index.d.vue.ts +12 -0
- package/dist/runtime/editor/components/Messages/Item/index.vue +105 -0
- package/dist/runtime/editor/components/Messages/Item/index.vue.d.ts +12 -0
- package/dist/runtime/editor/components/Messages/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Messages/index.vue +41 -0
- package/dist/runtime/editor/components/Messages/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Overlay/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/Overlay/index.vue +70 -0
- package/dist/runtime/editor/components/Overlay/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Pagination/index.d.vue.ts +14 -0
- package/dist/runtime/editor/components/Pagination/index.vue +19 -0
- package/dist/runtime/editor/components/Pagination/index.vue.d.ts +14 -0
- package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue +17 -0
- package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Options/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue +37 -0
- package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +43 -0
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +59 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +29 -0
- package/dist/runtime/editor/components/PreviewProvider.vue +176 -0
- package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +29 -0
- package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/RelativeTime/index.vue +59 -0
- package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/Resizable/index.d.vue.ts +14 -0
- package/dist/runtime/editor/components/Resizable/index.vue.d.ts +14 -0
- package/dist/runtime/editor/components/ScaleToFit/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/ScaleToFit/index.vue +70 -0
- package/dist/runtime/editor/components/ScaleToFit/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +25 -0
- package/dist/runtime/editor/components/ScheduleDate/index.vue +131 -0
- package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +25 -0
- package/dist/runtime/editor/components/ScrollBoundary/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/ScrollBoundary/index.vue +23 -0
- package/dist/runtime/editor/components/ScrollBoundary/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/ShortcutIndicator/index.d.vue.ts +21 -0
- package/dist/runtime/editor/components/ShortcutIndicator/index.vue +85 -0
- package/dist/runtime/editor/components/ShortcutIndicator/index.vue.d.ts +21 -0
- package/dist/runtime/editor/components/Sortli/index.d.vue.ts +17 -0
- package/dist/runtime/editor/components/Sortli/index.vue +81 -0
- package/dist/runtime/editor/components/Sortli/index.vue.d.ts +17 -0
- package/dist/runtime/editor/components/SystemRequirements/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue +81 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Toolbar/index.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Toolbar/index.vue +89 -0
- package/dist/runtime/editor/components/Toolbar/index.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Transition/Height.d.vue.ts +37 -0
- package/dist/runtime/editor/components/Transition/Height.vue.d.ts +37 -0
- package/dist/runtime/editor/components/Transition/index.d.vue.ts +20 -0
- package/dist/runtime/editor/components/Transition/index.vue.d.ts +20 -0
- package/dist/runtime/editor/components/ViewportBlockingRect/index.d.vue.ts +19 -0
- package/dist/runtime/editor/components/ViewportBlockingRect/index.vue +60 -0
- package/dist/runtime/editor/components/ViewportBlockingRect/index.vue.d.ts +19 -0
- package/dist/runtime/editor/components/index.d.ts +37 -0
- package/dist/runtime/editor/components/index.js +74 -0
- package/dist/runtime/editor/composables/defineAddAction.d.ts +2 -0
- package/dist/runtime/editor/composables/defineAddAction.js +10 -0
- package/dist/runtime/editor/composables/defineCommands.d.ts +2 -0
- package/dist/runtime/editor/composables/defineCommands.js +10 -0
- package/dist/runtime/editor/composables/defineDropAreas.d.ts +3 -0
- package/dist/runtime/editor/composables/defineDropAreas.js +10 -0
- package/dist/runtime/editor/composables/defineItemDropdownAction.d.ts +2 -0
- package/dist/runtime/editor/composables/defineItemDropdownAction.js +10 -0
- package/dist/runtime/editor/composables/defineMenuButton.d.ts +2 -0
- package/dist/runtime/editor/composables/defineMenuButton.js +10 -0
- package/dist/runtime/editor/composables/defineRenderer.d.ts +11 -0
- package/dist/runtime/editor/composables/defineRenderer.js +9 -0
- package/dist/runtime/editor/composables/defineShortcut.d.ts +2 -0
- package/dist/runtime/editor/composables/defineShortcut.js +18 -0
- package/dist/runtime/editor/composables/defineTourItem.d.ts +2 -0
- package/dist/runtime/editor/composables/defineTourItem.js +10 -0
- package/dist/runtime/editor/composables/index.d.ts +22 -0
- package/dist/runtime/editor/composables/index.js +22 -0
- package/dist/runtime/editor/composables/onBlokkliEvent.d.ts +2 -0
- package/dist/runtime/editor/composables/onBlokkliEvent.js +10 -0
- package/dist/runtime/editor/composables/onBroadcastEvent.d.ts +2 -0
- package/dist/runtime/editor/composables/onBroadcastEvent.js +10 -0
- package/dist/runtime/editor/composables/useAnimationFrame.d.ts +1 -0
- package/dist/runtime/editor/composables/useAnimationFrame.js +14 -0
- package/dist/runtime/editor/composables/useDebugLogger.d.ts +2 -0
- package/dist/runtime/editor/composables/useDebugLogger.js +5 -0
- package/dist/runtime/editor/composables/useDelayedIntersectionObserver.d.ts +5 -0
- package/dist/runtime/editor/composables/useDelayedIntersectionObserver.js +27 -0
- package/dist/runtime/editor/composables/useDialog.d.ts +3 -0
- package/dist/runtime/editor/composables/useFocusTrap.d.ts +52 -0
- package/dist/runtime/editor/composables/useFocusTrap.js +59 -0
- package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +16 -0
- package/dist/runtime/editor/composables/useStateBasedCache.d.ts +4 -0
- package/dist/runtime/editor/composables/useStateBasedCache.js +13 -0
- package/dist/runtime/editor/composables/useStickyToolbar.d.ts +23 -0
- package/dist/runtime/editor/composables/useStickyToolbar.js +234 -0
- package/dist/runtime/editor/composables/useTransitionedValue.d.ts +18 -0
- package/dist/runtime/editor/composables/useTransitionedValue.js +57 -0
- package/dist/runtime/editor/css/output.css +1 -0
- package/dist/runtime/editor/events/index.d.ts +228 -0
- package/dist/runtime/editor/events/index.js +6 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +8 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.vue +53 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +8 -0
- package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/add-list/Actions/index.vue +41 -0
- package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/add-list/Blocks/index.vue +274 -0
- package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/add-list/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/add-list/index.vue +148 -0
- package/dist/runtime/editor/features/add-list/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/add-list/types.d.ts +19 -0
- package/dist/runtime/editor/features/add-list/types.js +0 -0
- package/dist/runtime/editor/features/analyze/Icon.d.vue.ts +6 -0
- package/dist/runtime/editor/features/analyze/Icon.vue.d.ts +6 -0
- package/dist/runtime/editor/features/analyze/Main.d.vue.ts +16 -0
- package/dist/runtime/editor/features/analyze/Main.vue +385 -0
- package/dist/runtime/editor/features/analyze/Main.vue.d.ts +16 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +22 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.vue +259 -0
- package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +22 -0
- package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +15 -0
- package/dist/runtime/editor/features/analyze/Results/Results.vue +102 -0
- package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +15 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +23 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +56 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +23 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +80 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +123 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +16 -0
- package/dist/runtime/editor/features/analyze/Results/Status.d.vue.ts +9 -0
- package/dist/runtime/editor/features/analyze/Results/Status.vue.d.ts +9 -0
- package/dist/runtime/editor/features/analyze/Summary/Chart.d.vue.ts +18 -0
- package/dist/runtime/editor/features/analyze/Summary/Chart.vue.d.ts +18 -0
- package/dist/runtime/editor/features/analyze/Summary/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/analyze/Summary/index.vue +77 -0
- package/dist/runtime/editor/features/analyze/Summary/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/analyze/analyzers/axe.d.ts +12 -0
- package/dist/runtime/editor/features/analyze/analyzers/axe.js +78 -0
- package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.d.ts +33 -0
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +206 -0
- package/dist/runtime/editor/features/analyze/analyzers/types.js +0 -0
- package/dist/runtime/editor/features/analyze/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/analyze/index.vue +69 -0
- package/dist/runtime/editor/features/analyze/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/analyze/types.d.ts +6 -0
- package/dist/runtime/editor/features/analyze/types.js +0 -0
- package/dist/runtime/editor/features/anchors/Overlay/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/anchors/Overlay/index.vue +53 -0
- package/dist/runtime/editor/features/anchors/Overlay/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/anchors/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/anchors/index.vue +32 -0
- package/dist/runtime/editor/features/anchors/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/anchors/types.d.ts +8 -0
- package/dist/runtime/editor/features/anchors/types.js +0 -0
- package/dist/runtime/editor/features/artboard/Overview/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/artboard/Overview/index.vue +122 -0
- package/dist/runtime/editor/features/artboard/Overview/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/artboard/Renderer.d.vue.ts +8 -0
- package/dist/runtime/editor/features/artboard/Renderer.vue +322 -0
- package/dist/runtime/editor/features/artboard/Renderer.vue.d.ts +8 -0
- package/dist/runtime/editor/features/artboard/Scrollbar/index.d.vue.ts +8 -0
- package/dist/runtime/editor/features/artboard/Scrollbar/index.vue.d.ts +8 -0
- package/dist/runtime/editor/features/artboard/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/artboard/index.vue +92 -0
- package/dist/runtime/editor/features/artboard/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/assistant/Overlay/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/assistant/Overlay/index.vue +108 -0
- package/dist/runtime/editor/features/assistant/Overlay/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/assistant/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/assistant/index.vue +65 -0
- package/dist/runtime/editor/features/assistant/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/assistant/types.d.ts +37 -0
- package/dist/runtime/editor/features/assistant/types.js +0 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +29 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +154 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +29 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +232 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/block-scheduler/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/block-scheduler/index.vue +96 -0
- package/dist/runtime/editor/features/block-scheduler/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/block-scheduler/types.d.ts +25 -0
- package/dist/runtime/editor/features/block-scheduler/types.js +0 -0
- package/dist/runtime/editor/features/breadcrumbs/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue +206 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/clipboard/List/Item/File.d.vue.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/Item/File.vue.d.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/Item/Video.d.vue.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/Item/Video.vue +54 -0
- package/dist/runtime/editor/features/clipboard/List/Item/Video.vue.d.ts +4 -0
- package/dist/runtime/editor/features/clipboard/List/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/clipboard/List/index.vue +72 -0
- package/dist/runtime/editor/features/clipboard/List/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/clipboard/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/clipboard/index.vue +606 -0
- package/dist/runtime/editor/features/clipboard/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/clipboard/types.d.ts +99 -0
- package/dist/runtime/editor/features/clipboard/types.js +0 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.d.vue.ts +20 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +49 -0
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue.d.ts +20 -0
- package/dist/runtime/editor/features/command-palette/Palette/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/command-palette/Palette/index.vue +229 -0
- package/dist/runtime/editor/features/command-palette/Palette/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/command-palette/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/command-palette/index.vue +51 -0
- package/dist/runtime/editor/features/command-palette/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/command-palette/types.d.ts +11 -0
- package/dist/runtime/editor/features/command-palette/types.js +0 -0
- package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/comments/AddForm/index.vue +44 -0
- package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +24 -0
- package/dist/runtime/editor/features/comments/Comment/index.vue +45 -0
- package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +24 -0
- package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +15 -0
- package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +15 -0
- package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +21 -0
- package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +94 -0
- package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +21 -0
- package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/comments/Overlay/index.vue +113 -0
- package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/comments/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/comments/index.vue +112 -0
- package/dist/runtime/editor/features/comments/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/comments/types.d.ts +26 -0
- package/dist/runtime/editor/features/comments/types.js +0 -0
- package/dist/runtime/editor/features/conversions/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/conversions/index.vue +84 -0
- package/dist/runtime/editor/features/conversions/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/conversions/types.d.ts +16 -0
- package/dist/runtime/editor/features/conversions/types.js +0 -0
- package/dist/runtime/editor/features/debug/DebugSection.d.vue.ts +17 -0
- package/dist/runtime/editor/features/debug/DebugSection.vue.d.ts +17 -0
- package/dist/runtime/editor/features/debug/Main.d.vue.ts +7 -0
- package/dist/runtime/editor/features/debug/Main.vue +80 -0
- package/dist/runtime/editor/features/debug/Main.vue.d.ts +7 -0
- package/dist/runtime/editor/features/debug/Rects/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Rects/index.vue +61 -0
- package/dist/runtime/editor/features/debug/Rects/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Features.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Features.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Icons.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Icons.vue +17 -0
- package/dist/runtime/editor/features/debug/Section/Icons.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Keyboard.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Keyboard.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Logging.d.vue.ts +7 -0
- package/dist/runtime/editor/features/debug/Section/Logging.vue +66 -0
- package/dist/runtime/editor/features/debug/Section/Logging.vue.d.ts +7 -0
- package/dist/runtime/editor/features/debug/Section/Rendering.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Rendering.vue +96 -0
- package/dist/runtime/editor/features/debug/Section/Rendering.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Selection.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Section/Selection.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/Viewport/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/Viewport/index.vue +98 -0
- package/dist/runtime/editor/features/debug/Viewport/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/debug/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/debug/index.vue +31 -0
- package/dist/runtime/editor/features/debug/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/delete/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/delete/index.vue +68 -0
- package/dist/runtime/editor/features/delete/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/delete/types.d.ts +8 -0
- package/dist/runtime/editor/features/delete/types.js +0 -0
- package/dist/runtime/editor/features/dev-mode/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/dev-mode/index.vue +38 -0
- package/dist/runtime/editor/features/dev-mode/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/diff/DiffView/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/diff/DiffView/index.vue +20 -0
- package/dist/runtime/editor/features/diff/DiffView/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/diff/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/diff/index.vue +35 -0
- package/dist/runtime/editor/features/diff/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +26 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +113 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +26 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +254 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +818 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +29 -0
- package/dist/runtime/editor/features/dragging-overlay/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/dragging-overlay/index.vue +438 -0
- package/dist/runtime/editor/features/dragging-overlay/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/duplicate/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/duplicate/index.vue +105 -0
- package/dist/runtime/editor/features/duplicate/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/duplicate/types.d.ts +8 -0
- package/dist/runtime/editor/features/duplicate/types.js +0 -0
- package/dist/runtime/editor/features/edit/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/edit/index.vue +76 -0
- package/dist/runtime/editor/features/edit/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/edit/types.d.ts +9 -0
- package/dist/runtime/editor/features/edit/types.js +0 -0
- package/dist/runtime/editor/features/edit-form/Frame/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/edit-form/Frame/index.vue +70 -0
- package/dist/runtime/editor/features/edit-form/Frame/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/edit-form/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/edit-form/index.vue +176 -0
- package/dist/runtime/editor/features/edit-form/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +116 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +20 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +81 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +20 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.d.vue.ts +17 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +317 -0
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue.d.ts +17 -0
- package/dist/runtime/editor/features/editable-field/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/editable-field/index.vue +150 -0
- package/dist/runtime/editor/features/editable-field/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/editable-field/types.d.ts +54 -0
- package/dist/runtime/editor/features/editable-field/types.js +0 -0
- package/dist/runtime/editor/features/editable-mask/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/editable-mask/index.vue +39 -0
- package/dist/runtime/editor/features/editable-mask/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/entity-title/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/entity-title/index.vue +136 -0
- package/dist/runtime/editor/features/entity-title/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/exit/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/exit/index.vue +38 -0
- package/dist/runtime/editor/features/exit/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/fragments/Dialog/Item/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue +58 -0
- package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/fragments/Dialog/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/fragments/Dialog/index.vue +122 -0
- package/dist/runtime/editor/features/fragments/Dialog/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/fragments/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/fragments/index.vue +75 -0
- package/dist/runtime/editor/features/fragments/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/fragments/types.d.ts +14 -0
- package/dist/runtime/editor/features/fragments/types.js +0 -0
- package/dist/runtime/editor/features/grid/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/grid/index.vue +37 -0
- package/dist/runtime/editor/features/grid/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/grid/types.d.ts +8 -0
- package/dist/runtime/editor/features/grid/types.js +0 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.vue +60 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/help/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/help/index.vue +49 -0
- package/dist/runtime/editor/features/help/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/history/List/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/history/List/index.vue +128 -0
- package/dist/runtime/editor/features/history/List/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/history/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/history/index.vue +151 -0
- package/dist/runtime/editor/features/history/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/history/types.d.ts +12 -0
- package/dist/runtime/editor/features/history/types.js +0 -0
- package/dist/runtime/editor/features/hover/Renderer/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/hover/Renderer/index.vue +448 -0
- package/dist/runtime/editor/features/hover/Renderer/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/hover/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/hover/index.vue +28 -0
- package/dist/runtime/editor/features/hover/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +15 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +122 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +15 -0
- package/dist/runtime/editor/features/import-existing/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/import-existing/index.vue +80 -0
- package/dist/runtime/editor/features/import-existing/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/import-existing/types.d.ts +23 -0
- package/dist/runtime/editor/features/import-existing/types.js +0 -0
- package/dist/runtime/editor/features/library/EditReusable/index.d.vue.ts +14 -0
- package/dist/runtime/editor/features/library/EditReusable/index.vue +165 -0
- package/dist/runtime/editor/features/library/EditReusable/index.vue.d.ts +14 -0
- package/dist/runtime/editor/features/library/LibraryDialog/Item/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue +67 -0
- package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/library/LibraryDialog/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/library/LibraryDialog/index.vue +143 -0
- package/dist/runtime/editor/features/library/LibraryDialog/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/library/ReusableDialog/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/library/ReusableDialog/index.vue +99 -0
- package/dist/runtime/editor/features/library/ReusableDialog/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/library/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/library/index.vue +195 -0
- package/dist/runtime/editor/features/library/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/library/types.d.ts +80 -0
- package/dist/runtime/editor/features/library/types.js +0 -0
- package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +22 -0
- package/dist/runtime/editor/features/media-library/Library/Item.vue +41 -0
- package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +22 -0
- package/dist/runtime/editor/features/media-library/Library/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/media-library/Library/index.vue +195 -0
- package/dist/runtime/editor/features/media-library/Library/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/media-library/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/media-library/index.vue +108 -0
- package/dist/runtime/editor/features/media-library/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/media-library/types.d.ts +85 -0
- package/dist/runtime/editor/features/media-library/types.js +0 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.d.vue.ts +12 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.vue +297 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.vue.d.ts +12 -0
- package/dist/runtime/editor/features/multi-select/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/multi-select/index.vue +69 -0
- package/dist/runtime/editor/features/multi-select/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +17 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +46 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +17 -0
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.d.vue.ts +25 -0
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +112 -0
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue.d.ts +25 -0
- package/dist/runtime/editor/features/options/Form/Color/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/options/Form/Color/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.d.vue.ts +21 -0
- package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue.d.ts +21 -0
- package/dist/runtime/editor/features/options/Form/Group.d.vue.ts +21 -0
- package/dist/runtime/editor/features/options/Form/Group.vue +23 -0
- package/dist/runtime/editor/features/options/Form/Group.vue.d.ts +21 -0
- package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +14 -0
- package/dist/runtime/editor/features/options/Form/Item.vue +186 -0
- package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +14 -0
- package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +22 -0
- package/dist/runtime/editor/features/options/Form/Number/index.vue +64 -0
- package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +22 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +37 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.vue +129 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +37 -0
- package/dist/runtime/editor/features/options/Form/Range/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/options/Form/Range/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/options/Form/Text/index.d.vue.ts +18 -0
- package/dist/runtime/editor/features/options/Form/Text/index.vue.d.ts +18 -0
- package/dist/runtime/editor/features/options/Form/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/options/Form/index.vue +382 -0
- package/dist/runtime/editor/features/options/Form/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/options/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/options/index.vue +85 -0
- package/dist/runtime/editor/features/options/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/options/types.d.ts +21 -0
- package/dist/runtime/editor/features/options/types.js +0 -0
- package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/ownership/Banner/index.vue +35 -0
- package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/ownership/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/ownership/index.vue +32 -0
- package/dist/runtime/editor/features/ownership/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/ownership/types.d.ts +8 -0
- package/dist/runtime/editor/features/ownership/types.js +0 -0
- package/dist/runtime/editor/features/preview/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/preview/index.vue +41 -0
- package/dist/runtime/editor/features/preview/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/preview-grant/QrCode/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/preview-grant/QrCode/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/preview-grant/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/preview-grant/index.vue +71 -0
- package/dist/runtime/editor/features/preview-grant/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/preview-grant/types.d.ts +10 -0
- package/dist/runtime/editor/features/preview-grant/types.js +0 -0
- package/dist/runtime/editor/features/proxy-view/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/proxy-view/index.vue +40 -0
- package/dist/runtime/editor/features/proxy-view/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.d.vue.ts +22 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.vue +145 -0
- package/dist/runtime/editor/features/publish/Dialog/Item.vue.d.ts +22 -0
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.d.vue.ts +21 -0
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +47 -0
- package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue.d.ts +21 -0
- package/dist/runtime/editor/features/publish/Dialog/Summary.d.vue.ts +10 -0
- package/dist/runtime/editor/features/publish/Dialog/Summary.vue +83 -0
- package/dist/runtime/editor/features/publish/Dialog/Summary.vue.d.ts +10 -0
- package/dist/runtime/editor/features/publish/Dialog/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/publish/Dialog/index.vue +579 -0
- package/dist/runtime/editor/features/publish/Dialog/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/publish/Dialog/types.d.ts +7 -0
- package/dist/runtime/editor/features/publish/Dialog/types.js +0 -0
- package/dist/runtime/editor/features/publish/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/publish/index.vue +131 -0
- package/dist/runtime/editor/features/publish/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/publish/types.d.ts +109 -0
- package/dist/runtime/editor/features/publish/types.js +0 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.d.vue.ts +17 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +76 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue.d.ts +17 -0
- package/dist/runtime/editor/features/responsive-preview/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/responsive-preview/index.vue +193 -0
- package/dist/runtime/editor/features/responsive-preview/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/revert/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/revert/index.vue +68 -0
- package/dist/runtime/editor/features/revert/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/revert/types.d.ts +8 -0
- package/dist/runtime/editor/features/revert/types.js +0 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.d.vue.ts +18 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +167 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue.d.ts +18 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.d.vue.ts +19 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +172 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue.d.ts +19 -0
- package/dist/runtime/editor/features/search/Overlay/index.d.vue.ts +14 -0
- package/dist/runtime/editor/features/search/Overlay/index.vue +183 -0
- package/dist/runtime/editor/features/search/Overlay/index.vue.d.ts +14 -0
- package/dist/runtime/editor/features/search/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/search/index.vue +76 -0
- package/dist/runtime/editor/features/search/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/search/types.d.ts +73 -0
- package/dist/runtime/editor/features/search/types.js +0 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.d.vue.ts +33 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +591 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue.d.ts +33 -0
- package/dist/runtime/editor/features/selection/AddButtons/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/selection/AddButtons/index.vue +395 -0
- package/dist/runtime/editor/features/selection/AddButtons/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/selection/Renderer/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/selection/Renderer/index.vue +279 -0
- package/dist/runtime/editor/features/selection/Renderer/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/selection/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/selection/index.vue +304 -0
- package/dist/runtime/editor/features/selection/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +126 -0
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/settings/Dialog/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/settings/Dialog/index.vue +130 -0
- package/dist/runtime/editor/features/settings/Dialog/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/settings/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/settings/index.vue +77 -0
- package/dist/runtime/editor/features/settings/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/structure/List/Field/index.d.vue.ts +16 -0
- package/dist/runtime/editor/features/structure/List/Field/index.vue +145 -0
- package/dist/runtime/editor/features/structure/List/Field/index.vue.d.ts +16 -0
- package/dist/runtime/editor/features/structure/List/Item/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/structure/List/Item/index.vue +129 -0
- package/dist/runtime/editor/features/structure/List/Item/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/structure/List/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/structure/List/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/structure/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/structure/index.vue +75 -0
- package/dist/runtime/editor/features/structure/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/structure/types.d.ts +11 -0
- package/dist/runtime/editor/features/structure/types.js +0 -0
- package/dist/runtime/editor/features/theme/Color/index.d.vue.ts +8 -0
- package/dist/runtime/editor/features/theme/Color/index.vue +64 -0
- package/dist/runtime/editor/features/theme/Color/index.vue.d.ts +8 -0
- package/dist/runtime/editor/features/theme/GeneratedCode/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/theme/GeneratedCode/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/theme/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/theme/index.vue +109 -0
- package/dist/runtime/editor/features/theme/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/touch-action-bar/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/touch-action-bar/index.vue +40 -0
- package/dist/runtime/editor/features/touch-action-bar/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/tour/Overlay/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/tour/Overlay/index.vue +218 -0
- package/dist/runtime/editor/features/tour/Overlay/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/tour/Popup/index.d.vue.ts +9 -0
- package/dist/runtime/editor/features/tour/Popup/index.vue +34 -0
- package/dist/runtime/editor/features/tour/Popup/index.vue.d.ts +9 -0
- package/dist/runtime/editor/features/tour/docs.md +0 -0
- package/dist/runtime/editor/features/tour/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/tour/index.vue +44 -0
- package/dist/runtime/editor/features/tour/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/tour/types.d.ts +6 -0
- package/dist/runtime/editor/features/tour/types.js +0 -0
- package/dist/runtime/editor/features/transform/Dialog/index.d.vue.ts +14 -0
- package/dist/runtime/editor/features/transform/Dialog/index.vue +221 -0
- package/dist/runtime/editor/features/transform/Dialog/index.vue.d.ts +14 -0
- package/dist/runtime/editor/features/transform/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/transform/index.vue +247 -0
- package/dist/runtime/editor/features/transform/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/transform/types.d.ts +105 -0
- package/dist/runtime/editor/features/transform/types.js +0 -0
- package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/translations/Banner/index.vue +48 -0
- package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/translations/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/translations/index.vue +211 -0
- package/dist/runtime/editor/features/translations/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/translations/types.d.ts +16 -0
- package/dist/runtime/editor/features/translations/types.js +0 -0
- package/dist/runtime/editor/features/validations/Overlay/Item.d.vue.ts +7 -0
- package/dist/runtime/editor/features/validations/Overlay/Item.vue +36 -0
- package/dist/runtime/editor/features/validations/Overlay/Item.vue.d.ts +7 -0
- package/dist/runtime/editor/features/validations/Overlay/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/validations/Overlay/index.vue +42 -0
- package/dist/runtime/editor/features/validations/Overlay/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/validations/SidebarItem/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/validations/SidebarItem/index.vue +41 -0
- package/dist/runtime/editor/features/validations/SidebarItem/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/validations/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/validations/index.vue +64 -0
- package/dist/runtime/editor/features/validations/index.vue.d.ts +3 -0
- package/dist/runtime/editor/helpers/array/index.d.ts +1 -0
- package/dist/runtime/editor/helpers/array/index.js +4 -0
- package/dist/runtime/editor/helpers/bundles/index.js +8 -0
- package/dist/runtime/editor/helpers/color/index.d.ts +6 -0
- package/dist/runtime/editor/helpers/color/index.js +48 -0
- package/dist/runtime/editor/helpers/date/index.d.ts +0 -0
- package/dist/runtime/editor/helpers/date/index.js +0 -0
- package/dist/runtime/editor/helpers/dom/index.d.ts +75 -0
- package/dist/runtime/editor/helpers/dom/index.js +107 -0
- package/dist/runtime/editor/helpers/dragStyle/index.d.ts +12 -0
- package/dist/runtime/editor/helpers/dragStyle/index.js +93 -0
- package/dist/runtime/editor/helpers/dropTargets/index.d.ts +6 -0
- package/dist/runtime/editor/helpers/dropTargets/index.js +68 -0
- package/dist/runtime/editor/helpers/geometry/index.d.ts +43 -0
- package/dist/runtime/editor/helpers/geometry/index.js +191 -0
- package/dist/runtime/editor/helpers/math/index.d.ts +3 -0
- package/dist/runtime/editor/helpers/math/index.js +10 -0
- package/dist/runtime/editor/helpers/uuid/index.d.ts +1 -0
- package/dist/runtime/editor/helpers/uuid/index.js +18 -0
- package/dist/runtime/editor/helpers/webgl/index.d.ts +45 -0
- package/dist/runtime/editor/helpers/webgl/index.js +315 -0
- package/dist/runtime/editor/icons/material-icons.d.ts +12 -0
- package/dist/runtime/editor/icons/material-icons.js +1 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.d.vue.ts +65 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.vue +65 -0
- package/dist/runtime/editor/plugins/BlockIndicator/index.vue.d.ts +65 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.d.vue.ts +13 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +75 -0
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue.d.ts +13 -0
- package/dist/runtime/editor/plugins/ContextMenu/index.d.vue.ts +36 -0
- package/dist/runtime/editor/plugins/ContextMenu/index.vue +39 -0
- package/dist/runtime/editor/plugins/ContextMenu/index.vue.d.ts +36 -0
- package/dist/runtime/editor/plugins/DebugOverlay/index.d.vue.ts +23 -0
- package/dist/runtime/editor/plugins/DebugOverlay/index.vue.d.ts +23 -0
- package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +85 -0
- package/dist/runtime/editor/plugins/ItemAction/index.vue +93 -0
- package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +85 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +47 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +281 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +47 -0
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +228 -0
- package/dist/runtime/editor/plugins/Sidebar/index.vue +267 -0
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +228 -0
- package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +165 -0
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue +91 -0
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +165 -0
- package/dist/runtime/editor/plugins/TourItem/index.d.vue.ts +41 -0
- package/dist/runtime/editor/plugins/TourItem/index.vue +50 -0
- package/dist/runtime/editor/plugins/TourItem/index.vue.d.ts +41 -0
- package/dist/runtime/editor/plugins/ViewOption/index.d.vue.ts +139 -0
- package/dist/runtime/editor/plugins/ViewOption/index.vue +98 -0
- package/dist/runtime/editor/plugins/ViewOption/index.vue.d.ts +139 -0
- package/dist/runtime/editor/providers/animation.d.ts +204 -0
- package/dist/runtime/editor/providers/animation.js +518 -0
- package/dist/runtime/editor/providers/blocks.d.ts +32 -0
- package/dist/runtime/editor/providers/blocks.js +113 -0
- package/dist/runtime/editor/providers/commands.d.ts +41 -0
- package/dist/runtime/editor/providers/commands.js +16 -0
- package/dist/runtime/editor/providers/debug.d.ts +126 -0
- package/dist/runtime/editor/providers/debug.js +132 -0
- package/dist/runtime/editor/providers/definition.d.ts +87 -0
- package/dist/runtime/editor/providers/directive.d.ts +116 -0
- package/dist/runtime/editor/providers/directive.js +241 -0
- package/dist/runtime/editor/providers/dom.d.ts +228 -0
- package/dist/runtime/editor/providers/dom.js +519 -0
- package/dist/runtime/editor/providers/dropArea.d.ts +48 -0
- package/dist/runtime/editor/providers/dropArea.js +22 -0
- package/dist/runtime/editor/providers/features.d.ts +57 -0
- package/dist/runtime/editor/providers/features.js +53 -0
- package/dist/runtime/editor/providers/fields.d.ts +23 -0
- package/dist/runtime/editor/providers/fields.js +47 -0
- package/dist/runtime/editor/providers/icons.d.ts +6 -0
- package/dist/runtime/editor/providers/icons.js +16 -0
- package/dist/runtime/editor/providers/indicators.d.ts +44 -0
- package/dist/runtime/editor/providers/keyboard.d.ts +77 -0
- package/dist/runtime/editor/providers/keyboard.js +98 -0
- package/dist/runtime/editor/providers/plugin.d.ts +81 -0
- package/dist/runtime/editor/providers/selection.d.ts +84 -0
- package/dist/runtime/editor/providers/selection.js +159 -0
- package/dist/runtime/editor/providers/state.d.ts +248 -0
- package/dist/runtime/editor/providers/state.js +408 -0
- package/dist/runtime/editor/providers/storage.d.ts +64 -0
- package/dist/runtime/editor/providers/storage.js +118 -0
- package/dist/runtime/editor/providers/texts.d.ts +4 -0
- package/dist/runtime/editor/providers/texts.js +29 -0
- package/dist/runtime/editor/providers/theme.d.ts +119 -0
- package/dist/runtime/editor/providers/theme.js +140 -0
- package/dist/runtime/editor/providers/tour.d.ts +49 -0
- package/dist/runtime/editor/providers/tour.js +19 -0
- package/dist/runtime/editor/providers/types.d.ts +174 -0
- package/dist/runtime/editor/providers/types.js +166 -0
- package/dist/runtime/editor/providers/ui.d.ts +350 -0
- package/dist/runtime/editor/providers/ui.js +406 -0
- package/dist/runtime/editor/types/actions.d.ts +18 -0
- package/dist/runtime/editor/types/actions.js +0 -0
- package/dist/runtime/editor/types/app.d.ts +59 -0
- package/dist/runtime/editor/types/app.js +0 -0
- package/dist/runtime/editor/types/definitions.d.ts +18 -0
- package/dist/runtime/editor/types/definitions.js +0 -0
- package/dist/runtime/editor/types/draggable.d.ts +9 -0
- package/dist/runtime/editor/types/draggable.js +0 -0
- package/dist/runtime/editor/types/features.d.ts +9 -0
- package/dist/runtime/editor/types/features.js +0 -0
- package/dist/runtime/editor/types/field.d.ts +58 -0
- package/dist/runtime/editor/types/field.js +0 -0
- package/dist/runtime/editor/types/geometry.d.ts +9 -0
- package/dist/runtime/editor/types/geometry.js +0 -0
- package/dist/runtime/editor/types/index.d.ts +1 -0
- package/dist/runtime/editor/types/index.js +0 -0
- package/dist/runtime/editor/types/pluginConfig.d.ts +48 -0
- package/dist/runtime/editor/types/pluginConfig.js +0 -0
- package/dist/runtime/editor/types/selection.d.ts +6 -0
- package/dist/runtime/editor/types/selection.js +0 -0
- package/dist/runtime/editor/types/state.d.ts +76 -0
- package/dist/runtime/editor/types/state.js +0 -0
- package/dist/runtime/editor/types/style.d.ts +29 -0
- package/dist/runtime/editor/types/style.js +0 -0
- package/dist/runtime/editor/types/ui.d.ts +44 -0
- package/dist/runtime/editor/types/ui.js +0 -0
- package/dist/runtime/helpers/index.d.ts +0 -71
- package/dist/runtime/helpers/index.js +0 -326
- package/dist/runtime/helpers/injections.d.ts +127 -0
- package/dist/runtime/helpers/injections.js +69 -0
- package/dist/runtime/helpers/runtimeHelpers/index.js +8 -5
- package/dist/runtime/plugins/blokkliDirectives.d.ts +1 -1
- package/dist/runtime/plugins/blokkliDirectives.js +1 -1
- package/dist/runtime/types/blockOptions.d.ts +2 -348
- package/dist/runtime/types/definitions.d.ts +124 -0
- package/dist/runtime/types/definitions.js +0 -0
- package/dist/runtime/types/directives.d.ts +1 -0
- package/dist/runtime/types/directives.js +0 -0
- package/dist/runtime/types/field.d.ts +26 -0
- package/dist/runtime/types/field.js +0 -0
- package/dist/runtime/types/index.d.ts +2 -1400
- package/dist/runtime/types/provider.d.ts +5 -0
- package/dist/runtime/types/provider.js +0 -0
- package/dist/runtime/types/vue.d.ts +1 -0
- package/dist/runtime/types/vue.js +0 -0
- package/dist/shared/editor.DHqea16T.d.mts +462 -0
- package/dist/types.d.mts +3 -1
- package/package.json +87 -53
- package/dist/runtime/adapter/index.d.ts +0 -516
- package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue +0 -65
- package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue.d.ts +0 -64
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +0 -75
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue.d.ts +0 -12
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +0 -39
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +0 -35
- package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +0 -22
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue +0 -94
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +0 -85
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +0 -278
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +0 -46
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +0 -270
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +0 -227
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +0 -92
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +0 -164
- package/dist/runtime/blokkliPlugins/TourItem/index.vue +0 -50
- package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +0 -40
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue +0 -99
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +0 -138
- package/dist/runtime/components/Blocks/Fragment/icon.svg +0 -1
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue +0 -66
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Actions/index.vue +0 -195
- package/dist/runtime/components/Edit/Actions/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/AddListItem/index.vue +0 -66
- package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +0 -453
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/AppMenu/MenuButton.vue +0 -39
- package/dist/runtime/components/Edit/AppMenu/MenuButton.vue.d.ts +0 -28
- package/dist/runtime/components/Edit/AppMenu/index.vue +0 -79
- package/dist/runtime/components/Edit/AppMenu/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +0 -89
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +0 -32
- package/dist/runtime/components/Edit/Banner/index.vue +0 -51
- package/dist/runtime/components/Edit/Banner/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/BlockProxy/index.vue +0 -88
- package/dist/runtime/components/Edit/BlockProxy/index.vue.d.ts +0 -10
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +0 -47
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +0 -25
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue +0 -96
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Dialog/index.vue +0 -135
- package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +0 -48
- package/dist/runtime/components/Edit/DiffViewer/State.vue +0 -276
- package/dist/runtime/components/Edit/DiffViewer/State.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/DraggableList.vue +0 -142
- package/dist/runtime/components/Edit/DraggableList.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/EditIndicator.vue +0 -151
- package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/EditProvider.vue +0 -382
- package/dist/runtime/components/Edit/EditProvider.vue.d.ts +0 -29
- package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue +0 -53
- package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue +0 -41
- package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue +0 -274
- package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/AddList/index.vue +0 -147
- package/dist/runtime/components/Edit/Features/AddList/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Analyze/Icon.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/Analyze/Main.vue +0 -385
- package/dist/runtime/components/Edit/Features/Analyze/Main.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue +0 -260
- package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue.d.ts +0 -21
- package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue +0 -102
- package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue +0 -56
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue.d.ts +0 -21
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue +0 -80
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +0 -123
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/Analyze/Results/Status.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Analyze/Summary/Chart.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue +0 -77
- package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.js +0 -76
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.d.ts +0 -33
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/readability.js +0 -206
- package/dist/runtime/components/Edit/Features/Analyze/index.vue +0 -69
- package/dist/runtime/components/Edit/Features/Analyze/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Anchors/Overlay/index.vue +0 -53
- package/dist/runtime/components/Edit/Features/Anchors/Overlay/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Anchors/index.vue +0 -32
- package/dist/runtime/components/Edit/Features/Anchors/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +0 -119
- package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +0 -320
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Artboard/index.vue +0 -92
- package/dist/runtime/components/Edit/Features/Artboard/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +0 -108
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Assistant/index.vue +0 -65
- package/dist/runtime/components/Edit/Features/Assistant/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue +0 -154
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +0 -232
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +0 -96
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue.d.ts +0 -3
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +0 -54
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue.d.ts +0 -3
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +0 -72
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue.d.ts +0 -10
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +0 -606
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +0 -49
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +0 -229
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +0 -52
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +0 -44
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +0 -10
- package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +0 -45
- package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue.d.ts +0 -23
- package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +0 -94
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +0 -112
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Features/Comments/index.vue +0 -111
- package/dist/runtime/components/Edit/Features/Comments/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +0 -84
- package/dist/runtime/components/Edit/Features/Conversions/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/Debug/Main.vue +0 -80
- package/dist/runtime/components/Edit/Features/Debug/Main.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +0 -60
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Features.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue +0 -15
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue +0 -66
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue +0 -96
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +0 -98
- package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Debug/index.vue +0 -31
- package/dist/runtime/components/Edit/Features/Debug/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Delete/index.vue +0 -66
- package/dist/runtime/components/Edit/Features/Delete/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +0 -20
- package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Diff/index.vue +0 -35
- package/dist/runtime/components/Edit/Features/Diff/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue +0 -113
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue.d.ts +0 -25
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +0 -219
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue +0 -749
- package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue.d.ts +0 -27
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +0 -335
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue +0 -91
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Edit/index.vue +0 -76
- package/dist/runtime/components/Edit/Features/Edit/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +0 -70
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/EditForm/index.vue +0 -176
- package/dist/runtime/components/Edit/Features/EditForm/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +0 -117
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +0 -74
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -248
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +0 -151
- package/dist/runtime/components/Edit/Features/EditableField/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EditableMask/index.vue +0 -39
- package/dist/runtime/components/Edit/Features/EditableMask/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +0 -137
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Exit/index.vue +0 -38
- package/dist/runtime/components/Edit/Features/Exit/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +0 -57
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +0 -122
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Fragments/index.vue +0 -74
- package/dist/runtime/components/Edit/Features/Fragments/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Grid/index.vue +0 -37
- package/dist/runtime/components/Edit/Features/Grid/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +0 -60
- package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Help/index.vue +0 -49
- package/dist/runtime/components/Edit/Features/Help/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/History/List/index.vue +0 -128
- package/dist/runtime/components/Edit/Features/History/List/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/History/index.vue +0 -149
- package/dist/runtime/components/Edit/Features/History/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue +0 -448
- package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Hover/index.vue +0 -28
- package/dist/runtime/components/Edit/Features/Hover/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +0 -127
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue.d.ts +0 -14
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +0 -81
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -166
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +0 -67
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +0 -155
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +0 -99
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Library/index.vue +0 -197
- package/dist/runtime/components/Edit/Features/Library/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +0 -40
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +0 -187
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +0 -108
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +0 -57
- package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue +0 -297
- package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +0 -69
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +0 -46
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +0 -112
- package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue.d.ts +0 -24
- package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +0 -23
- package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +0 -186
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +0 -64
- package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue.d.ts +0 -21
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +0 -129
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +0 -36
- package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +0 -383
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Options/index.vue +0 -84
- package/dist/runtime/components/Edit/Features/Options/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Ownership/Banner/index.vue +0 -35
- package/dist/runtime/components/Edit/Features/Ownership/Banner/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +0 -32
- package/dist/runtime/components/Edit/Features/Ownership/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Preview/index.vue +0 -41
- package/dist/runtime/components/Edit/Features/Preview/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue.d.ts +0 -5
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +0 -71
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/ProxyView/index.vue +0 -40
- package/dist/runtime/components/Edit/Features/ProxyView/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +0 -145
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue +0 -47
- package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +0 -83
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +0 -577
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Publish/Dialog/types.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Publish/index.vue +0 -133
- package/dist/runtime/components/Edit/Features/Publish/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +0 -76
- package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +0 -193
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Revert/index.vue +0 -69
- package/dist/runtime/components/Edit/Features/Revert/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +0 -167
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +0 -171
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +0 -183
- package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Search/index.vue +0 -76
- package/dist/runtime/components/Edit/Features/Search/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +0 -182
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +0 -17
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +0 -551
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +0 -32
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +0 -392
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue +0 -281
- package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Selection/index.vue +0 -306
- package/dist/runtime/components/Edit/Features/Selection/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +0 -126
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +0 -130
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Settings/index.vue +0 -78
- package/dist/runtime/components/Edit/Features/Settings/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +0 -145
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +0 -128
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Structure/List/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/Structure/index.vue +0 -75
- package/dist/runtime/components/Edit/Features/Structure/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +0 -64
- package/dist/runtime/components/Edit/Features/Theme/Color/index.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Theme/index.vue +0 -109
- package/dist/runtime/components/Edit/Features/Theme/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +0 -40
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +0 -218
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +0 -34
- package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Features/Tour/index.vue +0 -44
- package/dist/runtime/components/Edit/Features/Tour/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +0 -221
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/Features/Transform/index.vue +0 -234
- package/dist/runtime/components/Edit/Features/Transform/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +0 -48
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Translations/index.vue +0 -212
- package/dist/runtime/components/Edit/Features/Translations/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +0 -36
- package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +0 -42
- package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +0 -42
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue.d.ts +0 -9
- package/dist/runtime/components/Edit/Features/Validations/index.vue +0 -64
- package/dist/runtime/components/Edit/Features/Validations/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue +0 -43
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Datepicker/index.vue +0 -198
- package/dist/runtime/components/Edit/Form/Datepicker/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/Form/Radio/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/RadioTabs/index.vue.d.ts +0 -22
- package/dist/runtime/components/Edit/Form/Select/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +0 -24
- package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +0 -28
- package/dist/runtime/components/Edit/FormOverlay/Header/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/FormOverlay/index.vue +0 -55
- package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +0 -26
- package/dist/runtime/components/Edit/Highlight/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Icon/index.vue +0 -18
- package/dist/runtime/components/Edit/Icon/index.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Indicators/index.vue +0 -123
- package/dist/runtime/components/Edit/Indicators/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/InfoBox/index.vue +0 -18
- package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/ItemIcon/index.vue +0 -28
- package/dist/runtime/components/Edit/ItemIcon/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/ItemIconBox/index.vue +0 -41
- package/dist/runtime/components/Edit/ItemIconBox/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue +0 -66
- package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue.d.ts +0 -7
- package/dist/runtime/components/Edit/Konami/Game/index.vue +0 -751
- package/dist/runtime/components/Edit/Konami/Game/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Konami/Game/useIconRendering.d.ts +0 -9
- package/dist/runtime/components/Edit/Konami/Game/useIconRendering.js +0 -130
- package/dist/runtime/components/Edit/Konami/index.vue +0 -42
- package/dist/runtime/components/Edit/Konami/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Loading/index.vue +0 -22
- package/dist/runtime/components/Edit/Loading/index.vue.d.ts +0 -8
- package/dist/runtime/components/Edit/Messages/Item/index.vue +0 -105
- package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/Messages/index.vue +0 -41
- package/dist/runtime/components/Edit/Messages/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Overlay/index.vue +0 -70
- package/dist/runtime/components/Edit/Overlay/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Pagination/index.vue +0 -19
- package/dist/runtime/components/Edit/Pagination/index.vue.d.ts +0 -12
- package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue +0 -17
- package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue +0 -37
- package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue +0 -43
- package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue.d.ts +0 -11
- package/dist/runtime/components/Edit/PluginConfigForm/index.vue +0 -57
- package/dist/runtime/components/Edit/PluginConfigForm/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/PreviewProvider.vue +0 -176
- package/dist/runtime/components/Edit/PreviewProvider.vue.d.ts +0 -24
- package/dist/runtime/components/Edit/RelativeTime/index.vue +0 -32
- package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +0 -13
- package/dist/runtime/components/Edit/ScaleToFit/index.vue +0 -70
- package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +0 -15
- package/dist/runtime/components/Edit/ScheduleDate/index.vue +0 -131
- package/dist/runtime/components/Edit/ScheduleDate/index.vue.d.ts +0 -23
- package/dist/runtime/components/Edit/ScrollBoundary/index.vue +0 -23
- package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +0 -86
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue.d.ts +0 -20
- package/dist/runtime/components/Edit/Sortli/index.vue +0 -80
- package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +0 -16
- package/dist/runtime/components/Edit/SystemRequirements/index.vue +0 -77
- package/dist/runtime/components/Edit/SystemRequirements/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Toolbar/index.vue +0 -88
- package/dist/runtime/components/Edit/Toolbar/index.vue.d.ts +0 -6
- package/dist/runtime/components/Edit/Transition/Height.vue.d.ts +0 -36
- package/dist/runtime/components/Edit/Transition/index.vue.d.ts +0 -19
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +0 -60
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +0 -18
- package/dist/runtime/components/Edit/index.d.ts +0 -36
- package/dist/runtime/components/Edit/index.js +0 -72
- package/dist/runtime/constants/index.d.ts +0 -7
- package/dist/runtime/constants/index.js +0 -11
- package/dist/runtime/css/output.css +0 -1
- package/dist/runtime/helpers/DragStyle/index.d.ts +0 -12
- package/dist/runtime/helpers/DragStyle/index.js +0 -86
- package/dist/runtime/helpers/bundles/index.js +0 -4
- package/dist/runtime/helpers/composables/defineAddAction.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineAddAction.js +0 -10
- package/dist/runtime/helpers/composables/defineCommands.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineCommands.js +0 -10
- package/dist/runtime/helpers/composables/defineDropAreas.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineDropAreas.js +0 -10
- package/dist/runtime/helpers/composables/defineItemDropdownAction.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineItemDropdownAction.js +0 -10
- package/dist/runtime/helpers/composables/defineMenuButton.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineMenuButton.js +0 -10
- package/dist/runtime/helpers/composables/defineRenderer.d.ts +0 -11
- package/dist/runtime/helpers/composables/defineRenderer.js +0 -9
- package/dist/runtime/helpers/composables/defineShortcut.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineShortcut.js +0 -19
- package/dist/runtime/helpers/composables/defineTourItem.d.ts +0 -2
- package/dist/runtime/helpers/composables/defineTourItem.js +0 -10
- package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +0 -2
- package/dist/runtime/helpers/composables/onBlokkliEvent.js +0 -10
- package/dist/runtime/helpers/composables/onBroadcastEvent.d.ts +0 -2
- package/dist/runtime/helpers/composables/onBroadcastEvent.js +0 -10
- package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +0 -1
- package/dist/runtime/helpers/composables/useAnimationFrame.js +0 -14
- package/dist/runtime/helpers/composables/useDebugLogger.d.ts +0 -2
- package/dist/runtime/helpers/composables/useDebugLogger.js +0 -5
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +0 -5
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +0 -27
- package/dist/runtime/helpers/composables/useDialog.d.ts +0 -3
- package/dist/runtime/helpers/composables/useFocusTrap.d.ts +0 -52
- package/dist/runtime/helpers/composables/useFocusTrap.js +0 -59
- package/dist/runtime/helpers/composables/useGlobalBlokkliObject.d.ts +0 -16
- package/dist/runtime/helpers/composables/useStateBasedCache.d.ts +0 -4
- package/dist/runtime/helpers/composables/useStateBasedCache.js +0 -13
- package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +0 -23
- package/dist/runtime/helpers/composables/useStickyToolbar.js +0 -233
- package/dist/runtime/helpers/composables/useTransitionedValue.d.ts +0 -18
- package/dist/runtime/helpers/composables/useTransitionedValue.js +0 -57
- package/dist/runtime/helpers/dom/index.d.ts +0 -65
- package/dist/runtime/helpers/dom/index.js +0 -85
- package/dist/runtime/helpers/dropTargets/index.d.ts +0 -6
- package/dist/runtime/helpers/dropTargets/index.js +0 -63
- package/dist/runtime/helpers/eventBus.d.ts +0 -3
- package/dist/runtime/helpers/eventBus.js +0 -5
- package/dist/runtime/helpers/frameEventBus.d.ts +0 -9
- package/dist/runtime/helpers/frameEventBus.js +0 -2
- package/dist/runtime/helpers/providers/animation.d.ts +0 -203
- package/dist/runtime/helpers/providers/animation.js +0 -517
- package/dist/runtime/helpers/providers/blocks.d.ts +0 -32
- package/dist/runtime/helpers/providers/blocks.js +0 -110
- package/dist/runtime/helpers/providers/commands.d.ts +0 -41
- package/dist/runtime/helpers/providers/commands.js +0 -16
- package/dist/runtime/helpers/providers/debug.d.ts +0 -125
- package/dist/runtime/helpers/providers/debug.js +0 -133
- package/dist/runtime/helpers/providers/definition.d.ts +0 -87
- package/dist/runtime/helpers/providers/directive.d.ts +0 -114
- package/dist/runtime/helpers/providers/directive.js +0 -239
- package/dist/runtime/helpers/providers/dom.d.ts +0 -225
- package/dist/runtime/helpers/providers/dom.js +0 -517
- package/dist/runtime/helpers/providers/dropArea.d.ts +0 -47
- package/dist/runtime/helpers/providers/dropArea.js +0 -22
- package/dist/runtime/helpers/providers/features.d.ts +0 -56
- package/dist/runtime/helpers/providers/features.js +0 -53
- package/dist/runtime/helpers/providers/fields.d.ts +0 -23
- package/dist/runtime/helpers/providers/fields.js +0 -47
- package/dist/runtime/helpers/providers/indicators.d.ts +0 -44
- package/dist/runtime/helpers/providers/keyboard.d.ts +0 -76
- package/dist/runtime/helpers/providers/keyboard.js +0 -99
- package/dist/runtime/helpers/providers/plugin.d.ts +0 -81
- package/dist/runtime/helpers/providers/selection.d.ts +0 -82
- package/dist/runtime/helpers/providers/selection.js +0 -159
- package/dist/runtime/helpers/providers/state.d.ts +0 -227
- package/dist/runtime/helpers/providers/state.js +0 -398
- package/dist/runtime/helpers/providers/storage.d.ts +0 -64
- package/dist/runtime/helpers/providers/storage.js +0 -118
- package/dist/runtime/helpers/providers/texts.d.ts +0 -4
- package/dist/runtime/helpers/providers/texts.js +0 -26
- package/dist/runtime/helpers/providers/theme.d.ts +0 -119
- package/dist/runtime/helpers/providers/theme.js +0 -140
- package/dist/runtime/helpers/providers/tour.d.ts +0 -49
- package/dist/runtime/helpers/providers/tour.js +0 -19
- package/dist/runtime/helpers/providers/types.d.ts +0 -170
- package/dist/runtime/helpers/providers/types.js +0 -166
- package/dist/runtime/helpers/providers/ui.d.ts +0 -339
- package/dist/runtime/helpers/providers/ui.js +0 -393
- package/dist/runtime/helpers/symbols.d.ts +0 -26
- package/dist/runtime/helpers/symbols.js +0 -30
- package/dist/runtime/helpers/transform.d.ts +0 -2
- package/dist/runtime/helpers/transform.js +0 -15
- package/dist/runtime/helpers/webgl/index.d.ts +0 -45
- package/dist/runtime/helpers/webgl/index.js +0 -315
- package/dist/runtime/icons/alert.svg +0 -6
- package/dist/runtime/icons/anchor.svg +0 -1
- package/dist/runtime/icons/area.svg +0 -5
- package/dist/runtime/icons/arrow-down.svg +0 -1
- package/dist/runtime/icons/arrow-left.svg +0 -1
- package/dist/runtime/icons/arrow-right.svg +0 -1
- package/dist/runtime/icons/arrow-top-right.svg +0 -1
- package/dist/runtime/icons/arrow-up.svg +0 -1
- package/dist/runtime/icons/artboard-disabled.svg +0 -9
- package/dist/runtime/icons/artboard-enabled.svg +0 -29
- package/dist/runtime/icons/bug.svg +0 -1
- package/dist/runtime/icons/button-pointer.svg +0 -1
- package/dist/runtime/icons/calendar-clock.svg +0 -1
- package/dist/runtime/icons/calendar.svg +0 -1
- package/dist/runtime/icons/caret.svg +0 -12
- package/dist/runtime/icons/cellphone.svg +0 -1
- package/dist/runtime/icons/chart.svg +0 -1
- package/dist/runtime/icons/chat-question.svg +0 -1
- package/dist/runtime/icons/check.svg +0 -1
- package/dist/runtime/icons/checkbox.svg +0 -5
- package/dist/runtime/icons/checks.svg +0 -1
- package/dist/runtime/icons/chevron-left.svg +0 -1
- package/dist/runtime/icons/chevron-right.svg +0 -1
- package/dist/runtime/icons/click.svg +0 -1
- package/dist/runtime/icons/clipboard.svg +0 -5
- package/dist/runtime/icons/clock.svg +0 -1
- package/dist/runtime/icons/close.svg +0 -5
- package/dist/runtime/icons/cog.svg +0 -5
- package/dist/runtime/icons/command.svg +0 -1
- package/dist/runtime/icons/comment.svg +0 -5
- package/dist/runtime/icons/comment_add.svg +0 -1
- package/dist/runtime/icons/convert.svg +0 -1
- package/dist/runtime/icons/copy.svg +0 -1
- package/dist/runtime/icons/cursor-move.svg +0 -1
- package/dist/runtime/icons/dead.svg +0 -1
- package/dist/runtime/icons/delete.svg +0 -1
- package/dist/runtime/icons/diff.svg +0 -1
- package/dist/runtime/icons/dock-left.svg +0 -1
- package/dist/runtime/icons/dock-right.svg +0 -1
- package/dist/runtime/icons/drag.svg +0 -1
- package/dist/runtime/icons/edit.svg +0 -1
- package/dist/runtime/icons/exit.svg +0 -6
- package/dist/runtime/icons/expand.svg +0 -1
- package/dist/runtime/icons/eye-off.svg +0 -1
- package/dist/runtime/icons/eye.svg +0 -1
- package/dist/runtime/icons/file.svg +0 -1
- package/dist/runtime/icons/form.svg +0 -1
- package/dist/runtime/icons/fragment.svg +0 -1
- package/dist/runtime/icons/grid.svg +0 -13
- package/dist/runtime/icons/group.svg +0 -5
- package/dist/runtime/icons/help.svg +0 -1
- package/dist/runtime/icons/history.svg +0 -1
- package/dist/runtime/icons/image.svg +0 -1
- package/dist/runtime/icons/import.svg +0 -5
- package/dist/runtime/icons/info.svg +0 -1
- package/dist/runtime/icons/laptop.svg +0 -1
- package/dist/runtime/icons/link.svg +0 -1
- package/dist/runtime/icons/list-view-grid.svg +0 -1
- package/dist/runtime/icons/list-view-horizontal.svg +0 -1
- package/dist/runtime/icons/magnifier.svg +0 -5
- package/dist/runtime/icons/menu.svg +0 -1
- package/dist/runtime/icons/minus.svg +0 -1
- package/dist/runtime/icons/monitor.svg +0 -1
- package/dist/runtime/icons/multi-select.svg +0 -1
- package/dist/runtime/icons/multimedia.svg +0 -1
- package/dist/runtime/icons/opacity.svg +0 -5
- package/dist/runtime/icons/open_in_new.svg +0 -3
- package/dist/runtime/icons/palette.svg +0 -1
- package/dist/runtime/icons/plus-box.svg +0 -1
- package/dist/runtime/icons/plus.svg +0 -1
- package/dist/runtime/icons/preview.svg +0 -5
- package/dist/runtime/icons/publish.svg +0 -12
- package/dist/runtime/icons/puzzle.svg +0 -1
- package/dist/runtime/icons/qrcode.svg +0 -5
- package/dist/runtime/icons/question.svg +0 -5
- package/dist/runtime/icons/redo.svg +0 -12
- package/dist/runtime/icons/resize.svg +0 -1
- package/dist/runtime/icons/revert.svg +0 -5
- package/dist/runtime/icons/rotate-phone.svg +0 -1
- package/dist/runtime/icons/sad.svg +0 -1
- package/dist/runtime/icons/save.svg +0 -1
- package/dist/runtime/icons/script.svg +0 -1
- package/dist/runtime/icons/scrolltotop.svg +0 -6
- package/dist/runtime/icons/search.svg +0 -1
- package/dist/runtime/icons/selection.svg +0 -5
- package/dist/runtime/icons/speedometer.svg +0 -1
- package/dist/runtime/icons/swap-horizontal.svg +0 -1
- package/dist/runtime/icons/tablet.svg +0 -1
- package/dist/runtime/icons/textbox.svg +0 -1
- package/dist/runtime/icons/texturebox.svg +0 -5
- package/dist/runtime/icons/title.svg +0 -1
- package/dist/runtime/icons/tools.svg +0 -1
- package/dist/runtime/icons/translate.svg +0 -5
- package/dist/runtime/icons/tree.svg +0 -5
- package/dist/runtime/icons/tutor.svg +0 -1
- package/dist/runtime/icons/ui-list-horizontal.svg +0 -19
- package/dist/runtime/icons/ui-list-sidebar.svg +0 -21
- package/dist/runtime/icons/ui-list-vertical.svg +0 -9
- package/dist/runtime/icons/undo.svg +0 -12
- package/dist/runtime/icons/upload.svg +0 -1
- package/dist/runtime/icons/user.svg +0 -1
- package/dist/runtime/icons/video-outline.svg +0 -1
- package/dist/shared/editor.CKsrTpc1.d.mts +0 -431
- /package/dist/{runtime/components/Edit/Features/Analyze/analyzers/types.js → global/types/adapter.js} +0 -0
- /package/dist/{runtime/components/Edit/Features/MediaLibrary/types.js → global/types/blockOptions.js} +0 -0
- /package/dist/{runtime/components/Edit/Features/Publish/Dialog/types.js → global/types/definitions.js} +0 -0
- /package/dist/{runtime/components/Edit/Features/Tour/docs.md → global/types/features.js} +0 -0
- /package/dist/{runtime → global}/types/theme.d.ts +0 -0
- /package/dist/{runtime → global}/types/theme.js +0 -0
- /package/dist/runtime/{adapter → editor/adapter}/index.js +0 -0
- /package/dist/runtime/{components/Edit/Features → editor/components/FeaturesRenderer}/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Group/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Item/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Radio/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/RadioTabs/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Select/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Text/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Textarea/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Form/Toggle/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Highlight/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/blokkli.png +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/charmap.d.ts +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/charmap.js +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/textRendering.d.ts +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/textRendering.js +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Resizable/index.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Transition/Height.vue +0 -0
- /package/dist/runtime/{components/Edit → editor/components}/Transition/index.vue +0 -0
- /package/dist/runtime/{helpers → editor}/composables/addElementClasses.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/composables/addElementClasses.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/defineElementStyle.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/composables/defineElementStyle.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useBlockRegistration.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useBlockRegistration.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useDialog.js +0 -0
- /package/dist/runtime/{helpers → editor}/composables/useGlobalBlokkliObject.js +0 -0
- /package/dist/runtime/{components/Edit/Features/AddList → editor/features/add-list}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Icon.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Results/Status.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Summary/Chart.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/defineAnalyzer.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/defineAnalyzer.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/Context.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/collectTextElements.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/collectTextElements.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/normalizeArray.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/normalizeArray.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/index.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/index.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/readability.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/types.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/helper.d.ts +0 -0
- /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/helper.js +0 -0
- /package/dist/runtime/{components/Edit/Features/Artboard → editor/features/artboard}/Scrollbar/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/Overlay/ResultMarkup/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/List/Item/File.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/CommentInput/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/DebugSection.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Features.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Keyboard.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Selection.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/DraggingOverlay → editor/features/dragging-overlay}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/DraggingOverlay → editor/features/dragging-overlay}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/EditableField → editor/features/editable-field}/Overlay/Contenteditable/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Fragments → editor/features/fragments}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/Hover → editor/features/hover}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Hover → editor/features/hover}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Library → editor/features/library}/docs.md +0 -0
- /package/dist/runtime/{components/Edit/Features/MultiSelect → editor/features/multi-select}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/MultiSelect → editor/features/multi-select}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Color/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/DateTimeLocal/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Range/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Text/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/PreviewGrant → editor/features/preview-grant}/QrCode/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/AddButtons/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/AddButtons/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/Renderer/fragment.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/Renderer/vertex.glsl +0 -0
- /package/dist/runtime/{components/Edit/Features/Structure → editor/features/structure}/List/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Theme → editor/features/theme}/GeneratedCode/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/TouchActionBar → editor/features/touch-action-bar}/Bar/index.vue +0 -0
- /package/dist/runtime/{components/Edit/Features/Transform → editor/features/transform}/docs.md +0 -0
- /package/dist/runtime/{helpers → editor/helpers}/bundles/index.d.ts +0 -0
- /package/dist/runtime/{helpers/easing.d.ts → editor/helpers/easing/index.d.ts} +0 -0
- /package/dist/runtime/{helpers/easing.js → editor/helpers/easing/index.js} +0 -0
- /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.d.ts +0 -0
- /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.js +0 -0
- /package/dist/runtime/{helpers/renderCycle.d.ts → editor/helpers/vue/index.d.ts} +0 -0
- /package/dist/runtime/{helpers/renderCycle.js → editor/helpers/vue/index.js} +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/arrow-right-thin.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/artboard.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/dock-window.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/duplicate.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/loader.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/logo.svg +0 -0
- /package/dist/runtime/{icons/detach.svg → editor/icons/svg/reusable-detach.svg} +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/reusable.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/robot.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/spinner.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/star.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/tiktok.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/unstar.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/vimeo.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/window-maximize.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/window-minimize.svg +0 -0
- /package/dist/runtime/{icons → editor/icons/svg}/youtube.svg +0 -0
- /package/dist/runtime/{blokkliPlugins → editor/plugins}/DebugOverlay/index.vue +0 -0
- /package/dist/runtime/{blokkliPlugins → editor/plugins}/index.d.ts +0 -0
- /package/dist/runtime/{blokkliPlugins → editor/plugins}/index.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/broadcast.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/providers/broadcast.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/definition.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/element.d.ts +0 -0
- /package/dist/runtime/{helpers → editor}/providers/element.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/indicators.js +0 -0
- /package/dist/runtime/{helpers → editor}/providers/plugin.js +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Auto-generated file. Do not edit manually.
|
|
3
|
+
* Run "npm run material-icons" to regenerate.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* All available Material Symbols icon names (rounded style).
|
|
7
|
+
*/
|
|
8
|
+
export type MaterialIconName = 'bk_mdi_10k' | 'bk_mdi_10k-fill' | 'bk_mdi_10mp' | 'bk_mdi_10mp-fill' | 'bk_mdi_11mp' | 'bk_mdi_11mp-fill' | 'bk_mdi_123' | 'bk_mdi_123-fill' | 'bk_mdi_12mp' | 'bk_mdi_12mp-fill' | 'bk_mdi_13mp' | 'bk_mdi_13mp-fill' | 'bk_mdi_14mp' | 'bk_mdi_14mp-fill' | 'bk_mdi_15mp' | 'bk_mdi_15mp-fill' | 'bk_mdi_16mp' | 'bk_mdi_16mp-fill' | 'bk_mdi_17mp' | 'bk_mdi_17mp-fill' | 'bk_mdi_18_up_rating' | 'bk_mdi_18_up_rating-fill' | 'bk_mdi_18mp' | 'bk_mdi_18mp-fill' | 'bk_mdi_19mp' | 'bk_mdi_19mp-fill' | 'bk_mdi_1k' | 'bk_mdi_1k-fill' | 'bk_mdi_1k_plus' | 'bk_mdi_1k_plus-fill' | 'bk_mdi_1x_mobiledata' | 'bk_mdi_1x_mobiledata-fill' | 'bk_mdi_1x_mobiledata_badge' | 'bk_mdi_1x_mobiledata_badge-fill' | 'bk_mdi_20mp' | 'bk_mdi_20mp-fill' | 'bk_mdi_21mp' | 'bk_mdi_21mp-fill' | 'bk_mdi_22mp' | 'bk_mdi_22mp-fill' | 'bk_mdi_23mp' | 'bk_mdi_23mp-fill' | 'bk_mdi_24fps_select' | 'bk_mdi_24fps_select-fill' | 'bk_mdi_24mp' | 'bk_mdi_24mp-fill' | 'bk_mdi_2d' | 'bk_mdi_2d-fill' | 'bk_mdi_2k' | 'bk_mdi_2k-fill' | 'bk_mdi_2k_plus' | 'bk_mdi_2k_plus-fill' | 'bk_mdi_2mp' | 'bk_mdi_2mp-fill' | 'bk_mdi_30fps' | 'bk_mdi_30fps-fill' | 'bk_mdi_30fps_select' | 'bk_mdi_30fps_select-fill' | 'bk_mdi_360' | 'bk_mdi_360-fill' | 'bk_mdi_3d' | 'bk_mdi_3d-fill' | 'bk_mdi_3d_rotation' | 'bk_mdi_3d_rotation-fill' | 'bk_mdi_3g_mobiledata' | 'bk_mdi_3g_mobiledata-fill' | 'bk_mdi_3g_mobiledata_badge' | 'bk_mdi_3g_mobiledata_badge-fill' | 'bk_mdi_3k' | 'bk_mdi_3k-fill' | 'bk_mdi_3k_plus' | 'bk_mdi_3k_plus-fill' | 'bk_mdi_3mp' | 'bk_mdi_3mp-fill' | 'bk_mdi_3p' | 'bk_mdi_3p-fill' | 'bk_mdi_4g_mobiledata' | 'bk_mdi_4g_mobiledata-fill' | 'bk_mdi_4g_mobiledata_badge' | 'bk_mdi_4g_mobiledata_badge-fill' | 'bk_mdi_4g_plus_mobiledata' | 'bk_mdi_4g_plus_mobiledata-fill' | 'bk_mdi_4k' | 'bk_mdi_4k-fill' | 'bk_mdi_4k_plus' | 'bk_mdi_4k_plus-fill' | 'bk_mdi_4mp' | 'bk_mdi_4mp-fill' | 'bk_mdi_50mp' | 'bk_mdi_50mp-fill' | 'bk_mdi_5g' | 'bk_mdi_5g-fill' | 'bk_mdi_5g_mobiledata_badge' | 'bk_mdi_5g_mobiledata_badge-fill' | 'bk_mdi_5k' | 'bk_mdi_5k-fill' | 'bk_mdi_5k_plus' | 'bk_mdi_5k_plus-fill' | 'bk_mdi_5mp' | 'bk_mdi_5mp-fill' | 'bk_mdi_60fps' | 'bk_mdi_60fps-fill' | 'bk_mdi_60fps_select' | 'bk_mdi_60fps_select-fill' | 'bk_mdi_6_ft_apart' | 'bk_mdi_6_ft_apart-fill' | 'bk_mdi_6k' | 'bk_mdi_6k-fill' | 'bk_mdi_6k_plus' | 'bk_mdi_6k_plus-fill' | 'bk_mdi_6mp' | 'bk_mdi_6mp-fill' | 'bk_mdi_7k' | 'bk_mdi_7k-fill' | 'bk_mdi_7k_plus' | 'bk_mdi_7k_plus-fill' | 'bk_mdi_7mp' | 'bk_mdi_7mp-fill' | 'bk_mdi_8k' | 'bk_mdi_8k-fill' | 'bk_mdi_8k_plus' | 'bk_mdi_8k_plus-fill' | 'bk_mdi_8mp' | 'bk_mdi_8mp-fill' | 'bk_mdi_9k' | 'bk_mdi_9k-fill' | 'bk_mdi_9k_plus' | 'bk_mdi_9k_plus-fill' | 'bk_mdi_9mp' | 'bk_mdi_9mp-fill' | 'bk_mdi_abc' | 'bk_mdi_abc-fill' | 'bk_mdi_ac_unit' | 'bk_mdi_ac_unit-fill' | 'bk_mdi_accessibility' | 'bk_mdi_accessibility-fill' | 'bk_mdi_accessibility_new' | 'bk_mdi_accessibility_new-fill' | 'bk_mdi_accessible' | 'bk_mdi_accessible-fill' | 'bk_mdi_accessible_forward' | 'bk_mdi_accessible_forward-fill' | 'bk_mdi_accessible_menu' | 'bk_mdi_accessible_menu-fill' | 'bk_mdi_account_balance' | 'bk_mdi_account_balance-fill' | 'bk_mdi_account_balance_wallet' | 'bk_mdi_account_balance_wallet-fill' | 'bk_mdi_account_box' | 'bk_mdi_account_box-fill' | 'bk_mdi_account_child' | 'bk_mdi_account_child-fill' | 'bk_mdi_account_child_invert' | 'bk_mdi_account_child_invert-fill' | 'bk_mdi_account_circle' | 'bk_mdi_account_circle-fill' | 'bk_mdi_account_circle_off' | 'bk_mdi_account_circle_off-fill' | 'bk_mdi_account_tree' | 'bk_mdi_account_tree-fill' | 'bk_mdi_action_key' | 'bk_mdi_action_key-fill' | 'bk_mdi_activity_zone' | 'bk_mdi_activity_zone-fill' | 'bk_mdi_acupuncture' | 'bk_mdi_acupuncture-fill' | 'bk_mdi_acute' | 'bk_mdi_acute-fill' | 'bk_mdi_ad' | 'bk_mdi_ad-fill' | 'bk_mdi_ad_group' | 'bk_mdi_ad_group-fill' | 'bk_mdi_ad_group_off' | 'bk_mdi_ad_group_off-fill' | 'bk_mdi_ad_off' | 'bk_mdi_ad_off-fill' | 'bk_mdi_adaptive_audio_mic' | 'bk_mdi_adaptive_audio_mic-fill' | 'bk_mdi_adaptive_audio_mic_off' | 'bk_mdi_adaptive_audio_mic_off-fill' | 'bk_mdi_adb' | 'bk_mdi_adb-fill' | 'bk_mdi_add' | 'bk_mdi_add-fill' | 'bk_mdi_add_2' | 'bk_mdi_add_2-fill' | 'bk_mdi_add_a_photo' | 'bk_mdi_add_a_photo-fill' | 'bk_mdi_add_ad' | 'bk_mdi_add_ad-fill' | 'bk_mdi_add_alert' | 'bk_mdi_add_alert-fill' | 'bk_mdi_add_box' | 'bk_mdi_add_box-fill' | 'bk_mdi_add_business' | 'bk_mdi_add_business-fill' | 'bk_mdi_add_call' | 'bk_mdi_add_call-fill' | 'bk_mdi_add_card' | 'bk_mdi_add_card-fill' | 'bk_mdi_add_chart' | 'bk_mdi_add_chart-fill' | 'bk_mdi_add_circle' | 'bk_mdi_add_circle-fill' | 'bk_mdi_add_column_left' | 'bk_mdi_add_column_left-fill' | 'bk_mdi_add_column_right' | 'bk_mdi_add_column_right-fill' | 'bk_mdi_add_comment' | 'bk_mdi_add_comment-fill' | 'bk_mdi_add_diamond' | 'bk_mdi_add_diamond-fill' | 'bk_mdi_add_home' | 'bk_mdi_add_home-fill' | 'bk_mdi_add_home_work' | 'bk_mdi_add_home_work-fill' | 'bk_mdi_add_link' | 'bk_mdi_add_link-fill' | 'bk_mdi_add_location' | 'bk_mdi_add_location-fill' | 'bk_mdi_add_location_alt' | 'bk_mdi_add_location_alt-fill' | 'bk_mdi_add_moderator' | 'bk_mdi_add_moderator-fill' | 'bk_mdi_add_notes' | 'bk_mdi_add_notes-fill' | 'bk_mdi_add_photo_alternate' | 'bk_mdi_add_photo_alternate-fill' | 'bk_mdi_add_reaction' | 'bk_mdi_add_reaction-fill' | 'bk_mdi_add_road' | 'bk_mdi_add_road-fill' | 'bk_mdi_add_row_above' | 'bk_mdi_add_row_above-fill' | 'bk_mdi_add_row_below' | 'bk_mdi_add_row_below-fill' | 'bk_mdi_add_shopping_cart' | 'bk_mdi_add_shopping_cart-fill' | 'bk_mdi_add_task' | 'bk_mdi_add_task-fill' | 'bk_mdi_add_to_drive' | 'bk_mdi_add_to_drive-fill' | 'bk_mdi_add_to_queue' | 'bk_mdi_add_to_queue-fill' | 'bk_mdi_add_triangle' | 'bk_mdi_add_triangle-fill' | 'bk_mdi_adf_scanner' | 'bk_mdi_adf_scanner-fill' | 'bk_mdi_adjust' | 'bk_mdi_adjust-fill' | 'bk_mdi_admin_meds' | 'bk_mdi_admin_meds-fill' | 'bk_mdi_admin_panel_settings' | 'bk_mdi_admin_panel_settings-fill' | 'bk_mdi_ads_click' | 'bk_mdi_ads_click-fill' | 'bk_mdi_agender' | 'bk_mdi_agender-fill' | 'bk_mdi_agriculture' | 'bk_mdi_agriculture-fill' | 'bk_mdi_air' | 'bk_mdi_air-fill' | 'bk_mdi_air_freshener' | 'bk_mdi_air_freshener-fill' | 'bk_mdi_air_purifier' | 'bk_mdi_air_purifier-fill' | 'bk_mdi_air_purifier_gen' | 'bk_mdi_air_purifier_gen-fill' | 'bk_mdi_airline_seat_flat' | 'bk_mdi_airline_seat_flat-fill' | 'bk_mdi_airline_seat_flat_angled' | 'bk_mdi_airline_seat_flat_angled-fill' | 'bk_mdi_airline_seat_individual_suite' | 'bk_mdi_airline_seat_individual_suite-fill' | 'bk_mdi_airline_seat_legroom_extra' | 'bk_mdi_airline_seat_legroom_extra-fill' | 'bk_mdi_airline_seat_legroom_normal' | 'bk_mdi_airline_seat_legroom_normal-fill' | 'bk_mdi_airline_seat_legroom_reduced' | 'bk_mdi_airline_seat_legroom_reduced-fill' | 'bk_mdi_airline_seat_recline_extra' | 'bk_mdi_airline_seat_recline_extra-fill' | 'bk_mdi_airline_seat_recline_normal' | 'bk_mdi_airline_seat_recline_normal-fill' | 'bk_mdi_airline_stops' | 'bk_mdi_airline_stops-fill' | 'bk_mdi_airlines' | 'bk_mdi_airlines-fill' | 'bk_mdi_airplane_ticket' | 'bk_mdi_airplane_ticket-fill' | 'bk_mdi_airplanemode_inactive' | 'bk_mdi_airplanemode_inactive-fill' | 'bk_mdi_airplay' | 'bk_mdi_airplay-fill' | 'bk_mdi_airport_shuttle' | 'bk_mdi_airport_shuttle-fill' | 'bk_mdi_airwave' | 'bk_mdi_airwave-fill' | 'bk_mdi_alarm' | 'bk_mdi_alarm-fill' | 'bk_mdi_alarm_add' | 'bk_mdi_alarm_add-fill' | 'bk_mdi_alarm_off' | 'bk_mdi_alarm_off-fill' | 'bk_mdi_alarm_on' | 'bk_mdi_alarm_on-fill' | 'bk_mdi_alarm_pause' | 'bk_mdi_alarm_pause-fill' | 'bk_mdi_alarm_smart_wake' | 'bk_mdi_alarm_smart_wake-fill' | 'bk_mdi_album' | 'bk_mdi_album-fill' | 'bk_mdi_align_center' | 'bk_mdi_align_center-fill' | 'bk_mdi_align_end' | 'bk_mdi_align_end-fill' | 'bk_mdi_align_flex_center' | 'bk_mdi_align_flex_center-fill' | 'bk_mdi_align_flex_end' | 'bk_mdi_align_flex_end-fill' | 'bk_mdi_align_flex_start' | 'bk_mdi_align_flex_start-fill' | 'bk_mdi_align_horizontal_center' | 'bk_mdi_align_horizontal_center-fill' | 'bk_mdi_align_horizontal_left' | 'bk_mdi_align_horizontal_left-fill' | 'bk_mdi_align_horizontal_right' | 'bk_mdi_align_horizontal_right-fill' | 'bk_mdi_align_items_stretch' | 'bk_mdi_align_items_stretch-fill' | 'bk_mdi_align_justify_center' | 'bk_mdi_align_justify_center-fill' | 'bk_mdi_align_justify_flex_end' | 'bk_mdi_align_justify_flex_end-fill' | 'bk_mdi_align_justify_flex_start' | 'bk_mdi_align_justify_flex_start-fill' | 'bk_mdi_align_justify_space_around' | 'bk_mdi_align_justify_space_around-fill' | 'bk_mdi_align_justify_space_between' | 'bk_mdi_align_justify_space_between-fill' | 'bk_mdi_align_justify_space_even' | 'bk_mdi_align_justify_space_even-fill' | 'bk_mdi_align_justify_stretch' | 'bk_mdi_align_justify_stretch-fill' | 'bk_mdi_align_self_stretch' | 'bk_mdi_align_self_stretch-fill' | 'bk_mdi_align_space_around' | 'bk_mdi_align_space_around-fill' | 'bk_mdi_align_space_between' | 'bk_mdi_align_space_between-fill' | 'bk_mdi_align_space_even' | 'bk_mdi_align_space_even-fill' | 'bk_mdi_align_start' | 'bk_mdi_align_start-fill' | 'bk_mdi_align_stretch' | 'bk_mdi_align_stretch-fill' | 'bk_mdi_align_vertical_bottom' | 'bk_mdi_align_vertical_bottom-fill' | 'bk_mdi_align_vertical_center' | 'bk_mdi_align_vertical_center-fill' | 'bk_mdi_align_vertical_top' | 'bk_mdi_align_vertical_top-fill' | 'bk_mdi_all_inbox' | 'bk_mdi_all_inbox-fill' | 'bk_mdi_all_inclusive' | 'bk_mdi_all_inclusive-fill' | 'bk_mdi_all_match' | 'bk_mdi_all_match-fill' | 'bk_mdi_all_out' | 'bk_mdi_all_out-fill' | 'bk_mdi_allergies' | 'bk_mdi_allergies-fill' | 'bk_mdi_allergy' | 'bk_mdi_allergy-fill' | 'bk_mdi_alt_route' | 'bk_mdi_alt_route-fill' | 'bk_mdi_alternate_email' | 'bk_mdi_alternate_email-fill' | 'bk_mdi_altitude' | 'bk_mdi_altitude-fill' | 'bk_mdi_ambulance' | 'bk_mdi_ambulance-fill' | 'bk_mdi_amend' | 'bk_mdi_amend-fill' | 'bk_mdi_amp_stories' | 'bk_mdi_amp_stories-fill' | 'bk_mdi_analytics' | 'bk_mdi_analytics-fill' | 'bk_mdi_anchor' | 'bk_mdi_anchor-fill' | 'bk_mdi_android' | 'bk_mdi_android-fill' | 'bk_mdi_android_cell_4_bar' | 'bk_mdi_android_cell_4_bar-fill' | 'bk_mdi_android_cell_4_bar_alert' | 'bk_mdi_android_cell_4_bar_alert-fill' | 'bk_mdi_android_cell_4_bar_off' | 'bk_mdi_android_cell_4_bar_off-fill' | 'bk_mdi_android_cell_4_bar_plus' | 'bk_mdi_android_cell_4_bar_plus-fill' | 'bk_mdi_android_cell_5_bar' | 'bk_mdi_android_cell_5_bar-fill' | 'bk_mdi_android_cell_5_bar_alert' | 'bk_mdi_android_cell_5_bar_alert-fill' | 'bk_mdi_android_cell_5_bar_off' | 'bk_mdi_android_cell_5_bar_off-fill' | 'bk_mdi_android_cell_5_bar_plus' | 'bk_mdi_android_cell_5_bar_plus-fill' | 'bk_mdi_android_cell_dual_4_bar' | 'bk_mdi_android_cell_dual_4_bar-fill' | 'bk_mdi_android_cell_dual_4_bar_alert' | 'bk_mdi_android_cell_dual_4_bar_alert-fill' | 'bk_mdi_android_cell_dual_4_bar_plus' | 'bk_mdi_android_cell_dual_4_bar_plus-fill' | 'bk_mdi_android_cell_dual_5_bar' | 'bk_mdi_android_cell_dual_5_bar-fill' | 'bk_mdi_android_cell_dual_5_bar_alert' | 'bk_mdi_android_cell_dual_5_bar_alert-fill' | 'bk_mdi_android_cell_dual_5_bar_plus' | 'bk_mdi_android_cell_dual_5_bar_plus-fill' | 'bk_mdi_android_wifi_3_bar' | 'bk_mdi_android_wifi_3_bar-fill' | 'bk_mdi_android_wifi_3_bar_alert' | 'bk_mdi_android_wifi_3_bar_alert-fill' | 'bk_mdi_android_wifi_3_bar_lock' | 'bk_mdi_android_wifi_3_bar_lock-fill' | 'bk_mdi_android_wifi_3_bar_off' | 'bk_mdi_android_wifi_3_bar_off-fill' | 'bk_mdi_android_wifi_3_bar_plus' | 'bk_mdi_android_wifi_3_bar_plus-fill' | 'bk_mdi_android_wifi_3_bar_question' | 'bk_mdi_android_wifi_3_bar_question-fill' | 'bk_mdi_android_wifi_4_bar' | 'bk_mdi_android_wifi_4_bar-fill' | 'bk_mdi_android_wifi_4_bar_alert' | 'bk_mdi_android_wifi_4_bar_alert-fill' | 'bk_mdi_android_wifi_4_bar_lock' | 'bk_mdi_android_wifi_4_bar_lock-fill' | 'bk_mdi_android_wifi_4_bar_off' | 'bk_mdi_android_wifi_4_bar_off-fill' | 'bk_mdi_android_wifi_4_bar_plus' | 'bk_mdi_android_wifi_4_bar_plus-fill' | 'bk_mdi_android_wifi_4_bar_question' | 'bk_mdi_android_wifi_4_bar_question-fill' | 'bk_mdi_animated_images' | 'bk_mdi_animated_images-fill' | 'bk_mdi_animation' | 'bk_mdi_animation-fill' | 'bk_mdi_aod_tablet' | 'bk_mdi_aod_tablet-fill' | 'bk_mdi_aod_watch' | 'bk_mdi_aod_watch-fill' | 'bk_mdi_apartment' | 'bk_mdi_apartment-fill' | 'bk_mdi_api' | 'bk_mdi_api-fill' | 'bk_mdi_apk_document' | 'bk_mdi_apk_document-fill' | 'bk_mdi_apk_install' | 'bk_mdi_apk_install-fill' | 'bk_mdi_app_badging' | 'bk_mdi_app_badging-fill' | 'bk_mdi_app_registration' | 'bk_mdi_app_registration-fill' | 'bk_mdi_apparel' | 'bk_mdi_apparel-fill' | 'bk_mdi_approval' | 'bk_mdi_approval-fill' | 'bk_mdi_approval_delegation' | 'bk_mdi_approval_delegation-fill' | 'bk_mdi_approval_delegation_off' | 'bk_mdi_approval_delegation_off-fill' | 'bk_mdi_apps' | 'bk_mdi_apps-fill' | 'bk_mdi_apps_outage' | 'bk_mdi_apps_outage-fill' | 'bk_mdi_aq' | 'bk_mdi_aq-fill' | 'bk_mdi_aq_indoor' | 'bk_mdi_aq_indoor-fill' | 'bk_mdi_ar_on_you' | 'bk_mdi_ar_on_you-fill' | 'bk_mdi_ar_stickers' | 'bk_mdi_ar_stickers-fill' | 'bk_mdi_architecture' | 'bk_mdi_architecture-fill' | 'bk_mdi_archive' | 'bk_mdi_archive-fill' | 'bk_mdi_area_chart' | 'bk_mdi_area_chart-fill' | 'bk_mdi_arming_countdown' | 'bk_mdi_arming_countdown-fill' | 'bk_mdi_arrow_and_edge' | 'bk_mdi_arrow_and_edge-fill' | 'bk_mdi_arrow_back' | 'bk_mdi_arrow_back-fill' | 'bk_mdi_arrow_back_2' | 'bk_mdi_arrow_back_2-fill' | 'bk_mdi_arrow_back_ios' | 'bk_mdi_arrow_back_ios-fill' | 'bk_mdi_arrow_back_ios_new' | 'bk_mdi_arrow_back_ios_new-fill' | 'bk_mdi_arrow_circle_down' | 'bk_mdi_arrow_circle_down-fill' | 'bk_mdi_arrow_circle_left' | 'bk_mdi_arrow_circle_left-fill' | 'bk_mdi_arrow_circle_right' | 'bk_mdi_arrow_circle_right-fill' | 'bk_mdi_arrow_circle_up' | 'bk_mdi_arrow_circle_up-fill' | 'bk_mdi_arrow_cool_down' | 'bk_mdi_arrow_cool_down-fill' | 'bk_mdi_arrow_downward' | 'bk_mdi_arrow_downward-fill' | 'bk_mdi_arrow_downward_alt' | 'bk_mdi_arrow_downward_alt-fill' | 'bk_mdi_arrow_drop_down' | 'bk_mdi_arrow_drop_down-fill' | 'bk_mdi_arrow_drop_down_circle' | 'bk_mdi_arrow_drop_down_circle-fill' | 'bk_mdi_arrow_drop_up' | 'bk_mdi_arrow_drop_up-fill' | 'bk_mdi_arrow_forward' | 'bk_mdi_arrow_forward-fill' | 'bk_mdi_arrow_forward_ios' | 'bk_mdi_arrow_forward_ios-fill' | 'bk_mdi_arrow_insert' | 'bk_mdi_arrow_insert-fill' | 'bk_mdi_arrow_left' | 'bk_mdi_arrow_left-fill' | 'bk_mdi_arrow_left_alt' | 'bk_mdi_arrow_left_alt-fill' | 'bk_mdi_arrow_menu_close' | 'bk_mdi_arrow_menu_close-fill' | 'bk_mdi_arrow_menu_open' | 'bk_mdi_arrow_menu_open-fill' | 'bk_mdi_arrow_or_edge' | 'bk_mdi_arrow_or_edge-fill' | 'bk_mdi_arrow_outward' | 'bk_mdi_arrow_outward-fill' | 'bk_mdi_arrow_range' | 'bk_mdi_arrow_range-fill' | 'bk_mdi_arrow_right' | 'bk_mdi_arrow_right-fill' | 'bk_mdi_arrow_right_alt' | 'bk_mdi_arrow_right_alt-fill' | 'bk_mdi_arrow_selector_tool' | 'bk_mdi_arrow_selector_tool-fill' | 'bk_mdi_arrow_shape_up' | 'bk_mdi_arrow_shape_up-fill' | 'bk_mdi_arrow_shape_up_stack' | 'bk_mdi_arrow_shape_up_stack-fill' | 'bk_mdi_arrow_shape_up_stack_2' | 'bk_mdi_arrow_shape_up_stack_2-fill' | 'bk_mdi_arrow_split' | 'bk_mdi_arrow_split-fill' | 'bk_mdi_arrow_top_left' | 'bk_mdi_arrow_top_left-fill' | 'bk_mdi_arrow_top_right' | 'bk_mdi_arrow_top_right-fill' | 'bk_mdi_arrow_upload_progress' | 'bk_mdi_arrow_upload_progress-fill' | 'bk_mdi_arrow_upload_ready' | 'bk_mdi_arrow_upload_ready-fill' | 'bk_mdi_arrow_upward' | 'bk_mdi_arrow_upward-fill' | 'bk_mdi_arrow_upward_alt' | 'bk_mdi_arrow_upward_alt-fill' | 'bk_mdi_arrow_warm_up' | 'bk_mdi_arrow_warm_up-fill' | 'bk_mdi_arrows_input' | 'bk_mdi_arrows_input-fill' | 'bk_mdi_arrows_left_right_circle' | 'bk_mdi_arrows_left_right_circle-fill' | 'bk_mdi_arrows_more_down' | 'bk_mdi_arrows_more_down-fill' | 'bk_mdi_arrows_more_up' | 'bk_mdi_arrows_more_up-fill' | 'bk_mdi_arrows_output' | 'bk_mdi_arrows_output-fill' | 'bk_mdi_arrows_outward' | 'bk_mdi_arrows_outward-fill' | 'bk_mdi_arrows_up_down_circle' | 'bk_mdi_arrows_up_down_circle-fill' | 'bk_mdi_art_track' | 'bk_mdi_art_track-fill' | 'bk_mdi_article' | 'bk_mdi_article-fill' | 'bk_mdi_article_person' | 'bk_mdi_article_person-fill' | 'bk_mdi_article_shortcut' | 'bk_mdi_article_shortcut-fill' | 'bk_mdi_artist' | 'bk_mdi_artist-fill' | 'bk_mdi_aspect_ratio' | 'bk_mdi_aspect_ratio-fill' | 'bk_mdi_assignment' | 'bk_mdi_assignment-fill' | 'bk_mdi_assignment_add' | 'bk_mdi_assignment_add-fill' | 'bk_mdi_assignment_globe' | 'bk_mdi_assignment_globe-fill' | 'bk_mdi_assignment_ind' | 'bk_mdi_assignment_ind-fill' | 'bk_mdi_assignment_late' | 'bk_mdi_assignment_late-fill' | 'bk_mdi_assignment_return' | 'bk_mdi_assignment_return-fill' | 'bk_mdi_assignment_returned' | 'bk_mdi_assignment_returned-fill' | 'bk_mdi_assignment_turned_in' | 'bk_mdi_assignment_turned_in-fill' | 'bk_mdi_assist_walker' | 'bk_mdi_assist_walker-fill' | 'bk_mdi_assistant_device' | 'bk_mdi_assistant_device-fill' | 'bk_mdi_assistant_direction' | 'bk_mdi_assistant_direction-fill' | 'bk_mdi_assistant_navigation' | 'bk_mdi_assistant_navigation-fill' | 'bk_mdi_assistant_on_hub' | 'bk_mdi_assistant_on_hub-fill' | 'bk_mdi_assured_workload' | 'bk_mdi_assured_workload-fill' | 'bk_mdi_asterisk' | 'bk_mdi_asterisk-fill' | 'bk_mdi_atm' | 'bk_mdi_atm-fill' | 'bk_mdi_atr' | 'bk_mdi_atr-fill' | 'bk_mdi_attach_email' | 'bk_mdi_attach_email-fill' | 'bk_mdi_attach_file' | 'bk_mdi_attach_file-fill' | 'bk_mdi_attach_file_add' | 'bk_mdi_attach_file_add-fill' | 'bk_mdi_attach_file_off' | 'bk_mdi_attach_file_off-fill' | 'bk_mdi_attach_money' | 'bk_mdi_attach_money-fill' | 'bk_mdi_attachment' | 'bk_mdi_attachment-fill' | 'bk_mdi_attractions' | 'bk_mdi_attractions-fill' | 'bk_mdi_attribution' | 'bk_mdi_attribution-fill' | 'bk_mdi_audio_description' | 'bk_mdi_audio_description-fill' | 'bk_mdi_audio_file' | 'bk_mdi_audio_file-fill' | 'bk_mdi_audio_video_receiver' | 'bk_mdi_audio_video_receiver-fill' | 'bk_mdi_auto_awesome_mosaic' | 'bk_mdi_auto_awesome_mosaic-fill' | 'bk_mdi_auto_awesome_motion' | 'bk_mdi_auto_awesome_motion-fill' | 'bk_mdi_auto_delete' | 'bk_mdi_auto_delete-fill' | 'bk_mdi_auto_read_pause' | 'bk_mdi_auto_read_pause-fill' | 'bk_mdi_auto_read_play' | 'bk_mdi_auto_read_play-fill' | 'bk_mdi_auto_stories' | 'bk_mdi_auto_stories-fill' | 'bk_mdi_auto_stories_off' | 'bk_mdi_auto_stories_off-fill' | 'bk_mdi_auto_towing' | 'bk_mdi_auto_towing-fill' | 'bk_mdi_auto_transmission' | 'bk_mdi_auto_transmission-fill' | 'bk_mdi_autofps_select' | 'bk_mdi_autofps_select-fill' | 'bk_mdi_automation' | 'bk_mdi_automation-fill' | 'bk_mdi_autopause' | 'bk_mdi_autopause-fill' | 'bk_mdi_autoplay' | 'bk_mdi_autoplay-fill' | 'bk_mdi_autorenew' | 'bk_mdi_autorenew-fill' | 'bk_mdi_autostop' | 'bk_mdi_autostop-fill' | 'bk_mdi_av1' | 'bk_mdi_av1-fill' | 'bk_mdi_av_timer' | 'bk_mdi_av_timer-fill' | 'bk_mdi_avc' | 'bk_mdi_avc-fill' | 'bk_mdi_avg_pace' | 'bk_mdi_avg_pace-fill' | 'bk_mdi_avg_time' | 'bk_mdi_avg_time-fill' | 'bk_mdi_award_meal' | 'bk_mdi_award_meal-fill' | 'bk_mdi_award_star' | 'bk_mdi_award_star-fill' | 'bk_mdi_azm' | 'bk_mdi_azm-fill' | 'bk_mdi_b_circle' | 'bk_mdi_b_circle-fill' | 'bk_mdi_baby_changing_station' | 'bk_mdi_baby_changing_station-fill' | 'bk_mdi_back_hand' | 'bk_mdi_back_hand-fill' | 'bk_mdi_back_to_tab' | 'bk_mdi_back_to_tab-fill' | 'bk_mdi_background_dot_large' | 'bk_mdi_background_dot_large-fill' | 'bk_mdi_background_dot_small' | 'bk_mdi_background_dot_small-fill' | 'bk_mdi_background_grid_small' | 'bk_mdi_background_grid_small-fill' | 'bk_mdi_background_replace' | 'bk_mdi_background_replace-fill' | 'bk_mdi_backlight_high' | 'bk_mdi_backlight_high-fill' | 'bk_mdi_backlight_high_off' | 'bk_mdi_backlight_high_off-fill' | 'bk_mdi_backlight_low' | 'bk_mdi_backlight_low-fill' | 'bk_mdi_backpack' | 'bk_mdi_backpack-fill' | 'bk_mdi_backspace' | 'bk_mdi_backspace-fill' | 'bk_mdi_backup' | 'bk_mdi_backup-fill' | 'bk_mdi_backup_table' | 'bk_mdi_backup_table-fill' | 'bk_mdi_badge' | 'bk_mdi_badge-fill' | 'bk_mdi_badge_critical_battery' | 'bk_mdi_badge_critical_battery-fill' | 'bk_mdi_badminton' | 'bk_mdi_badminton-fill' | 'bk_mdi_bakery_dining' | 'bk_mdi_bakery_dining-fill' | 'bk_mdi_balance' | 'bk_mdi_balance-fill' | 'bk_mdi_balcony' | 'bk_mdi_balcony-fill' | 'bk_mdi_ballot' | 'bk_mdi_ballot-fill' | 'bk_mdi_bar_chart' | 'bk_mdi_bar_chart-fill' | 'bk_mdi_bar_chart_4_bars' | 'bk_mdi_bar_chart_4_bars-fill' | 'bk_mdi_bar_chart_off' | 'bk_mdi_bar_chart_off-fill' | 'bk_mdi_barcode' | 'bk_mdi_barcode-fill' | 'bk_mdi_barcode_reader' | 'bk_mdi_barcode_reader-fill' | 'bk_mdi_barcode_scanner' | 'bk_mdi_barcode_scanner-fill' | 'bk_mdi_barefoot' | 'bk_mdi_barefoot-fill' | 'bk_mdi_batch_prediction' | 'bk_mdi_batch_prediction-fill' | 'bk_mdi_bath_bedrock' | 'bk_mdi_bath_bedrock-fill' | 'bk_mdi_bath_outdoor' | 'bk_mdi_bath_outdoor-fill' | 'bk_mdi_bath_private' | 'bk_mdi_bath_private-fill' | 'bk_mdi_bath_public_large' | 'bk_mdi_bath_public_large-fill' | 'bk_mdi_bath_soak' | 'bk_mdi_bath_soak-fill' | 'bk_mdi_bathroom' | 'bk_mdi_bathroom-fill' | 'bk_mdi_bathtub' | 'bk_mdi_bathtub-fill' | 'bk_mdi_battery_0_bar' | 'bk_mdi_battery_0_bar-fill' | 'bk_mdi_battery_1_bar' | 'bk_mdi_battery_1_bar-fill' | 'bk_mdi_battery_2_bar' | 'bk_mdi_battery_2_bar-fill' | 'bk_mdi_battery_3_bar' | 'bk_mdi_battery_3_bar-fill' | 'bk_mdi_battery_4_bar' | 'bk_mdi_battery_4_bar-fill' | 'bk_mdi_battery_5_bar' | 'bk_mdi_battery_5_bar-fill' | 'bk_mdi_battery_6_bar' | 'bk_mdi_battery_6_bar-fill' | 'bk_mdi_battery_alert' | 'bk_mdi_battery_alert-fill' | 'bk_mdi_battery_android_0' | 'bk_mdi_battery_android_0-fill' | 'bk_mdi_battery_android_1' | 'bk_mdi_battery_android_1-fill' | 'bk_mdi_battery_android_2' | 'bk_mdi_battery_android_2-fill' | 'bk_mdi_battery_android_3' | 'bk_mdi_battery_android_3-fill' | 'bk_mdi_battery_android_4' | 'bk_mdi_battery_android_4-fill' | 'bk_mdi_battery_android_5' | 'bk_mdi_battery_android_5-fill' | 'bk_mdi_battery_android_6' | 'bk_mdi_battery_android_6-fill' | 'bk_mdi_battery_android_alert' | 'bk_mdi_battery_android_alert-fill' | 'bk_mdi_battery_android_bolt' | 'bk_mdi_battery_android_bolt-fill' | 'bk_mdi_battery_android_frame_1' | 'bk_mdi_battery_android_frame_1-fill' | 'bk_mdi_battery_android_frame_2' | 'bk_mdi_battery_android_frame_2-fill' | 'bk_mdi_battery_android_frame_3' | 'bk_mdi_battery_android_frame_3-fill' | 'bk_mdi_battery_android_frame_4' | 'bk_mdi_battery_android_frame_4-fill' | 'bk_mdi_battery_android_frame_5' | 'bk_mdi_battery_android_frame_5-fill' | 'bk_mdi_battery_android_frame_6' | 'bk_mdi_battery_android_frame_6-fill' | 'bk_mdi_battery_android_frame_alert' | 'bk_mdi_battery_android_frame_alert-fill' | 'bk_mdi_battery_android_frame_bolt' | 'bk_mdi_battery_android_frame_bolt-fill' | 'bk_mdi_battery_android_frame_full' | 'bk_mdi_battery_android_frame_full-fill' | 'bk_mdi_battery_android_frame_plus' | 'bk_mdi_battery_android_frame_plus-fill' | 'bk_mdi_battery_android_frame_question' | 'bk_mdi_battery_android_frame_question-fill' | 'bk_mdi_battery_android_frame_share' | 'bk_mdi_battery_android_frame_share-fill' | 'bk_mdi_battery_android_frame_shield' | 'bk_mdi_battery_android_frame_shield-fill' | 'bk_mdi_battery_android_full' | 'bk_mdi_battery_android_full-fill' | 'bk_mdi_battery_android_plus' | 'bk_mdi_battery_android_plus-fill' | 'bk_mdi_battery_android_question' | 'bk_mdi_battery_android_question-fill' | 'bk_mdi_battery_android_share' | 'bk_mdi_battery_android_share-fill' | 'bk_mdi_battery_android_shield' | 'bk_mdi_battery_android_shield-fill' | 'bk_mdi_battery_change' | 'bk_mdi_battery_change-fill' | 'bk_mdi_battery_charging_20' | 'bk_mdi_battery_charging_20-fill' | 'bk_mdi_battery_charging_30' | 'bk_mdi_battery_charging_30-fill' | 'bk_mdi_battery_charging_50' | 'bk_mdi_battery_charging_50-fill' | 'bk_mdi_battery_charging_60' | 'bk_mdi_battery_charging_60-fill' | 'bk_mdi_battery_charging_80' | 'bk_mdi_battery_charging_80-fill' | 'bk_mdi_battery_charging_90' | 'bk_mdi_battery_charging_90-fill' | 'bk_mdi_battery_charging_full' | 'bk_mdi_battery_charging_full-fill' | 'bk_mdi_battery_error' | 'bk_mdi_battery_error-fill' | 'bk_mdi_battery_full' | 'bk_mdi_battery_full-fill' | 'bk_mdi_battery_full_alt' | 'bk_mdi_battery_full_alt-fill' | 'bk_mdi_battery_horiz_000' | 'bk_mdi_battery_horiz_000-fill' | 'bk_mdi_battery_horiz_050' | 'bk_mdi_battery_horiz_050-fill' | 'bk_mdi_battery_horiz_075' | 'bk_mdi_battery_horiz_075-fill' | 'bk_mdi_battery_low' | 'bk_mdi_battery_low-fill' | 'bk_mdi_battery_plus' | 'bk_mdi_battery_plus-fill' | 'bk_mdi_battery_profile' | 'bk_mdi_battery_profile-fill' | 'bk_mdi_battery_share' | 'bk_mdi_battery_share-fill' | 'bk_mdi_battery_status_good' | 'bk_mdi_battery_status_good-fill' | 'bk_mdi_battery_unknown' | 'bk_mdi_battery_unknown-fill' | 'bk_mdi_battery_very_low' | 'bk_mdi_battery_very_low-fill' | 'bk_mdi_beach_access' | 'bk_mdi_beach_access-fill' | 'bk_mdi_bed' | 'bk_mdi_bed-fill' | 'bk_mdi_bedroom_baby' | 'bk_mdi_bedroom_baby-fill' | 'bk_mdi_bedroom_child' | 'bk_mdi_bedroom_child-fill' | 'bk_mdi_bedroom_parent' | 'bk_mdi_bedroom_parent-fill' | 'bk_mdi_bedtime' | 'bk_mdi_bedtime-fill' | 'bk_mdi_bedtime_off' | 'bk_mdi_bedtime_off-fill' | 'bk_mdi_beenhere' | 'bk_mdi_beenhere-fill' | 'bk_mdi_beer_meal' | 'bk_mdi_beer_meal-fill' | 'bk_mdi_bento' | 'bk_mdi_bento-fill' | 'bk_mdi_bia' | 'bk_mdi_bia-fill' | 'bk_mdi_bid_landscape' | 'bk_mdi_bid_landscape-fill' | 'bk_mdi_bid_landscape_disabled' | 'bk_mdi_bid_landscape_disabled-fill' | 'bk_mdi_bigtop_updates' | 'bk_mdi_bigtop_updates-fill' | 'bk_mdi_bike_dock' | 'bk_mdi_bike_dock-fill' | 'bk_mdi_bike_lane' | 'bk_mdi_bike_lane-fill' | 'bk_mdi_bike_scooter' | 'bk_mdi_bike_scooter-fill' | 'bk_mdi_biotech' | 'bk_mdi_biotech-fill' | 'bk_mdi_blanket' | 'bk_mdi_blanket-fill' | 'bk_mdi_blender' | 'bk_mdi_blender-fill' | 'bk_mdi_blind' | 'bk_mdi_blind-fill' | 'bk_mdi_blinds' | 'bk_mdi_blinds-fill' | 'bk_mdi_blinds_closed' | 'bk_mdi_blinds_closed-fill' | 'bk_mdi_block' | 'bk_mdi_block-fill' | 'bk_mdi_blood_pressure' | 'bk_mdi_blood_pressure-fill' | 'bk_mdi_bloodtype' | 'bk_mdi_bloodtype-fill' | 'bk_mdi_bluetooth' | 'bk_mdi_bluetooth-fill' | 'bk_mdi_bluetooth_connected' | 'bk_mdi_bluetooth_connected-fill' | 'bk_mdi_bluetooth_disabled' | 'bk_mdi_bluetooth_disabled-fill' | 'bk_mdi_bluetooth_drive' | 'bk_mdi_bluetooth_drive-fill' | 'bk_mdi_bluetooth_searching' | 'bk_mdi_bluetooth_searching-fill' | 'bk_mdi_blur_circular' | 'bk_mdi_blur_circular-fill' | 'bk_mdi_blur_linear' | 'bk_mdi_blur_linear-fill' | 'bk_mdi_blur_medium' | 'bk_mdi_blur_medium-fill' | 'bk_mdi_blur_off' | 'bk_mdi_blur_off-fill' | 'bk_mdi_blur_on' | 'bk_mdi_blur_on-fill' | 'bk_mdi_blur_short' | 'bk_mdi_blur_short-fill' | 'bk_mdi_boat_bus' | 'bk_mdi_boat_bus-fill' | 'bk_mdi_boat_railway' | 'bk_mdi_boat_railway-fill' | 'bk_mdi_body_fat' | 'bk_mdi_body_fat-fill' | 'bk_mdi_body_system' | 'bk_mdi_body_system-fill' | 'bk_mdi_bolt' | 'bk_mdi_bolt-fill' | 'bk_mdi_bomb' | 'bk_mdi_bomb-fill' | 'bk_mdi_book' | 'bk_mdi_book-fill' | 'bk_mdi_book_2' | 'bk_mdi_book_2-fill' | 'bk_mdi_book_3' | 'bk_mdi_book_3-fill' | 'bk_mdi_book_4' | 'bk_mdi_book_4-fill' | 'bk_mdi_book_5' | 'bk_mdi_book_5-fill' | 'bk_mdi_book_6' | 'bk_mdi_book_6-fill' | 'bk_mdi_book_ribbon' | 'bk_mdi_book_ribbon-fill' | 'bk_mdi_bookmark' | 'bk_mdi_bookmark-fill' | 'bk_mdi_bookmark_add' | 'bk_mdi_bookmark_add-fill' | 'bk_mdi_bookmark_added' | 'bk_mdi_bookmark_added-fill' | 'bk_mdi_bookmark_bag' | 'bk_mdi_bookmark_bag-fill' | 'bk_mdi_bookmark_check' | 'bk_mdi_bookmark_check-fill' | 'bk_mdi_bookmark_flag' | 'bk_mdi_bookmark_flag-fill' | 'bk_mdi_bookmark_heart' | 'bk_mdi_bookmark_heart-fill' | 'bk_mdi_bookmark_manager' | 'bk_mdi_bookmark_manager-fill' | 'bk_mdi_bookmark_remove' | 'bk_mdi_bookmark_remove-fill' | 'bk_mdi_bookmark_stacks' | 'bk_mdi_bookmark_stacks-fill' | 'bk_mdi_bookmark_star' | 'bk_mdi_bookmark_star-fill' | 'bk_mdi_bookmarks' | 'bk_mdi_bookmarks-fill' | 'bk_mdi_books_movies_and_music' | 'bk_mdi_books_movies_and_music-fill' | 'bk_mdi_border_all' | 'bk_mdi_border_all-fill' | 'bk_mdi_border_bottom' | 'bk_mdi_border_bottom-fill' | 'bk_mdi_border_clear' | 'bk_mdi_border_clear-fill' | 'bk_mdi_border_color' | 'bk_mdi_border_color-fill' | 'bk_mdi_border_horizontal' | 'bk_mdi_border_horizontal-fill' | 'bk_mdi_border_inner' | 'bk_mdi_border_inner-fill' | 'bk_mdi_border_left' | 'bk_mdi_border_left-fill' | 'bk_mdi_border_outer' | 'bk_mdi_border_outer-fill' | 'bk_mdi_border_right' | 'bk_mdi_border_right-fill' | 'bk_mdi_border_style' | 'bk_mdi_border_style-fill' | 'bk_mdi_border_top' | 'bk_mdi_border_top-fill' | 'bk_mdi_border_vertical' | 'bk_mdi_border_vertical-fill' | 'bk_mdi_borg' | 'bk_mdi_borg-fill' | 'bk_mdi_bottom_app_bar' | 'bk_mdi_bottom_app_bar-fill' | 'bk_mdi_bottom_drawer' | 'bk_mdi_bottom_drawer-fill' | 'bk_mdi_bottom_navigation' | 'bk_mdi_bottom_navigation-fill' | 'bk_mdi_bottom_panel_close' | 'bk_mdi_bottom_panel_close-fill' | 'bk_mdi_bottom_panel_open' | 'bk_mdi_bottom_panel_open-fill' | 'bk_mdi_bottom_right_click' | 'bk_mdi_bottom_right_click-fill' | 'bk_mdi_bottom_sheets' | 'bk_mdi_bottom_sheets-fill' | 'bk_mdi_box' | 'bk_mdi_box-fill' | 'bk_mdi_box_add' | 'bk_mdi_box_add-fill' | 'bk_mdi_box_edit' | 'bk_mdi_box_edit-fill' | 'bk_mdi_boy' | 'bk_mdi_boy-fill' | 'bk_mdi_brand_awareness' | 'bk_mdi_brand_awareness-fill' | 'bk_mdi_brand_family' | 'bk_mdi_brand_family-fill' | 'bk_mdi_branding_watermark' | 'bk_mdi_branding_watermark-fill' | 'bk_mdi_breakfast_dining' | 'bk_mdi_breakfast_dining-fill' | 'bk_mdi_breaking_news' | 'bk_mdi_breaking_news-fill' | 'bk_mdi_breaking_news_alt_1' | 'bk_mdi_breaking_news_alt_1-fill' | 'bk_mdi_breastfeeding' | 'bk_mdi_breastfeeding-fill' | 'bk_mdi_brick' | 'bk_mdi_brick-fill' | 'bk_mdi_briefcase_meal' | 'bk_mdi_briefcase_meal-fill' | 'bk_mdi_brightness_1' | 'bk_mdi_brightness_1-fill' | 'bk_mdi_brightness_2' | 'bk_mdi_brightness_2-fill' | 'bk_mdi_brightness_3' | 'bk_mdi_brightness_3-fill' | 'bk_mdi_brightness_4' | 'bk_mdi_brightness_4-fill' | 'bk_mdi_brightness_5' | 'bk_mdi_brightness_5-fill' | 'bk_mdi_brightness_6' | 'bk_mdi_brightness_6-fill' | 'bk_mdi_brightness_7' | 'bk_mdi_brightness_7-fill' | 'bk_mdi_brightness_alert' | 'bk_mdi_brightness_alert-fill' | 'bk_mdi_brightness_auto' | 'bk_mdi_brightness_auto-fill' | 'bk_mdi_brightness_empty' | 'bk_mdi_brightness_empty-fill' | 'bk_mdi_brightness_medium' | 'bk_mdi_brightness_medium-fill' | 'bk_mdi_bring_your_own_ip' | 'bk_mdi_bring_your_own_ip-fill' | 'bk_mdi_broadcast_on_home' | 'bk_mdi_broadcast_on_home-fill' | 'bk_mdi_broadcast_on_personal' | 'bk_mdi_broadcast_on_personal-fill' | 'bk_mdi_broken_image' | 'bk_mdi_broken_image-fill' | 'bk_mdi_browse' | 'bk_mdi_browse-fill' | 'bk_mdi_browse_activity' | 'bk_mdi_browse_activity-fill' | 'bk_mdi_browse_gallery' | 'bk_mdi_browse_gallery-fill' | 'bk_mdi_browser_updated' | 'bk_mdi_browser_updated-fill' | 'bk_mdi_brunch_dining' | 'bk_mdi_brunch_dining-fill' | 'bk_mdi_brush' | 'bk_mdi_brush-fill' | 'bk_mdi_bubble' | 'bk_mdi_bubble-fill' | 'bk_mdi_bubble_chart' | 'bk_mdi_bubble_chart-fill' | 'bk_mdi_bubbles' | 'bk_mdi_bubbles-fill' | 'bk_mdi_bucket_check' | 'bk_mdi_bucket_check-fill' | 'bk_mdi_bug_report' | 'bk_mdi_bug_report-fill' | 'bk_mdi_build' | 'bk_mdi_build-fill' | 'bk_mdi_build_circle' | 'bk_mdi_build_circle-fill' | 'bk_mdi_bungalow' | 'bk_mdi_bungalow-fill' | 'bk_mdi_burst_mode' | 'bk_mdi_burst_mode-fill' | 'bk_mdi_bus_alert' | 'bk_mdi_bus_alert-fill' | 'bk_mdi_bus_railway' | 'bk_mdi_bus_railway-fill' | 'bk_mdi_business_center' | 'bk_mdi_business_center-fill' | 'bk_mdi_business_chip' | 'bk_mdi_business_chip-fill' | 'bk_mdi_business_messages' | 'bk_mdi_business_messages-fill' | 'bk_mdi_buttons_alt' | 'bk_mdi_buttons_alt-fill' | 'bk_mdi_cabin' | 'bk_mdi_cabin-fill' | 'bk_mdi_cable' | 'bk_mdi_cable-fill' | 'bk_mdi_cable_car' | 'bk_mdi_cable_car-fill' | 'bk_mdi_cached' | 'bk_mdi_cached-fill' | 'bk_mdi_cadence' | 'bk_mdi_cadence-fill' | 'bk_mdi_cake' | 'bk_mdi_cake-fill' | 'bk_mdi_cake_add' | 'bk_mdi_cake_add-fill' | 'bk_mdi_calculate' | 'bk_mdi_calculate-fill' | 'bk_mdi_calendar_add_on' | 'bk_mdi_calendar_add_on-fill' | 'bk_mdi_calendar_apps_script' | 'bk_mdi_calendar_apps_script-fill' | 'bk_mdi_calendar_check' | 'bk_mdi_calendar_check-fill' | 'bk_mdi_calendar_clock' | 'bk_mdi_calendar_clock-fill' | 'bk_mdi_calendar_lock' | 'bk_mdi_calendar_lock-fill' | 'bk_mdi_calendar_meal' | 'bk_mdi_calendar_meal-fill' | 'bk_mdi_calendar_meal_2' | 'bk_mdi_calendar_meal_2-fill' | 'bk_mdi_calendar_month' | 'bk_mdi_calendar_month-fill' | 'bk_mdi_calendar_today' | 'bk_mdi_calendar_today-fill' | 'bk_mdi_calendar_view_day' | 'bk_mdi_calendar_view_day-fill' | 'bk_mdi_calendar_view_month' | 'bk_mdi_calendar_view_month-fill' | 'bk_mdi_calendar_view_week' | 'bk_mdi_calendar_view_week-fill' | 'bk_mdi_call' | 'bk_mdi_call-fill' | 'bk_mdi_call_end' | 'bk_mdi_call_end-fill' | 'bk_mdi_call_log' | 'bk_mdi_call_log-fill' | 'bk_mdi_call_made' | 'bk_mdi_call_made-fill' | 'bk_mdi_call_merge' | 'bk_mdi_call_merge-fill' | 'bk_mdi_call_missed' | 'bk_mdi_call_missed-fill' | 'bk_mdi_call_missed_outgoing' | 'bk_mdi_call_missed_outgoing-fill' | 'bk_mdi_call_quality' | 'bk_mdi_call_quality-fill' | 'bk_mdi_call_received' | 'bk_mdi_call_received-fill' | 'bk_mdi_call_split' | 'bk_mdi_call_split-fill' | 'bk_mdi_call_to_action' | 'bk_mdi_call_to_action-fill' | 'bk_mdi_camera' | 'bk_mdi_camera-fill' | 'bk_mdi_camera_indoor' | 'bk_mdi_camera_indoor-fill' | 'bk_mdi_camera_outdoor' | 'bk_mdi_camera_outdoor-fill' | 'bk_mdi_camera_roll' | 'bk_mdi_camera_roll-fill' | 'bk_mdi_camera_video' | 'bk_mdi_camera_video-fill' | 'bk_mdi_cameraswitch' | 'bk_mdi_cameraswitch-fill' | 'bk_mdi_campaign' | 'bk_mdi_campaign-fill' | 'bk_mdi_camping' | 'bk_mdi_camping-fill' | 'bk_mdi_cancel' | 'bk_mdi_cancel-fill' | 'bk_mdi_cancel_presentation' | 'bk_mdi_cancel_presentation-fill' | 'bk_mdi_cancel_schedule_send' | 'bk_mdi_cancel_schedule_send-fill' | 'bk_mdi_candle' | 'bk_mdi_candle-fill' | 'bk_mdi_candlestick_chart' | 'bk_mdi_candlestick_chart-fill' | 'bk_mdi_cannabis' | 'bk_mdi_cannabis-fill' | 'bk_mdi_captive_portal' | 'bk_mdi_captive_portal-fill' | 'bk_mdi_capture' | 'bk_mdi_capture-fill' | 'bk_mdi_car_crash' | 'bk_mdi_car_crash-fill' | 'bk_mdi_car_defrost_left' | 'bk_mdi_car_defrost_left-fill' | 'bk_mdi_car_defrost_low_left' | 'bk_mdi_car_defrost_low_left-fill' | 'bk_mdi_car_defrost_low_right' | 'bk_mdi_car_defrost_low_right-fill' | 'bk_mdi_car_defrost_mid_left' | 'bk_mdi_car_defrost_mid_left-fill' | 'bk_mdi_car_defrost_mid_low_left' | 'bk_mdi_car_defrost_mid_low_left-fill' | 'bk_mdi_car_defrost_mid_low_right' | 'bk_mdi_car_defrost_mid_low_right-fill' | 'bk_mdi_car_defrost_mid_right' | 'bk_mdi_car_defrost_mid_right-fill' | 'bk_mdi_car_defrost_right' | 'bk_mdi_car_defrost_right-fill' | 'bk_mdi_car_fan_low_left' | 'bk_mdi_car_fan_low_left-fill' | 'bk_mdi_car_fan_low_mid_left' | 'bk_mdi_car_fan_low_mid_left-fill' | 'bk_mdi_car_fan_low_right' | 'bk_mdi_car_fan_low_right-fill' | 'bk_mdi_car_fan_mid_left' | 'bk_mdi_car_fan_mid_left-fill' | 'bk_mdi_car_fan_mid_low_right' | 'bk_mdi_car_fan_mid_low_right-fill' | 'bk_mdi_car_fan_mid_right' | 'bk_mdi_car_fan_mid_right-fill' | 'bk_mdi_car_fan_recirculate' | 'bk_mdi_car_fan_recirculate-fill' | 'bk_mdi_car_gear' | 'bk_mdi_car_gear-fill' | 'bk_mdi_car_lock' | 'bk_mdi_car_lock-fill' | 'bk_mdi_car_mirror_heat' | 'bk_mdi_car_mirror_heat-fill' | 'bk_mdi_car_rental' | 'bk_mdi_car_rental-fill' | 'bk_mdi_car_repair' | 'bk_mdi_car_repair-fill' | 'bk_mdi_car_tag' | 'bk_mdi_car_tag-fill' | 'bk_mdi_card_membership' | 'bk_mdi_card_membership-fill' | 'bk_mdi_card_travel' | 'bk_mdi_card_travel-fill' | 'bk_mdi_cardio_load' | 'bk_mdi_cardio_load-fill' | 'bk_mdi_cardiology' | 'bk_mdi_cardiology-fill' | 'bk_mdi_cards' | 'bk_mdi_cards-fill' | 'bk_mdi_cards_stack' | 'bk_mdi_cards_stack-fill' | 'bk_mdi_cards_star' | 'bk_mdi_cards_star-fill' | 'bk_mdi_carpenter' | 'bk_mdi_carpenter-fill' | 'bk_mdi_carry_on_bag' | 'bk_mdi_carry_on_bag-fill' | 'bk_mdi_carry_on_bag_checked' | 'bk_mdi_carry_on_bag_checked-fill' | 'bk_mdi_carry_on_bag_inactive' | 'bk_mdi_carry_on_bag_inactive-fill' | 'bk_mdi_carry_on_bag_question' | 'bk_mdi_carry_on_bag_question-fill' | 'bk_mdi_cases' | 'bk_mdi_cases-fill' | 'bk_mdi_casino' | 'bk_mdi_casino-fill' | 'bk_mdi_cast' | 'bk_mdi_cast-fill' | 'bk_mdi_cast_connected' | 'bk_mdi_cast_connected-fill' | 'bk_mdi_cast_for_education' | 'bk_mdi_cast_for_education-fill' | 'bk_mdi_cast_pause' | 'bk_mdi_cast_pause-fill' | 'bk_mdi_cast_warning' | 'bk_mdi_cast_warning-fill' | 'bk_mdi_castle' | 'bk_mdi_castle-fill' | 'bk_mdi_category' | 'bk_mdi_category-fill' | 'bk_mdi_category_search' | 'bk_mdi_category_search-fill' | 'bk_mdi_celebration' | 'bk_mdi_celebration-fill' | 'bk_mdi_cell_merge' | 'bk_mdi_cell_merge-fill' | 'bk_mdi_cell_tower' | 'bk_mdi_cell_tower-fill' | 'bk_mdi_cell_wifi' | 'bk_mdi_cell_wifi-fill' | 'bk_mdi_center_focus_strong' | 'bk_mdi_center_focus_strong-fill' | 'bk_mdi_center_focus_weak' | 'bk_mdi_center_focus_weak-fill' | 'bk_mdi_chair' | 'bk_mdi_chair-fill' | 'bk_mdi_chair_alt' | 'bk_mdi_chair_alt-fill' | 'bk_mdi_chair_counter' | 'bk_mdi_chair_counter-fill' | 'bk_mdi_chair_fireplace' | 'bk_mdi_chair_fireplace-fill' | 'bk_mdi_chair_umbrella' | 'bk_mdi_chair_umbrella-fill' | 'bk_mdi_chalet' | 'bk_mdi_chalet-fill' | 'bk_mdi_change_circle' | 'bk_mdi_change_circle-fill' | 'bk_mdi_change_history' | 'bk_mdi_change_history-fill' | 'bk_mdi_charger' | 'bk_mdi_charger-fill' | 'bk_mdi_chart_data' | 'bk_mdi_chart_data-fill' | 'bk_mdi_chat' | 'bk_mdi_chat-fill' | 'bk_mdi_chat_add_on' | 'bk_mdi_chat_add_on-fill' | 'bk_mdi_chat_apps_script' | 'bk_mdi_chat_apps_script-fill' | 'bk_mdi_chat_bubble' | 'bk_mdi_chat_bubble-fill' | 'bk_mdi_chat_dashed' | 'bk_mdi_chat_dashed-fill' | 'bk_mdi_chat_error' | 'bk_mdi_chat_error-fill' | 'bk_mdi_chat_info' | 'bk_mdi_chat_info-fill' | 'bk_mdi_chat_paste_go' | 'bk_mdi_chat_paste_go-fill' | 'bk_mdi_chat_paste_go_2' | 'bk_mdi_chat_paste_go_2-fill' | 'bk_mdi_check' | 'bk_mdi_check-fill' | 'bk_mdi_check_box' | 'bk_mdi_check_box-fill' | 'bk_mdi_check_box_outline_blank' | 'bk_mdi_check_box_outline_blank-fill' | 'bk_mdi_check_circle' | 'bk_mdi_check_circle-fill' | 'bk_mdi_check_circle_unread' | 'bk_mdi_check_circle_unread-fill' | 'bk_mdi_check_in_out' | 'bk_mdi_check_in_out-fill' | 'bk_mdi_check_indeterminate_small' | 'bk_mdi_check_indeterminate_small-fill' | 'bk_mdi_check_small' | 'bk_mdi_check_small-fill' | 'bk_mdi_checkbook' | 'bk_mdi_checkbook-fill' | 'bk_mdi_checked_bag' | 'bk_mdi_checked_bag-fill' | 'bk_mdi_checked_bag_question' | 'bk_mdi_checked_bag_question-fill' | 'bk_mdi_checklist' | 'bk_mdi_checklist-fill' | 'bk_mdi_checklist_rtl' | 'bk_mdi_checklist_rtl-fill' | 'bk_mdi_checkroom' | 'bk_mdi_checkroom-fill' | 'bk_mdi_cheer' | 'bk_mdi_cheer-fill' | 'bk_mdi_chef_hat' | 'bk_mdi_chef_hat-fill' | 'bk_mdi_chess' | 'bk_mdi_chess-fill' | 'bk_mdi_chess_bishop' | 'bk_mdi_chess_bishop-fill' | 'bk_mdi_chess_bishop_2' | 'bk_mdi_chess_bishop_2-fill' | 'bk_mdi_chess_king' | 'bk_mdi_chess_king-fill' | 'bk_mdi_chess_king_2' | 'bk_mdi_chess_king_2-fill' | 'bk_mdi_chess_knight' | 'bk_mdi_chess_knight-fill' | 'bk_mdi_chess_pawn' | 'bk_mdi_chess_pawn-fill' | 'bk_mdi_chess_pawn_2' | 'bk_mdi_chess_pawn_2-fill' | 'bk_mdi_chess_queen' | 'bk_mdi_chess_queen-fill' | 'bk_mdi_chess_rook' | 'bk_mdi_chess_rook-fill' | 'bk_mdi_chevron_backward' | 'bk_mdi_chevron_backward-fill' | 'bk_mdi_chevron_forward' | 'bk_mdi_chevron_forward-fill' | 'bk_mdi_chevron_left' | 'bk_mdi_chevron_left-fill' | 'bk_mdi_chevron_line_up' | 'bk_mdi_chevron_line_up-fill' | 'bk_mdi_chevron_right' | 'bk_mdi_chevron_right-fill' | 'bk_mdi_child_care' | 'bk_mdi_child_care-fill' | 'bk_mdi_child_friendly' | 'bk_mdi_child_friendly-fill' | 'bk_mdi_child_hat' | 'bk_mdi_child_hat-fill' | 'bk_mdi_chip_extraction' | 'bk_mdi_chip_extraction-fill' | 'bk_mdi_chips' | 'bk_mdi_chips-fill' | 'bk_mdi_chrome_reader_mode' | 'bk_mdi_chrome_reader_mode-fill' | 'bk_mdi_chromecast_2' | 'bk_mdi_chromecast_2-fill' | 'bk_mdi_chromecast_device' | 'bk_mdi_chromecast_device-fill' | 'bk_mdi_chronic' | 'bk_mdi_chronic-fill' | 'bk_mdi_church' | 'bk_mdi_church-fill' | 'bk_mdi_cinematic_blur' | 'bk_mdi_cinematic_blur-fill' | 'bk_mdi_circle' | 'bk_mdi_circle-fill' | 'bk_mdi_circle_circle' | 'bk_mdi_circle_circle-fill' | 'bk_mdi_circle_notifications' | 'bk_mdi_circle_notifications-fill' | 'bk_mdi_circles' | 'bk_mdi_circles-fill' | 'bk_mdi_circles_ext' | 'bk_mdi_circles_ext-fill' | 'bk_mdi_clarify' | 'bk_mdi_clarify-fill' | 'bk_mdi_clean_hands' | 'bk_mdi_clean_hands-fill' | 'bk_mdi_cleaning' | 'bk_mdi_cleaning-fill' | 'bk_mdi_cleaning_bucket' | 'bk_mdi_cleaning_bucket-fill' | 'bk_mdi_cleaning_services' | 'bk_mdi_cleaning_services-fill' | 'bk_mdi_clear_all' | 'bk_mdi_clear_all-fill' | 'bk_mdi_clear_day' | 'bk_mdi_clear_day-fill' | 'bk_mdi_climate_mini_split' | 'bk_mdi_climate_mini_split-fill' | 'bk_mdi_clinical_notes' | 'bk_mdi_clinical_notes-fill' | 'bk_mdi_clock_arrow_down' | 'bk_mdi_clock_arrow_down-fill' | 'bk_mdi_clock_arrow_up' | 'bk_mdi_clock_arrow_up-fill' | 'bk_mdi_clock_loader_10' | 'bk_mdi_clock_loader_10-fill' | 'bk_mdi_clock_loader_20' | 'bk_mdi_clock_loader_20-fill' | 'bk_mdi_clock_loader_40' | 'bk_mdi_clock_loader_40-fill' | 'bk_mdi_clock_loader_60' | 'bk_mdi_clock_loader_60-fill' | 'bk_mdi_clock_loader_80' | 'bk_mdi_clock_loader_80-fill' | 'bk_mdi_clock_loader_90' | 'bk_mdi_clock_loader_90-fill' | 'bk_mdi_close' | 'bk_mdi_close-fill' | 'bk_mdi_close_fullscreen' | 'bk_mdi_close_fullscreen-fill' | 'bk_mdi_close_small' | 'bk_mdi_close_small-fill' | 'bk_mdi_closed_caption' | 'bk_mdi_closed_caption-fill' | 'bk_mdi_closed_caption_add' | 'bk_mdi_closed_caption_add-fill' | 'bk_mdi_closed_caption_disabled' | 'bk_mdi_closed_caption_disabled-fill' | 'bk_mdi_cloud' | 'bk_mdi_cloud-fill' | 'bk_mdi_cloud_alert' | 'bk_mdi_cloud_alert-fill' | 'bk_mdi_cloud_circle' | 'bk_mdi_cloud_circle-fill' | 'bk_mdi_cloud_done' | 'bk_mdi_cloud_done-fill' | 'bk_mdi_cloud_download' | 'bk_mdi_cloud_download-fill' | 'bk_mdi_cloud_lock' | 'bk_mdi_cloud_lock-fill' | 'bk_mdi_cloud_off' | 'bk_mdi_cloud_off-fill' | 'bk_mdi_cloud_sync' | 'bk_mdi_cloud_sync-fill' | 'bk_mdi_cloud_upload' | 'bk_mdi_cloud_upload-fill' | 'bk_mdi_co2' | 'bk_mdi_co2-fill' | 'bk_mdi_co_present' | 'bk_mdi_co_present-fill' | 'bk_mdi_code' | 'bk_mdi_code-fill' | 'bk_mdi_code_blocks' | 'bk_mdi_code_blocks-fill' | 'bk_mdi_code_off' | 'bk_mdi_code_off-fill' | 'bk_mdi_coffee' | 'bk_mdi_coffee-fill' | 'bk_mdi_coffee_maker' | 'bk_mdi_coffee_maker-fill' | 'bk_mdi_cognition' | 'bk_mdi_cognition-fill' | 'bk_mdi_cognition_2' | 'bk_mdi_cognition_2-fill' | 'bk_mdi_collapse_all' | 'bk_mdi_collapse_all-fill' | 'bk_mdi_collapse_content' | 'bk_mdi_collapse_content-fill' | 'bk_mdi_collections_bookmark' | 'bk_mdi_collections_bookmark-fill' | 'bk_mdi_colorize' | 'bk_mdi_colorize-fill' | 'bk_mdi_colors' | 'bk_mdi_colors-fill' | 'bk_mdi_combine_columns' | 'bk_mdi_combine_columns-fill' | 'bk_mdi_comedy_mask' | 'bk_mdi_comedy_mask-fill' | 'bk_mdi_comic_bubble' | 'bk_mdi_comic_bubble-fill' | 'bk_mdi_comment' | 'bk_mdi_comment-fill' | 'bk_mdi_comment_bank' | 'bk_mdi_comment_bank-fill' | 'bk_mdi_comments_disabled' | 'bk_mdi_comments_disabled-fill' | 'bk_mdi_commit' | 'bk_mdi_commit-fill' | 'bk_mdi_communication' | 'bk_mdi_communication-fill' | 'bk_mdi_communities' | 'bk_mdi_communities-fill' | 'bk_mdi_commute' | 'bk_mdi_commute-fill' | 'bk_mdi_compare' | 'bk_mdi_compare-fill' | 'bk_mdi_compare_arrows' | 'bk_mdi_compare_arrows-fill' | 'bk_mdi_compass_calibration' | 'bk_mdi_compass_calibration-fill' | 'bk_mdi_component_exchange' | 'bk_mdi_component_exchange-fill' | 'bk_mdi_compost' | 'bk_mdi_compost-fill' | 'bk_mdi_compress' | 'bk_mdi_compress-fill' | 'bk_mdi_computer' | 'bk_mdi_computer-fill' | 'bk_mdi_computer_arrow_up' | 'bk_mdi_computer_arrow_up-fill' | 'bk_mdi_computer_cancel' | 'bk_mdi_computer_cancel-fill' | 'bk_mdi_computer_sound' | 'bk_mdi_computer_sound-fill' | 'bk_mdi_concierge' | 'bk_mdi_concierge-fill' | 'bk_mdi_conditions' | 'bk_mdi_conditions-fill' | 'bk_mdi_confirmation_number' | 'bk_mdi_confirmation_number-fill' | 'bk_mdi_congenital' | 'bk_mdi_congenital-fill' | 'bk_mdi_connect_without_contact' | 'bk_mdi_connect_without_contact-fill' | 'bk_mdi_connected_tv' | 'bk_mdi_connected_tv-fill' | 'bk_mdi_connecting_airports' | 'bk_mdi_connecting_airports-fill' | 'bk_mdi_construction' | 'bk_mdi_construction-fill' | 'bk_mdi_contact_emergency' | 'bk_mdi_contact_emergency-fill' | 'bk_mdi_contact_mail' | 'bk_mdi_contact_mail-fill' | 'bk_mdi_contact_page' | 'bk_mdi_contact_page-fill' | 'bk_mdi_contact_phone' | 'bk_mdi_contact_phone-fill' | 'bk_mdi_contact_support' | 'bk_mdi_contact_support-fill' | 'bk_mdi_contactless' | 'bk_mdi_contactless-fill' | 'bk_mdi_contactless_off' | 'bk_mdi_contactless_off-fill' | 'bk_mdi_contacts' | 'bk_mdi_contacts-fill' | 'bk_mdi_contacts_product' | 'bk_mdi_contacts_product-fill' | 'bk_mdi_content_copy' | 'bk_mdi_content_copy-fill' | 'bk_mdi_content_cut' | 'bk_mdi_content_cut-fill' | 'bk_mdi_content_paste' | 'bk_mdi_content_paste-fill' | 'bk_mdi_content_paste_go' | 'bk_mdi_content_paste_go-fill' | 'bk_mdi_content_paste_off' | 'bk_mdi_content_paste_off-fill' | 'bk_mdi_content_paste_search' | 'bk_mdi_content_paste_search-fill' | 'bk_mdi_contextual_token' | 'bk_mdi_contextual_token-fill' | 'bk_mdi_contextual_token_add' | 'bk_mdi_contextual_token_add-fill' | 'bk_mdi_contract' | 'bk_mdi_contract-fill' | 'bk_mdi_contract_delete' | 'bk_mdi_contract_delete-fill' | 'bk_mdi_contract_edit' | 'bk_mdi_contract_edit-fill' | 'bk_mdi_contrast' | 'bk_mdi_contrast-fill' | 'bk_mdi_contrast_circle' | 'bk_mdi_contrast_circle-fill' | 'bk_mdi_contrast_rtl_off' | 'bk_mdi_contrast_rtl_off-fill' | 'bk_mdi_contrast_square' | 'bk_mdi_contrast_square-fill' | 'bk_mdi_control_camera' | 'bk_mdi_control_camera-fill' | 'bk_mdi_control_point_duplicate' | 'bk_mdi_control_point_duplicate-fill' | 'bk_mdi_controller_gen' | 'bk_mdi_controller_gen-fill' | 'bk_mdi_conversation' | 'bk_mdi_conversation-fill' | 'bk_mdi_conversion_path' | 'bk_mdi_conversion_path-fill' | 'bk_mdi_conversion_path_off' | 'bk_mdi_conversion_path_off-fill' | 'bk_mdi_convert_to_text' | 'bk_mdi_convert_to_text-fill' | 'bk_mdi_conveyor_belt' | 'bk_mdi_conveyor_belt-fill' | 'bk_mdi_cookie' | 'bk_mdi_cookie-fill' | 'bk_mdi_cookie_off' | 'bk_mdi_cookie_off-fill' | 'bk_mdi_cooking' | 'bk_mdi_cooking-fill' | 'bk_mdi_cool_to_dry' | 'bk_mdi_cool_to_dry-fill' | 'bk_mdi_copy_all' | 'bk_mdi_copy_all-fill' | 'bk_mdi_copyright' | 'bk_mdi_copyright-fill' | 'bk_mdi_coronavirus' | 'bk_mdi_coronavirus-fill' | 'bk_mdi_corporate_fare' | 'bk_mdi_corporate_fare-fill' | 'bk_mdi_cottage' | 'bk_mdi_cottage-fill' | 'bk_mdi_counter_0' | 'bk_mdi_counter_0-fill' | 'bk_mdi_counter_1' | 'bk_mdi_counter_1-fill' | 'bk_mdi_counter_2' | 'bk_mdi_counter_2-fill' | 'bk_mdi_counter_3' | 'bk_mdi_counter_3-fill' | 'bk_mdi_counter_4' | 'bk_mdi_counter_4-fill' | 'bk_mdi_counter_5' | 'bk_mdi_counter_5-fill' | 'bk_mdi_counter_6' | 'bk_mdi_counter_6-fill' | 'bk_mdi_counter_7' | 'bk_mdi_counter_7-fill' | 'bk_mdi_counter_8' | 'bk_mdi_counter_8-fill' | 'bk_mdi_counter_9' | 'bk_mdi_counter_9-fill' | 'bk_mdi_countertops' | 'bk_mdi_countertops-fill' | 'bk_mdi_create_new_folder' | 'bk_mdi_create_new_folder-fill' | 'bk_mdi_credit_card' | 'bk_mdi_credit_card-fill' | 'bk_mdi_credit_card_clock' | 'bk_mdi_credit_card_clock-fill' | 'bk_mdi_credit_card_gear' | 'bk_mdi_credit_card_gear-fill' | 'bk_mdi_credit_card_heart' | 'bk_mdi_credit_card_heart-fill' | 'bk_mdi_credit_card_off' | 'bk_mdi_credit_card_off-fill' | 'bk_mdi_credit_score' | 'bk_mdi_credit_score-fill' | 'bk_mdi_crib' | 'bk_mdi_crib-fill' | 'bk_mdi_crisis_alert' | 'bk_mdi_crisis_alert-fill' | 'bk_mdi_crop' | 'bk_mdi_crop-fill' | 'bk_mdi_crop_16_9' | 'bk_mdi_crop_16_9-fill' | 'bk_mdi_crop_3_2' | 'bk_mdi_crop_3_2-fill' | 'bk_mdi_crop_5_4' | 'bk_mdi_crop_5_4-fill' | 'bk_mdi_crop_7_5' | 'bk_mdi_crop_7_5-fill' | 'bk_mdi_crop_9_16' | 'bk_mdi_crop_9_16-fill' | 'bk_mdi_crop_free' | 'bk_mdi_crop_free-fill' | 'bk_mdi_crop_landscape' | 'bk_mdi_crop_landscape-fill' | 'bk_mdi_crop_portrait' | 'bk_mdi_crop_portrait-fill' | 'bk_mdi_crop_rotate' | 'bk_mdi_crop_rotate-fill' | 'bk_mdi_crop_square' | 'bk_mdi_crop_square-fill' | 'bk_mdi_crossword' | 'bk_mdi_crossword-fill' | 'bk_mdi_crowdsource' | 'bk_mdi_crowdsource-fill' | 'bk_mdi_crown' | 'bk_mdi_crown-fill' | 'bk_mdi_cruelty_free' | 'bk_mdi_cruelty_free-fill' | 'bk_mdi_css' | 'bk_mdi_css-fill' | 'bk_mdi_csv' | 'bk_mdi_csv-fill' | 'bk_mdi_currency_bitcoin' | 'bk_mdi_currency_bitcoin-fill' | 'bk_mdi_currency_exchange' | 'bk_mdi_currency_exchange-fill' | 'bk_mdi_currency_franc' | 'bk_mdi_currency_franc-fill' | 'bk_mdi_currency_lira' | 'bk_mdi_currency_lira-fill' | 'bk_mdi_currency_pound' | 'bk_mdi_currency_pound-fill' | 'bk_mdi_currency_ruble' | 'bk_mdi_currency_ruble-fill' | 'bk_mdi_currency_rupee' | 'bk_mdi_currency_rupee-fill' | 'bk_mdi_currency_rupee_circle' | 'bk_mdi_currency_rupee_circle-fill' | 'bk_mdi_currency_yen' | 'bk_mdi_currency_yen-fill' | 'bk_mdi_currency_yuan' | 'bk_mdi_currency_yuan-fill' | 'bk_mdi_curtains' | 'bk_mdi_curtains-fill' | 'bk_mdi_curtains_closed' | 'bk_mdi_curtains_closed-fill' | 'bk_mdi_custom_typography' | 'bk_mdi_custom_typography-fill' | 'bk_mdi_cycle' | 'bk_mdi_cycle-fill' | 'bk_mdi_cyclone' | 'bk_mdi_cyclone-fill' | 'bk_mdi_dangerous' | 'bk_mdi_dangerous-fill' | 'bk_mdi_dark_mode' | 'bk_mdi_dark_mode-fill' | 'bk_mdi_dashboard' | 'bk_mdi_dashboard-fill' | 'bk_mdi_dashboard_2' | 'bk_mdi_dashboard_2-fill' | 'bk_mdi_dashboard_2_edit' | 'bk_mdi_dashboard_2_edit-fill' | 'bk_mdi_dashboard_2_gear' | 'bk_mdi_dashboard_2_gear-fill' | 'bk_mdi_dashboard_customize' | 'bk_mdi_dashboard_customize-fill' | 'bk_mdi_data_alert' | 'bk_mdi_data_alert-fill' | 'bk_mdi_data_array' | 'bk_mdi_data_array-fill' | 'bk_mdi_data_check' | 'bk_mdi_data_check-fill' | 'bk_mdi_data_exploration' | 'bk_mdi_data_exploration-fill' | 'bk_mdi_data_info_alert' | 'bk_mdi_data_info_alert-fill' | 'bk_mdi_data_loss_prevention' | 'bk_mdi_data_loss_prevention-fill' | 'bk_mdi_data_object' | 'bk_mdi_data_object-fill' | 'bk_mdi_data_saver_on' | 'bk_mdi_data_saver_on-fill' | 'bk_mdi_data_table' | 'bk_mdi_data_table-fill' | 'bk_mdi_data_thresholding' | 'bk_mdi_data_thresholding-fill' | 'bk_mdi_data_usage' | 'bk_mdi_data_usage-fill' | 'bk_mdi_database' | 'bk_mdi_database-fill' | 'bk_mdi_database_off' | 'bk_mdi_database_off-fill' | 'bk_mdi_database_search' | 'bk_mdi_database_search-fill' | 'bk_mdi_database_upload' | 'bk_mdi_database_upload-fill' | 'bk_mdi_dataset' | 'bk_mdi_dataset-fill' | 'bk_mdi_dataset_linked' | 'bk_mdi_dataset_linked-fill' | 'bk_mdi_date_range' | 'bk_mdi_date_range-fill' | 'bk_mdi_deblur' | 'bk_mdi_deblur-fill' | 'bk_mdi_deceased' | 'bk_mdi_deceased-fill' | 'bk_mdi_decimal_decrease' | 'bk_mdi_decimal_decrease-fill' | 'bk_mdi_decimal_increase' | 'bk_mdi_decimal_increase-fill' | 'bk_mdi_deck' | 'bk_mdi_deck-fill' | 'bk_mdi_dehaze' | 'bk_mdi_dehaze-fill' | 'bk_mdi_delete' | 'bk_mdi_delete-fill' | 'bk_mdi_delete_forever' | 'bk_mdi_delete_forever-fill' | 'bk_mdi_delete_history' | 'bk_mdi_delete_history-fill' | 'bk_mdi_delete_sweep' | 'bk_mdi_delete_sweep-fill' | 'bk_mdi_delivery_truck_bolt' | 'bk_mdi_delivery_truck_bolt-fill' | 'bk_mdi_delivery_truck_speed' | 'bk_mdi_delivery_truck_speed-fill' | 'bk_mdi_demography' | 'bk_mdi_demography-fill' | 'bk_mdi_density_large' | 'bk_mdi_density_large-fill' | 'bk_mdi_density_medium' | 'bk_mdi_density_medium-fill' | 'bk_mdi_density_small' | 'bk_mdi_density_small-fill' | 'bk_mdi_dentistry' | 'bk_mdi_dentistry-fill' | 'bk_mdi_departure_board' | 'bk_mdi_departure_board-fill' | 'bk_mdi_deployed_code' | 'bk_mdi_deployed_code-fill' | 'bk_mdi_deployed_code_account' | 'bk_mdi_deployed_code_account-fill' | 'bk_mdi_deployed_code_alert' | 'bk_mdi_deployed_code_alert-fill' | 'bk_mdi_deployed_code_history' | 'bk_mdi_deployed_code_history-fill' | 'bk_mdi_deployed_code_update' | 'bk_mdi_deployed_code_update-fill' | 'bk_mdi_dermatology' | 'bk_mdi_dermatology-fill' | 'bk_mdi_description' | 'bk_mdi_description-fill' | 'bk_mdi_deselect' | 'bk_mdi_deselect-fill' | 'bk_mdi_design_services' | 'bk_mdi_design_services-fill' | 'bk_mdi_desk' | 'bk_mdi_desk-fill' | 'bk_mdi_deskphone' | 'bk_mdi_deskphone-fill' | 'bk_mdi_desktop_access_disabled' | 'bk_mdi_desktop_access_disabled-fill' | 'bk_mdi_desktop_cloud' | 'bk_mdi_desktop_cloud-fill' | 'bk_mdi_desktop_cloud_stack' | 'bk_mdi_desktop_cloud_stack-fill' | 'bk_mdi_desktop_landscape' | 'bk_mdi_desktop_landscape-fill' | 'bk_mdi_desktop_landscape_add' | 'bk_mdi_desktop_landscape_add-fill' | 'bk_mdi_desktop_mac' | 'bk_mdi_desktop_mac-fill' | 'bk_mdi_desktop_portrait' | 'bk_mdi_desktop_portrait-fill' | 'bk_mdi_desktop_windows' | 'bk_mdi_desktop_windows-fill' | 'bk_mdi_destruction' | 'bk_mdi_destruction-fill' | 'bk_mdi_details' | 'bk_mdi_details-fill' | 'bk_mdi_detection_and_zone' | 'bk_mdi_detection_and_zone-fill' | 'bk_mdi_detection_and_zone_off' | 'bk_mdi_detection_and_zone_off-fill' | 'bk_mdi_detector' | 'bk_mdi_detector-fill' | 'bk_mdi_detector_alarm' | 'bk_mdi_detector_alarm-fill' | 'bk_mdi_detector_battery' | 'bk_mdi_detector_battery-fill' | 'bk_mdi_detector_co' | 'bk_mdi_detector_co-fill' | 'bk_mdi_detector_offline' | 'bk_mdi_detector_offline-fill' | 'bk_mdi_detector_smoke' | 'bk_mdi_detector_smoke-fill' | 'bk_mdi_detector_status' | 'bk_mdi_detector_status-fill' | 'bk_mdi_developer_board' | 'bk_mdi_developer_board-fill' | 'bk_mdi_developer_board_off' | 'bk_mdi_developer_board_off-fill' | 'bk_mdi_developer_guide' | 'bk_mdi_developer_guide-fill' | 'bk_mdi_developer_mode_tv' | 'bk_mdi_developer_mode_tv-fill' | 'bk_mdi_device_band' | 'bk_mdi_device_band-fill' | 'bk_mdi_device_hub' | 'bk_mdi_device_hub-fill' | 'bk_mdi_device_thermostat' | 'bk_mdi_device_thermostat-fill' | 'bk_mdi_devices' | 'bk_mdi_devices-fill' | 'bk_mdi_devices_fold' | 'bk_mdi_devices_fold-fill' | 'bk_mdi_devices_fold_2' | 'bk_mdi_devices_fold_2-fill' | 'bk_mdi_devices_off' | 'bk_mdi_devices_off-fill' | 'bk_mdi_devices_other' | 'bk_mdi_devices_other-fill' | 'bk_mdi_devices_wearables' | 'bk_mdi_devices_wearables-fill' | 'bk_mdi_dew_point' | 'bk_mdi_dew_point-fill' | 'bk_mdi_diagnosis' | 'bk_mdi_diagnosis-fill' | 'bk_mdi_diagonal_line' | 'bk_mdi_diagonal_line-fill' | 'bk_mdi_dialer_sip' | 'bk_mdi_dialer_sip-fill' | 'bk_mdi_dialogs' | 'bk_mdi_dialogs-fill' | 'bk_mdi_dialpad' | 'bk_mdi_dialpad-fill' | 'bk_mdi_diamond' | 'bk_mdi_diamond-fill' | 'bk_mdi_diamond_shine' | 'bk_mdi_diamond_shine-fill' | 'bk_mdi_dictionary' | 'bk_mdi_dictionary-fill' | 'bk_mdi_difference' | 'bk_mdi_difference-fill' | 'bk_mdi_digital_out_of_home' | 'bk_mdi_digital_out_of_home-fill' | 'bk_mdi_digital_wellbeing' | 'bk_mdi_digital_wellbeing-fill' | 'bk_mdi_dine_heart' | 'bk_mdi_dine_heart-fill' | 'bk_mdi_dine_in' | 'bk_mdi_dine_in-fill' | 'bk_mdi_dine_lamp' | 'bk_mdi_dine_lamp-fill' | 'bk_mdi_dining' | 'bk_mdi_dining-fill' | 'bk_mdi_dinner_dining' | 'bk_mdi_dinner_dining-fill' | 'bk_mdi_directions' | 'bk_mdi_directions-fill' | 'bk_mdi_directions_alt' | 'bk_mdi_directions_alt-fill' | 'bk_mdi_directions_alt_off' | 'bk_mdi_directions_alt_off-fill' | 'bk_mdi_directions_bike' | 'bk_mdi_directions_bike-fill' | 'bk_mdi_directions_boat' | 'bk_mdi_directions_boat-fill' | 'bk_mdi_directions_bus' | 'bk_mdi_directions_bus-fill' | 'bk_mdi_directions_car' | 'bk_mdi_directions_car-fill' | 'bk_mdi_directions_off' | 'bk_mdi_directions_off-fill' | 'bk_mdi_directions_railway' | 'bk_mdi_directions_railway-fill' | 'bk_mdi_directions_railway_2' | 'bk_mdi_directions_railway_2-fill' | 'bk_mdi_directions_run' | 'bk_mdi_directions_run-fill' | 'bk_mdi_directions_subway' | 'bk_mdi_directions_subway-fill' | 'bk_mdi_directions_walk' | 'bk_mdi_directions_walk-fill' | 'bk_mdi_directory_sync' | 'bk_mdi_directory_sync-fill' | 'bk_mdi_dirty_lens' | 'bk_mdi_dirty_lens-fill' | 'bk_mdi_disabled_by_default' | 'bk_mdi_disabled_by_default-fill' | 'bk_mdi_disabled_visible' | 'bk_mdi_disabled_visible-fill' | 'bk_mdi_disc_full' | 'bk_mdi_disc_full-fill' | 'bk_mdi_discover_tune' | 'bk_mdi_discover_tune-fill' | 'bk_mdi_dishwasher' | 'bk_mdi_dishwasher-fill' | 'bk_mdi_dishwasher_gen' | 'bk_mdi_dishwasher_gen-fill' | 'bk_mdi_display_external_input' | 'bk_mdi_display_external_input-fill' | 'bk_mdi_display_settings' | 'bk_mdi_display_settings-fill' | 'bk_mdi_distance' | 'bk_mdi_distance-fill' | 'bk_mdi_diversity_1' | 'bk_mdi_diversity_1-fill' | 'bk_mdi_diversity_2' | 'bk_mdi_diversity_2-fill' | 'bk_mdi_diversity_3' | 'bk_mdi_diversity_3-fill' | 'bk_mdi_diversity_4' | 'bk_mdi_diversity_4-fill' | 'bk_mdi_dns' | 'bk_mdi_dns-fill' | 'bk_mdi_do_not_disturb_off' | 'bk_mdi_do_not_disturb_off-fill' | 'bk_mdi_do_not_disturb_on' | 'bk_mdi_do_not_disturb_on-fill' | 'bk_mdi_do_not_disturb_on_total_silence' | 'bk_mdi_do_not_disturb_on_total_silence-fill' | 'bk_mdi_do_not_step' | 'bk_mdi_do_not_step-fill' | 'bk_mdi_do_not_touch' | 'bk_mdi_do_not_touch-fill' | 'bk_mdi_dock_to_bottom' | 'bk_mdi_dock_to_bottom-fill' | 'bk_mdi_dock_to_left' | 'bk_mdi_dock_to_left-fill' | 'bk_mdi_dock_to_right' | 'bk_mdi_dock_to_right-fill' | 'bk_mdi_docs' | 'bk_mdi_docs-fill' | 'bk_mdi_docs_add_on' | 'bk_mdi_docs_add_on-fill' | 'bk_mdi_docs_apps_script' | 'bk_mdi_docs_apps_script-fill' | 'bk_mdi_document_scanner' | 'bk_mdi_document_scanner-fill' | 'bk_mdi_document_search' | 'bk_mdi_document_search-fill' | 'bk_mdi_domain' | 'bk_mdi_domain-fill' | 'bk_mdi_domain_add' | 'bk_mdi_domain_add-fill' | 'bk_mdi_domain_disabled' | 'bk_mdi_domain_disabled-fill' | 'bk_mdi_domain_verification' | 'bk_mdi_domain_verification-fill' | 'bk_mdi_domain_verification_off' | 'bk_mdi_domain_verification_off-fill' | 'bk_mdi_domino_mask' | 'bk_mdi_domino_mask-fill' | 'bk_mdi_done_all' | 'bk_mdi_done_all-fill' | 'bk_mdi_done_outline' | 'bk_mdi_done_outline-fill' | 'bk_mdi_donut_large' | 'bk_mdi_donut_large-fill' | 'bk_mdi_donut_small' | 'bk_mdi_donut_small-fill' | 'bk_mdi_door_back' | 'bk_mdi_door_back-fill' | 'bk_mdi_door_front' | 'bk_mdi_door_front-fill' | 'bk_mdi_door_open' | 'bk_mdi_door_open-fill' | 'bk_mdi_door_sensor' | 'bk_mdi_door_sensor-fill' | 'bk_mdi_door_sliding' | 'bk_mdi_door_sliding-fill' | 'bk_mdi_doorbell' | 'bk_mdi_doorbell-fill' | 'bk_mdi_doorbell_3p' | 'bk_mdi_doorbell_3p-fill' | 'bk_mdi_doorbell_chime' | 'bk_mdi_doorbell_chime-fill' | 'bk_mdi_double_arrow' | 'bk_mdi_double_arrow-fill' | 'bk_mdi_downhill_skiing' | 'bk_mdi_downhill_skiing-fill' | 'bk_mdi_download' | 'bk_mdi_download-fill' | 'bk_mdi_download_2' | 'bk_mdi_download_2-fill' | 'bk_mdi_download_done' | 'bk_mdi_download_done-fill' | 'bk_mdi_download_for_offline' | 'bk_mdi_download_for_offline-fill' | 'bk_mdi_downloading' | 'bk_mdi_downloading-fill' | 'bk_mdi_draft' | 'bk_mdi_draft-fill' | 'bk_mdi_draft_orders' | 'bk_mdi_draft_orders-fill' | 'bk_mdi_drafts' | 'bk_mdi_drafts-fill' | 'bk_mdi_drag_click' | 'bk_mdi_drag_click-fill' | 'bk_mdi_drag_handle' | 'bk_mdi_drag_handle-fill' | 'bk_mdi_drag_indicator' | 'bk_mdi_drag_indicator-fill' | 'bk_mdi_drag_pan' | 'bk_mdi_drag_pan-fill' | 'bk_mdi_draw' | 'bk_mdi_draw-fill' | 'bk_mdi_draw_abstract' | 'bk_mdi_draw_abstract-fill' | 'bk_mdi_draw_collage' | 'bk_mdi_draw_collage-fill' | 'bk_mdi_dresser' | 'bk_mdi_dresser-fill' | 'bk_mdi_drive_export' | 'bk_mdi_drive_export-fill' | 'bk_mdi_drive_file_move' | 'bk_mdi_drive_file_move-fill' | 'bk_mdi_drive_folder_upload' | 'bk_mdi_drive_folder_upload-fill' | 'bk_mdi_drone' | 'bk_mdi_drone-fill' | 'bk_mdi_drone_2' | 'bk_mdi_drone_2-fill' | 'bk_mdi_dropdown' | 'bk_mdi_dropdown-fill' | 'bk_mdi_dropper_eye' | 'bk_mdi_dropper_eye-fill' | 'bk_mdi_dry' | 'bk_mdi_dry-fill' | 'bk_mdi_dry_cleaning' | 'bk_mdi_dry_cleaning-fill' | 'bk_mdi_dual_screen' | 'bk_mdi_dual_screen-fill' | 'bk_mdi_duo' | 'bk_mdi_duo-fill' | 'bk_mdi_dvr' | 'bk_mdi_dvr-fill' | 'bk_mdi_dynamic_feed' | 'bk_mdi_dynamic_feed-fill' | 'bk_mdi_dynamic_form' | 'bk_mdi_dynamic_form-fill' | 'bk_mdi_e911_avatar' | 'bk_mdi_e911_avatar-fill' | 'bk_mdi_e911_emergency' | 'bk_mdi_e911_emergency-fill' | 'bk_mdi_e_mobiledata' | 'bk_mdi_e_mobiledata-fill' | 'bk_mdi_e_mobiledata_badge' | 'bk_mdi_e_mobiledata_badge-fill' | 'bk_mdi_ear_sound' | 'bk_mdi_ear_sound-fill' | 'bk_mdi_earbud_case' | 'bk_mdi_earbud_case-fill' | 'bk_mdi_earbud_left' | 'bk_mdi_earbud_left-fill' | 'bk_mdi_earbud_right' | 'bk_mdi_earbud_right-fill' | 'bk_mdi_earbuds' | 'bk_mdi_earbuds-fill' | 'bk_mdi_earbuds_2' | 'bk_mdi_earbuds_2-fill' | 'bk_mdi_earbuds_battery' | 'bk_mdi_earbuds_battery-fill' | 'bk_mdi_early_on' | 'bk_mdi_early_on-fill' | 'bk_mdi_earthquake' | 'bk_mdi_earthquake-fill' | 'bk_mdi_east' | 'bk_mdi_east-fill' | 'bk_mdi_ecg' | 'bk_mdi_ecg-fill' | 'bk_mdi_ecg_heart' | 'bk_mdi_ecg_heart-fill' | 'bk_mdi_eco' | 'bk_mdi_eco-fill' | 'bk_mdi_eda' | 'bk_mdi_eda-fill' | 'bk_mdi_edit' | 'bk_mdi_edit-fill' | 'bk_mdi_edit_arrow_down' | 'bk_mdi_edit_arrow_down-fill' | 'bk_mdi_edit_arrow_up' | 'bk_mdi_edit_arrow_up-fill' | 'bk_mdi_edit_attributes' | 'bk_mdi_edit_attributes-fill' | 'bk_mdi_edit_audio' | 'bk_mdi_edit_audio-fill' | 'bk_mdi_edit_calendar' | 'bk_mdi_edit_calendar-fill' | 'bk_mdi_edit_document' | 'bk_mdi_edit_document-fill' | 'bk_mdi_edit_location' | 'bk_mdi_edit_location-fill' | 'bk_mdi_edit_location_alt' | 'bk_mdi_edit_location_alt-fill' | 'bk_mdi_edit_note' | 'bk_mdi_edit_note-fill' | 'bk_mdi_edit_notifications' | 'bk_mdi_edit_notifications-fill' | 'bk_mdi_edit_off' | 'bk_mdi_edit_off-fill' | 'bk_mdi_edit_road' | 'bk_mdi_edit_road-fill' | 'bk_mdi_edit_square' | 'bk_mdi_edit_square-fill' | 'bk_mdi_editor_choice' | 'bk_mdi_editor_choice-fill' | 'bk_mdi_egg' | 'bk_mdi_egg-fill' | 'bk_mdi_egg_alt' | 'bk_mdi_egg_alt-fill' | 'bk_mdi_eject' | 'bk_mdi_eject-fill' | 'bk_mdi_elderly' | 'bk_mdi_elderly-fill' | 'bk_mdi_elderly_woman' | 'bk_mdi_elderly_woman-fill' | 'bk_mdi_electric_bike' | 'bk_mdi_electric_bike-fill' | 'bk_mdi_electric_bolt' | 'bk_mdi_electric_bolt-fill' | 'bk_mdi_electric_car' | 'bk_mdi_electric_car-fill' | 'bk_mdi_electric_meter' | 'bk_mdi_electric_meter-fill' | 'bk_mdi_electric_moped' | 'bk_mdi_electric_moped-fill' | 'bk_mdi_electric_rickshaw' | 'bk_mdi_electric_rickshaw-fill' | 'bk_mdi_electric_scooter' | 'bk_mdi_electric_scooter-fill' | 'bk_mdi_electrical_services' | 'bk_mdi_electrical_services-fill' | 'bk_mdi_elevation' | 'bk_mdi_elevation-fill' | 'bk_mdi_elevator' | 'bk_mdi_elevator-fill' | 'bk_mdi_emergency' | 'bk_mdi_emergency-fill' | 'bk_mdi_emergency_heat' | 'bk_mdi_emergency_heat-fill' | 'bk_mdi_emergency_heat_2' | 'bk_mdi_emergency_heat_2-fill' | 'bk_mdi_emergency_home' | 'bk_mdi_emergency_home-fill' | 'bk_mdi_emergency_recording' | 'bk_mdi_emergency_recording-fill' | 'bk_mdi_emergency_share' | 'bk_mdi_emergency_share-fill' | 'bk_mdi_emergency_share_off' | 'bk_mdi_emergency_share_off-fill' | 'bk_mdi_emoji_food_beverage' | 'bk_mdi_emoji_food_beverage-fill' | 'bk_mdi_emoji_language' | 'bk_mdi_emoji_language-fill' | 'bk_mdi_emoji_nature' | 'bk_mdi_emoji_nature-fill' | 'bk_mdi_emoji_objects' | 'bk_mdi_emoji_objects-fill' | 'bk_mdi_emoji_people' | 'bk_mdi_emoji_people-fill' | 'bk_mdi_emoji_symbols' | 'bk_mdi_emoji_symbols-fill' | 'bk_mdi_emoji_transportation' | 'bk_mdi_emoji_transportation-fill' | 'bk_mdi_emoticon' | 'bk_mdi_emoticon-fill' | 'bk_mdi_empty_dashboard' | 'bk_mdi_empty_dashboard-fill' | 'bk_mdi_enable' | 'bk_mdi_enable-fill' | 'bk_mdi_encrypted' | 'bk_mdi_encrypted-fill' | 'bk_mdi_encrypted_add' | 'bk_mdi_encrypted_add-fill' | 'bk_mdi_encrypted_add_circle' | 'bk_mdi_encrypted_add_circle-fill' | 'bk_mdi_encrypted_minus_circle' | 'bk_mdi_encrypted_minus_circle-fill' | 'bk_mdi_encrypted_off' | 'bk_mdi_encrypted_off-fill' | 'bk_mdi_endocrinology' | 'bk_mdi_endocrinology-fill' | 'bk_mdi_energy' | 'bk_mdi_energy-fill' | 'bk_mdi_energy_program_saving' | 'bk_mdi_energy_program_saving-fill' | 'bk_mdi_energy_program_time_used' | 'bk_mdi_energy_program_time_used-fill' | 'bk_mdi_energy_savings_leaf' | 'bk_mdi_energy_savings_leaf-fill' | 'bk_mdi_engineering' | 'bk_mdi_engineering-fill' | 'bk_mdi_enhanced_encryption' | 'bk_mdi_enhanced_encryption-fill' | 'bk_mdi_ent' | 'bk_mdi_ent-fill' | 'bk_mdi_enterprise' | 'bk_mdi_enterprise-fill' | 'bk_mdi_enterprise_off' | 'bk_mdi_enterprise_off-fill' | 'bk_mdi_equal' | 'bk_mdi_equal-fill' | 'bk_mdi_equalizer' | 'bk_mdi_equalizer-fill' | 'bk_mdi_eraser_size_1' | 'bk_mdi_eraser_size_1-fill' | 'bk_mdi_eraser_size_2' | 'bk_mdi_eraser_size_2-fill' | 'bk_mdi_eraser_size_3' | 'bk_mdi_eraser_size_3-fill' | 'bk_mdi_eraser_size_4' | 'bk_mdi_eraser_size_4-fill' | 'bk_mdi_eraser_size_5' | 'bk_mdi_eraser_size_5-fill' | 'bk_mdi_error' | 'bk_mdi_error-fill' | 'bk_mdi_error_med' | 'bk_mdi_error_med-fill' | 'bk_mdi_escalator' | 'bk_mdi_escalator-fill' | 'bk_mdi_escalator_warning' | 'bk_mdi_escalator_warning-fill' | 'bk_mdi_euro' | 'bk_mdi_euro-fill' | 'bk_mdi_euro_symbol' | 'bk_mdi_euro_symbol-fill' | 'bk_mdi_ev_mobiledata_badge' | 'bk_mdi_ev_mobiledata_badge-fill' | 'bk_mdi_ev_shadow' | 'bk_mdi_ev_shadow-fill' | 'bk_mdi_ev_shadow_add' | 'bk_mdi_ev_shadow_add-fill' | 'bk_mdi_ev_shadow_minus' | 'bk_mdi_ev_shadow_minus-fill' | 'bk_mdi_ev_station' | 'bk_mdi_ev_station-fill' | 'bk_mdi_event' | 'bk_mdi_event-fill' | 'bk_mdi_event_available' | 'bk_mdi_event_available-fill' | 'bk_mdi_event_busy' | 'bk_mdi_event_busy-fill' | 'bk_mdi_event_list' | 'bk_mdi_event_list-fill' | 'bk_mdi_event_note' | 'bk_mdi_event_note-fill' | 'bk_mdi_event_repeat' | 'bk_mdi_event_repeat-fill' | 'bk_mdi_event_seat' | 'bk_mdi_event_seat-fill' | 'bk_mdi_event_upcoming' | 'bk_mdi_event_upcoming-fill' | 'bk_mdi_exclamation' | 'bk_mdi_exclamation-fill' | 'bk_mdi_exercise' | 'bk_mdi_exercise-fill' | 'bk_mdi_exit_to_app' | 'bk_mdi_exit_to_app-fill' | 'bk_mdi_expand' | 'bk_mdi_expand-fill' | 'bk_mdi_expand_all' | 'bk_mdi_expand_all-fill' | 'bk_mdi_expand_circle_down' | 'bk_mdi_expand_circle_down-fill' | 'bk_mdi_expand_circle_right' | 'bk_mdi_expand_circle_right-fill' | 'bk_mdi_expand_circle_up' | 'bk_mdi_expand_circle_up-fill' | 'bk_mdi_expand_content' | 'bk_mdi_expand_content-fill' | 'bk_mdi_expansion_panels' | 'bk_mdi_expansion_panels-fill' | 'bk_mdi_experiment' | 'bk_mdi_experiment-fill' | 'bk_mdi_explicit' | 'bk_mdi_explicit-fill' | 'bk_mdi_explore' | 'bk_mdi_explore-fill' | 'bk_mdi_explore_nearby' | 'bk_mdi_explore_nearby-fill' | 'bk_mdi_explore_off' | 'bk_mdi_explore_off-fill' | 'bk_mdi_explosion' | 'bk_mdi_explosion-fill' | 'bk_mdi_export_notes' | 'bk_mdi_export_notes-fill' | 'bk_mdi_exposure' | 'bk_mdi_exposure-fill' | 'bk_mdi_exposure_neg_1' | 'bk_mdi_exposure_neg_1-fill' | 'bk_mdi_exposure_neg_2' | 'bk_mdi_exposure_neg_2-fill' | 'bk_mdi_exposure_plus_1' | 'bk_mdi_exposure_plus_1-fill' | 'bk_mdi_exposure_plus_2' | 'bk_mdi_exposure_plus_2-fill' | 'bk_mdi_exposure_zero' | 'bk_mdi_exposure_zero-fill' | 'bk_mdi_extension' | 'bk_mdi_extension-fill' | 'bk_mdi_extension_off' | 'bk_mdi_extension_off-fill' | 'bk_mdi_eye_tracking' | 'bk_mdi_eye_tracking-fill' | 'bk_mdi_eyebrow' | 'bk_mdi_eyebrow-fill' | 'bk_mdi_eyeglasses' | 'bk_mdi_eyeglasses-fill' | 'bk_mdi_eyeglasses_2' | 'bk_mdi_eyeglasses_2-fill' | 'bk_mdi_eyeglasses_2_sound' | 'bk_mdi_eyeglasses_2_sound-fill' | 'bk_mdi_face' | 'bk_mdi_face-fill' | 'bk_mdi_face_2' | 'bk_mdi_face_2-fill' | 'bk_mdi_face_3' | 'bk_mdi_face_3-fill' | 'bk_mdi_face_4' | 'bk_mdi_face_4-fill' | 'bk_mdi_face_5' | 'bk_mdi_face_5-fill' | 'bk_mdi_face_6' | 'bk_mdi_face_6-fill' | 'bk_mdi_face_down' | 'bk_mdi_face_down-fill' | 'bk_mdi_face_left' | 'bk_mdi_face_left-fill' | 'bk_mdi_face_nod' | 'bk_mdi_face_nod-fill' | 'bk_mdi_face_retouching_off' | 'bk_mdi_face_retouching_off-fill' | 'bk_mdi_face_right' | 'bk_mdi_face_right-fill' | 'bk_mdi_face_shake' | 'bk_mdi_face_shake-fill' | 'bk_mdi_face_up' | 'bk_mdi_face_up-fill' | 'bk_mdi_fact_check' | 'bk_mdi_fact_check-fill' | 'bk_mdi_factory' | 'bk_mdi_factory-fill' | 'bk_mdi_falling' | 'bk_mdi_falling-fill' | 'bk_mdi_familiar_face_and_zone' | 'bk_mdi_familiar_face_and_zone-fill' | 'bk_mdi_family_group' | 'bk_mdi_family_group-fill' | 'bk_mdi_family_history' | 'bk_mdi_family_history-fill' | 'bk_mdi_family_home' | 'bk_mdi_family_home-fill' | 'bk_mdi_family_link' | 'bk_mdi_family_link-fill' | 'bk_mdi_family_restroom' | 'bk_mdi_family_restroom-fill' | 'bk_mdi_family_star' | 'bk_mdi_family_star-fill' | 'bk_mdi_fan_focus' | 'bk_mdi_fan_focus-fill' | 'bk_mdi_fan_indirect' | 'bk_mdi_fan_indirect-fill' | 'bk_mdi_farsight_digital' | 'bk_mdi_farsight_digital-fill' | 'bk_mdi_fast_forward' | 'bk_mdi_fast_forward-fill' | 'bk_mdi_fast_rewind' | 'bk_mdi_fast_rewind-fill' | 'bk_mdi_fastfood' | 'bk_mdi_fastfood-fill' | 'bk_mdi_faucet' | 'bk_mdi_faucet-fill' | 'bk_mdi_favorite' | 'bk_mdi_favorite-fill' | 'bk_mdi_fax' | 'bk_mdi_fax-fill' | 'bk_mdi_feature_search' | 'bk_mdi_feature_search-fill' | 'bk_mdi_featured_play_list' | 'bk_mdi_featured_play_list-fill' | 'bk_mdi_featured_seasonal_and_gifts' | 'bk_mdi_featured_seasonal_and_gifts-fill' | 'bk_mdi_featured_video' | 'bk_mdi_featured_video-fill' | 'bk_mdi_feedback' | 'bk_mdi_feedback-fill' | 'bk_mdi_female' | 'bk_mdi_female-fill' | 'bk_mdi_femur' | 'bk_mdi_femur-fill' | 'bk_mdi_femur_alt' | 'bk_mdi_femur_alt-fill' | 'bk_mdi_fence' | 'bk_mdi_fence-fill' | 'bk_mdi_fertile' | 'bk_mdi_fertile-fill' | 'bk_mdi_festival' | 'bk_mdi_festival-fill' | 'bk_mdi_fiber_dvr' | 'bk_mdi_fiber_dvr-fill' | 'bk_mdi_fiber_manual_record' | 'bk_mdi_fiber_manual_record-fill' | 'bk_mdi_fiber_new' | 'bk_mdi_fiber_new-fill' | 'bk_mdi_fiber_pin' | 'bk_mdi_fiber_pin-fill' | 'bk_mdi_fiber_smart_record' | 'bk_mdi_fiber_smart_record-fill' | 'bk_mdi_file_copy' | 'bk_mdi_file_copy-fill' | 'bk_mdi_file_copy_off' | 'bk_mdi_file_copy_off-fill' | 'bk_mdi_file_download_off' | 'bk_mdi_file_download_off-fill' | 'bk_mdi_file_export' | 'bk_mdi_file_export-fill' | 'bk_mdi_file_json' | 'bk_mdi_file_json-fill' | 'bk_mdi_file_map' | 'bk_mdi_file_map-fill' | 'bk_mdi_file_map_stack' | 'bk_mdi_file_map_stack-fill' | 'bk_mdi_file_open' | 'bk_mdi_file_open-fill' | 'bk_mdi_file_png' | 'bk_mdi_file_png-fill' | 'bk_mdi_file_present' | 'bk_mdi_file_present-fill' | 'bk_mdi_file_save' | 'bk_mdi_file_save-fill' | 'bk_mdi_file_save_off' | 'bk_mdi_file_save_off-fill' | 'bk_mdi_file_upload_off' | 'bk_mdi_file_upload_off-fill' | 'bk_mdi_files' | 'bk_mdi_files-fill' | 'bk_mdi_filter' | 'bk_mdi_filter-fill' | 'bk_mdi_filter_1' | 'bk_mdi_filter_1-fill' | 'bk_mdi_filter_2' | 'bk_mdi_filter_2-fill' | 'bk_mdi_filter_3' | 'bk_mdi_filter_3-fill' | 'bk_mdi_filter_4' | 'bk_mdi_filter_4-fill' | 'bk_mdi_filter_5' | 'bk_mdi_filter_5-fill' | 'bk_mdi_filter_6' | 'bk_mdi_filter_6-fill' | 'bk_mdi_filter_7' | 'bk_mdi_filter_7-fill' | 'bk_mdi_filter_8' | 'bk_mdi_filter_8-fill' | 'bk_mdi_filter_9' | 'bk_mdi_filter_9-fill' | 'bk_mdi_filter_9_plus' | 'bk_mdi_filter_9_plus-fill' | 'bk_mdi_filter_alt' | 'bk_mdi_filter_alt-fill' | 'bk_mdi_filter_alt_off' | 'bk_mdi_filter_alt_off-fill' | 'bk_mdi_filter_arrow_right' | 'bk_mdi_filter_arrow_right-fill' | 'bk_mdi_filter_b_and_w' | 'bk_mdi_filter_b_and_w-fill' | 'bk_mdi_filter_center_focus' | 'bk_mdi_filter_center_focus-fill' | 'bk_mdi_filter_drama' | 'bk_mdi_filter_drama-fill' | 'bk_mdi_filter_frames' | 'bk_mdi_filter_frames-fill' | 'bk_mdi_filter_list' | 'bk_mdi_filter_list-fill' | 'bk_mdi_filter_list_off' | 'bk_mdi_filter_list_off-fill' | 'bk_mdi_filter_none' | 'bk_mdi_filter_none-fill' | 'bk_mdi_filter_retrolux' | 'bk_mdi_filter_retrolux-fill' | 'bk_mdi_filter_tilt_shift' | 'bk_mdi_filter_tilt_shift-fill' | 'bk_mdi_filter_vintage' | 'bk_mdi_filter_vintage-fill' | 'bk_mdi_finance' | 'bk_mdi_finance-fill' | 'bk_mdi_finance_chip' | 'bk_mdi_finance_chip-fill' | 'bk_mdi_finance_mode' | 'bk_mdi_finance_mode-fill' | 'bk_mdi_find_in_page' | 'bk_mdi_find_in_page-fill' | 'bk_mdi_find_replace' | 'bk_mdi_find_replace-fill' | 'bk_mdi_fingerprint' | 'bk_mdi_fingerprint-fill' | 'bk_mdi_fingerprint_off' | 'bk_mdi_fingerprint_off-fill' | 'bk_mdi_fire_extinguisher' | 'bk_mdi_fire_extinguisher-fill' | 'bk_mdi_fire_hydrant' | 'bk_mdi_fire_hydrant-fill' | 'bk_mdi_fire_truck' | 'bk_mdi_fire_truck-fill' | 'bk_mdi_fireplace' | 'bk_mdi_fireplace-fill' | 'bk_mdi_first_page' | 'bk_mdi_first_page-fill' | 'bk_mdi_fit_page' | 'bk_mdi_fit_page-fill' | 'bk_mdi_fit_page_height' | 'bk_mdi_fit_page_height-fill' | 'bk_mdi_fit_page_width' | 'bk_mdi_fit_page_width-fill' | 'bk_mdi_fit_screen' | 'bk_mdi_fit_screen-fill' | 'bk_mdi_fit_width' | 'bk_mdi_fit_width-fill' | 'bk_mdi_fitness_center' | 'bk_mdi_fitness_center-fill' | 'bk_mdi_fitness_tracker' | 'bk_mdi_fitness_tracker-fill' | 'bk_mdi_fitness_trackers' | 'bk_mdi_fitness_trackers-fill' | 'bk_mdi_flag' | 'bk_mdi_flag-fill' | 'bk_mdi_flag_2' | 'bk_mdi_flag_2-fill' | 'bk_mdi_flag_check' | 'bk_mdi_flag_check-fill' | 'bk_mdi_flag_circle' | 'bk_mdi_flag_circle-fill' | 'bk_mdi_flaky' | 'bk_mdi_flaky-fill' | 'bk_mdi_flare' | 'bk_mdi_flare-fill' | 'bk_mdi_flash_auto' | 'bk_mdi_flash_auto-fill' | 'bk_mdi_flash_off' | 'bk_mdi_flash_off-fill' | 'bk_mdi_flash_on' | 'bk_mdi_flash_on-fill' | 'bk_mdi_flashlight_off' | 'bk_mdi_flashlight_off-fill' | 'bk_mdi_flashlight_on' | 'bk_mdi_flashlight_on-fill' | 'bk_mdi_flatware' | 'bk_mdi_flatware-fill' | 'bk_mdi_flex_direction' | 'bk_mdi_flex_direction-fill' | 'bk_mdi_flex_no_wrap' | 'bk_mdi_flex_no_wrap-fill' | 'bk_mdi_flex_wrap' | 'bk_mdi_flex_wrap-fill' | 'bk_mdi_flight' | 'bk_mdi_flight-fill' | 'bk_mdi_flight_class' | 'bk_mdi_flight_class-fill' | 'bk_mdi_flight_land' | 'bk_mdi_flight_land-fill' | 'bk_mdi_flight_takeoff' | 'bk_mdi_flight_takeoff-fill' | 'bk_mdi_flights_and_hotels' | 'bk_mdi_flights_and_hotels-fill' | 'bk_mdi_flip' | 'bk_mdi_flip-fill' | 'bk_mdi_flip_camera_android' | 'bk_mdi_flip_camera_android-fill' | 'bk_mdi_flip_camera_ios' | 'bk_mdi_flip_camera_ios-fill' | 'bk_mdi_flip_to_back' | 'bk_mdi_flip_to_back-fill' | 'bk_mdi_flip_to_front' | 'bk_mdi_flip_to_front-fill' | 'bk_mdi_float_landscape_2' | 'bk_mdi_float_landscape_2-fill' | 'bk_mdi_float_portrait_2' | 'bk_mdi_float_portrait_2-fill' | 'bk_mdi_flood' | 'bk_mdi_flood-fill' | 'bk_mdi_floor' | 'bk_mdi_floor-fill' | 'bk_mdi_floor_lamp' | 'bk_mdi_floor_lamp-fill' | 'bk_mdi_flowchart' | 'bk_mdi_flowchart-fill' | 'bk_mdi_flowsheet' | 'bk_mdi_flowsheet-fill' | 'bk_mdi_fluid' | 'bk_mdi_fluid-fill' | 'bk_mdi_fluid_balance' | 'bk_mdi_fluid_balance-fill' | 'bk_mdi_fluid_med' | 'bk_mdi_fluid_med-fill' | 'bk_mdi_fluorescent' | 'bk_mdi_fluorescent-fill' | 'bk_mdi_flutter' | 'bk_mdi_flutter-fill' | 'bk_mdi_flutter_dash' | 'bk_mdi_flutter_dash-fill' | 'bk_mdi_flyover' | 'bk_mdi_flyover-fill' | 'bk_mdi_fmd_bad' | 'bk_mdi_fmd_bad-fill' | 'bk_mdi_foggy' | 'bk_mdi_foggy-fill' | 'bk_mdi_folded_hands' | 'bk_mdi_folded_hands-fill' | 'bk_mdi_folder' | 'bk_mdi_folder-fill' | 'bk_mdi_folder_check' | 'bk_mdi_folder_check-fill' | 'bk_mdi_folder_check_2' | 'bk_mdi_folder_check_2-fill' | 'bk_mdi_folder_code' | 'bk_mdi_folder_code-fill' | 'bk_mdi_folder_copy' | 'bk_mdi_folder_copy-fill' | 'bk_mdi_folder_data' | 'bk_mdi_folder_data-fill' | 'bk_mdi_folder_delete' | 'bk_mdi_folder_delete-fill' | 'bk_mdi_folder_eye' | 'bk_mdi_folder_eye-fill' | 'bk_mdi_folder_info' | 'bk_mdi_folder_info-fill' | 'bk_mdi_folder_limited' | 'bk_mdi_folder_limited-fill' | 'bk_mdi_folder_managed' | 'bk_mdi_folder_managed-fill' | 'bk_mdi_folder_match' | 'bk_mdi_folder_match-fill' | 'bk_mdi_folder_off' | 'bk_mdi_folder_off-fill' | 'bk_mdi_folder_open' | 'bk_mdi_folder_open-fill' | 'bk_mdi_folder_shared' | 'bk_mdi_folder_shared-fill' | 'bk_mdi_folder_special' | 'bk_mdi_folder_special-fill' | 'bk_mdi_folder_supervised' | 'bk_mdi_folder_supervised-fill' | 'bk_mdi_folder_zip' | 'bk_mdi_folder_zip-fill' | 'bk_mdi_follow_the_signs' | 'bk_mdi_follow_the_signs-fill' | 'bk_mdi_font_download' | 'bk_mdi_font_download-fill' | 'bk_mdi_font_download_off' | 'bk_mdi_font_download_off-fill' | 'bk_mdi_food_bank' | 'bk_mdi_food_bank-fill' | 'bk_mdi_foot_bones' | 'bk_mdi_foot_bones-fill' | 'bk_mdi_footprint' | 'bk_mdi_footprint-fill' | 'bk_mdi_for_you' | 'bk_mdi_for_you-fill' | 'bk_mdi_forest' | 'bk_mdi_forest-fill' | 'bk_mdi_fork_left' | 'bk_mdi_fork_left-fill' | 'bk_mdi_fork_right' | 'bk_mdi_fork_right-fill' | 'bk_mdi_fork_spoon' | 'bk_mdi_fork_spoon-fill' | 'bk_mdi_forklift' | 'bk_mdi_forklift-fill' | 'bk_mdi_format_align_center' | 'bk_mdi_format_align_center-fill' | 'bk_mdi_format_align_justify' | 'bk_mdi_format_align_justify-fill' | 'bk_mdi_format_align_left' | 'bk_mdi_format_align_left-fill' | 'bk_mdi_format_align_right' | 'bk_mdi_format_align_right-fill' | 'bk_mdi_format_bold' | 'bk_mdi_format_bold-fill' | 'bk_mdi_format_clear' | 'bk_mdi_format_clear-fill' | 'bk_mdi_format_color_fill' | 'bk_mdi_format_color_fill-fill' | 'bk_mdi_format_color_reset' | 'bk_mdi_format_color_reset-fill' | 'bk_mdi_format_color_text' | 'bk_mdi_format_color_text-fill' | 'bk_mdi_format_h1' | 'bk_mdi_format_h1-fill' | 'bk_mdi_format_h2' | 'bk_mdi_format_h2-fill' | 'bk_mdi_format_h3' | 'bk_mdi_format_h3-fill' | 'bk_mdi_format_h4' | 'bk_mdi_format_h4-fill' | 'bk_mdi_format_h5' | 'bk_mdi_format_h5-fill' | 'bk_mdi_format_h6' | 'bk_mdi_format_h6-fill' | 'bk_mdi_format_image_back' | 'bk_mdi_format_image_back-fill' | 'bk_mdi_format_image_break_left' | 'bk_mdi_format_image_break_left-fill' | 'bk_mdi_format_image_break_right' | 'bk_mdi_format_image_break_right-fill' | 'bk_mdi_format_image_front' | 'bk_mdi_format_image_front-fill' | 'bk_mdi_format_image_inline_left' | 'bk_mdi_format_image_inline_left-fill' | 'bk_mdi_format_image_inline_right' | 'bk_mdi_format_image_inline_right-fill' | 'bk_mdi_format_image_left' | 'bk_mdi_format_image_left-fill' | 'bk_mdi_format_image_right' | 'bk_mdi_format_image_right-fill' | 'bk_mdi_format_indent_decrease' | 'bk_mdi_format_indent_decrease-fill' | 'bk_mdi_format_indent_increase' | 'bk_mdi_format_indent_increase-fill' | 'bk_mdi_format_ink_highlighter' | 'bk_mdi_format_ink_highlighter-fill' | 'bk_mdi_format_italic' | 'bk_mdi_format_italic-fill' | 'bk_mdi_format_letter_spacing' | 'bk_mdi_format_letter_spacing-fill' | 'bk_mdi_format_letter_spacing_2' | 'bk_mdi_format_letter_spacing_2-fill' | 'bk_mdi_format_letter_spacing_standard' | 'bk_mdi_format_letter_spacing_standard-fill' | 'bk_mdi_format_letter_spacing_wide' | 'bk_mdi_format_letter_spacing_wide-fill' | 'bk_mdi_format_letter_spacing_wider' | 'bk_mdi_format_letter_spacing_wider-fill' | 'bk_mdi_format_line_spacing' | 'bk_mdi_format_line_spacing-fill' | 'bk_mdi_format_list_bulleted' | 'bk_mdi_format_list_bulleted-fill' | 'bk_mdi_format_list_bulleted_add' | 'bk_mdi_format_list_bulleted_add-fill' | 'bk_mdi_format_list_numbered' | 'bk_mdi_format_list_numbered-fill' | 'bk_mdi_format_list_numbered_rtl' | 'bk_mdi_format_list_numbered_rtl-fill' | 'bk_mdi_format_overline' | 'bk_mdi_format_overline-fill' | 'bk_mdi_format_paint' | 'bk_mdi_format_paint-fill' | 'bk_mdi_format_paragraph' | 'bk_mdi_format_paragraph-fill' | 'bk_mdi_format_quote' | 'bk_mdi_format_quote-fill' | 'bk_mdi_format_quote_off' | 'bk_mdi_format_quote_off-fill' | 'bk_mdi_format_shapes' | 'bk_mdi_format_shapes-fill' | 'bk_mdi_format_size' | 'bk_mdi_format_size-fill' | 'bk_mdi_format_strikethrough' | 'bk_mdi_format_strikethrough-fill' | 'bk_mdi_format_text_clip' | 'bk_mdi_format_text_clip-fill' | 'bk_mdi_format_text_overflow' | 'bk_mdi_format_text_overflow-fill' | 'bk_mdi_format_text_wrap' | 'bk_mdi_format_text_wrap-fill' | 'bk_mdi_format_textdirection_l_to_r' | 'bk_mdi_format_textdirection_l_to_r-fill' | 'bk_mdi_format_textdirection_r_to_l' | 'bk_mdi_format_textdirection_r_to_l-fill' | 'bk_mdi_format_textdirection_vertical' | 'bk_mdi_format_textdirection_vertical-fill' | 'bk_mdi_format_underlined' | 'bk_mdi_format_underlined-fill' | 'bk_mdi_format_underlined_squiggle' | 'bk_mdi_format_underlined_squiggle-fill' | 'bk_mdi_forms_add_on' | 'bk_mdi_forms_add_on-fill' | 'bk_mdi_forms_apps_script' | 'bk_mdi_forms_apps_script-fill' | 'bk_mdi_fort' | 'bk_mdi_fort-fill' | 'bk_mdi_forum' | 'bk_mdi_forum-fill' | 'bk_mdi_forward' | 'bk_mdi_forward-fill' | 'bk_mdi_forward_10' | 'bk_mdi_forward_10-fill' | 'bk_mdi_forward_30' | 'bk_mdi_forward_30-fill' | 'bk_mdi_forward_5' | 'bk_mdi_forward_5-fill' | 'bk_mdi_forward_circle' | 'bk_mdi_forward_circle-fill' | 'bk_mdi_forward_media' | 'bk_mdi_forward_media-fill' | 'bk_mdi_forward_to_inbox' | 'bk_mdi_forward_to_inbox-fill' | 'bk_mdi_foundation' | 'bk_mdi_foundation-fill' | 'bk_mdi_fragrance' | 'bk_mdi_fragrance-fill' | 'bk_mdi_frame_bug' | 'bk_mdi_frame_bug-fill' | 'bk_mdi_frame_exclamation' | 'bk_mdi_frame_exclamation-fill' | 'bk_mdi_frame_inspect' | 'bk_mdi_frame_inspect-fill' | 'bk_mdi_frame_person' | 'bk_mdi_frame_person-fill' | 'bk_mdi_frame_person_mic' | 'bk_mdi_frame_person_mic-fill' | 'bk_mdi_frame_person_off' | 'bk_mdi_frame_person_off-fill' | 'bk_mdi_frame_reload' | 'bk_mdi_frame_reload-fill' | 'bk_mdi_frame_source' | 'bk_mdi_frame_source-fill' | 'bk_mdi_free_cancellation' | 'bk_mdi_free_cancellation-fill' | 'bk_mdi_front_hand' | 'bk_mdi_front_hand-fill' | 'bk_mdi_front_loader' | 'bk_mdi_front_loader-fill' | 'bk_mdi_full_coverage' | 'bk_mdi_full_coverage-fill' | 'bk_mdi_full_hd' | 'bk_mdi_full_hd-fill' | 'bk_mdi_full_stacked_bar_chart' | 'bk_mdi_full_stacked_bar_chart-fill' | 'bk_mdi_fullscreen' | 'bk_mdi_fullscreen-fill' | 'bk_mdi_fullscreen_exit' | 'bk_mdi_fullscreen_exit-fill' | 'bk_mdi_fullscreen_portrait' | 'bk_mdi_fullscreen_portrait-fill' | 'bk_mdi_function' | 'bk_mdi_function-fill' | 'bk_mdi_functions' | 'bk_mdi_functions-fill' | 'bk_mdi_funicular' | 'bk_mdi_funicular-fill' | 'bk_mdi_g_mobiledata' | 'bk_mdi_g_mobiledata-fill' | 'bk_mdi_g_mobiledata_badge' | 'bk_mdi_g_mobiledata_badge-fill' | 'bk_mdi_g_translate' | 'bk_mdi_g_translate-fill' | 'bk_mdi_gallery_thumbnail' | 'bk_mdi_gallery_thumbnail-fill' | 'bk_mdi_game_bumper_left' | 'bk_mdi_game_bumper_left-fill' | 'bk_mdi_game_bumper_right' | 'bk_mdi_game_bumper_right-fill' | 'bk_mdi_game_button_l' | 'bk_mdi_game_button_l-fill' | 'bk_mdi_game_button_l1' | 'bk_mdi_game_button_l1-fill' | 'bk_mdi_game_button_l2' | 'bk_mdi_game_button_l2-fill' | 'bk_mdi_game_button_r' | 'bk_mdi_game_button_r-fill' | 'bk_mdi_game_button_r1' | 'bk_mdi_game_button_r1-fill' | 'bk_mdi_game_button_r2' | 'bk_mdi_game_button_r2-fill' | 'bk_mdi_game_button_zl' | 'bk_mdi_game_button_zl-fill' | 'bk_mdi_game_button_zr' | 'bk_mdi_game_button_zr-fill' | 'bk_mdi_game_stick_l3' | 'bk_mdi_game_stick_l3-fill' | 'bk_mdi_game_stick_left' | 'bk_mdi_game_stick_left-fill' | 'bk_mdi_game_stick_r3' | 'bk_mdi_game_stick_r3-fill' | 'bk_mdi_game_stick_right' | 'bk_mdi_game_stick_right-fill' | 'bk_mdi_game_trigger_left' | 'bk_mdi_game_trigger_left-fill' | 'bk_mdi_game_trigger_right' | 'bk_mdi_game_trigger_right-fill' | 'bk_mdi_gamepad' | 'bk_mdi_gamepad-fill' | 'bk_mdi_gamepad_circle_down' | 'bk_mdi_gamepad_circle_down-fill' | 'bk_mdi_gamepad_circle_left' | 'bk_mdi_gamepad_circle_left-fill' | 'bk_mdi_gamepad_circle_right' | 'bk_mdi_gamepad_circle_right-fill' | 'bk_mdi_gamepad_circle_up' | 'bk_mdi_gamepad_circle_up-fill' | 'bk_mdi_gamepad_down' | 'bk_mdi_gamepad_down-fill' | 'bk_mdi_gamepad_left' | 'bk_mdi_gamepad_left-fill' | 'bk_mdi_gamepad_right' | 'bk_mdi_gamepad_right-fill' | 'bk_mdi_gamepad_up' | 'bk_mdi_gamepad_up-fill' | 'bk_mdi_garage' | 'bk_mdi_garage-fill' | 'bk_mdi_garage_check' | 'bk_mdi_garage_check-fill' | 'bk_mdi_garage_door' | 'bk_mdi_garage_door-fill' | 'bk_mdi_garage_home' | 'bk_mdi_garage_home-fill' | 'bk_mdi_garage_money' | 'bk_mdi_garage_money-fill' | 'bk_mdi_garden_cart' | 'bk_mdi_garden_cart-fill' | 'bk_mdi_gas_meter' | 'bk_mdi_gas_meter-fill' | 'bk_mdi_gastroenterology' | 'bk_mdi_gastroenterology-fill' | 'bk_mdi_gate' | 'bk_mdi_gate-fill' | 'bk_mdi_gavel' | 'bk_mdi_gavel-fill' | 'bk_mdi_general_device' | 'bk_mdi_general_device-fill' | 'bk_mdi_genetics' | 'bk_mdi_genetics-fill' | 'bk_mdi_genres' | 'bk_mdi_genres-fill' | 'bk_mdi_gesture' | 'bk_mdi_gesture-fill' | 'bk_mdi_gesture_select' | 'bk_mdi_gesture_select-fill' | 'bk_mdi_gif' | 'bk_mdi_gif-fill' | 'bk_mdi_gif_2' | 'bk_mdi_gif_2-fill' | 'bk_mdi_gif_box' | 'bk_mdi_gif_box-fill' | 'bk_mdi_girl' | 'bk_mdi_girl-fill' | 'bk_mdi_gite' | 'bk_mdi_gite-fill' | 'bk_mdi_glass_cup' | 'bk_mdi_glass_cup-fill' | 'bk_mdi_globe' | 'bk_mdi_globe-fill' | 'bk_mdi_globe_asia' | 'bk_mdi_globe_asia-fill' | 'bk_mdi_globe_book' | 'bk_mdi_globe_book-fill' | 'bk_mdi_globe_location_pin' | 'bk_mdi_globe_location_pin-fill' | 'bk_mdi_globe_uk' | 'bk_mdi_globe_uk-fill' | 'bk_mdi_glucose' | 'bk_mdi_glucose-fill' | 'bk_mdi_glyphs' | 'bk_mdi_glyphs-fill' | 'bk_mdi_go_to_line' | 'bk_mdi_go_to_line-fill' | 'bk_mdi_golf_course' | 'bk_mdi_golf_course-fill' | 'bk_mdi_gondola_lift' | 'bk_mdi_gondola_lift-fill' | 'bk_mdi_google_home_devices' | 'bk_mdi_google_home_devices-fill' | 'bk_mdi_google_tv_remote' | 'bk_mdi_google_tv_remote-fill' | 'bk_mdi_google_wifi' | 'bk_mdi_google_wifi-fill' | 'bk_mdi_gpp_bad' | 'bk_mdi_gpp_bad-fill' | 'bk_mdi_gpp_maybe' | 'bk_mdi_gpp_maybe-fill' | 'bk_mdi_gradient' | 'bk_mdi_gradient-fill' | 'bk_mdi_grading' | 'bk_mdi_grading-fill' | 'bk_mdi_grain' | 'bk_mdi_grain-fill' | 'bk_mdi_graph_1' | 'bk_mdi_graph_1-fill' | 'bk_mdi_graph_2' | 'bk_mdi_graph_2-fill' | 'bk_mdi_graph_3' | 'bk_mdi_graph_3-fill' | 'bk_mdi_graph_4' | 'bk_mdi_graph_4-fill' | 'bk_mdi_graph_5' | 'bk_mdi_graph_5-fill' | 'bk_mdi_graph_6' | 'bk_mdi_graph_6-fill' | 'bk_mdi_graph_7' | 'bk_mdi_graph_7-fill' | 'bk_mdi_graph_8' | 'bk_mdi_graph_8-fill' | 'bk_mdi_graphic_eq' | 'bk_mdi_graphic_eq-fill' | 'bk_mdi_grass' | 'bk_mdi_grass-fill' | 'bk_mdi_grid_3x3' | 'bk_mdi_grid_3x3-fill' | 'bk_mdi_grid_3x3_off' | 'bk_mdi_grid_3x3_off-fill' | 'bk_mdi_grid_4x4' | 'bk_mdi_grid_4x4-fill' | 'bk_mdi_grid_goldenratio' | 'bk_mdi_grid_goldenratio-fill' | 'bk_mdi_grid_guides' | 'bk_mdi_grid_guides-fill' | 'bk_mdi_grid_off' | 'bk_mdi_grid_off-fill' | 'bk_mdi_grid_on' | 'bk_mdi_grid_on-fill' | 'bk_mdi_grid_view' | 'bk_mdi_grid_view-fill' | 'bk_mdi_grocery' | 'bk_mdi_grocery-fill' | 'bk_mdi_group' | 'bk_mdi_group-fill' | 'bk_mdi_group_add' | 'bk_mdi_group_add-fill' | 'bk_mdi_group_off' | 'bk_mdi_group_off-fill' | 'bk_mdi_group_remove' | 'bk_mdi_group_remove-fill' | 'bk_mdi_group_search' | 'bk_mdi_group_search-fill' | 'bk_mdi_group_work' | 'bk_mdi_group_work-fill' | 'bk_mdi_grouped_bar_chart' | 'bk_mdi_grouped_bar_chart-fill' | 'bk_mdi_groups' | 'bk_mdi_groups-fill' | 'bk_mdi_groups_2' | 'bk_mdi_groups_2-fill' | 'bk_mdi_groups_3' | 'bk_mdi_groups_3-fill' | 'bk_mdi_guardian' | 'bk_mdi_guardian-fill' | 'bk_mdi_gynecology' | 'bk_mdi_gynecology-fill' | 'bk_mdi_h_mobiledata' | 'bk_mdi_h_mobiledata-fill' | 'bk_mdi_h_mobiledata_badge' | 'bk_mdi_h_mobiledata_badge-fill' | 'bk_mdi_h_plus_mobiledata' | 'bk_mdi_h_plus_mobiledata-fill' | 'bk_mdi_h_plus_mobiledata_badge' | 'bk_mdi_h_plus_mobiledata_badge-fill' | 'bk_mdi_hail' | 'bk_mdi_hail-fill' | 'bk_mdi_hallway' | 'bk_mdi_hallway-fill' | 'bk_mdi_hanami_dango' | 'bk_mdi_hanami_dango-fill' | 'bk_mdi_hand_bones' | 'bk_mdi_hand_bones-fill' | 'bk_mdi_hand_gesture' | 'bk_mdi_hand_gesture-fill' | 'bk_mdi_hand_gesture_off' | 'bk_mdi_hand_gesture_off-fill' | 'bk_mdi_hand_meal' | 'bk_mdi_hand_meal-fill' | 'bk_mdi_hand_package' | 'bk_mdi_hand_package-fill' | 'bk_mdi_handheld_controller' | 'bk_mdi_handheld_controller-fill' | 'bk_mdi_handshake' | 'bk_mdi_handshake-fill' | 'bk_mdi_handyman' | 'bk_mdi_handyman-fill' | 'bk_mdi_hangout_video' | 'bk_mdi_hangout_video-fill' | 'bk_mdi_hangout_video_off' | 'bk_mdi_hangout_video_off-fill' | 'bk_mdi_hard_disk' | 'bk_mdi_hard_disk-fill' | 'bk_mdi_hard_drive' | 'bk_mdi_hard_drive-fill' | 'bk_mdi_hard_drive_2' | 'bk_mdi_hard_drive_2-fill' | 'bk_mdi_hardware' | 'bk_mdi_hardware-fill' | 'bk_mdi_hd' | 'bk_mdi_hd-fill' | 'bk_mdi_hdr_auto' | 'bk_mdi_hdr_auto-fill' | 'bk_mdi_hdr_auto_select' | 'bk_mdi_hdr_auto_select-fill' | 'bk_mdi_hdr_enhanced_select' | 'bk_mdi_hdr_enhanced_select-fill' | 'bk_mdi_hdr_off' | 'bk_mdi_hdr_off-fill' | 'bk_mdi_hdr_off_select' | 'bk_mdi_hdr_off_select-fill' | 'bk_mdi_hdr_on' | 'bk_mdi_hdr_on-fill' | 'bk_mdi_hdr_on_select' | 'bk_mdi_hdr_on_select-fill' | 'bk_mdi_hdr_plus' | 'bk_mdi_hdr_plus-fill' | 'bk_mdi_hdr_plus_off' | 'bk_mdi_hdr_plus_off-fill' | 'bk_mdi_hdr_strong' | 'bk_mdi_hdr_strong-fill' | 'bk_mdi_hdr_weak' | 'bk_mdi_hdr_weak-fill' | 'bk_mdi_head_mounted_device' | 'bk_mdi_head_mounted_device-fill' | 'bk_mdi_headphones' | 'bk_mdi_headphones-fill' | 'bk_mdi_headphones_battery' | 'bk_mdi_headphones_battery-fill' | 'bk_mdi_headset_mic' | 'bk_mdi_headset_mic-fill' | 'bk_mdi_headset_off' | 'bk_mdi_headset_off-fill' | 'bk_mdi_healing' | 'bk_mdi_healing-fill' | 'bk_mdi_health_and_beauty' | 'bk_mdi_health_and_beauty-fill' | 'bk_mdi_health_and_safety' | 'bk_mdi_health_and_safety-fill' | 'bk_mdi_health_cross' | 'bk_mdi_health_cross-fill' | 'bk_mdi_health_metrics' | 'bk_mdi_health_metrics-fill' | 'bk_mdi_heap_snapshot_large' | 'bk_mdi_heap_snapshot_large-fill' | 'bk_mdi_heap_snapshot_multiple' | 'bk_mdi_heap_snapshot_multiple-fill' | 'bk_mdi_heap_snapshot_thumbnail' | 'bk_mdi_heap_snapshot_thumbnail-fill' | 'bk_mdi_hearing' | 'bk_mdi_hearing-fill' | 'bk_mdi_hearing_aid' | 'bk_mdi_hearing_aid-fill' | 'bk_mdi_hearing_aid_disabled' | 'bk_mdi_hearing_aid_disabled-fill' | 'bk_mdi_hearing_aid_disabled_left' | 'bk_mdi_hearing_aid_disabled_left-fill' | 'bk_mdi_hearing_aid_left' | 'bk_mdi_hearing_aid_left-fill' | 'bk_mdi_hearing_disabled' | 'bk_mdi_hearing_disabled-fill' | 'bk_mdi_heart_broken' | 'bk_mdi_heart_broken-fill' | 'bk_mdi_heart_check' | 'bk_mdi_heart_check-fill' | 'bk_mdi_heart_minus' | 'bk_mdi_heart_minus-fill' | 'bk_mdi_heart_plus' | 'bk_mdi_heart_plus-fill' | 'bk_mdi_heart_smile' | 'bk_mdi_heart_smile-fill' | 'bk_mdi_heat' | 'bk_mdi_heat-fill' | 'bk_mdi_heat_pump' | 'bk_mdi_heat_pump-fill' | 'bk_mdi_heat_pump_balance' | 'bk_mdi_heat_pump_balance-fill' | 'bk_mdi_height' | 'bk_mdi_height-fill' | 'bk_mdi_helicopter' | 'bk_mdi_helicopter-fill' | 'bk_mdi_help' | 'bk_mdi_help-fill' | 'bk_mdi_help_center' | 'bk_mdi_help_center-fill' | 'bk_mdi_help_clinic' | 'bk_mdi_help_clinic-fill' | 'bk_mdi_hematology' | 'bk_mdi_hematology-fill' | 'bk_mdi_hevc' | 'bk_mdi_hevc-fill' | 'bk_mdi_hexagon' | 'bk_mdi_hexagon-fill' | 'bk_mdi_hide' | 'bk_mdi_hide-fill' | 'bk_mdi_hide_image' | 'bk_mdi_hide_image-fill' | 'bk_mdi_hide_source' | 'bk_mdi_hide_source-fill' | 'bk_mdi_high_chair' | 'bk_mdi_high_chair-fill' | 'bk_mdi_high_density' | 'bk_mdi_high_density-fill' | 'bk_mdi_high_quality' | 'bk_mdi_high_quality-fill' | 'bk_mdi_high_res' | 'bk_mdi_high_res-fill' | 'bk_mdi_highlight' | 'bk_mdi_highlight-fill' | 'bk_mdi_highlight_keyboard_focus' | 'bk_mdi_highlight_keyboard_focus-fill' | 'bk_mdi_highlight_mouse_cursor' | 'bk_mdi_highlight_mouse_cursor-fill' | 'bk_mdi_highlight_text_cursor' | 'bk_mdi_highlight_text_cursor-fill' | 'bk_mdi_highlighter_size_1' | 'bk_mdi_highlighter_size_1-fill' | 'bk_mdi_highlighter_size_2' | 'bk_mdi_highlighter_size_2-fill' | 'bk_mdi_highlighter_size_3' | 'bk_mdi_highlighter_size_3-fill' | 'bk_mdi_highlighter_size_4' | 'bk_mdi_highlighter_size_4-fill' | 'bk_mdi_highlighter_size_5' | 'bk_mdi_highlighter_size_5-fill' | 'bk_mdi_hiking' | 'bk_mdi_hiking-fill' | 'bk_mdi_history' | 'bk_mdi_history-fill' | 'bk_mdi_history_2' | 'bk_mdi_history_2-fill' | 'bk_mdi_history_edu' | 'bk_mdi_history_edu-fill' | 'bk_mdi_history_off' | 'bk_mdi_history_off-fill' | 'bk_mdi_history_toggle_off' | 'bk_mdi_history_toggle_off-fill' | 'bk_mdi_hive' | 'bk_mdi_hive-fill' | 'bk_mdi_hls' | 'bk_mdi_hls-fill' | 'bk_mdi_hls_off' | 'bk_mdi_hls_off-fill' | 'bk_mdi_holiday_village' | 'bk_mdi_holiday_village-fill' | 'bk_mdi_home' | 'bk_mdi_home-fill' | 'bk_mdi_home_and_garden' | 'bk_mdi_home_and_garden-fill' | 'bk_mdi_home_app_logo' | 'bk_mdi_home_app_logo-fill' | 'bk_mdi_home_health' | 'bk_mdi_home_health-fill' | 'bk_mdi_home_improvement_and_tools' | 'bk_mdi_home_improvement_and_tools-fill' | 'bk_mdi_home_iot_device' | 'bk_mdi_home_iot_device-fill' | 'bk_mdi_home_max' | 'bk_mdi_home_max-fill' | 'bk_mdi_home_max_dots' | 'bk_mdi_home_max_dots-fill' | 'bk_mdi_home_mini' | 'bk_mdi_home_mini-fill' | 'bk_mdi_home_pin' | 'bk_mdi_home_pin-fill' | 'bk_mdi_home_repair_service' | 'bk_mdi_home_repair_service-fill' | 'bk_mdi_home_speaker' | 'bk_mdi_home_speaker-fill' | 'bk_mdi_home_storage' | 'bk_mdi_home_storage-fill' | 'bk_mdi_home_work' | 'bk_mdi_home_work-fill' | 'bk_mdi_horizontal_distribute' | 'bk_mdi_horizontal_distribute-fill' | 'bk_mdi_horizontal_rule' | 'bk_mdi_horizontal_rule-fill' | 'bk_mdi_horizontal_split' | 'bk_mdi_horizontal_split-fill' | 'bk_mdi_host' | 'bk_mdi_host-fill' | 'bk_mdi_hot_tub' | 'bk_mdi_hot_tub-fill' | 'bk_mdi_hotel' | 'bk_mdi_hotel-fill' | 'bk_mdi_hotel_class' | 'bk_mdi_hotel_class-fill' | 'bk_mdi_hourglass' | 'bk_mdi_hourglass-fill' | 'bk_mdi_hourglass_arrow_down' | 'bk_mdi_hourglass_arrow_down-fill' | 'bk_mdi_hourglass_arrow_up' | 'bk_mdi_hourglass_arrow_up-fill' | 'bk_mdi_hourglass_bottom' | 'bk_mdi_hourglass_bottom-fill' | 'bk_mdi_hourglass_check' | 'bk_mdi_hourglass_check-fill' | 'bk_mdi_hourglass_disabled' | 'bk_mdi_hourglass_disabled-fill' | 'bk_mdi_hourglass_empty' | 'bk_mdi_hourglass_empty-fill' | 'bk_mdi_hourglass_pause' | 'bk_mdi_hourglass_pause-fill' | 'bk_mdi_hourglass_top' | 'bk_mdi_hourglass_top-fill' | 'bk_mdi_house' | 'bk_mdi_house-fill' | 'bk_mdi_house_siding' | 'bk_mdi_house_siding-fill' | 'bk_mdi_house_with_shield' | 'bk_mdi_house_with_shield-fill' | 'bk_mdi_houseboat' | 'bk_mdi_houseboat-fill' | 'bk_mdi_household_supplies' | 'bk_mdi_household_supplies-fill' | 'bk_mdi_hov' | 'bk_mdi_hov-fill' | 'bk_mdi_how_to_reg' | 'bk_mdi_how_to_reg-fill' | 'bk_mdi_how_to_vote' | 'bk_mdi_how_to_vote-fill' | 'bk_mdi_hr_resting' | 'bk_mdi_hr_resting-fill' | 'bk_mdi_html' | 'bk_mdi_html-fill' | 'bk_mdi_http' | 'bk_mdi_http-fill' | 'bk_mdi_hub' | 'bk_mdi_hub-fill' | 'bk_mdi_humerus' | 'bk_mdi_humerus-fill' | 'bk_mdi_humerus_alt' | 'bk_mdi_humerus_alt-fill' | 'bk_mdi_humidity_high' | 'bk_mdi_humidity_high-fill' | 'bk_mdi_humidity_indoor' | 'bk_mdi_humidity_indoor-fill' | 'bk_mdi_humidity_low' | 'bk_mdi_humidity_low-fill' | 'bk_mdi_humidity_mid' | 'bk_mdi_humidity_mid-fill' | 'bk_mdi_humidity_percentage' | 'bk_mdi_humidity_percentage-fill' | 'bk_mdi_hvac' | 'bk_mdi_hvac-fill' | 'bk_mdi_hvac_max_defrost' | 'bk_mdi_hvac_max_defrost-fill' | 'bk_mdi_ice_skating' | 'bk_mdi_ice_skating-fill' | 'bk_mdi_icecream' | 'bk_mdi_icecream-fill' | 'bk_mdi_id_card' | 'bk_mdi_id_card-fill' | 'bk_mdi_identity_aware_proxy' | 'bk_mdi_identity_aware_proxy-fill' | 'bk_mdi_identity_platform' | 'bk_mdi_identity_platform-fill' | 'bk_mdi_ifl' | 'bk_mdi_ifl-fill' | 'bk_mdi_iframe' | 'bk_mdi_iframe-fill' | 'bk_mdi_iframe_off' | 'bk_mdi_iframe_off-fill' | 'bk_mdi_image' | 'bk_mdi_image-fill' | 'bk_mdi_image_arrow_up' | 'bk_mdi_image_arrow_up-fill' | 'bk_mdi_image_aspect_ratio' | 'bk_mdi_image_aspect_ratio-fill' | 'bk_mdi_image_inset' | 'bk_mdi_image_inset-fill' | 'bk_mdi_image_search' | 'bk_mdi_image_search-fill' | 'bk_mdi_imagesearch_roller' | 'bk_mdi_imagesearch_roller-fill' | 'bk_mdi_imagesmode' | 'bk_mdi_imagesmode-fill' | 'bk_mdi_immunology' | 'bk_mdi_immunology-fill' | 'bk_mdi_import_contacts' | 'bk_mdi_import_contacts-fill' | 'bk_mdi_important_devices' | 'bk_mdi_important_devices-fill' | 'bk_mdi_in_home_mode' | 'bk_mdi_in_home_mode-fill' | 'bk_mdi_inactive_order' | 'bk_mdi_inactive_order-fill' | 'bk_mdi_inbox' | 'bk_mdi_inbox-fill' | 'bk_mdi_inbox_customize' | 'bk_mdi_inbox_customize-fill' | 'bk_mdi_inbox_text' | 'bk_mdi_inbox_text-fill' | 'bk_mdi_inbox_text_asterisk' | 'bk_mdi_inbox_text_asterisk-fill' | 'bk_mdi_inbox_text_person' | 'bk_mdi_inbox_text_person-fill' | 'bk_mdi_inbox_text_share' | 'bk_mdi_inbox_text_share-fill' | 'bk_mdi_incomplete_circle' | 'bk_mdi_incomplete_circle-fill' | 'bk_mdi_indeterminate_check_box' | 'bk_mdi_indeterminate_check_box-fill' | 'bk_mdi_indeterminate_question_box' | 'bk_mdi_indeterminate_question_box-fill' | 'bk_mdi_info' | 'bk_mdi_info-fill' | 'bk_mdi_info_i' | 'bk_mdi_info_i-fill' | 'bk_mdi_infrared' | 'bk_mdi_infrared-fill' | 'bk_mdi_ink_eraser' | 'bk_mdi_ink_eraser-fill' | 'bk_mdi_ink_eraser_off' | 'bk_mdi_ink_eraser_off-fill' | 'bk_mdi_ink_highlighter' | 'bk_mdi_ink_highlighter-fill' | 'bk_mdi_ink_highlighter_move' | 'bk_mdi_ink_highlighter_move-fill' | 'bk_mdi_ink_marker' | 'bk_mdi_ink_marker-fill' | 'bk_mdi_ink_pen' | 'bk_mdi_ink_pen-fill' | 'bk_mdi_ink_selection' | 'bk_mdi_ink_selection-fill' | 'bk_mdi_inpatient' | 'bk_mdi_inpatient-fill' | 'bk_mdi_input' | 'bk_mdi_input-fill' | 'bk_mdi_input_circle' | 'bk_mdi_input_circle-fill' | 'bk_mdi_insert_chart' | 'bk_mdi_insert_chart-fill' | 'bk_mdi_insert_page_break' | 'bk_mdi_insert_page_break-fill' | 'bk_mdi_insert_text' | 'bk_mdi_insert_text-fill' | 'bk_mdi_install_desktop' | 'bk_mdi_install_desktop-fill' | 'bk_mdi_instant_mix' | 'bk_mdi_instant_mix-fill' | 'bk_mdi_integration_instructions' | 'bk_mdi_integration_instructions-fill' | 'bk_mdi_interactive_space' | 'bk_mdi_interactive_space-fill' | 'bk_mdi_interests' | 'bk_mdi_interests-fill' | 'bk_mdi_interpreter_mode' | 'bk_mdi_interpreter_mode-fill' | 'bk_mdi_inventory' | 'bk_mdi_inventory-fill' | 'bk_mdi_inventory_2' | 'bk_mdi_inventory_2-fill' | 'bk_mdi_invert_colors' | 'bk_mdi_invert_colors-fill' | 'bk_mdi_invert_colors_off' | 'bk_mdi_invert_colors_off-fill' | 'bk_mdi_ios' | 'bk_mdi_ios-fill' | 'bk_mdi_ios_share' | 'bk_mdi_ios_share-fill' | 'bk_mdi_iron' | 'bk_mdi_iron-fill' | 'bk_mdi_jamboard_kiosk' | 'bk_mdi_jamboard_kiosk-fill' | 'bk_mdi_japanese_curry' | 'bk_mdi_japanese_curry-fill' | 'bk_mdi_japanese_flag' | 'bk_mdi_japanese_flag-fill' | 'bk_mdi_javascript' | 'bk_mdi_javascript-fill' | 'bk_mdi_join' | 'bk_mdi_join-fill' | 'bk_mdi_join_inner' | 'bk_mdi_join_inner-fill' | 'bk_mdi_join_left' | 'bk_mdi_join_left-fill' | 'bk_mdi_join_right' | 'bk_mdi_join_right-fill' | 'bk_mdi_joystick' | 'bk_mdi_joystick-fill' | 'bk_mdi_jump_to_element' | 'bk_mdi_jump_to_element-fill' | 'bk_mdi_kanji_alcohol' | 'bk_mdi_kanji_alcohol-fill' | 'bk_mdi_kayaking' | 'bk_mdi_kayaking-fill' | 'bk_mdi_kebab_dining' | 'bk_mdi_kebab_dining-fill' | 'bk_mdi_keep' | 'bk_mdi_keep-fill' | 'bk_mdi_keep_off' | 'bk_mdi_keep_off-fill' | 'bk_mdi_keep_public' | 'bk_mdi_keep_public-fill' | 'bk_mdi_kettle' | 'bk_mdi_kettle-fill' | 'bk_mdi_key' | 'bk_mdi_key-fill' | 'bk_mdi_key_off' | 'bk_mdi_key_off-fill' | 'bk_mdi_key_vertical' | 'bk_mdi_key_vertical-fill' | 'bk_mdi_key_visualizer' | 'bk_mdi_key_visualizer-fill' | 'bk_mdi_keyboard' | 'bk_mdi_keyboard-fill' | 'bk_mdi_keyboard_alt' | 'bk_mdi_keyboard_alt-fill' | 'bk_mdi_keyboard_arrow_down' | 'bk_mdi_keyboard_arrow_down-fill' | 'bk_mdi_keyboard_arrow_left' | 'bk_mdi_keyboard_arrow_left-fill' | 'bk_mdi_keyboard_arrow_right' | 'bk_mdi_keyboard_arrow_right-fill' | 'bk_mdi_keyboard_arrow_up' | 'bk_mdi_keyboard_arrow_up-fill' | 'bk_mdi_keyboard_backspace' | 'bk_mdi_keyboard_backspace-fill' | 'bk_mdi_keyboard_capslock' | 'bk_mdi_keyboard_capslock-fill' | 'bk_mdi_keyboard_capslock_badge' | 'bk_mdi_keyboard_capslock_badge-fill' | 'bk_mdi_keyboard_command_key' | 'bk_mdi_keyboard_command_key-fill' | 'bk_mdi_keyboard_control_key' | 'bk_mdi_keyboard_control_key-fill' | 'bk_mdi_keyboard_double_arrow_down' | 'bk_mdi_keyboard_double_arrow_down-fill' | 'bk_mdi_keyboard_double_arrow_left' | 'bk_mdi_keyboard_double_arrow_left-fill' | 'bk_mdi_keyboard_double_arrow_right' | 'bk_mdi_keyboard_double_arrow_right-fill' | 'bk_mdi_keyboard_double_arrow_up' | 'bk_mdi_keyboard_double_arrow_up-fill' | 'bk_mdi_keyboard_external_input' | 'bk_mdi_keyboard_external_input-fill' | 'bk_mdi_keyboard_full' | 'bk_mdi_keyboard_full-fill' | 'bk_mdi_keyboard_hide' | 'bk_mdi_keyboard_hide-fill' | 'bk_mdi_keyboard_keys' | 'bk_mdi_keyboard_keys-fill' | 'bk_mdi_keyboard_lock' | 'bk_mdi_keyboard_lock-fill' | 'bk_mdi_keyboard_lock_off' | 'bk_mdi_keyboard_lock_off-fill' | 'bk_mdi_keyboard_off' | 'bk_mdi_keyboard_off-fill' | 'bk_mdi_keyboard_onscreen' | 'bk_mdi_keyboard_onscreen-fill' | 'bk_mdi_keyboard_option_key' | 'bk_mdi_keyboard_option_key-fill' | 'bk_mdi_keyboard_previous_language' | 'bk_mdi_keyboard_previous_language-fill' | 'bk_mdi_keyboard_return' | 'bk_mdi_keyboard_return-fill' | 'bk_mdi_keyboard_tab' | 'bk_mdi_keyboard_tab-fill' | 'bk_mdi_keyboard_tab_rtl' | 'bk_mdi_keyboard_tab_rtl-fill' | 'bk_mdi_kid_star' | 'bk_mdi_kid_star-fill' | 'bk_mdi_king_bed' | 'bk_mdi_king_bed-fill' | 'bk_mdi_kitchen' | 'bk_mdi_kitchen-fill' | 'bk_mdi_kitesurfing' | 'bk_mdi_kitesurfing-fill' | 'bk_mdi_lab_panel' | 'bk_mdi_lab_panel-fill' | 'bk_mdi_lab_profile' | 'bk_mdi_lab_profile-fill' | 'bk_mdi_lab_research' | 'bk_mdi_lab_research-fill' | 'bk_mdi_label' | 'bk_mdi_label-fill' | 'bk_mdi_label_important' | 'bk_mdi_label_important-fill' | 'bk_mdi_label_off' | 'bk_mdi_label_off-fill' | 'bk_mdi_labs' | 'bk_mdi_labs-fill' | 'bk_mdi_lan' | 'bk_mdi_lan-fill' | 'bk_mdi_landscape' | 'bk_mdi_landscape-fill' | 'bk_mdi_landscape_2' | 'bk_mdi_landscape_2-fill' | 'bk_mdi_landscape_2_edit' | 'bk_mdi_landscape_2_edit-fill' | 'bk_mdi_landscape_2_off' | 'bk_mdi_landscape_2_off-fill' | 'bk_mdi_landslide' | 'bk_mdi_landslide-fill' | 'bk_mdi_language' | 'bk_mdi_language-fill' | 'bk_mdi_language_chinese_array' | 'bk_mdi_language_chinese_array-fill' | 'bk_mdi_language_chinese_cangjie' | 'bk_mdi_language_chinese_cangjie-fill' | 'bk_mdi_language_chinese_dayi' | 'bk_mdi_language_chinese_dayi-fill' | 'bk_mdi_language_chinese_pinyin' | 'bk_mdi_language_chinese_pinyin-fill' | 'bk_mdi_language_chinese_quick' | 'bk_mdi_language_chinese_quick-fill' | 'bk_mdi_language_chinese_wubi' | 'bk_mdi_language_chinese_wubi-fill' | 'bk_mdi_language_french' | 'bk_mdi_language_french-fill' | 'bk_mdi_language_gb_english' | 'bk_mdi_language_gb_english-fill' | 'bk_mdi_language_international' | 'bk_mdi_language_international-fill' | 'bk_mdi_language_japanese_kana' | 'bk_mdi_language_japanese_kana-fill' | 'bk_mdi_language_korean_latin' | 'bk_mdi_language_korean_latin-fill' | 'bk_mdi_language_pinyin' | 'bk_mdi_language_pinyin-fill' | 'bk_mdi_language_spanish' | 'bk_mdi_language_spanish-fill' | 'bk_mdi_language_us' | 'bk_mdi_language_us-fill' | 'bk_mdi_language_us_colemak' | 'bk_mdi_language_us_colemak-fill' | 'bk_mdi_language_us_dvorak' | 'bk_mdi_language_us_dvorak-fill' | 'bk_mdi_laps' | 'bk_mdi_laps-fill' | 'bk_mdi_laptop_car' | 'bk_mdi_laptop_car-fill' | 'bk_mdi_laptop_chromebook' | 'bk_mdi_laptop_chromebook-fill' | 'bk_mdi_laptop_mac' | 'bk_mdi_laptop_mac-fill' | 'bk_mdi_laptop_windows' | 'bk_mdi_laptop_windows-fill' | 'bk_mdi_lasso_select' | 'bk_mdi_lasso_select-fill' | 'bk_mdi_last_page' | 'bk_mdi_last_page-fill' | 'bk_mdi_laundry' | 'bk_mdi_laundry-fill' | 'bk_mdi_layers' | 'bk_mdi_layers-fill' | 'bk_mdi_layers_clear' | 'bk_mdi_layers_clear-fill' | 'bk_mdi_lda' | 'bk_mdi_lda-fill' | 'bk_mdi_leaderboard' | 'bk_mdi_leaderboard-fill' | 'bk_mdi_leak_add' | 'bk_mdi_leak_add-fill' | 'bk_mdi_leak_remove' | 'bk_mdi_leak_remove-fill' | 'bk_mdi_left_click' | 'bk_mdi_left_click-fill' | 'bk_mdi_left_panel_close' | 'bk_mdi_left_panel_close-fill' | 'bk_mdi_left_panel_open' | 'bk_mdi_left_panel_open-fill' | 'bk_mdi_legend_toggle' | 'bk_mdi_legend_toggle-fill' | 'bk_mdi_lens_blur' | 'bk_mdi_lens_blur-fill' | 'bk_mdi_letter_switch' | 'bk_mdi_letter_switch-fill' | 'bk_mdi_library_add' | 'bk_mdi_library_add-fill' | 'bk_mdi_library_add_check' | 'bk_mdi_library_add_check-fill' | 'bk_mdi_library_books' | 'bk_mdi_library_books-fill' | 'bk_mdi_library_music' | 'bk_mdi_library_music-fill' | 'bk_mdi_license' | 'bk_mdi_license-fill' | 'bk_mdi_lift_to_talk' | 'bk_mdi_lift_to_talk-fill' | 'bk_mdi_light' | 'bk_mdi_light-fill' | 'bk_mdi_light_group' | 'bk_mdi_light_group-fill' | 'bk_mdi_light_mode' | 'bk_mdi_light_mode-fill' | 'bk_mdi_light_off' | 'bk_mdi_light_off-fill' | 'bk_mdi_lightbulb' | 'bk_mdi_lightbulb-fill' | 'bk_mdi_lightbulb_2' | 'bk_mdi_lightbulb_2-fill' | 'bk_mdi_lightbulb_circle' | 'bk_mdi_lightbulb_circle-fill' | 'bk_mdi_lightning_stand' | 'bk_mdi_lightning_stand-fill' | 'bk_mdi_line_axis' | 'bk_mdi_line_axis-fill' | 'bk_mdi_line_curve' | 'bk_mdi_line_curve-fill' | 'bk_mdi_line_end' | 'bk_mdi_line_end-fill' | 'bk_mdi_line_end_arrow' | 'bk_mdi_line_end_arrow-fill' | 'bk_mdi_line_end_arrow_notch' | 'bk_mdi_line_end_arrow_notch-fill' | 'bk_mdi_line_end_circle' | 'bk_mdi_line_end_circle-fill' | 'bk_mdi_line_end_diamond' | 'bk_mdi_line_end_diamond-fill' | 'bk_mdi_line_end_square' | 'bk_mdi_line_end_square-fill' | 'bk_mdi_line_start' | 'bk_mdi_line_start-fill' | 'bk_mdi_line_start_arrow' | 'bk_mdi_line_start_arrow-fill' | 'bk_mdi_line_start_arrow_notch' | 'bk_mdi_line_start_arrow_notch-fill' | 'bk_mdi_line_start_circle' | 'bk_mdi_line_start_circle-fill' | 'bk_mdi_line_start_diamond' | 'bk_mdi_line_start_diamond-fill' | 'bk_mdi_line_start_square' | 'bk_mdi_line_start_square-fill' | 'bk_mdi_line_style' | 'bk_mdi_line_style-fill' | 'bk_mdi_line_weight' | 'bk_mdi_line_weight-fill' | 'bk_mdi_linear_scale' | 'bk_mdi_linear_scale-fill' | 'bk_mdi_link' | 'bk_mdi_link-fill' | 'bk_mdi_link_off' | 'bk_mdi_link_off-fill' | 'bk_mdi_linked_camera' | 'bk_mdi_linked_camera-fill' | 'bk_mdi_linked_services' | 'bk_mdi_linked_services-fill' | 'bk_mdi_lips' | 'bk_mdi_lips-fill' | 'bk_mdi_liquor' | 'bk_mdi_liquor-fill' | 'bk_mdi_list' | 'bk_mdi_list-fill' | 'bk_mdi_list_alt' | 'bk_mdi_list_alt-fill' | 'bk_mdi_list_alt_add' | 'bk_mdi_list_alt_add-fill' | 'bk_mdi_list_alt_check' | 'bk_mdi_list_alt_check-fill' | 'bk_mdi_lists' | 'bk_mdi_lists-fill' | 'bk_mdi_live_help' | 'bk_mdi_live_help-fill' | 'bk_mdi_live_tv' | 'bk_mdi_live_tv-fill' | 'bk_mdi_living' | 'bk_mdi_living-fill' | 'bk_mdi_local_activity' | 'bk_mdi_local_activity-fill' | 'bk_mdi_local_atm' | 'bk_mdi_local_atm-fill' | 'bk_mdi_local_bar' | 'bk_mdi_local_bar-fill' | 'bk_mdi_local_cafe' | 'bk_mdi_local_cafe-fill' | 'bk_mdi_local_car_wash' | 'bk_mdi_local_car_wash-fill' | 'bk_mdi_local_convenience_store' | 'bk_mdi_local_convenience_store-fill' | 'bk_mdi_local_dining' | 'bk_mdi_local_dining-fill' | 'bk_mdi_local_drink' | 'bk_mdi_local_drink-fill' | 'bk_mdi_local_fire_department' | 'bk_mdi_local_fire_department-fill' | 'bk_mdi_local_florist' | 'bk_mdi_local_florist-fill' | 'bk_mdi_local_gas_station' | 'bk_mdi_local_gas_station-fill' | 'bk_mdi_local_hospital' | 'bk_mdi_local_hospital-fill' | 'bk_mdi_local_laundry_service' | 'bk_mdi_local_laundry_service-fill' | 'bk_mdi_local_library' | 'bk_mdi_local_library-fill' | 'bk_mdi_local_mall' | 'bk_mdi_local_mall-fill' | 'bk_mdi_local_parking' | 'bk_mdi_local_parking-fill' | 'bk_mdi_local_pharmacy' | 'bk_mdi_local_pharmacy-fill' | 'bk_mdi_local_pizza' | 'bk_mdi_local_pizza-fill' | 'bk_mdi_local_police' | 'bk_mdi_local_police-fill' | 'bk_mdi_local_post_office' | 'bk_mdi_local_post_office-fill' | 'bk_mdi_local_see' | 'bk_mdi_local_see-fill' | 'bk_mdi_local_shipping' | 'bk_mdi_local_shipping-fill' | 'bk_mdi_local_taxi' | 'bk_mdi_local_taxi-fill' | 'bk_mdi_location_away' | 'bk_mdi_location_away-fill' | 'bk_mdi_location_chip' | 'bk_mdi_location_chip-fill' | 'bk_mdi_location_city' | 'bk_mdi_location_city-fill' | 'bk_mdi_location_disabled' | 'bk_mdi_location_disabled-fill' | 'bk_mdi_location_home' | 'bk_mdi_location_home-fill' | 'bk_mdi_location_off' | 'bk_mdi_location_off-fill' | 'bk_mdi_location_on' | 'bk_mdi_location_on-fill' | 'bk_mdi_location_searching' | 'bk_mdi_location_searching-fill' | 'bk_mdi_lock' | 'bk_mdi_lock-fill' | 'bk_mdi_lock_clock' | 'bk_mdi_lock_clock-fill' | 'bk_mdi_lock_open' | 'bk_mdi_lock_open-fill' | 'bk_mdi_lock_open_circle' | 'bk_mdi_lock_open_circle-fill' | 'bk_mdi_lock_open_right' | 'bk_mdi_lock_open_right-fill' | 'bk_mdi_lock_person' | 'bk_mdi_lock_person-fill' | 'bk_mdi_lock_reset' | 'bk_mdi_lock_reset-fill' | 'bk_mdi_login' | 'bk_mdi_login-fill' | 'bk_mdi_logo_dev' | 'bk_mdi_logo_dev-fill' | 'bk_mdi_logout' | 'bk_mdi_logout-fill' | 'bk_mdi_looks' | 'bk_mdi_looks-fill' | 'bk_mdi_looks_3' | 'bk_mdi_looks_3-fill' | 'bk_mdi_looks_4' | 'bk_mdi_looks_4-fill' | 'bk_mdi_looks_5' | 'bk_mdi_looks_5-fill' | 'bk_mdi_looks_6' | 'bk_mdi_looks_6-fill' | 'bk_mdi_looks_one' | 'bk_mdi_looks_one-fill' | 'bk_mdi_looks_two' | 'bk_mdi_looks_two-fill' | 'bk_mdi_loupe' | 'bk_mdi_loupe-fill' | 'bk_mdi_low_density' | 'bk_mdi_low_density-fill' | 'bk_mdi_low_priority' | 'bk_mdi_low_priority-fill' | 'bk_mdi_lowercase' | 'bk_mdi_lowercase-fill' | 'bk_mdi_loyalty' | 'bk_mdi_loyalty-fill' | 'bk_mdi_lte_mobiledata' | 'bk_mdi_lte_mobiledata-fill' | 'bk_mdi_lte_mobiledata_badge' | 'bk_mdi_lte_mobiledata_badge-fill' | 'bk_mdi_lte_plus_mobiledata' | 'bk_mdi_lte_plus_mobiledata-fill' | 'bk_mdi_lte_plus_mobiledata_badge' | 'bk_mdi_lte_plus_mobiledata_badge-fill' | 'bk_mdi_luggage' | 'bk_mdi_luggage-fill' | 'bk_mdi_lunch_dining' | 'bk_mdi_lunch_dining-fill' | 'bk_mdi_lyrics' | 'bk_mdi_lyrics-fill' | 'bk_mdi_macro_auto' | 'bk_mdi_macro_auto-fill' | 'bk_mdi_macro_off' | 'bk_mdi_macro_off-fill' | 'bk_mdi_magnification_large' | 'bk_mdi_magnification_large-fill' | 'bk_mdi_magnification_small' | 'bk_mdi_magnification_small-fill' | 'bk_mdi_magnify_docked' | 'bk_mdi_magnify_docked-fill' | 'bk_mdi_magnify_fullscreen' | 'bk_mdi_magnify_fullscreen-fill' | 'bk_mdi_mail' | 'bk_mdi_mail-fill' | 'bk_mdi_mail_asterisk' | 'bk_mdi_mail_asterisk-fill' | 'bk_mdi_mail_lock' | 'bk_mdi_mail_lock-fill' | 'bk_mdi_mail_off' | 'bk_mdi_mail_off-fill' | 'bk_mdi_mail_shield' | 'bk_mdi_mail_shield-fill' | 'bk_mdi_male' | 'bk_mdi_male-fill' | 'bk_mdi_man' | 'bk_mdi_man-fill' | 'bk_mdi_man_2' | 'bk_mdi_man_2-fill' | 'bk_mdi_man_3' | 'bk_mdi_man_3-fill' | 'bk_mdi_man_4' | 'bk_mdi_man_4-fill' | 'bk_mdi_manage_accounts' | 'bk_mdi_manage_accounts-fill' | 'bk_mdi_manage_history' | 'bk_mdi_manage_history-fill' | 'bk_mdi_manage_search' | 'bk_mdi_manage_search-fill' | 'bk_mdi_manga' | 'bk_mdi_manga-fill' | 'bk_mdi_manufacturing' | 'bk_mdi_manufacturing-fill' | 'bk_mdi_map' | 'bk_mdi_map-fill' | 'bk_mdi_map_pin_heart' | 'bk_mdi_map_pin_heart-fill' | 'bk_mdi_map_pin_review' | 'bk_mdi_map_pin_review-fill' | 'bk_mdi_map_search' | 'bk_mdi_map_search-fill' | 'bk_mdi_maps_ugc' | 'bk_mdi_maps_ugc-fill' | 'bk_mdi_margin' | 'bk_mdi_margin-fill' | 'bk_mdi_mark_as_unread' | 'bk_mdi_mark_as_unread-fill' | 'bk_mdi_mark_chat_read' | 'bk_mdi_mark_chat_read-fill' | 'bk_mdi_mark_chat_unread' | 'bk_mdi_mark_chat_unread-fill' | 'bk_mdi_mark_email_read' | 'bk_mdi_mark_email_read-fill' | 'bk_mdi_mark_email_unread' | 'bk_mdi_mark_email_unread-fill' | 'bk_mdi_mark_unread_chat_alt' | 'bk_mdi_mark_unread_chat_alt-fill' | 'bk_mdi_markdown' | 'bk_mdi_markdown-fill' | 'bk_mdi_markdown_copy' | 'bk_mdi_markdown_copy-fill' | 'bk_mdi_markdown_paste' | 'bk_mdi_markdown_paste-fill' | 'bk_mdi_markunread_mailbox' | 'bk_mdi_markunread_mailbox-fill' | 'bk_mdi_masked_transitions' | 'bk_mdi_masked_transitions-fill' | 'bk_mdi_masked_transitions_add' | 'bk_mdi_masked_transitions_add-fill' | 'bk_mdi_masks' | 'bk_mdi_masks-fill' | 'bk_mdi_massage' | 'bk_mdi_massage-fill' | 'bk_mdi_match_case' | 'bk_mdi_match_case-fill' | 'bk_mdi_match_case_off' | 'bk_mdi_match_case_off-fill' | 'bk_mdi_match_word' | 'bk_mdi_match_word-fill' | 'bk_mdi_matter' | 'bk_mdi_matter-fill' | 'bk_mdi_maximize' | 'bk_mdi_maximize-fill' | 'bk_mdi_meal_dinner' | 'bk_mdi_meal_dinner-fill' | 'bk_mdi_meal_lunch' | 'bk_mdi_meal_lunch-fill' | 'bk_mdi_measuring_tape' | 'bk_mdi_measuring_tape-fill' | 'bk_mdi_media_bluetooth_off' | 'bk_mdi_media_bluetooth_off-fill' | 'bk_mdi_media_bluetooth_on' | 'bk_mdi_media_bluetooth_on-fill' | 'bk_mdi_media_link' | 'bk_mdi_media_link-fill' | 'bk_mdi_media_output' | 'bk_mdi_media_output-fill' | 'bk_mdi_media_output_off' | 'bk_mdi_media_output_off-fill' | 'bk_mdi_mediation' | 'bk_mdi_mediation-fill' | 'bk_mdi_medical_information' | 'bk_mdi_medical_information-fill' | 'bk_mdi_medical_mask' | 'bk_mdi_medical_mask-fill' | 'bk_mdi_medical_services' | 'bk_mdi_medical_services-fill' | 'bk_mdi_medication' | 'bk_mdi_medication-fill' | 'bk_mdi_medication_liquid' | 'bk_mdi_medication_liquid-fill' | 'bk_mdi_meeting_room' | 'bk_mdi_meeting_room-fill' | 'bk_mdi_memory' | 'bk_mdi_memory-fill' | 'bk_mdi_memory_alt' | 'bk_mdi_memory_alt-fill' | 'bk_mdi_menstrual_health' | 'bk_mdi_menstrual_health-fill' | 'bk_mdi_menu' | 'bk_mdi_menu-fill' | 'bk_mdi_menu_book' | 'bk_mdi_menu_book-fill' | 'bk_mdi_menu_book_2' | 'bk_mdi_menu_book_2-fill' | 'bk_mdi_menu_open' | 'bk_mdi_menu_open-fill' | 'bk_mdi_merge' | 'bk_mdi_merge-fill' | 'bk_mdi_merge_type' | 'bk_mdi_merge_type-fill' | 'bk_mdi_metabolism' | 'bk_mdi_metabolism-fill' | 'bk_mdi_metro' | 'bk_mdi_metro-fill' | 'bk_mdi_mfg_nest_yale_lock' | 'bk_mdi_mfg_nest_yale_lock-fill' | 'bk_mdi_mic' | 'bk_mdi_mic-fill' | 'bk_mdi_mic_alert' | 'bk_mdi_mic_alert-fill' | 'bk_mdi_mic_double' | 'bk_mdi_mic_double-fill' | 'bk_mdi_mic_external_off' | 'bk_mdi_mic_external_off-fill' | 'bk_mdi_mic_external_on' | 'bk_mdi_mic_external_on-fill' | 'bk_mdi_mic_gear' | 'bk_mdi_mic_gear-fill' | 'bk_mdi_mic_off' | 'bk_mdi_mic_off-fill' | 'bk_mdi_microbiology' | 'bk_mdi_microbiology-fill' | 'bk_mdi_microwave' | 'bk_mdi_microwave-fill' | 'bk_mdi_microwave_gen' | 'bk_mdi_microwave_gen-fill' | 'bk_mdi_military_tech' | 'bk_mdi_military_tech-fill' | 'bk_mdi_mimo' | 'bk_mdi_mimo-fill' | 'bk_mdi_mimo_disconnect' | 'bk_mdi_mimo_disconnect-fill' | 'bk_mdi_mindfulness' | 'bk_mdi_mindfulness-fill' | 'bk_mdi_minimize' | 'bk_mdi_minimize-fill' | 'bk_mdi_minor_crash' | 'bk_mdi_minor_crash-fill' | 'bk_mdi_mintmark' | 'bk_mdi_mintmark-fill' | 'bk_mdi_missed_video_call' | 'bk_mdi_missed_video_call-fill' | 'bk_mdi_missing_controller' | 'bk_mdi_missing_controller-fill' | 'bk_mdi_mist' | 'bk_mdi_mist-fill' | 'bk_mdi_mitre' | 'bk_mdi_mitre-fill' | 'bk_mdi_mixture_med' | 'bk_mdi_mixture_med-fill' | 'bk_mdi_mms' | 'bk_mdi_mms-fill' | 'bk_mdi_mobile' | 'bk_mdi_mobile-fill' | 'bk_mdi_mobile_2' | 'bk_mdi_mobile_2-fill' | 'bk_mdi_mobile_3' | 'bk_mdi_mobile_3-fill' | 'bk_mdi_mobile_alert' | 'bk_mdi_mobile_alert-fill' | 'bk_mdi_mobile_arrow_down' | 'bk_mdi_mobile_arrow_down-fill' | 'bk_mdi_mobile_arrow_right' | 'bk_mdi_mobile_arrow_right-fill' | 'bk_mdi_mobile_arrow_up_right' | 'bk_mdi_mobile_arrow_up_right-fill' | 'bk_mdi_mobile_block' | 'bk_mdi_mobile_block-fill' | 'bk_mdi_mobile_camera' | 'bk_mdi_mobile_camera-fill' | 'bk_mdi_mobile_camera_front' | 'bk_mdi_mobile_camera_front-fill' | 'bk_mdi_mobile_camera_rear' | 'bk_mdi_mobile_camera_rear-fill' | 'bk_mdi_mobile_cancel' | 'bk_mdi_mobile_cancel-fill' | 'bk_mdi_mobile_cast' | 'bk_mdi_mobile_cast-fill' | 'bk_mdi_mobile_charge' | 'bk_mdi_mobile_charge-fill' | 'bk_mdi_mobile_chat' | 'bk_mdi_mobile_chat-fill' | 'bk_mdi_mobile_check' | 'bk_mdi_mobile_check-fill' | 'bk_mdi_mobile_code' | 'bk_mdi_mobile_code-fill' | 'bk_mdi_mobile_dots' | 'bk_mdi_mobile_dots-fill' | 'bk_mdi_mobile_gear' | 'bk_mdi_mobile_gear-fill' | 'bk_mdi_mobile_hand' | 'bk_mdi_mobile_hand-fill' | 'bk_mdi_mobile_hand_left' | 'bk_mdi_mobile_hand_left-fill' | 'bk_mdi_mobile_hand_left_off' | 'bk_mdi_mobile_hand_left_off-fill' | 'bk_mdi_mobile_hand_off' | 'bk_mdi_mobile_hand_off-fill' | 'bk_mdi_mobile_info' | 'bk_mdi_mobile_info-fill' | 'bk_mdi_mobile_landscape' | 'bk_mdi_mobile_landscape-fill' | 'bk_mdi_mobile_layout' | 'bk_mdi_mobile_layout-fill' | 'bk_mdi_mobile_lock_landscape' | 'bk_mdi_mobile_lock_landscape-fill' | 'bk_mdi_mobile_lock_portrait' | 'bk_mdi_mobile_lock_portrait-fill' | 'bk_mdi_mobile_loupe' | 'bk_mdi_mobile_loupe-fill' | 'bk_mdi_mobile_menu' | 'bk_mdi_mobile_menu-fill' | 'bk_mdi_mobile_off' | 'bk_mdi_mobile_off-fill' | 'bk_mdi_mobile_question' | 'bk_mdi_mobile_question-fill' | 'bk_mdi_mobile_rotate' | 'bk_mdi_mobile_rotate-fill' | 'bk_mdi_mobile_rotate_lock' | 'bk_mdi_mobile_rotate_lock-fill' | 'bk_mdi_mobile_screensaver' | 'bk_mdi_mobile_screensaver-fill' | 'bk_mdi_mobile_sensor_hi' | 'bk_mdi_mobile_sensor_hi-fill' | 'bk_mdi_mobile_sensor_lo' | 'bk_mdi_mobile_sensor_lo-fill' | 'bk_mdi_mobile_share' | 'bk_mdi_mobile_share-fill' | 'bk_mdi_mobile_share_stack' | 'bk_mdi_mobile_share_stack-fill' | 'bk_mdi_mobile_sound' | 'bk_mdi_mobile_sound-fill' | 'bk_mdi_mobile_sound_2' | 'bk_mdi_mobile_sound_2-fill' | 'bk_mdi_mobile_sound_off' | 'bk_mdi_mobile_sound_off-fill' | 'bk_mdi_mobile_speaker' | 'bk_mdi_mobile_speaker-fill' | 'bk_mdi_mobile_text' | 'bk_mdi_mobile_text-fill' | 'bk_mdi_mobile_text_2' | 'bk_mdi_mobile_text_2-fill' | 'bk_mdi_mobile_theft' | 'bk_mdi_mobile_theft-fill' | 'bk_mdi_mobile_ticket' | 'bk_mdi_mobile_ticket-fill' | 'bk_mdi_mobile_unlock' | 'bk_mdi_mobile_unlock-fill' | 'bk_mdi_mobile_vibrate' | 'bk_mdi_mobile_vibrate-fill' | 'bk_mdi_mobile_wrench' | 'bk_mdi_mobile_wrench-fill' | 'bk_mdi_mobiledata_off' | 'bk_mdi_mobiledata_off-fill' | 'bk_mdi_mode_comment' | 'bk_mdi_mode_comment-fill' | 'bk_mdi_mode_cool' | 'bk_mdi_mode_cool-fill' | 'bk_mdi_mode_cool_off' | 'bk_mdi_mode_cool_off-fill' | 'bk_mdi_mode_dual' | 'bk_mdi_mode_dual-fill' | 'bk_mdi_mode_fan' | 'bk_mdi_mode_fan-fill' | 'bk_mdi_mode_fan_off' | 'bk_mdi_mode_fan_off-fill' | 'bk_mdi_mode_heat' | 'bk_mdi_mode_heat-fill' | 'bk_mdi_mode_heat_cool' | 'bk_mdi_mode_heat_cool-fill' | 'bk_mdi_mode_heat_off' | 'bk_mdi_mode_heat_off-fill' | 'bk_mdi_mode_night' | 'bk_mdi_mode_night-fill' | 'bk_mdi_mode_of_travel' | 'bk_mdi_mode_of_travel-fill' | 'bk_mdi_mode_off_on' | 'bk_mdi_mode_off_on-fill' | 'bk_mdi_mode_standby' | 'bk_mdi_mode_standby-fill' | 'bk_mdi_model_training' | 'bk_mdi_model_training-fill' | 'bk_mdi_modeling' | 'bk_mdi_modeling-fill' | 'bk_mdi_money' | 'bk_mdi_money-fill' | 'bk_mdi_money_bag' | 'bk_mdi_money_bag-fill' | 'bk_mdi_money_off' | 'bk_mdi_money_off-fill' | 'bk_mdi_money_range' | 'bk_mdi_money_range-fill' | 'bk_mdi_monitor' | 'bk_mdi_monitor-fill' | 'bk_mdi_monitor_heart' | 'bk_mdi_monitor_heart-fill' | 'bk_mdi_monitor_weight' | 'bk_mdi_monitor_weight-fill' | 'bk_mdi_monitor_weight_gain' | 'bk_mdi_monitor_weight_gain-fill' | 'bk_mdi_monitor_weight_loss' | 'bk_mdi_monitor_weight_loss-fill' | 'bk_mdi_monitoring' | 'bk_mdi_monitoring-fill' | 'bk_mdi_monochrome_photos' | 'bk_mdi_monochrome_photos-fill' | 'bk_mdi_monorail' | 'bk_mdi_monorail-fill' | 'bk_mdi_mood' | 'bk_mdi_mood-fill' | 'bk_mdi_mood_bad' | 'bk_mdi_mood_bad-fill' | 'bk_mdi_moon_stars' | 'bk_mdi_moon_stars-fill' | 'bk_mdi_mop' | 'bk_mdi_mop-fill' | 'bk_mdi_moped' | 'bk_mdi_moped-fill' | 'bk_mdi_moped_package' | 'bk_mdi_moped_package-fill' | 'bk_mdi_more' | 'bk_mdi_more-fill' | 'bk_mdi_more_down' | 'bk_mdi_more_down-fill' | 'bk_mdi_more_horiz' | 'bk_mdi_more_horiz-fill' | 'bk_mdi_more_time' | 'bk_mdi_more_time-fill' | 'bk_mdi_more_up' | 'bk_mdi_more_up-fill' | 'bk_mdi_more_vert' | 'bk_mdi_more_vert-fill' | 'bk_mdi_mosque' | 'bk_mdi_mosque-fill' | 'bk_mdi_motion_blur' | 'bk_mdi_motion_blur-fill' | 'bk_mdi_motion_mode' | 'bk_mdi_motion_mode-fill' | 'bk_mdi_motion_photos_auto' | 'bk_mdi_motion_photos_auto-fill' | 'bk_mdi_motion_photos_on' | 'bk_mdi_motion_photos_on-fill' | 'bk_mdi_motion_photos_paused' | 'bk_mdi_motion_photos_paused-fill' | 'bk_mdi_motion_play' | 'bk_mdi_motion_play-fill' | 'bk_mdi_motion_sensor_active' | 'bk_mdi_motion_sensor_active-fill' | 'bk_mdi_motion_sensor_alert' | 'bk_mdi_motion_sensor_alert-fill' | 'bk_mdi_motion_sensor_idle' | 'bk_mdi_motion_sensor_idle-fill' | 'bk_mdi_motion_sensor_urgent' | 'bk_mdi_motion_sensor_urgent-fill' | 'bk_mdi_motorcycle' | 'bk_mdi_motorcycle-fill' | 'bk_mdi_mountain_flag' | 'bk_mdi_mountain_flag-fill' | 'bk_mdi_mountain_steam' | 'bk_mdi_mountain_steam-fill' | 'bk_mdi_mouse' | 'bk_mdi_mouse-fill' | 'bk_mdi_mouse_lock' | 'bk_mdi_mouse_lock-fill' | 'bk_mdi_mouse_lock_off' | 'bk_mdi_mouse_lock_off-fill' | 'bk_mdi_move' | 'bk_mdi_move-fill' | 'bk_mdi_move_down' | 'bk_mdi_move_down-fill' | 'bk_mdi_move_group' | 'bk_mdi_move_group-fill' | 'bk_mdi_move_item' | 'bk_mdi_move_item-fill' | 'bk_mdi_move_location' | 'bk_mdi_move_location-fill' | 'bk_mdi_move_selection_down' | 'bk_mdi_move_selection_down-fill' | 'bk_mdi_move_selection_left' | 'bk_mdi_move_selection_left-fill' | 'bk_mdi_move_selection_right' | 'bk_mdi_move_selection_right-fill' | 'bk_mdi_move_selection_up' | 'bk_mdi_move_selection_up-fill' | 'bk_mdi_move_to_inbox' | 'bk_mdi_move_to_inbox-fill' | 'bk_mdi_move_up' | 'bk_mdi_move_up-fill' | 'bk_mdi_moved_location' | 'bk_mdi_moved_location-fill' | 'bk_mdi_movie' | 'bk_mdi_movie-fill' | 'bk_mdi_movie_edit' | 'bk_mdi_movie_edit-fill' | 'bk_mdi_movie_info' | 'bk_mdi_movie_info-fill' | 'bk_mdi_movie_off' | 'bk_mdi_movie_off-fill' | 'bk_mdi_movie_speaker' | 'bk_mdi_movie_speaker-fill' | 'bk_mdi_moving' | 'bk_mdi_moving-fill' | 'bk_mdi_moving_beds' | 'bk_mdi_moving_beds-fill' | 'bk_mdi_moving_ministry' | 'bk_mdi_moving_ministry-fill' | 'bk_mdi_mp' | 'bk_mdi_mp-fill' | 'bk_mdi_multicooker' | 'bk_mdi_multicooker-fill' | 'bk_mdi_multiline_chart' | 'bk_mdi_multiline_chart-fill' | 'bk_mdi_multimodal_hand_eye' | 'bk_mdi_multimodal_hand_eye-fill' | 'bk_mdi_multiple_airports' | 'bk_mdi_multiple_airports-fill' | 'bk_mdi_multiple_stop' | 'bk_mdi_multiple_stop-fill' | 'bk_mdi_museum' | 'bk_mdi_museum-fill' | 'bk_mdi_music_cast' | 'bk_mdi_music_cast-fill' | 'bk_mdi_music_history' | 'bk_mdi_music_history-fill' | 'bk_mdi_music_note' | 'bk_mdi_music_note-fill' | 'bk_mdi_music_note_2' | 'bk_mdi_music_note_2-fill' | 'bk_mdi_music_note_add' | 'bk_mdi_music_note_add-fill' | 'bk_mdi_music_off' | 'bk_mdi_music_off-fill' | 'bk_mdi_music_video' | 'bk_mdi_music_video-fill' | 'bk_mdi_my_location' | 'bk_mdi_my_location-fill' | 'bk_mdi_mystery' | 'bk_mdi_mystery-fill' | 'bk_mdi_nat' | 'bk_mdi_nat-fill' | 'bk_mdi_nature' | 'bk_mdi_nature-fill' | 'bk_mdi_nature_people' | 'bk_mdi_nature_people-fill' | 'bk_mdi_navigation' | 'bk_mdi_navigation-fill' | 'bk_mdi_near_me' | 'bk_mdi_near_me-fill' | 'bk_mdi_near_me_disabled' | 'bk_mdi_near_me_disabled-fill' | 'bk_mdi_nearby' | 'bk_mdi_nearby-fill' | 'bk_mdi_nearby_error' | 'bk_mdi_nearby_error-fill' | 'bk_mdi_nearby_off' | 'bk_mdi_nearby_off-fill' | 'bk_mdi_nephrology' | 'bk_mdi_nephrology-fill' | 'bk_mdi_nest_audio' | 'bk_mdi_nest_audio-fill' | 'bk_mdi_nest_cam_floodlight' | 'bk_mdi_nest_cam_floodlight-fill' | 'bk_mdi_nest_cam_indoor' | 'bk_mdi_nest_cam_indoor-fill' | 'bk_mdi_nest_cam_iq' | 'bk_mdi_nest_cam_iq-fill' | 'bk_mdi_nest_cam_iq_outdoor' | 'bk_mdi_nest_cam_iq_outdoor-fill' | 'bk_mdi_nest_cam_magnet_mount' | 'bk_mdi_nest_cam_magnet_mount-fill' | 'bk_mdi_nest_cam_outdoor' | 'bk_mdi_nest_cam_outdoor-fill' | 'bk_mdi_nest_cam_stand' | 'bk_mdi_nest_cam_stand-fill' | 'bk_mdi_nest_cam_wall_mount' | 'bk_mdi_nest_cam_wall_mount-fill' | 'bk_mdi_nest_cam_wired_stand' | 'bk_mdi_nest_cam_wired_stand-fill' | 'bk_mdi_nest_clock_farsight_analog' | 'bk_mdi_nest_clock_farsight_analog-fill' | 'bk_mdi_nest_clock_farsight_digital' | 'bk_mdi_nest_clock_farsight_digital-fill' | 'bk_mdi_nest_connect' | 'bk_mdi_nest_connect-fill' | 'bk_mdi_nest_detect' | 'bk_mdi_nest_detect-fill' | 'bk_mdi_nest_display' | 'bk_mdi_nest_display-fill' | 'bk_mdi_nest_display_max' | 'bk_mdi_nest_display_max-fill' | 'bk_mdi_nest_doorbell_visitor' | 'bk_mdi_nest_doorbell_visitor-fill' | 'bk_mdi_nest_eco_leaf' | 'bk_mdi_nest_eco_leaf-fill' | 'bk_mdi_nest_farsight_cool' | 'bk_mdi_nest_farsight_cool-fill' | 'bk_mdi_nest_farsight_dual' | 'bk_mdi_nest_farsight_dual-fill' | 'bk_mdi_nest_farsight_eco' | 'bk_mdi_nest_farsight_eco-fill' | 'bk_mdi_nest_farsight_heat' | 'bk_mdi_nest_farsight_heat-fill' | 'bk_mdi_nest_farsight_seasonal' | 'bk_mdi_nest_farsight_seasonal-fill' | 'bk_mdi_nest_farsight_weather' | 'bk_mdi_nest_farsight_weather-fill' | 'bk_mdi_nest_found_savings' | 'bk_mdi_nest_found_savings-fill' | 'bk_mdi_nest_heat_link_e' | 'bk_mdi_nest_heat_link_e-fill' | 'bk_mdi_nest_heat_link_gen_3' | 'bk_mdi_nest_heat_link_gen_3-fill' | 'bk_mdi_nest_hello_doorbell' | 'bk_mdi_nest_hello_doorbell-fill' | 'bk_mdi_nest_mini' | 'bk_mdi_nest_mini-fill' | 'bk_mdi_nest_multi_room' | 'bk_mdi_nest_multi_room-fill' | 'bk_mdi_nest_protect' | 'bk_mdi_nest_protect-fill' | 'bk_mdi_nest_remote_comfort_sensor' | 'bk_mdi_nest_remote_comfort_sensor-fill' | 'bk_mdi_nest_secure_alarm' | 'bk_mdi_nest_secure_alarm-fill' | 'bk_mdi_nest_sunblock' | 'bk_mdi_nest_sunblock-fill' | 'bk_mdi_nest_tag' | 'bk_mdi_nest_tag-fill' | 'bk_mdi_nest_thermostat' | 'bk_mdi_nest_thermostat-fill' | 'bk_mdi_nest_thermostat_e_eu' | 'bk_mdi_nest_thermostat_e_eu-fill' | 'bk_mdi_nest_thermostat_gen_3' | 'bk_mdi_nest_thermostat_gen_3-fill' | 'bk_mdi_nest_thermostat_sensor' | 'bk_mdi_nest_thermostat_sensor-fill' | 'bk_mdi_nest_thermostat_sensor_eu' | 'bk_mdi_nest_thermostat_sensor_eu-fill' | 'bk_mdi_nest_thermostat_zirconium_eu' | 'bk_mdi_nest_thermostat_zirconium_eu-fill' | 'bk_mdi_nest_true_radiant' | 'bk_mdi_nest_true_radiant-fill' | 'bk_mdi_nest_wake_on_approach' | 'bk_mdi_nest_wake_on_approach-fill' | 'bk_mdi_nest_wake_on_press' | 'bk_mdi_nest_wake_on_press-fill' | 'bk_mdi_nest_wifi_point' | 'bk_mdi_nest_wifi_point-fill' | 'bk_mdi_nest_wifi_pro' | 'bk_mdi_nest_wifi_pro-fill' | 'bk_mdi_nest_wifi_pro_2' | 'bk_mdi_nest_wifi_pro_2-fill' | 'bk_mdi_nest_wifi_router' | 'bk_mdi_nest_wifi_router-fill' | 'bk_mdi_network_cell' | 'bk_mdi_network_cell-fill' | 'bk_mdi_network_check' | 'bk_mdi_network_check-fill' | 'bk_mdi_network_intel_node' | 'bk_mdi_network_intel_node-fill' | 'bk_mdi_network_intelligence' | 'bk_mdi_network_intelligence-fill' | 'bk_mdi_network_intelligence_history' | 'bk_mdi_network_intelligence_history-fill' | 'bk_mdi_network_intelligence_update' | 'bk_mdi_network_intelligence_update-fill' | 'bk_mdi_network_locked' | 'bk_mdi_network_locked-fill' | 'bk_mdi_network_manage' | 'bk_mdi_network_manage-fill' | 'bk_mdi_network_node' | 'bk_mdi_network_node-fill' | 'bk_mdi_network_ping' | 'bk_mdi_network_ping-fill' | 'bk_mdi_network_wifi' | 'bk_mdi_network_wifi-fill' | 'bk_mdi_network_wifi_1_bar' | 'bk_mdi_network_wifi_1_bar-fill' | 'bk_mdi_network_wifi_1_bar_locked' | 'bk_mdi_network_wifi_1_bar_locked-fill' | 'bk_mdi_network_wifi_2_bar' | 'bk_mdi_network_wifi_2_bar-fill' | 'bk_mdi_network_wifi_2_bar_locked' | 'bk_mdi_network_wifi_2_bar_locked-fill' | 'bk_mdi_network_wifi_3_bar' | 'bk_mdi_network_wifi_3_bar-fill' | 'bk_mdi_network_wifi_3_bar_locked' | 'bk_mdi_network_wifi_3_bar_locked-fill' | 'bk_mdi_network_wifi_locked' | 'bk_mdi_network_wifi_locked-fill' | 'bk_mdi_neurology' | 'bk_mdi_neurology-fill' | 'bk_mdi_new_label' | 'bk_mdi_new_label-fill' | 'bk_mdi_new_window' | 'bk_mdi_new_window-fill' | 'bk_mdi_news' | 'bk_mdi_news-fill' | 'bk_mdi_newsmode' | 'bk_mdi_newsmode-fill' | 'bk_mdi_newspaper' | 'bk_mdi_newspaper-fill' | 'bk_mdi_newsstand' | 'bk_mdi_newsstand-fill' | 'bk_mdi_next_plan' | 'bk_mdi_next_plan-fill' | 'bk_mdi_next_week' | 'bk_mdi_next_week-fill' | 'bk_mdi_nfc' | 'bk_mdi_nfc-fill' | 'bk_mdi_nfc_off' | 'bk_mdi_nfc_off-fill' | 'bk_mdi_night_shelter' | 'bk_mdi_night_shelter-fill' | 'bk_mdi_night_sight_auto' | 'bk_mdi_night_sight_auto-fill' | 'bk_mdi_night_sight_auto_off' | 'bk_mdi_night_sight_auto_off-fill' | 'bk_mdi_night_sight_max' | 'bk_mdi_night_sight_max-fill' | 'bk_mdi_nightlife' | 'bk_mdi_nightlife-fill' | 'bk_mdi_nightlight' | 'bk_mdi_nightlight-fill' | 'bk_mdi_no_accounts' | 'bk_mdi_no_accounts-fill' | 'bk_mdi_no_adult_content' | 'bk_mdi_no_adult_content-fill' | 'bk_mdi_no_backpack' | 'bk_mdi_no_backpack-fill' | 'bk_mdi_no_crash' | 'bk_mdi_no_crash-fill' | 'bk_mdi_no_drinks' | 'bk_mdi_no_drinks-fill' | 'bk_mdi_no_encryption' | 'bk_mdi_no_encryption-fill' | 'bk_mdi_no_flash' | 'bk_mdi_no_flash-fill' | 'bk_mdi_no_food' | 'bk_mdi_no_food-fill' | 'bk_mdi_no_luggage' | 'bk_mdi_no_luggage-fill' | 'bk_mdi_no_meals' | 'bk_mdi_no_meals-fill' | 'bk_mdi_no_meeting_room' | 'bk_mdi_no_meeting_room-fill' | 'bk_mdi_no_photography' | 'bk_mdi_no_photography-fill' | 'bk_mdi_no_sim' | 'bk_mdi_no_sim-fill' | 'bk_mdi_no_sound' | 'bk_mdi_no_sound-fill' | 'bk_mdi_no_stroller' | 'bk_mdi_no_stroller-fill' | 'bk_mdi_no_transfer' | 'bk_mdi_no_transfer-fill' | 'bk_mdi_noise_aware' | 'bk_mdi_noise_aware-fill' | 'bk_mdi_noise_control_off' | 'bk_mdi_noise_control_off-fill' | 'bk_mdi_noise_control_on' | 'bk_mdi_noise_control_on-fill' | 'bk_mdi_nordic_walking' | 'bk_mdi_nordic_walking-fill' | 'bk_mdi_north' | 'bk_mdi_north-fill' | 'bk_mdi_north_east' | 'bk_mdi_north_east-fill' | 'bk_mdi_north_west' | 'bk_mdi_north_west-fill' | 'bk_mdi_not_accessible' | 'bk_mdi_not_accessible-fill' | 'bk_mdi_not_accessible_forward' | 'bk_mdi_not_accessible_forward-fill' | 'bk_mdi_not_listed_location' | 'bk_mdi_not_listed_location-fill' | 'bk_mdi_not_started' | 'bk_mdi_not_started-fill' | 'bk_mdi_note_add' | 'bk_mdi_note_add-fill' | 'bk_mdi_note_alt' | 'bk_mdi_note_alt-fill' | 'bk_mdi_note_stack' | 'bk_mdi_note_stack-fill' | 'bk_mdi_note_stack_add' | 'bk_mdi_note_stack_add-fill' | 'bk_mdi_notes' | 'bk_mdi_notes-fill' | 'bk_mdi_notification_add' | 'bk_mdi_notification_add-fill' | 'bk_mdi_notification_audio' | 'bk_mdi_notification_audio-fill' | 'bk_mdi_notification_audio_off' | 'bk_mdi_notification_audio_off-fill' | 'bk_mdi_notification_important' | 'bk_mdi_notification_important-fill' | 'bk_mdi_notification_multiple' | 'bk_mdi_notification_multiple-fill' | 'bk_mdi_notification_settings' | 'bk_mdi_notification_settings-fill' | 'bk_mdi_notification_sound' | 'bk_mdi_notification_sound-fill' | 'bk_mdi_notifications' | 'bk_mdi_notifications-fill' | 'bk_mdi_notifications_active' | 'bk_mdi_notifications_active-fill' | 'bk_mdi_notifications_off' | 'bk_mdi_notifications_off-fill' | 'bk_mdi_notifications_paused' | 'bk_mdi_notifications_paused-fill' | 'bk_mdi_notifications_unread' | 'bk_mdi_notifications_unread-fill' | 'bk_mdi_numbers' | 'bk_mdi_numbers-fill' | 'bk_mdi_nutrition' | 'bk_mdi_nutrition-fill' | 'bk_mdi_ods' | 'bk_mdi_ods-fill' | 'bk_mdi_odt' | 'bk_mdi_odt-fill' | 'bk_mdi_offline_bolt' | 'bk_mdi_offline_bolt-fill' | 'bk_mdi_offline_pin' | 'bk_mdi_offline_pin-fill' | 'bk_mdi_offline_pin_off' | 'bk_mdi_offline_pin_off-fill' | 'bk_mdi_oil_barrel' | 'bk_mdi_oil_barrel-fill' | 'bk_mdi_okonomiyaki' | 'bk_mdi_okonomiyaki-fill' | 'bk_mdi_on_device_training' | 'bk_mdi_on_device_training-fill' | 'bk_mdi_on_hub_device' | 'bk_mdi_on_hub_device-fill' | 'bk_mdi_oncology' | 'bk_mdi_oncology-fill' | 'bk_mdi_online_prediction' | 'bk_mdi_online_prediction-fill' | 'bk_mdi_onsen' | 'bk_mdi_onsen-fill' | 'bk_mdi_opacity' | 'bk_mdi_opacity-fill' | 'bk_mdi_open_in_browser' | 'bk_mdi_open_in_browser-fill' | 'bk_mdi_open_in_full' | 'bk_mdi_open_in_full-fill' | 'bk_mdi_open_in_new' | 'bk_mdi_open_in_new-fill' | 'bk_mdi_open_in_new_down' | 'bk_mdi_open_in_new_down-fill' | 'bk_mdi_open_in_new_off' | 'bk_mdi_open_in_new_off-fill' | 'bk_mdi_open_jam' | 'bk_mdi_open_jam-fill' | 'bk_mdi_open_run' | 'bk_mdi_open_run-fill' | 'bk_mdi_open_with' | 'bk_mdi_open_with-fill' | 'bk_mdi_ophthalmology' | 'bk_mdi_ophthalmology-fill' | 'bk_mdi_oral_disease' | 'bk_mdi_oral_disease-fill' | 'bk_mdi_orbit' | 'bk_mdi_orbit-fill' | 'bk_mdi_order_approve' | 'bk_mdi_order_approve-fill' | 'bk_mdi_order_play' | 'bk_mdi_order_play-fill' | 'bk_mdi_orders' | 'bk_mdi_orders-fill' | 'bk_mdi_orthopedics' | 'bk_mdi_orthopedics-fill' | 'bk_mdi_other_admission' | 'bk_mdi_other_admission-fill' | 'bk_mdi_other_houses' | 'bk_mdi_other_houses-fill' | 'bk_mdi_outbound' | 'bk_mdi_outbound-fill' | 'bk_mdi_outbox' | 'bk_mdi_outbox-fill' | 'bk_mdi_outbox_alt' | 'bk_mdi_outbox_alt-fill' | 'bk_mdi_outdoor_garden' | 'bk_mdi_outdoor_garden-fill' | 'bk_mdi_outdoor_grill' | 'bk_mdi_outdoor_grill-fill' | 'bk_mdi_outgoing_mail' | 'bk_mdi_outgoing_mail-fill' | 'bk_mdi_outlet' | 'bk_mdi_outlet-fill' | 'bk_mdi_outpatient' | 'bk_mdi_outpatient-fill' | 'bk_mdi_outpatient_med' | 'bk_mdi_outpatient_med-fill' | 'bk_mdi_output' | 'bk_mdi_output-fill' | 'bk_mdi_output_circle' | 'bk_mdi_output_circle-fill' | 'bk_mdi_oven' | 'bk_mdi_oven-fill' | 'bk_mdi_oven_gen' | 'bk_mdi_oven_gen-fill' | 'bk_mdi_overview' | 'bk_mdi_overview-fill' | 'bk_mdi_overview_key' | 'bk_mdi_overview_key-fill' | 'bk_mdi_owl' | 'bk_mdi_owl-fill' | 'bk_mdi_oxygen_saturation' | 'bk_mdi_oxygen_saturation-fill' | 'bk_mdi_p2p' | 'bk_mdi_p2p-fill' | 'bk_mdi_pace' | 'bk_mdi_pace-fill' | 'bk_mdi_pacemaker' | 'bk_mdi_pacemaker-fill' | 'bk_mdi_package' | 'bk_mdi_package-fill' | 'bk_mdi_package_2' | 'bk_mdi_package_2-fill' | 'bk_mdi_padding' | 'bk_mdi_padding-fill' | 'bk_mdi_padel' | 'bk_mdi_padel-fill' | 'bk_mdi_page_control' | 'bk_mdi_page_control-fill' | 'bk_mdi_page_footer' | 'bk_mdi_page_footer-fill' | 'bk_mdi_page_header' | 'bk_mdi_page_header-fill' | 'bk_mdi_page_info' | 'bk_mdi_page_info-fill' | 'bk_mdi_page_menu_ios' | 'bk_mdi_page_menu_ios-fill' | 'bk_mdi_pageless' | 'bk_mdi_pageless-fill' | 'bk_mdi_pages' | 'bk_mdi_pages-fill' | 'bk_mdi_pageview' | 'bk_mdi_pageview-fill' | 'bk_mdi_paid' | 'bk_mdi_paid-fill' | 'bk_mdi_palette' | 'bk_mdi_palette-fill' | 'bk_mdi_pallet' | 'bk_mdi_pallet-fill' | 'bk_mdi_pan_tool' | 'bk_mdi_pan_tool-fill' | 'bk_mdi_pan_tool_alt' | 'bk_mdi_pan_tool_alt-fill' | 'bk_mdi_pan_zoom' | 'bk_mdi_pan_zoom-fill' | 'bk_mdi_panorama' | 'bk_mdi_panorama-fill' | 'bk_mdi_panorama_horizontal' | 'bk_mdi_panorama_horizontal-fill' | 'bk_mdi_panorama_photosphere' | 'bk_mdi_panorama_photosphere-fill' | 'bk_mdi_panorama_vertical' | 'bk_mdi_panorama_vertical-fill' | 'bk_mdi_panorama_wide_angle' | 'bk_mdi_panorama_wide_angle-fill' | 'bk_mdi_paragliding' | 'bk_mdi_paragliding-fill' | 'bk_mdi_parent_child_dining' | 'bk_mdi_parent_child_dining-fill' | 'bk_mdi_park' | 'bk_mdi_park-fill' | 'bk_mdi_parking_meter' | 'bk_mdi_parking_meter-fill' | 'bk_mdi_parking_sign' | 'bk_mdi_parking_sign-fill' | 'bk_mdi_parking_valet' | 'bk_mdi_parking_valet-fill' | 'bk_mdi_partly_cloudy_day' | 'bk_mdi_partly_cloudy_day-fill' | 'bk_mdi_partly_cloudy_night' | 'bk_mdi_partly_cloudy_night-fill' | 'bk_mdi_partner_exchange' | 'bk_mdi_partner_exchange-fill' | 'bk_mdi_partner_heart' | 'bk_mdi_partner_heart-fill' | 'bk_mdi_partner_reports' | 'bk_mdi_partner_reports-fill' | 'bk_mdi_party_mode' | 'bk_mdi_party_mode-fill' | 'bk_mdi_passkey' | 'bk_mdi_passkey-fill' | 'bk_mdi_passport' | 'bk_mdi_passport-fill' | 'bk_mdi_password' | 'bk_mdi_password-fill' | 'bk_mdi_password_2' | 'bk_mdi_password_2-fill' | 'bk_mdi_password_2_off' | 'bk_mdi_password_2_off-fill' | 'bk_mdi_patient_list' | 'bk_mdi_patient_list-fill' | 'bk_mdi_pattern' | 'bk_mdi_pattern-fill' | 'bk_mdi_pause' | 'bk_mdi_pause-fill' | 'bk_mdi_pause_circle' | 'bk_mdi_pause_circle-fill' | 'bk_mdi_pause_presentation' | 'bk_mdi_pause_presentation-fill' | 'bk_mdi_payment_arrow_down' | 'bk_mdi_payment_arrow_down-fill' | 'bk_mdi_payment_card' | 'bk_mdi_payment_card-fill' | 'bk_mdi_payments' | 'bk_mdi_payments-fill' | 'bk_mdi_pedal_bike' | 'bk_mdi_pedal_bike-fill' | 'bk_mdi_pediatrics' | 'bk_mdi_pediatrics-fill' | 'bk_mdi_pen_size_1' | 'bk_mdi_pen_size_1-fill' | 'bk_mdi_pen_size_2' | 'bk_mdi_pen_size_2-fill' | 'bk_mdi_pen_size_3' | 'bk_mdi_pen_size_3-fill' | 'bk_mdi_pen_size_4' | 'bk_mdi_pen_size_4-fill' | 'bk_mdi_pen_size_5' | 'bk_mdi_pen_size_5-fill' | 'bk_mdi_pending' | 'bk_mdi_pending-fill' | 'bk_mdi_pending_actions' | 'bk_mdi_pending_actions-fill' | 'bk_mdi_pentagon' | 'bk_mdi_pentagon-fill' | 'bk_mdi_percent' | 'bk_mdi_percent-fill' | 'bk_mdi_percent_discount' | 'bk_mdi_percent_discount-fill' | 'bk_mdi_pergola' | 'bk_mdi_pergola-fill' | 'bk_mdi_perm_camera_mic' | 'bk_mdi_perm_camera_mic-fill' | 'bk_mdi_perm_contact_calendar' | 'bk_mdi_perm_contact_calendar-fill' | 'bk_mdi_perm_data_setting' | 'bk_mdi_perm_data_setting-fill' | 'bk_mdi_perm_media' | 'bk_mdi_perm_media-fill' | 'bk_mdi_perm_phone_msg' | 'bk_mdi_perm_phone_msg-fill' | 'bk_mdi_perm_scan_wifi' | 'bk_mdi_perm_scan_wifi-fill' | 'bk_mdi_person' | 'bk_mdi_person-fill' | 'bk_mdi_person_2' | 'bk_mdi_person_2-fill' | 'bk_mdi_person_3' | 'bk_mdi_person_3-fill' | 'bk_mdi_person_4' | 'bk_mdi_person_4-fill' | 'bk_mdi_person_add' | 'bk_mdi_person_add-fill' | 'bk_mdi_person_add_disabled' | 'bk_mdi_person_add_disabled-fill' | 'bk_mdi_person_alert' | 'bk_mdi_person_alert-fill' | 'bk_mdi_person_apron' | 'bk_mdi_person_apron-fill' | 'bk_mdi_person_book' | 'bk_mdi_person_book-fill' | 'bk_mdi_person_cancel' | 'bk_mdi_person_cancel-fill' | 'bk_mdi_person_celebrate' | 'bk_mdi_person_celebrate-fill' | 'bk_mdi_person_check' | 'bk_mdi_person_check-fill' | 'bk_mdi_person_edit' | 'bk_mdi_person_edit-fill' | 'bk_mdi_person_heart' | 'bk_mdi_person_heart-fill' | 'bk_mdi_person_off' | 'bk_mdi_person_off-fill' | 'bk_mdi_person_pin' | 'bk_mdi_person_pin-fill' | 'bk_mdi_person_pin_circle' | 'bk_mdi_person_pin_circle-fill' | 'bk_mdi_person_play' | 'bk_mdi_person_play-fill' | 'bk_mdi_person_raised_hand' | 'bk_mdi_person_raised_hand-fill' | 'bk_mdi_person_remove' | 'bk_mdi_person_remove-fill' | 'bk_mdi_person_search' | 'bk_mdi_person_search-fill' | 'bk_mdi_person_shield' | 'bk_mdi_person_shield-fill' | 'bk_mdi_person_text' | 'bk_mdi_person_text-fill' | 'bk_mdi_personal_bag' | 'bk_mdi_personal_bag-fill' | 'bk_mdi_personal_bag_off' | 'bk_mdi_personal_bag_off-fill' | 'bk_mdi_personal_bag_question' | 'bk_mdi_personal_bag_question-fill' | 'bk_mdi_personal_injury' | 'bk_mdi_personal_injury-fill' | 'bk_mdi_personal_places' | 'bk_mdi_personal_places-fill' | 'bk_mdi_pest_control' | 'bk_mdi_pest_control-fill' | 'bk_mdi_pest_control_rodent' | 'bk_mdi_pest_control_rodent-fill' | 'bk_mdi_pet_supplies' | 'bk_mdi_pet_supplies-fill' | 'bk_mdi_pets' | 'bk_mdi_pets-fill' | 'bk_mdi_phishing' | 'bk_mdi_phishing-fill' | 'bk_mdi_phone_bluetooth_speaker' | 'bk_mdi_phone_bluetooth_speaker-fill' | 'bk_mdi_phone_callback' | 'bk_mdi_phone_callback-fill' | 'bk_mdi_phone_disabled' | 'bk_mdi_phone_disabled-fill' | 'bk_mdi_phone_enabled' | 'bk_mdi_phone_enabled-fill' | 'bk_mdi_phone_forwarded' | 'bk_mdi_phone_forwarded-fill' | 'bk_mdi_phone_in_talk' | 'bk_mdi_phone_in_talk-fill' | 'bk_mdi_phone_locked' | 'bk_mdi_phone_locked-fill' | 'bk_mdi_phone_missed' | 'bk_mdi_phone_missed-fill' | 'bk_mdi_phone_paused' | 'bk_mdi_phone_paused-fill' | 'bk_mdi_photo' | 'bk_mdi_photo-fill' | 'bk_mdi_photo_album' | 'bk_mdi_photo_album-fill' | 'bk_mdi_photo_auto_merge' | 'bk_mdi_photo_auto_merge-fill' | 'bk_mdi_photo_camera' | 'bk_mdi_photo_camera-fill' | 'bk_mdi_photo_camera_back' | 'bk_mdi_photo_camera_back-fill' | 'bk_mdi_photo_camera_front' | 'bk_mdi_photo_camera_front-fill' | 'bk_mdi_photo_frame' | 'bk_mdi_photo_frame-fill' | 'bk_mdi_photo_library' | 'bk_mdi_photo_library-fill' | 'bk_mdi_photo_prints' | 'bk_mdi_photo_prints-fill' | 'bk_mdi_photo_size_select_large' | 'bk_mdi_photo_size_select_large-fill' | 'bk_mdi_photo_size_select_small' | 'bk_mdi_photo_size_select_small-fill' | 'bk_mdi_php' | 'bk_mdi_php-fill' | 'bk_mdi_physical_therapy' | 'bk_mdi_physical_therapy-fill' | 'bk_mdi_piano' | 'bk_mdi_piano-fill' | 'bk_mdi_piano_off' | 'bk_mdi_piano_off-fill' | 'bk_mdi_pickleball' | 'bk_mdi_pickleball-fill' | 'bk_mdi_picture_as_pdf' | 'bk_mdi_picture_as_pdf-fill' | 'bk_mdi_picture_in_picture' | 'bk_mdi_picture_in_picture-fill' | 'bk_mdi_picture_in_picture_alt' | 'bk_mdi_picture_in_picture_alt-fill' | 'bk_mdi_picture_in_picture_center' | 'bk_mdi_picture_in_picture_center-fill' | 'bk_mdi_picture_in_picture_large' | 'bk_mdi_picture_in_picture_large-fill' | 'bk_mdi_picture_in_picture_medium' | 'bk_mdi_picture_in_picture_medium-fill' | 'bk_mdi_picture_in_picture_mobile' | 'bk_mdi_picture_in_picture_mobile-fill' | 'bk_mdi_picture_in_picture_off' | 'bk_mdi_picture_in_picture_off-fill' | 'bk_mdi_picture_in_picture_small' | 'bk_mdi_picture_in_picture_small-fill' | 'bk_mdi_pie_chart' | 'bk_mdi_pie_chart-fill' | 'bk_mdi_pill' | 'bk_mdi_pill-fill' | 'bk_mdi_pill_off' | 'bk_mdi_pill_off-fill' | 'bk_mdi_pin' | 'bk_mdi_pin-fill' | 'bk_mdi_pin_drop' | 'bk_mdi_pin_drop-fill' | 'bk_mdi_pin_end' | 'bk_mdi_pin_end-fill' | 'bk_mdi_pin_invoke' | 'bk_mdi_pin_invoke-fill' | 'bk_mdi_pinboard' | 'bk_mdi_pinboard-fill' | 'bk_mdi_pinboard_unread' | 'bk_mdi_pinboard_unread-fill' | 'bk_mdi_pinch' | 'bk_mdi_pinch-fill' | 'bk_mdi_pinch_zoom_in' | 'bk_mdi_pinch_zoom_in-fill' | 'bk_mdi_pinch_zoom_out' | 'bk_mdi_pinch_zoom_out-fill' | 'bk_mdi_pip' | 'bk_mdi_pip-fill' | 'bk_mdi_pip_exit' | 'bk_mdi_pip_exit-fill' | 'bk_mdi_pivot_table_chart' | 'bk_mdi_pivot_table_chart-fill' | 'bk_mdi_place_item' | 'bk_mdi_place_item-fill' | 'bk_mdi_plagiarism' | 'bk_mdi_plagiarism-fill' | 'bk_mdi_plane_contrails' | 'bk_mdi_plane_contrails-fill' | 'bk_mdi_planet' | 'bk_mdi_planet-fill' | 'bk_mdi_planner_banner_ad_pt' | 'bk_mdi_planner_banner_ad_pt-fill' | 'bk_mdi_planner_review' | 'bk_mdi_planner_review-fill' | 'bk_mdi_play_arrow' | 'bk_mdi_play_arrow-fill' | 'bk_mdi_play_circle' | 'bk_mdi_play_circle-fill' | 'bk_mdi_play_disabled' | 'bk_mdi_play_disabled-fill' | 'bk_mdi_play_for_work' | 'bk_mdi_play_for_work-fill' | 'bk_mdi_play_lesson' | 'bk_mdi_play_lesson-fill' | 'bk_mdi_play_pause' | 'bk_mdi_play_pause-fill' | 'bk_mdi_playground' | 'bk_mdi_playground-fill' | 'bk_mdi_playground_2' | 'bk_mdi_playground_2-fill' | 'bk_mdi_playing_cards' | 'bk_mdi_playing_cards-fill' | 'bk_mdi_playlist_add' | 'bk_mdi_playlist_add-fill' | 'bk_mdi_playlist_add_check' | 'bk_mdi_playlist_add_check-fill' | 'bk_mdi_playlist_add_check_circle' | 'bk_mdi_playlist_add_check_circle-fill' | 'bk_mdi_playlist_add_circle' | 'bk_mdi_playlist_add_circle-fill' | 'bk_mdi_playlist_play' | 'bk_mdi_playlist_play-fill' | 'bk_mdi_playlist_remove' | 'bk_mdi_playlist_remove-fill' | 'bk_mdi_plug_connect' | 'bk_mdi_plug_connect-fill' | 'bk_mdi_plumbing' | 'bk_mdi_plumbing-fill' | 'bk_mdi_podcasts' | 'bk_mdi_podcasts-fill' | 'bk_mdi_podiatry' | 'bk_mdi_podiatry-fill' | 'bk_mdi_podium' | 'bk_mdi_podium-fill' | 'bk_mdi_point_of_sale' | 'bk_mdi_point_of_sale-fill' | 'bk_mdi_point_scan' | 'bk_mdi_point_scan-fill' | 'bk_mdi_poker_chip' | 'bk_mdi_poker_chip-fill' | 'bk_mdi_policy' | 'bk_mdi_policy-fill' | 'bk_mdi_policy_alert' | 'bk_mdi_policy_alert-fill' | 'bk_mdi_polyline' | 'bk_mdi_polyline-fill' | 'bk_mdi_polymer' | 'bk_mdi_polymer-fill' | 'bk_mdi_pool' | 'bk_mdi_pool-fill' | 'bk_mdi_portable_wifi_off' | 'bk_mdi_portable_wifi_off-fill' | 'bk_mdi_position_bottom_left' | 'bk_mdi_position_bottom_left-fill' | 'bk_mdi_position_bottom_right' | 'bk_mdi_position_bottom_right-fill' | 'bk_mdi_position_top_right' | 'bk_mdi_position_top_right-fill' | 'bk_mdi_post' | 'bk_mdi_post-fill' | 'bk_mdi_post_add' | 'bk_mdi_post_add-fill' | 'bk_mdi_potted_plant' | 'bk_mdi_potted_plant-fill' | 'bk_mdi_power' | 'bk_mdi_power-fill' | 'bk_mdi_power_input' | 'bk_mdi_power_input-fill' | 'bk_mdi_power_off' | 'bk_mdi_power_off-fill' | 'bk_mdi_power_settings_circle' | 'bk_mdi_power_settings_circle-fill' | 'bk_mdi_power_settings_new' | 'bk_mdi_power_settings_new-fill' | 'bk_mdi_prayer_times' | 'bk_mdi_prayer_times-fill' | 'bk_mdi_precision_manufacturing' | 'bk_mdi_precision_manufacturing-fill' | 'bk_mdi_pregnancy' | 'bk_mdi_pregnancy-fill' | 'bk_mdi_pregnant_woman' | 'bk_mdi_pregnant_woman-fill' | 'bk_mdi_preliminary' | 'bk_mdi_preliminary-fill' | 'bk_mdi_prescriptions' | 'bk_mdi_prescriptions-fill' | 'bk_mdi_present_to_all' | 'bk_mdi_present_to_all-fill' | 'bk_mdi_preview' | 'bk_mdi_preview-fill' | 'bk_mdi_preview_off' | 'bk_mdi_preview_off-fill' | 'bk_mdi_price_change' | 'bk_mdi_price_change-fill' | 'bk_mdi_price_check' | 'bk_mdi_price_check-fill' | 'bk_mdi_print' | 'bk_mdi_print-fill' | 'bk_mdi_print_add' | 'bk_mdi_print_add-fill' | 'bk_mdi_print_connect' | 'bk_mdi_print_connect-fill' | 'bk_mdi_print_disabled' | 'bk_mdi_print_disabled-fill' | 'bk_mdi_print_error' | 'bk_mdi_print_error-fill' | 'bk_mdi_print_lock' | 'bk_mdi_print_lock-fill' | 'bk_mdi_priority' | 'bk_mdi_priority-fill' | 'bk_mdi_priority_high' | 'bk_mdi_priority_high-fill' | 'bk_mdi_privacy' | 'bk_mdi_privacy-fill' | 'bk_mdi_privacy_tip' | 'bk_mdi_privacy_tip-fill' | 'bk_mdi_private_connectivity' | 'bk_mdi_private_connectivity-fill' | 'bk_mdi_problem' | 'bk_mdi_problem-fill' | 'bk_mdi_procedure' | 'bk_mdi_procedure-fill' | 'bk_mdi_process_chart' | 'bk_mdi_process_chart-fill' | 'bk_mdi_production_quantity_limits' | 'bk_mdi_production_quantity_limits-fill' | 'bk_mdi_productivity' | 'bk_mdi_productivity-fill' | 'bk_mdi_progress_activity' | 'bk_mdi_progress_activity-fill' | 'bk_mdi_prompt_suggestion' | 'bk_mdi_prompt_suggestion-fill' | 'bk_mdi_propane' | 'bk_mdi_propane-fill' | 'bk_mdi_propane_tank' | 'bk_mdi_propane_tank-fill' | 'bk_mdi_psychiatry' | 'bk_mdi_psychiatry-fill' | 'bk_mdi_psychology' | 'bk_mdi_psychology-fill' | 'bk_mdi_psychology_alt' | 'bk_mdi_psychology_alt-fill' | 'bk_mdi_public' | 'bk_mdi_public-fill' | 'bk_mdi_public_off' | 'bk_mdi_public_off-fill' | 'bk_mdi_publish' | 'bk_mdi_publish-fill' | 'bk_mdi_published_with_changes' | 'bk_mdi_published_with_changes-fill' | 'bk_mdi_pulmonology' | 'bk_mdi_pulmonology-fill' | 'bk_mdi_pulse_alert' | 'bk_mdi_pulse_alert-fill' | 'bk_mdi_punch_clock' | 'bk_mdi_punch_clock-fill' | 'bk_mdi_qr_code' | 'bk_mdi_qr_code-fill' | 'bk_mdi_qr_code_2' | 'bk_mdi_qr_code_2-fill' | 'bk_mdi_qr_code_2_add' | 'bk_mdi_qr_code_2_add-fill' | 'bk_mdi_qr_code_scanner' | 'bk_mdi_qr_code_scanner-fill' | 'bk_mdi_query_stats' | 'bk_mdi_query_stats-fill' | 'bk_mdi_question_exchange' | 'bk_mdi_question_exchange-fill' | 'bk_mdi_question_mark' | 'bk_mdi_question_mark-fill' | 'bk_mdi_queue_music' | 'bk_mdi_queue_music-fill' | 'bk_mdi_queue_play_next' | 'bk_mdi_queue_play_next-fill' | 'bk_mdi_quick_phrases' | 'bk_mdi_quick_phrases-fill' | 'bk_mdi_quick_reference' | 'bk_mdi_quick_reference-fill' | 'bk_mdi_quick_reference_all' | 'bk_mdi_quick_reference_all-fill' | 'bk_mdi_quick_reorder' | 'bk_mdi_quick_reorder-fill' | 'bk_mdi_quickreply' | 'bk_mdi_quickreply-fill' | 'bk_mdi_quiz' | 'bk_mdi_quiz-fill' | 'bk_mdi_r_mobiledata' | 'bk_mdi_r_mobiledata-fill' | 'bk_mdi_radar' | 'bk_mdi_radar-fill' | 'bk_mdi_radio' | 'bk_mdi_radio-fill' | 'bk_mdi_radio_button_checked' | 'bk_mdi_radio_button_checked-fill' | 'bk_mdi_radio_button_partial' | 'bk_mdi_radio_button_partial-fill' | 'bk_mdi_radio_button_unchecked' | 'bk_mdi_radio_button_unchecked-fill' | 'bk_mdi_radiology' | 'bk_mdi_radiology-fill' | 'bk_mdi_railway_alert' | 'bk_mdi_railway_alert-fill' | 'bk_mdi_railway_alert_2' | 'bk_mdi_railway_alert_2-fill' | 'bk_mdi_rainy' | 'bk_mdi_rainy-fill' | 'bk_mdi_rainy_heavy' | 'bk_mdi_rainy_heavy-fill' | 'bk_mdi_rainy_light' | 'bk_mdi_rainy_light-fill' | 'bk_mdi_rainy_snow' | 'bk_mdi_rainy_snow-fill' | 'bk_mdi_ramen_dining' | 'bk_mdi_ramen_dining-fill' | 'bk_mdi_ramp_left' | 'bk_mdi_ramp_left-fill' | 'bk_mdi_ramp_right' | 'bk_mdi_ramp_right-fill' | 'bk_mdi_range_hood' | 'bk_mdi_range_hood-fill' | 'bk_mdi_rate_review' | 'bk_mdi_rate_review-fill' | 'bk_mdi_raven' | 'bk_mdi_raven-fill' | 'bk_mdi_raw_off' | 'bk_mdi_raw_off-fill' | 'bk_mdi_raw_on' | 'bk_mdi_raw_on-fill' | 'bk_mdi_read_more' | 'bk_mdi_read_more-fill' | 'bk_mdi_readiness_score' | 'bk_mdi_readiness_score-fill' | 'bk_mdi_real_estate_agent' | 'bk_mdi_real_estate_agent-fill' | 'bk_mdi_rear_camera' | 'bk_mdi_rear_camera-fill' | 'bk_mdi_rebase' | 'bk_mdi_rebase-fill' | 'bk_mdi_rebase_edit' | 'bk_mdi_rebase_edit-fill' | 'bk_mdi_receipt' | 'bk_mdi_receipt-fill' | 'bk_mdi_receipt_long' | 'bk_mdi_receipt_long-fill' | 'bk_mdi_receipt_long_off' | 'bk_mdi_receipt_long_off-fill' | 'bk_mdi_recent_actors' | 'bk_mdi_recent_actors-fill' | 'bk_mdi_recent_patient' | 'bk_mdi_recent_patient-fill' | 'bk_mdi_recenter' | 'bk_mdi_recenter-fill' | 'bk_mdi_recommend' | 'bk_mdi_recommend-fill' | 'bk_mdi_record_voice_over' | 'bk_mdi_record_voice_over-fill' | 'bk_mdi_rectangle' | 'bk_mdi_rectangle-fill' | 'bk_mdi_rectangle_add' | 'bk_mdi_rectangle_add-fill' | 'bk_mdi_recycling' | 'bk_mdi_recycling-fill' | 'bk_mdi_redeem' | 'bk_mdi_redeem-fill' | 'bk_mdi_redo' | 'bk_mdi_redo-fill' | 'bk_mdi_reduce_capacity' | 'bk_mdi_reduce_capacity-fill' | 'bk_mdi_refresh' | 'bk_mdi_refresh-fill' | 'bk_mdi_regular_expression' | 'bk_mdi_regular_expression-fill' | 'bk_mdi_relax' | 'bk_mdi_relax-fill' | 'bk_mdi_release_alert' | 'bk_mdi_release_alert-fill' | 'bk_mdi_remember_me' | 'bk_mdi_remember_me-fill' | 'bk_mdi_reminder' | 'bk_mdi_reminder-fill' | 'bk_mdi_remote_gen' | 'bk_mdi_remote_gen-fill' | 'bk_mdi_remove' | 'bk_mdi_remove-fill' | 'bk_mdi_remove_done' | 'bk_mdi_remove_done-fill' | 'bk_mdi_remove_from_queue' | 'bk_mdi_remove_from_queue-fill' | 'bk_mdi_remove_moderator' | 'bk_mdi_remove_moderator-fill' | 'bk_mdi_remove_road' | 'bk_mdi_remove_road-fill' | 'bk_mdi_remove_selection' | 'bk_mdi_remove_selection-fill' | 'bk_mdi_remove_shopping_cart' | 'bk_mdi_remove_shopping_cart-fill' | 'bk_mdi_reopen_window' | 'bk_mdi_reopen_window-fill' | 'bk_mdi_reorder' | 'bk_mdi_reorder-fill' | 'bk_mdi_repartition' | 'bk_mdi_repartition-fill' | 'bk_mdi_repeat' | 'bk_mdi_repeat-fill' | 'bk_mdi_repeat_on' | 'bk_mdi_repeat_on-fill' | 'bk_mdi_repeat_one' | 'bk_mdi_repeat_one-fill' | 'bk_mdi_repeat_one_on' | 'bk_mdi_repeat_one_on-fill' | 'bk_mdi_replace_audio' | 'bk_mdi_replace_audio-fill' | 'bk_mdi_replace_image' | 'bk_mdi_replace_image-fill' | 'bk_mdi_replace_video' | 'bk_mdi_replace_video-fill' | 'bk_mdi_replay' | 'bk_mdi_replay-fill' | 'bk_mdi_replay_10' | 'bk_mdi_replay_10-fill' | 'bk_mdi_replay_30' | 'bk_mdi_replay_30-fill' | 'bk_mdi_replay_5' | 'bk_mdi_replay_5-fill' | 'bk_mdi_reply' | 'bk_mdi_reply-fill' | 'bk_mdi_reply_all' | 'bk_mdi_reply_all-fill' | 'bk_mdi_report' | 'bk_mdi_report-fill' | 'bk_mdi_report_off' | 'bk_mdi_report_off-fill' | 'bk_mdi_request_page' | 'bk_mdi_request_page-fill' | 'bk_mdi_request_quote' | 'bk_mdi_request_quote-fill' | 'bk_mdi_reset_brightness' | 'bk_mdi_reset_brightness-fill' | 'bk_mdi_reset_exposure' | 'bk_mdi_reset_exposure-fill' | 'bk_mdi_reset_focus' | 'bk_mdi_reset_focus-fill' | 'bk_mdi_reset_image' | 'bk_mdi_reset_image-fill' | 'bk_mdi_reset_iso' | 'bk_mdi_reset_iso-fill' | 'bk_mdi_reset_settings' | 'bk_mdi_reset_settings-fill' | 'bk_mdi_reset_shadow' | 'bk_mdi_reset_shadow-fill' | 'bk_mdi_reset_shutter_speed' | 'bk_mdi_reset_shutter_speed-fill' | 'bk_mdi_reset_tv' | 'bk_mdi_reset_tv-fill' | 'bk_mdi_reset_white_balance' | 'bk_mdi_reset_white_balance-fill' | 'bk_mdi_reset_wrench' | 'bk_mdi_reset_wrench-fill' | 'bk_mdi_resize' | 'bk_mdi_resize-fill' | 'bk_mdi_respiratory_rate' | 'bk_mdi_respiratory_rate-fill' | 'bk_mdi_responsive_layout' | 'bk_mdi_responsive_layout-fill' | 'bk_mdi_rest_area' | 'bk_mdi_rest_area-fill' | 'bk_mdi_restart_alt' | 'bk_mdi_restart_alt-fill' | 'bk_mdi_restaurant' | 'bk_mdi_restaurant-fill' | 'bk_mdi_restore_from_trash' | 'bk_mdi_restore_from_trash-fill' | 'bk_mdi_restore_page' | 'bk_mdi_restore_page-fill' | 'bk_mdi_resume' | 'bk_mdi_resume-fill' | 'bk_mdi_reviews' | 'bk_mdi_reviews-fill' | 'bk_mdi_rewarded_ads' | 'bk_mdi_rewarded_ads-fill' | 'bk_mdi_rheumatology' | 'bk_mdi_rheumatology-fill' | 'bk_mdi_rib_cage' | 'bk_mdi_rib_cage-fill' | 'bk_mdi_rice_bowl' | 'bk_mdi_rice_bowl-fill' | 'bk_mdi_right_click' | 'bk_mdi_right_click-fill' | 'bk_mdi_right_panel_close' | 'bk_mdi_right_panel_close-fill' | 'bk_mdi_right_panel_open' | 'bk_mdi_right_panel_open-fill' | 'bk_mdi_ring_volume' | 'bk_mdi_ring_volume-fill' | 'bk_mdi_ripples' | 'bk_mdi_ripples-fill' | 'bk_mdi_road' | 'bk_mdi_road-fill' | 'bk_mdi_robot' | 'bk_mdi_robot-fill' | 'bk_mdi_robot_2' | 'bk_mdi_robot_2-fill' | 'bk_mdi_rocket' | 'bk_mdi_rocket-fill' | 'bk_mdi_rocket_launch' | 'bk_mdi_rocket_launch-fill' | 'bk_mdi_roller_shades' | 'bk_mdi_roller_shades-fill' | 'bk_mdi_roller_shades_closed' | 'bk_mdi_roller_shades_closed-fill' | 'bk_mdi_roller_skating' | 'bk_mdi_roller_skating-fill' | 'bk_mdi_roofing' | 'bk_mdi_roofing-fill' | 'bk_mdi_room_preferences' | 'bk_mdi_room_preferences-fill' | 'bk_mdi_room_service' | 'bk_mdi_room_service-fill' | 'bk_mdi_rotate_90_degrees_ccw' | 'bk_mdi_rotate_90_degrees_ccw-fill' | 'bk_mdi_rotate_90_degrees_cw' | 'bk_mdi_rotate_90_degrees_cw-fill' | 'bk_mdi_rotate_auto' | 'bk_mdi_rotate_auto-fill' | 'bk_mdi_rotate_left' | 'bk_mdi_rotate_left-fill' | 'bk_mdi_rotate_right' | 'bk_mdi_rotate_right-fill' | 'bk_mdi_roundabout_left' | 'bk_mdi_roundabout_left-fill' | 'bk_mdi_roundabout_right' | 'bk_mdi_roundabout_right-fill' | 'bk_mdi_rounded_corner' | 'bk_mdi_rounded_corner-fill' | 'bk_mdi_route' | 'bk_mdi_route-fill' | 'bk_mdi_router' | 'bk_mdi_router-fill' | 'bk_mdi_router_off' | 'bk_mdi_router_off-fill' | 'bk_mdi_routine' | 'bk_mdi_routine-fill' | 'bk_mdi_rowing' | 'bk_mdi_rowing-fill' | 'bk_mdi_rss_feed' | 'bk_mdi_rss_feed-fill' | 'bk_mdi_rsvp' | 'bk_mdi_rsvp-fill' | 'bk_mdi_rtt' | 'bk_mdi_rtt-fill' | 'bk_mdi_rubric' | 'bk_mdi_rubric-fill' | 'bk_mdi_rule' | 'bk_mdi_rule-fill' | 'bk_mdi_rule_folder' | 'bk_mdi_rule_folder-fill' | 'bk_mdi_rule_settings' | 'bk_mdi_rule_settings-fill' | 'bk_mdi_run_circle' | 'bk_mdi_run_circle-fill' | 'bk_mdi_running_with_errors' | 'bk_mdi_running_with_errors-fill' | 'bk_mdi_rv_hookup' | 'bk_mdi_rv_hookup-fill' | 'bk_mdi_safety_check' | 'bk_mdi_safety_check-fill' | 'bk_mdi_safety_check_off' | 'bk_mdi_safety_check_off-fill' | 'bk_mdi_safety_divider' | 'bk_mdi_safety_divider-fill' | 'bk_mdi_sailing' | 'bk_mdi_sailing-fill' | 'bk_mdi_salinity' | 'bk_mdi_salinity-fill' | 'bk_mdi_sanitizer' | 'bk_mdi_sanitizer-fill' | 'bk_mdi_satellite' | 'bk_mdi_satellite-fill' | 'bk_mdi_satellite_alt' | 'bk_mdi_satellite_alt-fill' | 'bk_mdi_sauna' | 'bk_mdi_sauna-fill' | 'bk_mdi_save' | 'bk_mdi_save-fill' | 'bk_mdi_save_as' | 'bk_mdi_save_as-fill' | 'bk_mdi_save_clock' | 'bk_mdi_save_clock-fill' | 'bk_mdi_saved_search' | 'bk_mdi_saved_search-fill' | 'bk_mdi_savings' | 'bk_mdi_savings-fill' | 'bk_mdi_scale' | 'bk_mdi_scale-fill' | 'bk_mdi_scan' | 'bk_mdi_scan-fill' | 'bk_mdi_scan_delete' | 'bk_mdi_scan_delete-fill' | 'bk_mdi_scanner' | 'bk_mdi_scanner-fill' | 'bk_mdi_scatter_plot' | 'bk_mdi_scatter_plot-fill' | 'bk_mdi_scene' | 'bk_mdi_scene-fill' | 'bk_mdi_schedule' | 'bk_mdi_schedule-fill' | 'bk_mdi_schedule_send' | 'bk_mdi_schedule_send-fill' | 'bk_mdi_schema' | 'bk_mdi_schema-fill' | 'bk_mdi_school' | 'bk_mdi_school-fill' | 'bk_mdi_science' | 'bk_mdi_science-fill' | 'bk_mdi_science_off' | 'bk_mdi_science_off-fill' | 'bk_mdi_scooter' | 'bk_mdi_scooter-fill' | 'bk_mdi_score' | 'bk_mdi_score-fill' | 'bk_mdi_scoreboard' | 'bk_mdi_scoreboard-fill' | 'bk_mdi_screen_record' | 'bk_mdi_screen_record-fill' | 'bk_mdi_screen_rotation_alt' | 'bk_mdi_screen_rotation_alt-fill' | 'bk_mdi_screen_rotation_up' | 'bk_mdi_screen_rotation_up-fill' | 'bk_mdi_screen_search_desktop' | 'bk_mdi_screen_search_desktop-fill' | 'bk_mdi_screen_share' | 'bk_mdi_screen_share-fill' | 'bk_mdi_screenshot_frame' | 'bk_mdi_screenshot_frame-fill' | 'bk_mdi_screenshot_frame_2' | 'bk_mdi_screenshot_frame_2-fill' | 'bk_mdi_screenshot_keyboard' | 'bk_mdi_screenshot_keyboard-fill' | 'bk_mdi_screenshot_monitor' | 'bk_mdi_screenshot_monitor-fill' | 'bk_mdi_screenshot_region' | 'bk_mdi_screenshot_region-fill' | 'bk_mdi_screenshot_tablet' | 'bk_mdi_screenshot_tablet-fill' | 'bk_mdi_script' | 'bk_mdi_script-fill' | 'bk_mdi_scrollable_header' | 'bk_mdi_scrollable_header-fill' | 'bk_mdi_scuba_diving' | 'bk_mdi_scuba_diving-fill' | 'bk_mdi_sd' | 'bk_mdi_sd-fill' | 'bk_mdi_sd_card' | 'bk_mdi_sd_card-fill' | 'bk_mdi_sd_card_alert' | 'bk_mdi_sd_card_alert-fill' | 'bk_mdi_sdk' | 'bk_mdi_sdk-fill' | 'bk_mdi_search' | 'bk_mdi_search-fill' | 'bk_mdi_search_activity' | 'bk_mdi_search_activity-fill' | 'bk_mdi_search_check' | 'bk_mdi_search_check-fill' | 'bk_mdi_search_check_2' | 'bk_mdi_search_check_2-fill' | 'bk_mdi_search_gear' | 'bk_mdi_search_gear-fill' | 'bk_mdi_search_hands_free' | 'bk_mdi_search_hands_free-fill' | 'bk_mdi_search_insights' | 'bk_mdi_search_insights-fill' | 'bk_mdi_search_off' | 'bk_mdi_search_off-fill' | 'bk_mdi_seat_cool_left' | 'bk_mdi_seat_cool_left-fill' | 'bk_mdi_seat_cool_right' | 'bk_mdi_seat_cool_right-fill' | 'bk_mdi_seat_heat_left' | 'bk_mdi_seat_heat_left-fill' | 'bk_mdi_seat_heat_right' | 'bk_mdi_seat_heat_right-fill' | 'bk_mdi_seat_vent_left' | 'bk_mdi_seat_vent_left-fill' | 'bk_mdi_seat_vent_right' | 'bk_mdi_seat_vent_right-fill' | 'bk_mdi_security' | 'bk_mdi_security-fill' | 'bk_mdi_security_key' | 'bk_mdi_security_key-fill' | 'bk_mdi_segment' | 'bk_mdi_segment-fill' | 'bk_mdi_select' | 'bk_mdi_select-fill' | 'bk_mdi_select_all' | 'bk_mdi_select_all-fill' | 'bk_mdi_select_check_box' | 'bk_mdi_select_check_box-fill' | 'bk_mdi_select_to_speak' | 'bk_mdi_select_to_speak-fill' | 'bk_mdi_select_window' | 'bk_mdi_select_window-fill' | 'bk_mdi_select_window_2' | 'bk_mdi_select_window_2-fill' | 'bk_mdi_select_window_off' | 'bk_mdi_select_window_off-fill' | 'bk_mdi_self_care' | 'bk_mdi_self_care-fill' | 'bk_mdi_self_improvement' | 'bk_mdi_self_improvement-fill' | 'bk_mdi_sell' | 'bk_mdi_sell-fill' | 'bk_mdi_send' | 'bk_mdi_send-fill' | 'bk_mdi_send_and_archive' | 'bk_mdi_send_and_archive-fill' | 'bk_mdi_send_money' | 'bk_mdi_send_money-fill' | 'bk_mdi_send_time_extension' | 'bk_mdi_send_time_extension-fill' | 'bk_mdi_sensor_door' | 'bk_mdi_sensor_door-fill' | 'bk_mdi_sensor_occupied' | 'bk_mdi_sensor_occupied-fill' | 'bk_mdi_sensor_window' | 'bk_mdi_sensor_window-fill' | 'bk_mdi_sensors' | 'bk_mdi_sensors-fill' | 'bk_mdi_sensors_krx' | 'bk_mdi_sensors_krx-fill' | 'bk_mdi_sensors_krx_off' | 'bk_mdi_sensors_krx_off-fill' | 'bk_mdi_sensors_off' | 'bk_mdi_sensors_off-fill' | 'bk_mdi_sentiment_calm' | 'bk_mdi_sentiment_calm-fill' | 'bk_mdi_sentiment_content' | 'bk_mdi_sentiment_content-fill' | 'bk_mdi_sentiment_dissatisfied' | 'bk_mdi_sentiment_dissatisfied-fill' | 'bk_mdi_sentiment_excited' | 'bk_mdi_sentiment_excited-fill' | 'bk_mdi_sentiment_extremely_dissatisfied' | 'bk_mdi_sentiment_extremely_dissatisfied-fill' | 'bk_mdi_sentiment_frustrated' | 'bk_mdi_sentiment_frustrated-fill' | 'bk_mdi_sentiment_neutral' | 'bk_mdi_sentiment_neutral-fill' | 'bk_mdi_sentiment_sad' | 'bk_mdi_sentiment_sad-fill' | 'bk_mdi_sentiment_satisfied' | 'bk_mdi_sentiment_satisfied-fill' | 'bk_mdi_sentiment_stressed' | 'bk_mdi_sentiment_stressed-fill' | 'bk_mdi_sentiment_very_dissatisfied' | 'bk_mdi_sentiment_very_dissatisfied-fill' | 'bk_mdi_sentiment_very_satisfied' | 'bk_mdi_sentiment_very_satisfied-fill' | 'bk_mdi_sentiment_worried' | 'bk_mdi_sentiment_worried-fill' | 'bk_mdi_serif' | 'bk_mdi_serif-fill' | 'bk_mdi_server_person' | 'bk_mdi_server_person-fill' | 'bk_mdi_service_toolbox' | 'bk_mdi_service_toolbox-fill' | 'bk_mdi_set_meal' | 'bk_mdi_set_meal-fill' | 'bk_mdi_settings' | 'bk_mdi_settings-fill' | 'bk_mdi_settings_accessibility' | 'bk_mdi_settings_accessibility-fill' | 'bk_mdi_settings_account_box' | 'bk_mdi_settings_account_box-fill' | 'bk_mdi_settings_alert' | 'bk_mdi_settings_alert-fill' | 'bk_mdi_settings_applications' | 'bk_mdi_settings_applications-fill' | 'bk_mdi_settings_b_roll' | 'bk_mdi_settings_b_roll-fill' | 'bk_mdi_settings_backup_restore' | 'bk_mdi_settings_backup_restore-fill' | 'bk_mdi_settings_bluetooth' | 'bk_mdi_settings_bluetooth-fill' | 'bk_mdi_settings_brightness' | 'bk_mdi_settings_brightness-fill' | 'bk_mdi_settings_cinematic_blur' | 'bk_mdi_settings_cinematic_blur-fill' | 'bk_mdi_settings_ethernet' | 'bk_mdi_settings_ethernet-fill' | 'bk_mdi_settings_heart' | 'bk_mdi_settings_heart-fill' | 'bk_mdi_settings_input_antenna' | 'bk_mdi_settings_input_antenna-fill' | 'bk_mdi_settings_input_component' | 'bk_mdi_settings_input_component-fill' | 'bk_mdi_settings_input_hdmi' | 'bk_mdi_settings_input_hdmi-fill' | 'bk_mdi_settings_input_svideo' | 'bk_mdi_settings_input_svideo-fill' | 'bk_mdi_settings_motion_mode' | 'bk_mdi_settings_motion_mode-fill' | 'bk_mdi_settings_night_sight' | 'bk_mdi_settings_night_sight-fill' | 'bk_mdi_settings_overscan' | 'bk_mdi_settings_overscan-fill' | 'bk_mdi_settings_panorama' | 'bk_mdi_settings_panorama-fill' | 'bk_mdi_settings_phone' | 'bk_mdi_settings_phone-fill' | 'bk_mdi_settings_photo_camera' | 'bk_mdi_settings_photo_camera-fill' | 'bk_mdi_settings_power' | 'bk_mdi_settings_power-fill' | 'bk_mdi_settings_remote' | 'bk_mdi_settings_remote-fill' | 'bk_mdi_settings_seating' | 'bk_mdi_settings_seating-fill' | 'bk_mdi_settings_slow_motion' | 'bk_mdi_settings_slow_motion-fill' | 'bk_mdi_settings_system_daydream' | 'bk_mdi_settings_system_daydream-fill' | 'bk_mdi_settings_timelapse' | 'bk_mdi_settings_timelapse-fill' | 'bk_mdi_settings_video_camera' | 'bk_mdi_settings_video_camera-fill' | 'bk_mdi_settings_voice' | 'bk_mdi_settings_voice-fill' | 'bk_mdi_settop_component' | 'bk_mdi_settop_component-fill' | 'bk_mdi_severe_cold' | 'bk_mdi_severe_cold-fill' | 'bk_mdi_shadow' | 'bk_mdi_shadow-fill' | 'bk_mdi_shadow_add' | 'bk_mdi_shadow_add-fill' | 'bk_mdi_shadow_minus' | 'bk_mdi_shadow_minus-fill' | 'bk_mdi_shape_line' | 'bk_mdi_shape_line-fill' | 'bk_mdi_shapes' | 'bk_mdi_shapes-fill' | 'bk_mdi_share' | 'bk_mdi_share-fill' | 'bk_mdi_share_eta' | 'bk_mdi_share_eta-fill' | 'bk_mdi_share_location' | 'bk_mdi_share_location-fill' | 'bk_mdi_share_off' | 'bk_mdi_share_off-fill' | 'bk_mdi_share_reviews' | 'bk_mdi_share_reviews-fill' | 'bk_mdi_share_windows' | 'bk_mdi_share_windows-fill' | 'bk_mdi_shaved_ice' | 'bk_mdi_shaved_ice-fill' | 'bk_mdi_sheets_rtl' | 'bk_mdi_sheets_rtl-fill' | 'bk_mdi_shelf_auto_hide' | 'bk_mdi_shelf_auto_hide-fill' | 'bk_mdi_shelf_position' | 'bk_mdi_shelf_position-fill' | 'bk_mdi_shelves' | 'bk_mdi_shelves-fill' | 'bk_mdi_shield' | 'bk_mdi_shield-fill' | 'bk_mdi_shield_lock' | 'bk_mdi_shield_lock-fill' | 'bk_mdi_shield_locked' | 'bk_mdi_shield_locked-fill' | 'bk_mdi_shield_moon' | 'bk_mdi_shield_moon-fill' | 'bk_mdi_shield_person' | 'bk_mdi_shield_person-fill' | 'bk_mdi_shield_question' | 'bk_mdi_shield_question-fill' | 'bk_mdi_shield_toggle' | 'bk_mdi_shield_toggle-fill' | 'bk_mdi_shield_watch' | 'bk_mdi_shield_watch-fill' | 'bk_mdi_shield_with_heart' | 'bk_mdi_shield_with_heart-fill' | 'bk_mdi_shield_with_house' | 'bk_mdi_shield_with_house-fill' | 'bk_mdi_shift' | 'bk_mdi_shift-fill' | 'bk_mdi_shift_lock' | 'bk_mdi_shift_lock-fill' | 'bk_mdi_shift_lock_off' | 'bk_mdi_shift_lock_off-fill' | 'bk_mdi_shop' | 'bk_mdi_shop-fill' | 'bk_mdi_shop_two' | 'bk_mdi_shop_two-fill' | 'bk_mdi_shopping_bag' | 'bk_mdi_shopping_bag-fill' | 'bk_mdi_shopping_bag_speed' | 'bk_mdi_shopping_bag_speed-fill' | 'bk_mdi_shopping_basket' | 'bk_mdi_shopping_basket-fill' | 'bk_mdi_shopping_cart' | 'bk_mdi_shopping_cart-fill' | 'bk_mdi_shopping_cart_checkout' | 'bk_mdi_shopping_cart_checkout-fill' | 'bk_mdi_shopping_cart_off' | 'bk_mdi_shopping_cart_off-fill' | 'bk_mdi_shoppingmode' | 'bk_mdi_shoppingmode-fill' | 'bk_mdi_short_stay' | 'bk_mdi_short_stay-fill' | 'bk_mdi_short_text' | 'bk_mdi_short_text-fill' | 'bk_mdi_show_chart' | 'bk_mdi_show_chart-fill' | 'bk_mdi_shower' | 'bk_mdi_shower-fill' | 'bk_mdi_shuffle' | 'bk_mdi_shuffle-fill' | 'bk_mdi_shuffle_on' | 'bk_mdi_shuffle_on-fill' | 'bk_mdi_shutter_speed' | 'bk_mdi_shutter_speed-fill' | 'bk_mdi_shutter_speed_add' | 'bk_mdi_shutter_speed_add-fill' | 'bk_mdi_shutter_speed_minus' | 'bk_mdi_shutter_speed_minus-fill' | 'bk_mdi_sick' | 'bk_mdi_sick-fill' | 'bk_mdi_side_navigation' | 'bk_mdi_side_navigation-fill' | 'bk_mdi_sign_language' | 'bk_mdi_sign_language-fill' | 'bk_mdi_signal_cellular_0_bar' | 'bk_mdi_signal_cellular_0_bar-fill' | 'bk_mdi_signal_cellular_1_bar' | 'bk_mdi_signal_cellular_1_bar-fill' | 'bk_mdi_signal_cellular_2_bar' | 'bk_mdi_signal_cellular_2_bar-fill' | 'bk_mdi_signal_cellular_3_bar' | 'bk_mdi_signal_cellular_3_bar-fill' | 'bk_mdi_signal_cellular_4_bar' | 'bk_mdi_signal_cellular_4_bar-fill' | 'bk_mdi_signal_cellular_add' | 'bk_mdi_signal_cellular_add-fill' | 'bk_mdi_signal_cellular_alt' | 'bk_mdi_signal_cellular_alt-fill' | 'bk_mdi_signal_cellular_alt_1_bar' | 'bk_mdi_signal_cellular_alt_1_bar-fill' | 'bk_mdi_signal_cellular_alt_2_bar' | 'bk_mdi_signal_cellular_alt_2_bar-fill' | 'bk_mdi_signal_cellular_connected_no_internet_0_bar' | 'bk_mdi_signal_cellular_connected_no_internet_0_bar-fill' | 'bk_mdi_signal_cellular_connected_no_internet_4_bar' | 'bk_mdi_signal_cellular_connected_no_internet_4_bar-fill' | 'bk_mdi_signal_cellular_nodata' | 'bk_mdi_signal_cellular_nodata-fill' | 'bk_mdi_signal_cellular_null' | 'bk_mdi_signal_cellular_null-fill' | 'bk_mdi_signal_cellular_off' | 'bk_mdi_signal_cellular_off-fill' | 'bk_mdi_signal_cellular_pause' | 'bk_mdi_signal_cellular_pause-fill' | 'bk_mdi_signal_disconnected' | 'bk_mdi_signal_disconnected-fill' | 'bk_mdi_signal_wifi_0_bar' | 'bk_mdi_signal_wifi_0_bar-fill' | 'bk_mdi_signal_wifi_4_bar' | 'bk_mdi_signal_wifi_4_bar-fill' | 'bk_mdi_signal_wifi_bad' | 'bk_mdi_signal_wifi_bad-fill' | 'bk_mdi_signal_wifi_off' | 'bk_mdi_signal_wifi_off-fill' | 'bk_mdi_signal_wifi_statusbar_not_connected' | 'bk_mdi_signal_wifi_statusbar_not_connected-fill' | 'bk_mdi_signal_wifi_statusbar_null' | 'bk_mdi_signal_wifi_statusbar_null-fill' | 'bk_mdi_signature' | 'bk_mdi_signature-fill' | 'bk_mdi_signpost' | 'bk_mdi_signpost-fill' | 'bk_mdi_sim_card' | 'bk_mdi_sim_card-fill' | 'bk_mdi_sim_card_download' | 'bk_mdi_sim_card_download-fill' | 'bk_mdi_simulation' | 'bk_mdi_simulation-fill' | 'bk_mdi_single_bed' | 'bk_mdi_single_bed-fill' | 'bk_mdi_sip' | 'bk_mdi_sip-fill' | 'bk_mdi_siren' | 'bk_mdi_siren-fill' | 'bk_mdi_siren_check' | 'bk_mdi_siren_check-fill' | 'bk_mdi_siren_open' | 'bk_mdi_siren_open-fill' | 'bk_mdi_siren_question' | 'bk_mdi_siren_question-fill' | 'bk_mdi_skateboarding' | 'bk_mdi_skateboarding-fill' | 'bk_mdi_skeleton' | 'bk_mdi_skeleton-fill' | 'bk_mdi_skillet' | 'bk_mdi_skillet-fill' | 'bk_mdi_skillet_cooktop' | 'bk_mdi_skillet_cooktop-fill' | 'bk_mdi_skip_next' | 'bk_mdi_skip_next-fill' | 'bk_mdi_skip_previous' | 'bk_mdi_skip_previous-fill' | 'bk_mdi_skull' | 'bk_mdi_skull-fill' | 'bk_mdi_skull_list' | 'bk_mdi_skull_list-fill' | 'bk_mdi_slab_serif' | 'bk_mdi_slab_serif-fill' | 'bk_mdi_sledding' | 'bk_mdi_sledding-fill' | 'bk_mdi_sleep_score' | 'bk_mdi_sleep_score-fill' | 'bk_mdi_slide_library' | 'bk_mdi_slide_library-fill' | 'bk_mdi_sliders' | 'bk_mdi_sliders-fill' | 'bk_mdi_slideshow' | 'bk_mdi_slideshow-fill' | 'bk_mdi_slow_motion_video' | 'bk_mdi_slow_motion_video-fill' | 'bk_mdi_smart_card_reader' | 'bk_mdi_smart_card_reader-fill' | 'bk_mdi_smart_card_reader_off' | 'bk_mdi_smart_card_reader_off-fill' | 'bk_mdi_smart_display' | 'bk_mdi_smart_display-fill' | 'bk_mdi_smart_outlet' | 'bk_mdi_smart_outlet-fill' | 'bk_mdi_smart_toy' | 'bk_mdi_smart_toy-fill' | 'bk_mdi_smb_share' | 'bk_mdi_smb_share-fill' | 'bk_mdi_smoke_free' | 'bk_mdi_smoke_free-fill' | 'bk_mdi_smoking_rooms' | 'bk_mdi_smoking_rooms-fill' | 'bk_mdi_sms' | 'bk_mdi_sms-fill' | 'bk_mdi_snippet_folder' | 'bk_mdi_snippet_folder-fill' | 'bk_mdi_snooze' | 'bk_mdi_snooze-fill' | 'bk_mdi_snowboarding' | 'bk_mdi_snowboarding-fill' | 'bk_mdi_snowing' | 'bk_mdi_snowing-fill' | 'bk_mdi_snowing_heavy' | 'bk_mdi_snowing_heavy-fill' | 'bk_mdi_snowmobile' | 'bk_mdi_snowmobile-fill' | 'bk_mdi_snowshoeing' | 'bk_mdi_snowshoeing-fill' | 'bk_mdi_soap' | 'bk_mdi_soap-fill' | 'bk_mdi_soba' | 'bk_mdi_soba-fill' | 'bk_mdi_social_distance' | 'bk_mdi_social_distance-fill' | 'bk_mdi_social_leaderboard' | 'bk_mdi_social_leaderboard-fill' | 'bk_mdi_solar_power' | 'bk_mdi_solar_power-fill' | 'bk_mdi_solo_dining' | 'bk_mdi_solo_dining-fill' | 'bk_mdi_sort' | 'bk_mdi_sort-fill' | 'bk_mdi_sort_by_alpha' | 'bk_mdi_sort_by_alpha-fill' | 'bk_mdi_sos' | 'bk_mdi_sos-fill' | 'bk_mdi_sound_detection_dog_barking' | 'bk_mdi_sound_detection_dog_barking-fill' | 'bk_mdi_sound_detection_glass_break' | 'bk_mdi_sound_detection_glass_break-fill' | 'bk_mdi_sound_detection_loud_sound' | 'bk_mdi_sound_detection_loud_sound-fill' | 'bk_mdi_sound_sampler' | 'bk_mdi_sound_sampler-fill' | 'bk_mdi_soup_kitchen' | 'bk_mdi_soup_kitchen-fill' | 'bk_mdi_source_environment' | 'bk_mdi_source_environment-fill' | 'bk_mdi_source_notes' | 'bk_mdi_source_notes-fill' | 'bk_mdi_south' | 'bk_mdi_south-fill' | 'bk_mdi_south_america' | 'bk_mdi_south_america-fill' | 'bk_mdi_south_east' | 'bk_mdi_south_east-fill' | 'bk_mdi_south_west' | 'bk_mdi_south_west-fill' | 'bk_mdi_spa' | 'bk_mdi_spa-fill' | 'bk_mdi_space_bar' | 'bk_mdi_space_bar-fill' | 'bk_mdi_space_dashboard' | 'bk_mdi_space_dashboard-fill' | 'bk_mdi_spatial_audio' | 'bk_mdi_spatial_audio-fill' | 'bk_mdi_spatial_audio_off' | 'bk_mdi_spatial_audio_off-fill' | 'bk_mdi_spatial_speaker' | 'bk_mdi_spatial_speaker-fill' | 'bk_mdi_spatial_tracking' | 'bk_mdi_spatial_tracking-fill' | 'bk_mdi_speaker' | 'bk_mdi_speaker-fill' | 'bk_mdi_speaker_group' | 'bk_mdi_speaker_group-fill' | 'bk_mdi_speaker_notes' | 'bk_mdi_speaker_notes-fill' | 'bk_mdi_speaker_notes_off' | 'bk_mdi_speaker_notes_off-fill' | 'bk_mdi_speaker_phone' | 'bk_mdi_speaker_phone-fill' | 'bk_mdi_special_character' | 'bk_mdi_special_character-fill' | 'bk_mdi_specific_gravity' | 'bk_mdi_specific_gravity-fill' | 'bk_mdi_speech_to_text' | 'bk_mdi_speech_to_text-fill' | 'bk_mdi_speed' | 'bk_mdi_speed-fill' | 'bk_mdi_speed_0_25' | 'bk_mdi_speed_0_25-fill' | 'bk_mdi_speed_0_2x' | 'bk_mdi_speed_0_2x-fill' | 'bk_mdi_speed_0_5' | 'bk_mdi_speed_0_5-fill' | 'bk_mdi_speed_0_5x' | 'bk_mdi_speed_0_5x-fill' | 'bk_mdi_speed_0_75' | 'bk_mdi_speed_0_75-fill' | 'bk_mdi_speed_0_7x' | 'bk_mdi_speed_0_7x-fill' | 'bk_mdi_speed_1_2' | 'bk_mdi_speed_1_2-fill' | 'bk_mdi_speed_1_25' | 'bk_mdi_speed_1_25-fill' | 'bk_mdi_speed_1_2x' | 'bk_mdi_speed_1_2x-fill' | 'bk_mdi_speed_1_5' | 'bk_mdi_speed_1_5-fill' | 'bk_mdi_speed_1_5x' | 'bk_mdi_speed_1_5x-fill' | 'bk_mdi_speed_1_75' | 'bk_mdi_speed_1_75-fill' | 'bk_mdi_speed_1_7x' | 'bk_mdi_speed_1_7x-fill' | 'bk_mdi_speed_2x' | 'bk_mdi_speed_2x-fill' | 'bk_mdi_speed_camera' | 'bk_mdi_speed_camera-fill' | 'bk_mdi_spellcheck' | 'bk_mdi_spellcheck-fill' | 'bk_mdi_split_scene' | 'bk_mdi_split_scene-fill' | 'bk_mdi_split_scene_down' | 'bk_mdi_split_scene_down-fill' | 'bk_mdi_split_scene_left' | 'bk_mdi_split_scene_left-fill' | 'bk_mdi_split_scene_right' | 'bk_mdi_split_scene_right-fill' | 'bk_mdi_split_scene_up' | 'bk_mdi_split_scene_up-fill' | 'bk_mdi_splitscreen' | 'bk_mdi_splitscreen-fill' | 'bk_mdi_splitscreen_add' | 'bk_mdi_splitscreen_add-fill' | 'bk_mdi_splitscreen_bottom' | 'bk_mdi_splitscreen_bottom-fill' | 'bk_mdi_splitscreen_landscape' | 'bk_mdi_splitscreen_landscape-fill' | 'bk_mdi_splitscreen_left' | 'bk_mdi_splitscreen_left-fill' | 'bk_mdi_splitscreen_portrait' | 'bk_mdi_splitscreen_portrait-fill' | 'bk_mdi_splitscreen_right' | 'bk_mdi_splitscreen_right-fill' | 'bk_mdi_splitscreen_top' | 'bk_mdi_splitscreen_top-fill' | 'bk_mdi_splitscreen_vertical_add' | 'bk_mdi_splitscreen_vertical_add-fill' | 'bk_mdi_spo2' | 'bk_mdi_spo2-fill' | 'bk_mdi_spoke' | 'bk_mdi_spoke-fill' | 'bk_mdi_sports' | 'bk_mdi_sports-fill' | 'bk_mdi_sports_and_outdoors' | 'bk_mdi_sports_and_outdoors-fill' | 'bk_mdi_sports_bar' | 'bk_mdi_sports_bar-fill' | 'bk_mdi_sports_baseball' | 'bk_mdi_sports_baseball-fill' | 'bk_mdi_sports_basketball' | 'bk_mdi_sports_basketball-fill' | 'bk_mdi_sports_cricket' | 'bk_mdi_sports_cricket-fill' | 'bk_mdi_sports_esports' | 'bk_mdi_sports_esports-fill' | 'bk_mdi_sports_football' | 'bk_mdi_sports_football-fill' | 'bk_mdi_sports_golf' | 'bk_mdi_sports_golf-fill' | 'bk_mdi_sports_gymnastics' | 'bk_mdi_sports_gymnastics-fill' | 'bk_mdi_sports_handball' | 'bk_mdi_sports_handball-fill' | 'bk_mdi_sports_hockey' | 'bk_mdi_sports_hockey-fill' | 'bk_mdi_sports_kabaddi' | 'bk_mdi_sports_kabaddi-fill' | 'bk_mdi_sports_martial_arts' | 'bk_mdi_sports_martial_arts-fill' | 'bk_mdi_sports_mma' | 'bk_mdi_sports_mma-fill' | 'bk_mdi_sports_motorsports' | 'bk_mdi_sports_motorsports-fill' | 'bk_mdi_sports_rugby' | 'bk_mdi_sports_rugby-fill' | 'bk_mdi_sports_score' | 'bk_mdi_sports_score-fill' | 'bk_mdi_sports_soccer' | 'bk_mdi_sports_soccer-fill' | 'bk_mdi_sports_tennis' | 'bk_mdi_sports_tennis-fill' | 'bk_mdi_sports_volleyball' | 'bk_mdi_sports_volleyball-fill' | 'bk_mdi_sprinkler' | 'bk_mdi_sprinkler-fill' | 'bk_mdi_sprint' | 'bk_mdi_sprint-fill' | 'bk_mdi_square' | 'bk_mdi_square-fill' | 'bk_mdi_square_circle' | 'bk_mdi_square_circle-fill' | 'bk_mdi_square_dot' | 'bk_mdi_square_dot-fill' | 'bk_mdi_square_foot' | 'bk_mdi_square_foot-fill' | 'bk_mdi_ssid_chart' | 'bk_mdi_ssid_chart-fill' | 'bk_mdi_stack' | 'bk_mdi_stack-fill' | 'bk_mdi_stack_group' | 'bk_mdi_stack_group-fill' | 'bk_mdi_stack_hexagon' | 'bk_mdi_stack_hexagon-fill' | 'bk_mdi_stack_off' | 'bk_mdi_stack_off-fill' | 'bk_mdi_stack_star' | 'bk_mdi_stack_star-fill' | 'bk_mdi_stacked_bar_chart' | 'bk_mdi_stacked_bar_chart-fill' | 'bk_mdi_stacked_email' | 'bk_mdi_stacked_email-fill' | 'bk_mdi_stacked_inbox' | 'bk_mdi_stacked_inbox-fill' | 'bk_mdi_stacked_line_chart' | 'bk_mdi_stacked_line_chart-fill' | 'bk_mdi_stacks' | 'bk_mdi_stacks-fill' | 'bk_mdi_stadia_controller' | 'bk_mdi_stadia_controller-fill' | 'bk_mdi_stadium' | 'bk_mdi_stadium-fill' | 'bk_mdi_stairs' | 'bk_mdi_stairs-fill' | 'bk_mdi_stairs_2' | 'bk_mdi_stairs_2-fill' | 'bk_mdi_star' | 'bk_mdi_star-fill' | 'bk_mdi_star_half' | 'bk_mdi_star_half-fill' | 'bk_mdi_star_rate' | 'bk_mdi_star_rate-fill' | 'bk_mdi_star_rate_half' | 'bk_mdi_star_rate_half-fill' | 'bk_mdi_star_shine' | 'bk_mdi_star_shine-fill' | 'bk_mdi_stars' | 'bk_mdi_stars-fill' | 'bk_mdi_stars_2' | 'bk_mdi_stars_2-fill' | 'bk_mdi_start' | 'bk_mdi_start-fill' | 'bk_mdi_stat_0' | 'bk_mdi_stat_0-fill' | 'bk_mdi_stat_1' | 'bk_mdi_stat_1-fill' | 'bk_mdi_stat_2' | 'bk_mdi_stat_2-fill' | 'bk_mdi_stat_3' | 'bk_mdi_stat_3-fill' | 'bk_mdi_stat_minus_1' | 'bk_mdi_stat_minus_1-fill' | 'bk_mdi_stat_minus_2' | 'bk_mdi_stat_minus_2-fill' | 'bk_mdi_stat_minus_3' | 'bk_mdi_stat_minus_3-fill' | 'bk_mdi_steering_wheel_heat' | 'bk_mdi_steering_wheel_heat-fill' | 'bk_mdi_step' | 'bk_mdi_step-fill' | 'bk_mdi_step_into' | 'bk_mdi_step_into-fill' | 'bk_mdi_step_out' | 'bk_mdi_step_out-fill' | 'bk_mdi_step_over' | 'bk_mdi_step_over-fill' | 'bk_mdi_steppers' | 'bk_mdi_steppers-fill' | 'bk_mdi_steps' | 'bk_mdi_steps-fill' | 'bk_mdi_stethoscope' | 'bk_mdi_stethoscope-fill' | 'bk_mdi_stethoscope_arrow' | 'bk_mdi_stethoscope_arrow-fill' | 'bk_mdi_stethoscope_check' | 'bk_mdi_stethoscope_check-fill' | 'bk_mdi_sticker' | 'bk_mdi_sticker-fill' | 'bk_mdi_sticker_add' | 'bk_mdi_sticker_add-fill' | 'bk_mdi_sticky_note' | 'bk_mdi_sticky_note-fill' | 'bk_mdi_sticky_note_2' | 'bk_mdi_sticky_note_2-fill' | 'bk_mdi_stock_media' | 'bk_mdi_stock_media-fill' | 'bk_mdi_stockpot' | 'bk_mdi_stockpot-fill' | 'bk_mdi_stop' | 'bk_mdi_stop-fill' | 'bk_mdi_stop_circle' | 'bk_mdi_stop_circle-fill' | 'bk_mdi_stop_screen_share' | 'bk_mdi_stop_screen_share-fill' | 'bk_mdi_storage' | 'bk_mdi_storage-fill' | 'bk_mdi_store' | 'bk_mdi_store-fill' | 'bk_mdi_storefront' | 'bk_mdi_storefront-fill' | 'bk_mdi_storm' | 'bk_mdi_storm-fill' | 'bk_mdi_straight' | 'bk_mdi_straight-fill' | 'bk_mdi_straighten' | 'bk_mdi_straighten-fill' | 'bk_mdi_strategy' | 'bk_mdi_strategy-fill' | 'bk_mdi_stream' | 'bk_mdi_stream-fill' | 'bk_mdi_streetview' | 'bk_mdi_streetview-fill' | 'bk_mdi_stress_management' | 'bk_mdi_stress_management-fill' | 'bk_mdi_strikethrough_s' | 'bk_mdi_strikethrough_s-fill' | 'bk_mdi_stroke_full' | 'bk_mdi_stroke_full-fill' | 'bk_mdi_stroke_partial' | 'bk_mdi_stroke_partial-fill' | 'bk_mdi_stroller' | 'bk_mdi_stroller-fill' | 'bk_mdi_style' | 'bk_mdi_style-fill' | 'bk_mdi_styler' | 'bk_mdi_styler-fill' | 'bk_mdi_stylus' | 'bk_mdi_stylus-fill' | 'bk_mdi_stylus_brush' | 'bk_mdi_stylus_brush-fill' | 'bk_mdi_stylus_fountain_pen' | 'bk_mdi_stylus_fountain_pen-fill' | 'bk_mdi_stylus_highlighter' | 'bk_mdi_stylus_highlighter-fill' | 'bk_mdi_stylus_laser_pointer' | 'bk_mdi_stylus_laser_pointer-fill' | 'bk_mdi_stylus_note' | 'bk_mdi_stylus_note-fill' | 'bk_mdi_stylus_pen' | 'bk_mdi_stylus_pen-fill' | 'bk_mdi_stylus_pencil' | 'bk_mdi_stylus_pencil-fill' | 'bk_mdi_subdirectory_arrow_left' | 'bk_mdi_subdirectory_arrow_left-fill' | 'bk_mdi_subdirectory_arrow_right' | 'bk_mdi_subdirectory_arrow_right-fill' | 'bk_mdi_subheader' | 'bk_mdi_subheader-fill' | 'bk_mdi_subject' | 'bk_mdi_subject-fill' | 'bk_mdi_subscript' | 'bk_mdi_subscript-fill' | 'bk_mdi_subscriptions' | 'bk_mdi_subscriptions-fill' | 'bk_mdi_subtitles' | 'bk_mdi_subtitles-fill' | 'bk_mdi_subtitles_gear' | 'bk_mdi_subtitles_gear-fill' | 'bk_mdi_subtitles_off' | 'bk_mdi_subtitles_off-fill' | 'bk_mdi_subway' | 'bk_mdi_subway-fill' | 'bk_mdi_subway_walk' | 'bk_mdi_subway_walk-fill' | 'bk_mdi_summarize' | 'bk_mdi_summarize-fill' | 'bk_mdi_sunny' | 'bk_mdi_sunny-fill' | 'bk_mdi_sunny_snowing' | 'bk_mdi_sunny_snowing-fill' | 'bk_mdi_superscript' | 'bk_mdi_superscript-fill' | 'bk_mdi_supervised_user_circle' | 'bk_mdi_supervised_user_circle-fill' | 'bk_mdi_supervised_user_circle_off' | 'bk_mdi_supervised_user_circle_off-fill' | 'bk_mdi_supervisor_account' | 'bk_mdi_supervisor_account-fill' | 'bk_mdi_support' | 'bk_mdi_support-fill' | 'bk_mdi_support_agent' | 'bk_mdi_support_agent-fill' | 'bk_mdi_surfing' | 'bk_mdi_surfing-fill' | 'bk_mdi_surgical' | 'bk_mdi_surgical-fill' | 'bk_mdi_surround_sound' | 'bk_mdi_surround_sound-fill' | 'bk_mdi_swap_calls' | 'bk_mdi_swap_calls-fill' | 'bk_mdi_swap_driving_apps' | 'bk_mdi_swap_driving_apps-fill' | 'bk_mdi_swap_driving_apps_wheel' | 'bk_mdi_swap_driving_apps_wheel-fill' | 'bk_mdi_swap_horiz' | 'bk_mdi_swap_horiz-fill' | 'bk_mdi_swap_horizontal_circle' | 'bk_mdi_swap_horizontal_circle-fill' | 'bk_mdi_swap_vert' | 'bk_mdi_swap_vert-fill' | 'bk_mdi_swap_vertical_circle' | 'bk_mdi_swap_vertical_circle-fill' | 'bk_mdi_sweep' | 'bk_mdi_sweep-fill' | 'bk_mdi_swipe' | 'bk_mdi_swipe-fill' | 'bk_mdi_swipe_down' | 'bk_mdi_swipe_down-fill' | 'bk_mdi_swipe_down_alt' | 'bk_mdi_swipe_down_alt-fill' | 'bk_mdi_swipe_left' | 'bk_mdi_swipe_left-fill' | 'bk_mdi_swipe_left_alt' | 'bk_mdi_swipe_left_alt-fill' | 'bk_mdi_swipe_right' | 'bk_mdi_swipe_right-fill' | 'bk_mdi_swipe_right_alt' | 'bk_mdi_swipe_right_alt-fill' | 'bk_mdi_swipe_up' | 'bk_mdi_swipe_up-fill' | 'bk_mdi_swipe_up_alt' | 'bk_mdi_swipe_up_alt-fill' | 'bk_mdi_swipe_vertical' | 'bk_mdi_swipe_vertical-fill' | 'bk_mdi_switch' | 'bk_mdi_switch-fill' | 'bk_mdi_switch_access' | 'bk_mdi_switch_access-fill' | 'bk_mdi_switch_access_2' | 'bk_mdi_switch_access_2-fill' | 'bk_mdi_switch_access_3' | 'bk_mdi_switch_access_3-fill' | 'bk_mdi_switch_access_shortcut' | 'bk_mdi_switch_access_shortcut-fill' | 'bk_mdi_switch_access_shortcut_add' | 'bk_mdi_switch_access_shortcut_add-fill' | 'bk_mdi_switch_account' | 'bk_mdi_switch_account-fill' | 'bk_mdi_switch_camera' | 'bk_mdi_switch_camera-fill' | 'bk_mdi_switch_left' | 'bk_mdi_switch_left-fill' | 'bk_mdi_switch_right' | 'bk_mdi_switch_right-fill' | 'bk_mdi_switch_video' | 'bk_mdi_switch_video-fill' | 'bk_mdi_switches' | 'bk_mdi_switches-fill' | 'bk_mdi_sword_rose' | 'bk_mdi_sword_rose-fill' | 'bk_mdi_swords' | 'bk_mdi_swords-fill' | 'bk_mdi_symptoms' | 'bk_mdi_symptoms-fill' | 'bk_mdi_synagogue' | 'bk_mdi_synagogue-fill' | 'bk_mdi_sync' | 'bk_mdi_sync-fill' | 'bk_mdi_sync_alt' | 'bk_mdi_sync_alt-fill' | 'bk_mdi_sync_arrow_down' | 'bk_mdi_sync_arrow_down-fill' | 'bk_mdi_sync_arrow_up' | 'bk_mdi_sync_arrow_up-fill' | 'bk_mdi_sync_desktop' | 'bk_mdi_sync_desktop-fill' | 'bk_mdi_sync_disabled' | 'bk_mdi_sync_disabled-fill' | 'bk_mdi_sync_lock' | 'bk_mdi_sync_lock-fill' | 'bk_mdi_sync_problem' | 'bk_mdi_sync_problem-fill' | 'bk_mdi_sync_saved_locally' | 'bk_mdi_sync_saved_locally-fill' | 'bk_mdi_sync_saved_locally_off' | 'bk_mdi_sync_saved_locally_off-fill' | 'bk_mdi_syringe' | 'bk_mdi_syringe-fill' | 'bk_mdi_system_update_alt' | 'bk_mdi_system_update_alt-fill' | 'bk_mdi_tab' | 'bk_mdi_tab-fill' | 'bk_mdi_tab_close' | 'bk_mdi_tab_close-fill' | 'bk_mdi_tab_close_inactive' | 'bk_mdi_tab_close_inactive-fill' | 'bk_mdi_tab_close_right' | 'bk_mdi_tab_close_right-fill' | 'bk_mdi_tab_duplicate' | 'bk_mdi_tab_duplicate-fill' | 'bk_mdi_tab_group' | 'bk_mdi_tab_group-fill' | 'bk_mdi_tab_inactive' | 'bk_mdi_tab_inactive-fill' | 'bk_mdi_tab_move' | 'bk_mdi_tab_move-fill' | 'bk_mdi_tab_new_right' | 'bk_mdi_tab_new_right-fill' | 'bk_mdi_tab_recent' | 'bk_mdi_tab_recent-fill' | 'bk_mdi_tab_search' | 'bk_mdi_tab_search-fill' | 'bk_mdi_tab_unselected' | 'bk_mdi_tab_unselected-fill' | 'bk_mdi_table' | 'bk_mdi_table-fill' | 'bk_mdi_table_bar' | 'bk_mdi_table_bar-fill' | 'bk_mdi_table_chart' | 'bk_mdi_table_chart-fill' | 'bk_mdi_table_chart_view' | 'bk_mdi_table_chart_view-fill' | 'bk_mdi_table_convert' | 'bk_mdi_table_convert-fill' | 'bk_mdi_table_edit' | 'bk_mdi_table_edit-fill' | 'bk_mdi_table_eye' | 'bk_mdi_table_eye-fill' | 'bk_mdi_table_lamp' | 'bk_mdi_table_lamp-fill' | 'bk_mdi_table_large' | 'bk_mdi_table_large-fill' | 'bk_mdi_table_restaurant' | 'bk_mdi_table_restaurant-fill' | 'bk_mdi_table_rows' | 'bk_mdi_table_rows-fill' | 'bk_mdi_table_rows_narrow' | 'bk_mdi_table_rows_narrow-fill' | 'bk_mdi_table_sign' | 'bk_mdi_table_sign-fill' | 'bk_mdi_table_view' | 'bk_mdi_table_view-fill' | 'bk_mdi_tablet' | 'bk_mdi_tablet-fill' | 'bk_mdi_tablet_android' | 'bk_mdi_tablet_android-fill' | 'bk_mdi_tablet_camera' | 'bk_mdi_tablet_camera-fill' | 'bk_mdi_tablet_mac' | 'bk_mdi_tablet_mac-fill' | 'bk_mdi_tabs' | 'bk_mdi_tabs-fill' | 'bk_mdi_tactic' | 'bk_mdi_tactic-fill' | 'bk_mdi_tag' | 'bk_mdi_tag-fill' | 'bk_mdi_takeout_dining' | 'bk_mdi_takeout_dining-fill' | 'bk_mdi_takeout_dining_2' | 'bk_mdi_takeout_dining_2-fill' | 'bk_mdi_tamper_detection_off' | 'bk_mdi_tamper_detection_off-fill' | 'bk_mdi_tamper_detection_on' | 'bk_mdi_tamper_detection_on-fill' | 'bk_mdi_tapas' | 'bk_mdi_tapas-fill' | 'bk_mdi_target' | 'bk_mdi_target-fill' | 'bk_mdi_task' | 'bk_mdi_task-fill' | 'bk_mdi_task_alt' | 'bk_mdi_task_alt-fill' | 'bk_mdi_tatami_seat' | 'bk_mdi_tatami_seat-fill' | 'bk_mdi_taunt' | 'bk_mdi_taunt-fill' | 'bk_mdi_taxi_alert' | 'bk_mdi_taxi_alert-fill' | 'bk_mdi_team_dashboard' | 'bk_mdi_team_dashboard-fill' | 'bk_mdi_temp_preferences_eco' | 'bk_mdi_temp_preferences_eco-fill' | 'bk_mdi_temple_buddhist' | 'bk_mdi_temple_buddhist-fill' | 'bk_mdi_temple_hindu' | 'bk_mdi_temple_hindu-fill' | 'bk_mdi_tenancy' | 'bk_mdi_tenancy-fill' | 'bk_mdi_terminal' | 'bk_mdi_terminal-fill' | 'bk_mdi_text_ad' | 'bk_mdi_text_ad-fill' | 'bk_mdi_text_compare' | 'bk_mdi_text_compare-fill' | 'bk_mdi_text_decrease' | 'bk_mdi_text_decrease-fill' | 'bk_mdi_text_fields' | 'bk_mdi_text_fields-fill' | 'bk_mdi_text_fields_alt' | 'bk_mdi_text_fields_alt-fill' | 'bk_mdi_text_format' | 'bk_mdi_text_format-fill' | 'bk_mdi_text_increase' | 'bk_mdi_text_increase-fill' | 'bk_mdi_text_rotate_up' | 'bk_mdi_text_rotate_up-fill' | 'bk_mdi_text_rotate_vertical' | 'bk_mdi_text_rotate_vertical-fill' | 'bk_mdi_text_rotation_angledown' | 'bk_mdi_text_rotation_angledown-fill' | 'bk_mdi_text_rotation_angleup' | 'bk_mdi_text_rotation_angleup-fill' | 'bk_mdi_text_rotation_down' | 'bk_mdi_text_rotation_down-fill' | 'bk_mdi_text_rotation_none' | 'bk_mdi_text_rotation_none-fill' | 'bk_mdi_text_select_end' | 'bk_mdi_text_select_end-fill' | 'bk_mdi_text_select_jump_to_beginning' | 'bk_mdi_text_select_jump_to_beginning-fill' | 'bk_mdi_text_select_jump_to_end' | 'bk_mdi_text_select_jump_to_end-fill' | 'bk_mdi_text_select_move_back_character' | 'bk_mdi_text_select_move_back_character-fill' | 'bk_mdi_text_select_move_back_word' | 'bk_mdi_text_select_move_back_word-fill' | 'bk_mdi_text_select_move_down' | 'bk_mdi_text_select_move_down-fill' | 'bk_mdi_text_select_move_forward_character' | 'bk_mdi_text_select_move_forward_character-fill' | 'bk_mdi_text_select_move_forward_word' | 'bk_mdi_text_select_move_forward_word-fill' | 'bk_mdi_text_select_move_up' | 'bk_mdi_text_select_move_up-fill' | 'bk_mdi_text_select_start' | 'bk_mdi_text_select_start-fill' | 'bk_mdi_text_snippet' | 'bk_mdi_text_snippet-fill' | 'bk_mdi_text_to_speech' | 'bk_mdi_text_to_speech-fill' | 'bk_mdi_text_up' | 'bk_mdi_text_up-fill' | 'bk_mdi_texture' | 'bk_mdi_texture-fill' | 'bk_mdi_texture_add' | 'bk_mdi_texture_add-fill' | 'bk_mdi_texture_minus' | 'bk_mdi_texture_minus-fill' | 'bk_mdi_theater_comedy' | 'bk_mdi_theater_comedy-fill' | 'bk_mdi_theaters' | 'bk_mdi_theaters-fill' | 'bk_mdi_thermometer' | 'bk_mdi_thermometer-fill' | 'bk_mdi_thermometer_add' | 'bk_mdi_thermometer_add-fill' | 'bk_mdi_thermometer_alert' | 'bk_mdi_thermometer_alert-fill' | 'bk_mdi_thermometer_gain' | 'bk_mdi_thermometer_gain-fill' | 'bk_mdi_thermometer_loss' | 'bk_mdi_thermometer_loss-fill' | 'bk_mdi_thermometer_minus' | 'bk_mdi_thermometer_minus-fill' | 'bk_mdi_thermostat' | 'bk_mdi_thermostat-fill' | 'bk_mdi_thermostat_arrow_down' | 'bk_mdi_thermostat_arrow_down-fill' | 'bk_mdi_thermostat_arrow_up' | 'bk_mdi_thermostat_arrow_up-fill' | 'bk_mdi_thermostat_auto' | 'bk_mdi_thermostat_auto-fill' | 'bk_mdi_thermostat_carbon' | 'bk_mdi_thermostat_carbon-fill' | 'bk_mdi_things_to_do' | 'bk_mdi_things_to_do-fill' | 'bk_mdi_thread_unread' | 'bk_mdi_thread_unread-fill' | 'bk_mdi_threat_intelligence' | 'bk_mdi_threat_intelligence-fill' | 'bk_mdi_thumb_down' | 'bk_mdi_thumb_down-fill' | 'bk_mdi_thumb_up' | 'bk_mdi_thumb_up-fill' | 'bk_mdi_thumbnail_bar' | 'bk_mdi_thumbnail_bar-fill' | 'bk_mdi_thumbs_up_double' | 'bk_mdi_thumbs_up_double-fill' | 'bk_mdi_thumbs_up_down' | 'bk_mdi_thumbs_up_down-fill' | 'bk_mdi_thunderstorm' | 'bk_mdi_thunderstorm-fill' | 'bk_mdi_tibia' | 'bk_mdi_tibia-fill' | 'bk_mdi_tibia_alt' | 'bk_mdi_tibia_alt-fill' | 'bk_mdi_tile_large' | 'bk_mdi_tile_large-fill' | 'bk_mdi_tile_medium' | 'bk_mdi_tile_medium-fill' | 'bk_mdi_tile_small' | 'bk_mdi_tile_small-fill' | 'bk_mdi_time_auto' | 'bk_mdi_time_auto-fill' | 'bk_mdi_timelapse' | 'bk_mdi_timelapse-fill' | 'bk_mdi_timeline' | 'bk_mdi_timeline-fill' | 'bk_mdi_timer' | 'bk_mdi_timer-fill' | 'bk_mdi_timer_1' | 'bk_mdi_timer_1-fill' | 'bk_mdi_timer_10' | 'bk_mdi_timer_10-fill' | 'bk_mdi_timer_10_alt_1' | 'bk_mdi_timer_10_alt_1-fill' | 'bk_mdi_timer_10_select' | 'bk_mdi_timer_10_select-fill' | 'bk_mdi_timer_2' | 'bk_mdi_timer_2-fill' | 'bk_mdi_timer_3' | 'bk_mdi_timer_3-fill' | 'bk_mdi_timer_3_alt_1' | 'bk_mdi_timer_3_alt_1-fill' | 'bk_mdi_timer_3_select' | 'bk_mdi_timer_3_select-fill' | 'bk_mdi_timer_5' | 'bk_mdi_timer_5-fill' | 'bk_mdi_timer_5_shutter' | 'bk_mdi_timer_5_shutter-fill' | 'bk_mdi_timer_arrow_down' | 'bk_mdi_timer_arrow_down-fill' | 'bk_mdi_timer_arrow_up' | 'bk_mdi_timer_arrow_up-fill' | 'bk_mdi_timer_off' | 'bk_mdi_timer_off-fill' | 'bk_mdi_timer_pause' | 'bk_mdi_timer_pause-fill' | 'bk_mdi_timer_play' | 'bk_mdi_timer_play-fill' | 'bk_mdi_tire_repair' | 'bk_mdi_tire_repair-fill' | 'bk_mdi_title' | 'bk_mdi_title-fill' | 'bk_mdi_titlecase' | 'bk_mdi_titlecase-fill' | 'bk_mdi_toast' | 'bk_mdi_toast-fill' | 'bk_mdi_toc' | 'bk_mdi_toc-fill' | 'bk_mdi_today' | 'bk_mdi_today-fill' | 'bk_mdi_toggle_off' | 'bk_mdi_toggle_off-fill' | 'bk_mdi_toggle_on' | 'bk_mdi_toggle_on-fill' | 'bk_mdi_token' | 'bk_mdi_token-fill' | 'bk_mdi_toll' | 'bk_mdi_toll-fill' | 'bk_mdi_tonality' | 'bk_mdi_tonality-fill' | 'bk_mdi_tonality_2' | 'bk_mdi_tonality_2-fill' | 'bk_mdi_toolbar' | 'bk_mdi_toolbar-fill' | 'bk_mdi_tools_flat_head' | 'bk_mdi_tools_flat_head-fill' | 'bk_mdi_tools_installation_kit' | 'bk_mdi_tools_installation_kit-fill' | 'bk_mdi_tools_ladder' | 'bk_mdi_tools_ladder-fill' | 'bk_mdi_tools_level' | 'bk_mdi_tools_level-fill' | 'bk_mdi_tools_phillips' | 'bk_mdi_tools_phillips-fill' | 'bk_mdi_tools_pliers_wire_stripper' | 'bk_mdi_tools_pliers_wire_stripper-fill' | 'bk_mdi_tools_power_drill' | 'bk_mdi_tools_power_drill-fill' | 'bk_mdi_tooltip' | 'bk_mdi_tooltip-fill' | 'bk_mdi_tooltip_2' | 'bk_mdi_tooltip_2-fill' | 'bk_mdi_top_panel_close' | 'bk_mdi_top_panel_close-fill' | 'bk_mdi_top_panel_open' | 'bk_mdi_top_panel_open-fill' | 'bk_mdi_topic' | 'bk_mdi_topic-fill' | 'bk_mdi_tornado' | 'bk_mdi_tornado-fill' | 'bk_mdi_total_dissolved_solids' | 'bk_mdi_total_dissolved_solids-fill' | 'bk_mdi_touch_app' | 'bk_mdi_touch_app-fill' | 'bk_mdi_touch_double' | 'bk_mdi_touch_double-fill' | 'bk_mdi_touch_long' | 'bk_mdi_touch_long-fill' | 'bk_mdi_touch_triple' | 'bk_mdi_touch_triple-fill' | 'bk_mdi_touchpad_mouse' | 'bk_mdi_touchpad_mouse-fill' | 'bk_mdi_touchpad_mouse_off' | 'bk_mdi_touchpad_mouse_off-fill' | 'bk_mdi_tour' | 'bk_mdi_tour-fill' | 'bk_mdi_toys' | 'bk_mdi_toys-fill' | 'bk_mdi_toys_and_games' | 'bk_mdi_toys_and_games-fill' | 'bk_mdi_toys_fan' | 'bk_mdi_toys_fan-fill' | 'bk_mdi_track_changes' | 'bk_mdi_track_changes-fill' | 'bk_mdi_trackpad_input' | 'bk_mdi_trackpad_input-fill' | 'bk_mdi_trackpad_input_2' | 'bk_mdi_trackpad_input_2-fill' | 'bk_mdi_trackpad_input_3' | 'bk_mdi_trackpad_input_3-fill' | 'bk_mdi_traffic' | 'bk_mdi_traffic-fill' | 'bk_mdi_traffic_jam' | 'bk_mdi_traffic_jam-fill' | 'bk_mdi_trail_length' | 'bk_mdi_trail_length-fill' | 'bk_mdi_trail_length_medium' | 'bk_mdi_trail_length_medium-fill' | 'bk_mdi_trail_length_short' | 'bk_mdi_trail_length_short-fill' | 'bk_mdi_train' | 'bk_mdi_train-fill' | 'bk_mdi_tram' | 'bk_mdi_tram-fill' | 'bk_mdi_transfer_within_a_station' | 'bk_mdi_transfer_within_a_station-fill' | 'bk_mdi_transform' | 'bk_mdi_transform-fill' | 'bk_mdi_transgender' | 'bk_mdi_transgender-fill' | 'bk_mdi_transit_enterexit' | 'bk_mdi_transit_enterexit-fill' | 'bk_mdi_transit_ticket' | 'bk_mdi_transit_ticket-fill' | 'bk_mdi_transition_chop' | 'bk_mdi_transition_chop-fill' | 'bk_mdi_transition_dissolve' | 'bk_mdi_transition_dissolve-fill' | 'bk_mdi_transition_fade' | 'bk_mdi_transition_fade-fill' | 'bk_mdi_transition_push' | 'bk_mdi_transition_push-fill' | 'bk_mdi_transition_slide' | 'bk_mdi_transition_slide-fill' | 'bk_mdi_translate' | 'bk_mdi_translate-fill' | 'bk_mdi_translate_indic' | 'bk_mdi_translate_indic-fill' | 'bk_mdi_transportation' | 'bk_mdi_transportation-fill' | 'bk_mdi_travel' | 'bk_mdi_travel-fill' | 'bk_mdi_travel_explore' | 'bk_mdi_travel_explore-fill' | 'bk_mdi_travel_luggage_and_bags' | 'bk_mdi_travel_luggage_and_bags-fill' | 'bk_mdi_trending_down' | 'bk_mdi_trending_down-fill' | 'bk_mdi_trending_flat' | 'bk_mdi_trending_flat-fill' | 'bk_mdi_trending_up' | 'bk_mdi_trending_up-fill' | 'bk_mdi_triangle_circle' | 'bk_mdi_triangle_circle-fill' | 'bk_mdi_trip' | 'bk_mdi_trip-fill' | 'bk_mdi_trip_origin' | 'bk_mdi_trip_origin-fill' | 'bk_mdi_trolley' | 'bk_mdi_trolley-fill' | 'bk_mdi_trolley_cable_car' | 'bk_mdi_trolley_cable_car-fill' | 'bk_mdi_trophy' | 'bk_mdi_trophy-fill' | 'bk_mdi_troubleshoot' | 'bk_mdi_troubleshoot-fill' | 'bk_mdi_tsunami' | 'bk_mdi_tsunami-fill' | 'bk_mdi_tsv' | 'bk_mdi_tsv-fill' | 'bk_mdi_tty' | 'bk_mdi_tty-fill' | 'bk_mdi_tune' | 'bk_mdi_tune-fill' | 'bk_mdi_turn_left' | 'bk_mdi_turn_left-fill' | 'bk_mdi_turn_right' | 'bk_mdi_turn_right-fill' | 'bk_mdi_turn_sharp_left' | 'bk_mdi_turn_sharp_left-fill' | 'bk_mdi_turn_sharp_right' | 'bk_mdi_turn_sharp_right-fill' | 'bk_mdi_turn_slight_left' | 'bk_mdi_turn_slight_left-fill' | 'bk_mdi_turn_slight_right' | 'bk_mdi_turn_slight_right-fill' | 'bk_mdi_tv' | 'bk_mdi_tv-fill' | 'bk_mdi_tv_displays' | 'bk_mdi_tv_displays-fill' | 'bk_mdi_tv_gen' | 'bk_mdi_tv_gen-fill' | 'bk_mdi_tv_guide' | 'bk_mdi_tv_guide-fill' | 'bk_mdi_tv_next' | 'bk_mdi_tv_next-fill' | 'bk_mdi_tv_off' | 'bk_mdi_tv_off-fill' | 'bk_mdi_tv_options_edit_channels' | 'bk_mdi_tv_options_edit_channels-fill' | 'bk_mdi_tv_options_input_settings' | 'bk_mdi_tv_options_input_settings-fill' | 'bk_mdi_tv_remote' | 'bk_mdi_tv_remote-fill' | 'bk_mdi_tv_signin' | 'bk_mdi_tv_signin-fill' | 'bk_mdi_tv_with_assistant' | 'bk_mdi_tv_with_assistant-fill' | 'bk_mdi_two_pager' | 'bk_mdi_two_pager-fill' | 'bk_mdi_two_pager_store' | 'bk_mdi_two_pager_store-fill' | 'bk_mdi_two_wheeler' | 'bk_mdi_two_wheeler-fill' | 'bk_mdi_type_specimen' | 'bk_mdi_type_specimen-fill' | 'bk_mdi_u_turn_left' | 'bk_mdi_u_turn_left-fill' | 'bk_mdi_u_turn_right' | 'bk_mdi_u_turn_right-fill' | 'bk_mdi_udon' | 'bk_mdi_udon-fill' | 'bk_mdi_ulna_radius' | 'bk_mdi_ulna_radius-fill' | 'bk_mdi_ulna_radius_alt' | 'bk_mdi_ulna_radius_alt-fill' | 'bk_mdi_umbrella' | 'bk_mdi_umbrella-fill' | 'bk_mdi_unarchive' | 'bk_mdi_unarchive-fill' | 'bk_mdi_undereye' | 'bk_mdi_undereye-fill' | 'bk_mdi_undo' | 'bk_mdi_undo-fill' | 'bk_mdi_unfold_less' | 'bk_mdi_unfold_less-fill' | 'bk_mdi_unfold_less_double' | 'bk_mdi_unfold_less_double-fill' | 'bk_mdi_unfold_more' | 'bk_mdi_unfold_more-fill' | 'bk_mdi_unfold_more_double' | 'bk_mdi_unfold_more_double-fill' | 'bk_mdi_ungroup' | 'bk_mdi_ungroup-fill' | 'bk_mdi_universal_currency' | 'bk_mdi_universal_currency-fill' | 'bk_mdi_universal_currency_alt' | 'bk_mdi_universal_currency_alt-fill' | 'bk_mdi_universal_local' | 'bk_mdi_universal_local-fill' | 'bk_mdi_unknown_2' | 'bk_mdi_unknown_2-fill' | 'bk_mdi_unknown_5' | 'bk_mdi_unknown_5-fill' | 'bk_mdi_unknown_7' | 'bk_mdi_unknown_7-fill' | 'bk_mdi_unknown_document' | 'bk_mdi_unknown_document-fill' | 'bk_mdi_unknown_med' | 'bk_mdi_unknown_med-fill' | 'bk_mdi_unlicense' | 'bk_mdi_unlicense-fill' | 'bk_mdi_unpaved_road' | 'bk_mdi_unpaved_road-fill' | 'bk_mdi_unpublished' | 'bk_mdi_unpublished-fill' | 'bk_mdi_unsubscribe' | 'bk_mdi_unsubscribe-fill' | 'bk_mdi_upcoming' | 'bk_mdi_upcoming-fill' | 'bk_mdi_update' | 'bk_mdi_update-fill' | 'bk_mdi_update_disabled' | 'bk_mdi_update_disabled-fill' | 'bk_mdi_upgrade' | 'bk_mdi_upgrade-fill' | 'bk_mdi_upi_pay' | 'bk_mdi_upi_pay-fill' | 'bk_mdi_upload' | 'bk_mdi_upload-fill' | 'bk_mdi_upload_2' | 'bk_mdi_upload_2-fill' | 'bk_mdi_upload_file' | 'bk_mdi_upload_file-fill' | 'bk_mdi_uppercase' | 'bk_mdi_uppercase-fill' | 'bk_mdi_urology' | 'bk_mdi_urology-fill' | 'bk_mdi_usb' | 'bk_mdi_usb-fill' | 'bk_mdi_usb_off' | 'bk_mdi_usb_off-fill' | 'bk_mdi_user_attributes' | 'bk_mdi_user_attributes-fill' | 'bk_mdi_vaccines' | 'bk_mdi_vaccines-fill' | 'bk_mdi_vacuum' | 'bk_mdi_vacuum-fill' | 'bk_mdi_valve' | 'bk_mdi_valve-fill' | 'bk_mdi_vape_free' | 'bk_mdi_vape_free-fill' | 'bk_mdi_vaping_rooms' | 'bk_mdi_vaping_rooms-fill' | 'bk_mdi_variable_add' | 'bk_mdi_variable_add-fill' | 'bk_mdi_variable_insert' | 'bk_mdi_variable_insert-fill' | 'bk_mdi_variable_remove' | 'bk_mdi_variable_remove-fill' | 'bk_mdi_variables' | 'bk_mdi_variables-fill' | 'bk_mdi_ventilator' | 'bk_mdi_ventilator-fill' | 'bk_mdi_verified' | 'bk_mdi_verified-fill' | 'bk_mdi_verified_off' | 'bk_mdi_verified_off-fill' | 'bk_mdi_verified_user' | 'bk_mdi_verified_user-fill' | 'bk_mdi_vertical_align_bottom' | 'bk_mdi_vertical_align_bottom-fill' | 'bk_mdi_vertical_align_center' | 'bk_mdi_vertical_align_center-fill' | 'bk_mdi_vertical_align_top' | 'bk_mdi_vertical_align_top-fill' | 'bk_mdi_vertical_distribute' | 'bk_mdi_vertical_distribute-fill' | 'bk_mdi_vertical_shades' | 'bk_mdi_vertical_shades-fill' | 'bk_mdi_vertical_shades_closed' | 'bk_mdi_vertical_shades_closed-fill' | 'bk_mdi_vertical_split' | 'bk_mdi_vertical_split-fill' | 'bk_mdi_video_call' | 'bk_mdi_video_call-fill' | 'bk_mdi_video_camera_back' | 'bk_mdi_video_camera_back-fill' | 'bk_mdi_video_camera_back_add' | 'bk_mdi_video_camera_back_add-fill' | 'bk_mdi_video_camera_front' | 'bk_mdi_video_camera_front-fill' | 'bk_mdi_video_camera_front_off' | 'bk_mdi_video_camera_front_off-fill' | 'bk_mdi_video_chat' | 'bk_mdi_video_chat-fill' | 'bk_mdi_video_file' | 'bk_mdi_video_file-fill' | 'bk_mdi_video_label' | 'bk_mdi_video_label-fill' | 'bk_mdi_video_library' | 'bk_mdi_video_library-fill' | 'bk_mdi_video_search' | 'bk_mdi_video_search-fill' | 'bk_mdi_video_settings' | 'bk_mdi_video_settings-fill' | 'bk_mdi_video_stable' | 'bk_mdi_video_stable-fill' | 'bk_mdi_video_template' | 'bk_mdi_video_template-fill' | 'bk_mdi_videocam' | 'bk_mdi_videocam-fill' | 'bk_mdi_videocam_alert' | 'bk_mdi_videocam_alert-fill' | 'bk_mdi_videocam_off' | 'bk_mdi_videocam_off-fill' | 'bk_mdi_videogame_asset' | 'bk_mdi_videogame_asset-fill' | 'bk_mdi_videogame_asset_off' | 'bk_mdi_videogame_asset_off-fill' | 'bk_mdi_view_agenda' | 'bk_mdi_view_agenda-fill' | 'bk_mdi_view_apps' | 'bk_mdi_view_apps-fill' | 'bk_mdi_view_array' | 'bk_mdi_view_array-fill' | 'bk_mdi_view_carousel' | 'bk_mdi_view_carousel-fill' | 'bk_mdi_view_column' | 'bk_mdi_view_column-fill' | 'bk_mdi_view_column_2' | 'bk_mdi_view_column_2-fill' | 'bk_mdi_view_comfy' | 'bk_mdi_view_comfy-fill' | 'bk_mdi_view_comfy_alt' | 'bk_mdi_view_comfy_alt-fill' | 'bk_mdi_view_compact' | 'bk_mdi_view_compact-fill' | 'bk_mdi_view_compact_alt' | 'bk_mdi_view_compact_alt-fill' | 'bk_mdi_view_cozy' | 'bk_mdi_view_cozy-fill' | 'bk_mdi_view_day' | 'bk_mdi_view_day-fill' | 'bk_mdi_view_headline' | 'bk_mdi_view_headline-fill' | 'bk_mdi_view_in_ar' | 'bk_mdi_view_in_ar-fill' | 'bk_mdi_view_in_ar_off' | 'bk_mdi_view_in_ar_off-fill' | 'bk_mdi_view_kanban' | 'bk_mdi_view_kanban-fill' | 'bk_mdi_view_list' | 'bk_mdi_view_list-fill' | 'bk_mdi_view_module' | 'bk_mdi_view_module-fill' | 'bk_mdi_view_object_track' | 'bk_mdi_view_object_track-fill' | 'bk_mdi_view_quilt' | 'bk_mdi_view_quilt-fill' | 'bk_mdi_view_real_size' | 'bk_mdi_view_real_size-fill' | 'bk_mdi_view_sidebar' | 'bk_mdi_view_sidebar-fill' | 'bk_mdi_view_stream' | 'bk_mdi_view_stream-fill' | 'bk_mdi_view_timeline' | 'bk_mdi_view_timeline-fill' | 'bk_mdi_view_week' | 'bk_mdi_view_week-fill' | 'bk_mdi_vignette' | 'bk_mdi_vignette-fill' | 'bk_mdi_vignette_2' | 'bk_mdi_vignette_2-fill' | 'bk_mdi_villa' | 'bk_mdi_villa-fill' | 'bk_mdi_visibility' | 'bk_mdi_visibility-fill' | 'bk_mdi_visibility_lock' | 'bk_mdi_visibility_lock-fill' | 'bk_mdi_visibility_off' | 'bk_mdi_visibility_off-fill' | 'bk_mdi_vital_signs' | 'bk_mdi_vital_signs-fill' | 'bk_mdi_vo2_max' | 'bk_mdi_vo2_max-fill' | 'bk_mdi_voice_chat' | 'bk_mdi_voice_chat-fill' | 'bk_mdi_voice_chat_off' | 'bk_mdi_voice_chat_off-fill' | 'bk_mdi_voice_over_off' | 'bk_mdi_voice_over_off-fill' | 'bk_mdi_voice_selection' | 'bk_mdi_voice_selection-fill' | 'bk_mdi_voice_selection_off' | 'bk_mdi_voice_selection_off-fill' | 'bk_mdi_voicemail' | 'bk_mdi_voicemail-fill' | 'bk_mdi_voicemail_2' | 'bk_mdi_voicemail_2-fill' | 'bk_mdi_volcano' | 'bk_mdi_volcano-fill' | 'bk_mdi_volume_down' | 'bk_mdi_volume_down-fill' | 'bk_mdi_volume_mute' | 'bk_mdi_volume_mute-fill' | 'bk_mdi_volume_off' | 'bk_mdi_volume_off-fill' | 'bk_mdi_volume_up' | 'bk_mdi_volume_up-fill' | 'bk_mdi_volunteer_activism' | 'bk_mdi_volunteer_activism-fill' | 'bk_mdi_voting_chip' | 'bk_mdi_voting_chip-fill' | 'bk_mdi_vpn_key' | 'bk_mdi_vpn_key-fill' | 'bk_mdi_vpn_key_alert' | 'bk_mdi_vpn_key_alert-fill' | 'bk_mdi_vpn_key_off' | 'bk_mdi_vpn_key_off-fill' | 'bk_mdi_vpn_lock' | 'bk_mdi_vpn_lock-fill' | 'bk_mdi_vpn_lock_2' | 'bk_mdi_vpn_lock_2-fill' | 'bk_mdi_vr180_create2d' | 'bk_mdi_vr180_create2d-fill' | 'bk_mdi_vr180_create2d_off' | 'bk_mdi_vr180_create2d_off-fill' | 'bk_mdi_vrpano' | 'bk_mdi_vrpano-fill' | 'bk_mdi_wall_art' | 'bk_mdi_wall_art-fill' | 'bk_mdi_wall_lamp' | 'bk_mdi_wall_lamp-fill' | 'bk_mdi_wallet' | 'bk_mdi_wallet-fill' | 'bk_mdi_wallpaper' | 'bk_mdi_wallpaper-fill' | 'bk_mdi_wallpaper_slideshow' | 'bk_mdi_wallpaper_slideshow-fill' | 'bk_mdi_wand_shine' | 'bk_mdi_wand_shine-fill' | 'bk_mdi_wand_stars' | 'bk_mdi_wand_stars-fill' | 'bk_mdi_ward' | 'bk_mdi_ward-fill' | 'bk_mdi_warehouse' | 'bk_mdi_warehouse-fill' | 'bk_mdi_warning' | 'bk_mdi_warning-fill' | 'bk_mdi_warning_off' | 'bk_mdi_warning_off-fill' | 'bk_mdi_wash' | 'bk_mdi_wash-fill' | 'bk_mdi_washoku' | 'bk_mdi_washoku-fill' | 'bk_mdi_watch' | 'bk_mdi_watch-fill' | 'bk_mdi_watch_arrow' | 'bk_mdi_watch_arrow-fill' | 'bk_mdi_watch_button_press' | 'bk_mdi_watch_button_press-fill' | 'bk_mdi_watch_check' | 'bk_mdi_watch_check-fill' | 'bk_mdi_watch_lock' | 'bk_mdi_watch_lock-fill' | 'bk_mdi_watch_off' | 'bk_mdi_watch_off-fill' | 'bk_mdi_watch_screentime' | 'bk_mdi_watch_screentime-fill' | 'bk_mdi_watch_vibration' | 'bk_mdi_watch_vibration-fill' | 'bk_mdi_watch_wake' | 'bk_mdi_watch_wake-fill' | 'bk_mdi_water' | 'bk_mdi_water-fill' | 'bk_mdi_water_bottle' | 'bk_mdi_water_bottle-fill' | 'bk_mdi_water_bottle_large' | 'bk_mdi_water_bottle_large-fill' | 'bk_mdi_water_damage' | 'bk_mdi_water_damage-fill' | 'bk_mdi_water_do' | 'bk_mdi_water_do-fill' | 'bk_mdi_water_drop' | 'bk_mdi_water_drop-fill' | 'bk_mdi_water_ec' | 'bk_mdi_water_ec-fill' | 'bk_mdi_water_full' | 'bk_mdi_water_full-fill' | 'bk_mdi_water_heater' | 'bk_mdi_water_heater-fill' | 'bk_mdi_water_lock' | 'bk_mdi_water_lock-fill' | 'bk_mdi_water_loss' | 'bk_mdi_water_loss-fill' | 'bk_mdi_water_lux' | 'bk_mdi_water_lux-fill' | 'bk_mdi_water_medium' | 'bk_mdi_water_medium-fill' | 'bk_mdi_water_orp' | 'bk_mdi_water_orp-fill' | 'bk_mdi_water_ph' | 'bk_mdi_water_ph-fill' | 'bk_mdi_water_pump' | 'bk_mdi_water_pump-fill' | 'bk_mdi_water_voc' | 'bk_mdi_water_voc-fill' | 'bk_mdi_waterfall_chart' | 'bk_mdi_waterfall_chart-fill' | 'bk_mdi_waves' | 'bk_mdi_waves-fill' | 'bk_mdi_waving_hand' | 'bk_mdi_waving_hand-fill' | 'bk_mdi_wb_auto' | 'bk_mdi_wb_auto-fill' | 'bk_mdi_wb_incandescent' | 'bk_mdi_wb_incandescent-fill' | 'bk_mdi_wb_iridescent' | 'bk_mdi_wb_iridescent-fill' | 'bk_mdi_wb_shade' | 'bk_mdi_wb_shade-fill' | 'bk_mdi_wb_sunny' | 'bk_mdi_wb_sunny-fill' | 'bk_mdi_wb_twilight' | 'bk_mdi_wb_twilight-fill' | 'bk_mdi_wc' | 'bk_mdi_wc-fill' | 'bk_mdi_weather_hail' | 'bk_mdi_weather_hail-fill' | 'bk_mdi_weather_mix' | 'bk_mdi_weather_mix-fill' | 'bk_mdi_weather_snowy' | 'bk_mdi_weather_snowy-fill' | 'bk_mdi_web' | 'bk_mdi_web-fill' | 'bk_mdi_web_asset' | 'bk_mdi_web_asset-fill' | 'bk_mdi_web_asset_off' | 'bk_mdi_web_asset_off-fill' | 'bk_mdi_web_stories' | 'bk_mdi_web_stories-fill' | 'bk_mdi_web_traffic' | 'bk_mdi_web_traffic-fill' | 'bk_mdi_webhook' | 'bk_mdi_webhook-fill' | 'bk_mdi_weekend' | 'bk_mdi_weekend-fill' | 'bk_mdi_weight' | 'bk_mdi_weight-fill' | 'bk_mdi_west' | 'bk_mdi_west-fill' | 'bk_mdi_whatshot' | 'bk_mdi_whatshot-fill' | 'bk_mdi_wheelchair_pickup' | 'bk_mdi_wheelchair_pickup-fill' | 'bk_mdi_where_to_vote' | 'bk_mdi_where_to_vote-fill' | 'bk_mdi_widget_medium' | 'bk_mdi_widget_medium-fill' | 'bk_mdi_widget_menu' | 'bk_mdi_widget_menu-fill' | 'bk_mdi_widget_small' | 'bk_mdi_widget_small-fill' | 'bk_mdi_widget_width' | 'bk_mdi_widget_width-fill' | 'bk_mdi_widgets' | 'bk_mdi_widgets-fill' | 'bk_mdi_width_full' | 'bk_mdi_width_full-fill' | 'bk_mdi_width_normal' | 'bk_mdi_width_normal-fill' | 'bk_mdi_width_wide' | 'bk_mdi_width_wide-fill' | 'bk_mdi_wifi' | 'bk_mdi_wifi-fill' | 'bk_mdi_wifi_1_bar' | 'bk_mdi_wifi_1_bar-fill' | 'bk_mdi_wifi_2_bar' | 'bk_mdi_wifi_2_bar-fill' | 'bk_mdi_wifi_add' | 'bk_mdi_wifi_add-fill' | 'bk_mdi_wifi_calling' | 'bk_mdi_wifi_calling-fill' | 'bk_mdi_wifi_calling_bar_1' | 'bk_mdi_wifi_calling_bar_1-fill' | 'bk_mdi_wifi_calling_bar_2' | 'bk_mdi_wifi_calling_bar_2-fill' | 'bk_mdi_wifi_calling_bar_3' | 'bk_mdi_wifi_calling_bar_3-fill' | 'bk_mdi_wifi_channel' | 'bk_mdi_wifi_channel-fill' | 'bk_mdi_wifi_find' | 'bk_mdi_wifi_find-fill' | 'bk_mdi_wifi_home' | 'bk_mdi_wifi_home-fill' | 'bk_mdi_wifi_lock' | 'bk_mdi_wifi_lock-fill' | 'bk_mdi_wifi_notification' | 'bk_mdi_wifi_notification-fill' | 'bk_mdi_wifi_off' | 'bk_mdi_wifi_off-fill' | 'bk_mdi_wifi_password' | 'bk_mdi_wifi_password-fill' | 'bk_mdi_wifi_protected_setup' | 'bk_mdi_wifi_protected_setup-fill' | 'bk_mdi_wifi_proxy' | 'bk_mdi_wifi_proxy-fill' | 'bk_mdi_wifi_tethering' | 'bk_mdi_wifi_tethering-fill' | 'bk_mdi_wifi_tethering_error' | 'bk_mdi_wifi_tethering_error-fill' | 'bk_mdi_wifi_tethering_off' | 'bk_mdi_wifi_tethering_off-fill' | 'bk_mdi_wind_power' | 'bk_mdi_wind_power-fill' | 'bk_mdi_window' | 'bk_mdi_window-fill' | 'bk_mdi_window_closed' | 'bk_mdi_window_closed-fill' | 'bk_mdi_window_open' | 'bk_mdi_window_open-fill' | 'bk_mdi_window_sensor' | 'bk_mdi_window_sensor-fill' | 'bk_mdi_windshield_defrost_auto' | 'bk_mdi_windshield_defrost_auto-fill' | 'bk_mdi_windshield_defrost_front' | 'bk_mdi_windshield_defrost_front-fill' | 'bk_mdi_windshield_defrost_rear' | 'bk_mdi_windshield_defrost_rear-fill' | 'bk_mdi_windshield_heat_front' | 'bk_mdi_windshield_heat_front-fill' | 'bk_mdi_wine_bar' | 'bk_mdi_wine_bar-fill' | 'bk_mdi_woman' | 'bk_mdi_woman-fill' | 'bk_mdi_woman_2' | 'bk_mdi_woman_2-fill' | 'bk_mdi_work' | 'bk_mdi_work-fill' | 'bk_mdi_work_alert' | 'bk_mdi_work_alert-fill' | 'bk_mdi_work_history' | 'bk_mdi_work_history-fill' | 'bk_mdi_work_update' | 'bk_mdi_work_update-fill' | 'bk_mdi_workspace_premium' | 'bk_mdi_workspace_premium-fill' | 'bk_mdi_workspaces' | 'bk_mdi_workspaces-fill' | 'bk_mdi_wounds_injuries' | 'bk_mdi_wounds_injuries-fill' | 'bk_mdi_wrap_text' | 'bk_mdi_wrap_text-fill' | 'bk_mdi_wrist' | 'bk_mdi_wrist-fill' | 'bk_mdi_wrong_location' | 'bk_mdi_wrong_location-fill' | 'bk_mdi_wysiwyg' | 'bk_mdi_wysiwyg-fill' | 'bk_mdi_x_circle' | 'bk_mdi_x_circle-fill' | 'bk_mdi_y_circle' | 'bk_mdi_y_circle-fill' | 'bk_mdi_yakitori' | 'bk_mdi_yakitori-fill' | 'bk_mdi_yard' | 'bk_mdi_yard-fill' | 'bk_mdi_yoshoku' | 'bk_mdi_yoshoku-fill' | 'bk_mdi_your_trips' | 'bk_mdi_your_trips-fill' | 'bk_mdi_youtube_activity' | 'bk_mdi_youtube_activity-fill' | 'bk_mdi_youtube_searched_for' | 'bk_mdi_youtube_searched_for-fill' | 'bk_mdi_zone_person_alert' | 'bk_mdi_zone_person_alert-fill' | 'bk_mdi_zone_person_idle' | 'bk_mdi_zone_person_idle-fill' | 'bk_mdi_zone_person_urgent' | 'bk_mdi_zone_person_urgent-fill' | 'bk_mdi_zoom_in' | 'bk_mdi_zoom_in-fill' | 'bk_mdi_zoom_in_map' | 'bk_mdi_zoom_in_map-fill' | 'bk_mdi_zoom_out' | 'bk_mdi_zoom_out-fill' | 'bk_mdi_zoom_out_map' | 'bk_mdi_zoom_out_map-fill';
|
|
9
|
+
/**
|
|
10
|
+
* Total number of available icons: 7596
|
|
11
|
+
*/
|
|
12
|
+
export declare const MATERIAL_ICON_COUNT: 7596;
|