diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0eae121 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true§ diff --git a/bin/start b/bin/start new file mode 100755 index 0000000..e484ba9 --- /dev/null +++ b/bin/start @@ -0,0 +1,6 @@ +#!/bin/bash + +./bin/composer install +docker-compose up -d wordpress +./bin/npm install +./bin/npm run start diff --git a/composer.json b/composer.json index 653c126..ea3e291 100644 --- a/composer.json +++ b/composer.json @@ -18,6 +18,7 @@ } ], "require": { + "swaggest/json-schema": "^0.12", "symfony/validator": "^7.0 || ^6.0" }, "scripts": { @@ -44,6 +45,10 @@ "Boxuk\\BoxWpEditorTools\\": [ "packages/editor-tools/src", "plugins/editor-tools/src/" + ], + "Boxuk\\Iconography\\": [ + "packages/iconography/includes/", + "plugins/iconography/includes/" ] } }, diff --git a/docker/wordpress/Dockerfile b/docker/wordpress/Dockerfile index ff2fd3b..76cdefe 100644 --- a/docker/wordpress/Dockerfile +++ b/docker/wordpress/Dockerfile @@ -1 +1,6 @@ FROM wordpress:6.5.3 + +COPY ./wp-config.php /var/www/html/wp-config.php +COPY ./db.php /var/www/html/wp-content/db.php +COPY ./mu-plugins /var/www/html/wp-content/mu-plugins +COPY ./themes /var/www/html/wp-content/themes diff --git a/docs/editor-tools/index.md b/docs/editor-tools/index.md index 5c50589..8438ebb 100644 --- a/docs/editor-tools/index.md +++ b/docs/editor-tools/index.md @@ -1,20 +1,6 @@ # Box WordPress Editor Tools -A collection of tools for modifying the WordPress Editor. - -## Quick Start! - -The tools here don't load automatically, so you need to get them going. -The quickest way would be to add to `functions.php`: -```php -( new \Boxuk\BoxWpEditorTools\BlockLoader() )->init(); // loads all block.json from /wp-content/themes/{theme}/build/**/*/block.json -( new \Boxuk\BoxWpEditorTools\Comments() )->init(); // disables comments -( new \Boxuk\BoxWpEditorTools\EditorCleanup() )->init(); // Cleans the block-editor to prevent loading plugins -( new \Boxuk\BoxWpEditorTools\PostTypes() )->init(); // registers post-types defined in /wp-content/themes/{theme}/post-types.json -( new \Boxuk\BoxWpEditorTools\TemplatePersistence() )->init(); // saves template changes to disk, not to the database. -( new \Boxuk\BoxWpEditorTools\Security\Security() )->init(); // Enables security hardening. -``` -There's more options than that, so checkout the links below: +A collection of tools for modifying the WordPress Editor. ## Features @@ -22,12 +8,6 @@ There's more options than that, so checkout the links below: - [Block Loader](./docs/BlockLoader.md) - auto-loads blocks to the editor. - [Comment Disablement](./docs/Comments.md) - disables comments. - [Editor Cleanup](./docs/EditorCleanup.md) - removes some unnecessary bits from the block editor. - - [Post Type Registrations](./docs/PostTypes.md) - speeds up post-type registration with a single JSON file. - - [Template Persistence](./docs/TemplatePersistence.md) - speeds up template modifications by saving to disk instead of the database. + - [Post Type Registrations](./docs/PostTypes.md) - speeds up post-type registration with a single JSON file. + - [Template Persistence](./docs/TemplatePersistence.md) - speeds up template modifications by saving to disk instead of the database. - [Security](./docs/Security.md) - Adds security hardening. - -## Contributing - -The dependancies include [WordPress Stubs](https://github.com/php-stubs/wordpress-stubs), so your IDE should automatically include type information for all WP core functions. If they're not, it's likely a mis-configuration of your IDE. There's helper guides in the WordPress Stubs repo. - -Working on the repo requires packaging this into a functioning WordPress installation. A ready-to-go solution is yet to be developed so a PR is welcome, preferrably where Docker is the only dependancy. diff --git a/docs/iconography/index.md b/docs/iconography/index.md index f78760b..f9d505f 100644 --- a/docs/iconography/index.md +++ b/docs/iconography/index.md @@ -1,16 +1,77 @@ # Box WordPress Iconography Support -Add the ability to add icons inline to your content in the WordPress block editor. +Add the ability to add icons inline to your content in the WordPress block editor. ## Quick Start! -~Add this plugin to your WordPress site and off you go! If you're using composer, then -it's as simple as `composer require boxuk/wp-iconography`.~ +Add this plugin to your WordPress site and include a configuration file and it's ready to use! -We need to setup packaging this as a plugin to be distrubutable, so watch this space - for now you'll need to include this repo and build the assets yourself using `npm run build`. +If you're using composer, then it's as simple as `composer require boxuk/wp-iconography`. -## Contributing -Working on the repo requires packaging this into a functioning WordPress installation. A ready-to-go solution is yet to be developed so a PR is welcome, preferrably where Docker is the only dependancy. +## Configuration -This package doesn't necessarily require composer dependancies to be installed, so `npm install` and `npm run start` should get you started. +Configuration files are based on a schema that allows you to quickly define the configuration. +They're loaded automatically from `wp-content/themes/{theme_name}/icons/*.config.json`, or you can define any custom paths using the filter available: +```php +add_filter( + 'boxuk_iconography_files', + function ( $config_files ) { + $config_files['example'] = __DIR__ . '/config/example.config.json'; + return $config_files; + } +); +``` -The composer dependancies include [WordPress Stubs](https://github.com/php-stubs/wordpress-stubs), so your IDE should automatically include type information for all WP core functions if you need to edit the PHP file. If they're not, it's likely a mis-configuration of your IDE. There's helper guides in the WordPress Stubs repo. +There's also example configuration files included in the plugin, so if you want to load **Material Symbols** you can just load the config included using this snippet: +```php +add_filter( + 'boxuk_iconography_files', + function ( $config_files ) { + $plugin_dir = WP_CONTENT_DIR . '/mu-plugins/wp-iconography'; // make sure this is valid for your project! + + + // Remove any unnecessary + $config_files['material-symbols-outlined'] = $plugin_dir . '/config/material-symbols-outlined.config.json'; + $config_files['material-symbols-outlined-filled'] = $plugin_dir . '/config/material-symbols-outlined-filled.config.json'; + $config_files['material-symbols-sharp'] = $plugin_dir . '/config/material-symbols-sharp.config.json'; + $config_files['material-symbols-sharp-filled'] = $plugin_dir . '/config/material-symbols-sharp-filled.config.json'; + $config_files['material-symbols-rounded'] = $plugin_dir . '/config/material-symbols-rounded.config.json'; + $config_files['material-symbols-rounded-filled'] = $plugin_dir . '/config/material-symbols-rounded-filled.config.json'; + return $config_files; + } +); +``` + +There's loads of filters available to change the way icons load, so feel free to look through the source code at the available filters. And if there's function that doesn't work for you, PRs are always welcome! + +## Configuration Schema + +The Schema for configuration includes: + - **Title** - the name output in the editor. + - **Name** - the unique key/name for the icon set. I'd recommend `namespace/name` format. + - **Tag Name** - this is the HTML tag that will be used to generate the output for the icon. + - **Class Name** - this is used to generate the output for the icon + - **URL** - the CSS file to load + - **Additional CSS** - any inline CSS to include that might be relevant. + - **Icons** - an array of: + - **Label** - the value to use in the admin interface. Used for searches and is displayed on hover. + - **Content** - the content inside the HTML generated. + +Sample JSON file: +```json +{ + "title": "Example", + "name": "boxuk/example", + "tagName": "span", + "className": "boxuk-icon-example", + "url": "...", + "additionalCSS": ".boxuk-icon-example { font-weight: 700; }", + "icons": [ + { "label": "Example", "content": "example-content" } + ] +} +``` + +Generated output: +```html +example-content +``` diff --git a/package-lock.json b/package-lock.json index 8359aa8..3df5220 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4381,6 +4381,40 @@ "node": ">=0.10.0" } }, + "node_modules/@types/wordpress__block-editor": { + "version": "11.5.14", + "resolved": "https://registry.npmjs.org/@types/wordpress__block-editor/-/wordpress__block-editor-11.5.14.tgz", + "integrity": "sha512-qW1yD9Nrsy6x4cxMYCSXW6v74bXfcstPQeOV+uQbMejd5zxrBGytH9OQvcrIJrDquPzDf5+We8VqnsIWTF/Rpg==", + "dev": true, + "dependencies": { + "@types/react": "*", + "@types/wordpress__blocks": "*", + "@wordpress/components": "^27.2.0", + "@wordpress/data": "^9.13.0", + "@wordpress/element": "^5.0.0", + "@wordpress/keycodes": "^3.54.0", + "react-autosize-textarea": "^7.1.0" + } + }, + "node_modules/@types/wordpress__blocks": { + "version": "12.5.14", + "resolved": "https://registry.npmjs.org/@types/wordpress__blocks/-/wordpress__blocks-12.5.14.tgz", + "integrity": "sha512-eXEnCRKYu+39KEJ/OYpoYxWTATxI+eJHd+meMGZ14hYydFtxA0Y8M7zJT8D8f4klBo8wINLvP7zrO8vYrjWjPQ==", + "dev": true, + "dependencies": { + "@types/react": "*", + "@types/wordpress__shortcode": "*", + "@wordpress/components": "^27.2.0", + "@wordpress/data": "^9.13.0", + "@wordpress/element": "^5.0.0" + } + }, + "node_modules/@types/wordpress__shortcode": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/@types/wordpress__shortcode/-/wordpress__shortcode-2.3.6.tgz", + "integrity": "sha512-H8BVov7QWyLLoxCaI9QyZVC4zTi1mFkZ+eEKiXBCFlaJ0XV8UVfQk+cAetqD5mWOeWv2d4b8uzzyn0TTQ/ep2g==", + "dev": true + }, "node_modules/@types/ws": { "version": "8.5.10", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", @@ -21464,6 +21498,7 @@ "devDependencies": { "@jest/globals": "^29.7.0", "@testing-library/react": "^14.2.1", + "@types/wordpress__block-editor": "^11.5.14", "@wordpress/dom-ready": "^3.52.0", "@wordpress/editor": "^13.30.0", "@wordpress/icons": "^9.44.0", diff --git a/packages/iconography/composer.json b/packages/iconography/composer.json index c619771..8729b8b 100644 --- a/packages/iconography/composer.json +++ b/packages/iconography/composer.json @@ -8,18 +8,25 @@ "szepeviktor/phpstan-wordpress": "^1.3" }, "scripts": { - "phpunit": "phpunit", - "phpstan": "phpstan analyse --memory-limit=1G", - "phpcs": "phpcs", - "phpcbf": "phpcbf" - }, + "phpunit": "phpunit", + "phpstan": "phpstan analyse --memory-limit=1G", + "phpcs": "phpcs", + "phpcbf": "phpcbf" + }, "authors": [ { "name": "BoxUK", "email": "developers@boxuk.com" } ], - "require": {}, + "autoload": { + "psr-4": { + "Boxuk\\Iconography\\": "includes/" + } + }, + "require": { + "swaggest/json-schema": "^0.12" + }, "config": { "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true diff --git a/packages/iconography/config/material-symbols-outlined-filled.config.json b/packages/iconography/config/material-symbols-outlined-filled.config.json new file mode 100644 index 0000000..e6615bc --- /dev/null +++ b/packages/iconography/config/material-symbols-outlined-filled.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Outlined (Filled)", + "name": "boxuk/material-symbols-outlined-filled", + "tagName": "span", + "className": "material-symbols-outlined-filled", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-outlined-filled { font-family: 'Material Symbols Outlined', sans-serif; font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-outlined.config.json b/packages/iconography/config/material-symbols-outlined.config.json new file mode 100644 index 0000000..d739859 --- /dev/null +++ b/packages/iconography/config/material-symbols-outlined.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Outlined", + "name": "boxuk/material-symbols-outlined", + "tagName": "span", + "className": "material-symbols-outlined", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-outlined { font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-rounded-filled.config.json b/packages/iconography/config/material-symbols-rounded-filled.config.json new file mode 100644 index 0000000..2e6e378 --- /dev/null +++ b/packages/iconography/config/material-symbols-rounded-filled.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Rounded (Filled)", + "name": "boxuk/material-symbols-rounded-filled", + "tagName": "span", + "className": "material-symbols-rounded-filled", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-rounded-filled { font-family: 'Material Symbols Rounded', sans-serif; font-size: inherit; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-rounded.config.json b/packages/iconography/config/material-symbols-rounded.config.json new file mode 100644 index 0000000..b96d8cb --- /dev/null +++ b/packages/iconography/config/material-symbols-rounded.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Rounded", + "name": "boxuk/material-symbols-rounded", + "tagName": "span", + "className": "material-symbols-rounded", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-rounded { font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-sharp-filled.config.json b/packages/iconography/config/material-symbols-sharp-filled.config.json new file mode 100644 index 0000000..0a4a6b8 --- /dev/null +++ b/packages/iconography/config/material-symbols-sharp-filled.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Sharp (Filled)", + "name": "boxuk/material-symbols-sharp-filled", + "tagName": "span", + "className": "material-symbols-sharp-filled", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-sharp-filled { font-family: 'Material Symbols Sharp', sans-serif; font-size: inherit; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-sharp.config.json b/packages/iconography/config/material-symbols-sharp.config.json new file mode 100644 index 0000000..2aed728 --- /dev/null +++ b/packages/iconography/config/material-symbols-sharp.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Sharp", + "name": "boxuk/material-symbols-sharp", + "tagName": "span", + "className": "material-symbols-sharp", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-sharp { font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/iconography.php b/packages/iconography/iconography.php index 72fd31e..a4790f4 100644 --- a/packages/iconography/iconography.php +++ b/packages/iconography/iconography.php @@ -5,7 +5,7 @@ * Version: 1.0.0 * Author: BoxUK * Author URI: https://www.boxuk.com - * + * * @package Boxuk\Iconography */ @@ -13,112 +13,9 @@ namespace Boxuk\Iconography; -/** - * Loads Iconography - */ -class Iconography { - - /** - * Scripts - * - * @var array - */ - protected array $scripts = array( - 'material-symbols-sharp' => 'https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200', - 'material-symbols-rounded' => 'https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200', - 'material-symbols-outlined' => 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200', - ); - - /** - * Page Content - * - * @var string - */ - public string $content = ''; - - /** - * Init Hooks - * - * @return void - */ - public function init(): void { - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); - add_action( 'enqueue_block_assets', array( $this, 'register_scripts' ) ); - add_action( 'enqueue_block_assets', array( $this, 'enqueue_all_iconography' ) ); - add_action( 'wp_footer', array( $this, 'maybe_add_scripts' ), 1, 0 ); - } - - /** - * Register Scripts - * - * @return void - */ - public function register_scripts(): void { - foreach ( $this->scripts as $handle => $src ) { - $this->register_style( $handle, $src ); - } +add_action( + 'plugins_loaded', + function () { + ( new IconographyService( new ConfigurationParser() ) )->init(); } - - /** - * Enqueue all iconography scripts (for the block editor) - * - * @return void - */ - public function enqueue_all_iconography(): void { - foreach ( $this->scripts as $handle => $src ) { - wp_enqueue_style( $handle ); - } - - $asset = require __DIR__ . '/build/index.asset.php'; - wp_enqueue_script( - 'iconography', - plugins_url( 'build/index.js', __FILE__ ), - $asset['dependencies'], - $asset['version'], - true - ); - } - - /** - * Maybe add scripts - * - * @return void - */ - public function maybe_add_scripts(): void { - $html = get_the_block_template_html(); - foreach ( $this->scripts as $handle => $src ) { - if ( str_contains( $html, $handle ) ) { - wp_enqueue_style( $handle ); - } - } - } - - /** - * Register a style - * - * @param string $handle The handle. - * @param string $src The source. - * - * @return void - */ - public function register_style( string $handle, string $src ): void { - $inline_css = <<init(); +); diff --git a/packages/iconography/includes/ConfigurationParser.php b/packages/iconography/includes/ConfigurationParser.php new file mode 100644 index 0000000..fe6b527 --- /dev/null +++ b/packages/iconography/includes/ConfigurationParser.php @@ -0,0 +1,142 @@ +configs ) ) { + $this->load_configs(); + } + return $this->configs; + } + + /** + * Load Icon Config + * + * @return void + */ + private function load_configs() { + $files = $this->get_config_files(); + foreach ( $files as $file ) { + $this->parse_config( $file ); + } + } + + /** + * Get Config Files + * + * @return string[] + */ + private function get_config_files(): array { + $files = (array) glob( get_stylesheet_directory() . '/icons/*.config.json' ); + return apply_filters( 'boxuk_iconography_files', $files ); + } + + /** + * Parse Config + * + * @param string $file The file to parse. + * + * @return void + */ + public function parse_config( string $file ) { + $file_contents = file_get_contents( $file ); // phpcs:ignore WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsUnknown -- The warning is for remote files, which we are not using here. + + $valid = $this->validate( json_decode( $file_contents ?: '' ) ); // phpcs:ignore Universal.Operators.DisallowShortTernary.Found -- We need to use the short ternary operator here to prevent a PHP warning. + + if ( is_wp_error( $valid ) ) { + wp_die( $valid ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- `wp_die` escapes `WP_Error` objects for us. + } + + $this->configs[] = $valid; + } + + /** + * Get Schema + * + * @return SchemaContract + */ + private function get_schema(): SchemaContract { + return Schema::import( plugin_dir_path( __DIR__ ) . '/schema.json' ); + } + + /** + * Validate data + * + * @param mixed $data JSON Data to validate. + * + * @return IconGroup|\WP_Error + */ + private function validate( mixed $data ): IconGroup|\WP_Error { + if ( ! is_object( $data ) ) { + return new \WP_Error( 'invalid_data', 'Data must be an object' ); + } + + $schema = $this->get_schema(); + try { + $schema->in( $data ); + } catch ( \Swaggest\JsonSchema\InvalidValue $e ) { + return new \WP_Error( 'invalid_data', $e->getMessage() ); + } + + /** + * We can now define the type of `$data` object for static analysis tools like PHPStan since it's been validated. + * + * @var object{ + * title:string, + * name:string, + * tagName:string, + * className:string, + * url:string, + * additionalCss:string, + * icons:array + * } $data Validated Data + */ + + return new IconGroup( + $data->title, + $data->name, + $data->tagName, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- This is a JSON object property. + $data->className, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- This is a JSON object property. + $data->url, + $data->additionalCss, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- This is a JSON object property. + array_map( + fn( $icon ) => new Icon( $icon->label, $icon->content ), + $data->icons + ) + ); + } +} diff --git a/packages/iconography/includes/IconographyService.php b/packages/iconography/includes/IconographyService.php new file mode 100644 index 0000000..82fbf1b --- /dev/null +++ b/packages/iconography/includes/IconographyService.php @@ -0,0 +1,110 @@ +configuration_parser->get_configs() as $config ) { + $config->register_assets(); + } + } + + /** + * Enqueue Assets based on content. + * + * @return void + */ + public function enqueue_assets(): void { + $html = get_the_block_template_html(); + foreach ( $this->configuration_parser->get_configs() as $config ) { + $config->enqueue_assets( $html ); + } + } + + /** + * Enqueue all assets + * + * Useful in the block editor where we don't know the content to test against. + * + * @return void + */ + public function enqueue_all_assets(): void { + foreach ( $this->configuration_parser->get_configs() as $config ) { + $config->enqueue_assets(); + } + } + + /** + * Get Grouped Icons + * + * @return array + */ + public function get_icon_groups(): array { + return $this->configuration_parser->get_configs(); + } + + /** + * Enqueue all iconography scripts (for the block editor) + * + * @return void + */ + public function enqueue_editor_scripts(): void { + $asset = require plugin_dir_path( __DIR__ ) . '/build/index.asset.php'; + wp_enqueue_script( + 'iconography', + plugins_url( 'build/index.js', __DIR__ ), + $asset['dependencies'], + $asset['version'], + true + ); + + wp_localize_script( + 'iconography', + 'boxIconography', + array( + 'iconGroups' => array_map( + fn( IconGroup $group ) => $group->to_json(), + $this->get_icon_groups() + ), + ) + ); + } +} diff --git a/packages/iconography/includes/Model/Icon.php b/packages/iconography/includes/Model/Icon.php new file mode 100644 index 0000000..1d92963 --- /dev/null +++ b/packages/iconography/includes/Model/Icon.php @@ -0,0 +1,29 @@ +title ); + } + + /** + * Get Name + * + * @return string + */ + public function get_name(): string { + return apply_filters( 'boxuk_iconography_configuration_name', $this->name ); + } + + /** + * Get Tag Name + * + * @return string + */ + public function get_tag_name(): string { + return apply_filters( 'boxuk_iconography_configuration_tag_name', $this->tag_name ); + } + + /** + * Get Class Name + * + * @return string + */ + public function get_class_name(): string { + return apply_filters( 'boxuk_iconography_configuration_class_name', $this->class_name ); + } + + /** + * Get Icons + * + * @return Icon[] + */ + public function get_icons(): array { + return apply_filters( 'boxuk_iconography_configuration_icons', $this->icons ); + } + + + /** + * Regiser Assets in WP + */ + public function register_assets(): void { + wp_register_style( $this->name, $this->url, array(), null, 'all' ); // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion -- The version isn't required for external stylesheets. + wp_add_inline_style( $this->name, $this->additional_css ); + } + + /** + * Enqueue Assets in WP + * + * @param string|null $content The content to validate against. + */ + public function enqueue_assets( string|null $content = null ): void { + if ( null === $content || $this->has_match( $content ) ) { + wp_enqueue_style( $this->name ); + } + } + + /** + * Has Match + * + * @param string $content The content to validate against. + * + * @return bool + */ + private function has_match( string $content ): bool { + return str_contains( $content, $this->class_name ); + } + + /** + * To JSON array + * + * An array for JSON representation to be consumed by the block editor. + * + * @return array{title:string,name:string,tagName:string,className:string,icons:array} + */ + public function to_json(): array { + return array( + 'title' => $this->get_title(), + 'name' => $this->get_name(), + 'tagName' => $this->get_tag_name(), + 'className' => $this->get_class_name(), + 'icons' => $this->get_icons(), + ); + } +} diff --git a/packages/iconography/package.json b/packages/iconography/package.json index b0a5ebd..3fe092c 100644 --- a/packages/iconography/package.json +++ b/packages/iconography/package.json @@ -15,13 +15,14 @@ "test:snapshots": "wp-scripts test-unit-js --updateSnapshot", "packages-update": "wp-scripts packages-update", "start": "wp-scripts start", - "type-coverage": "type-coverage --strict --at-least 99.83" + "type-coverage": "type-coverage --strict --detail --at-least 99.87" }, "author": "", "license": "ISC", "devDependencies": { "@jest/globals": "^29.7.0", "@testing-library/react": "^14.2.1", + "@types/wordpress__block-editor": "^11.5.14", "@wordpress/dom-ready": "^3.52.0", "@wordpress/editor": "^13.30.0", "@wordpress/icons": "^9.44.0", diff --git a/packages/iconography/schema.json b/packages/iconography/schema.json new file mode 100644 index 0000000..9031ee9 --- /dev/null +++ b/packages/iconography/schema.json @@ -0,0 +1,58 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "$schema": { + "type": "string" + }, + "title": { + "type": "string", + "description": "The title used in the tabs of the icon picker." + }, + "name": { + "type": "string", + "pattern": "^[a-zA-Z0-9-/]+$", + "description": "The unique key of this icon set. Should follow pattern of `namespace/icon-set-name`. " + }, + "tagName": { + "type": "string", + "pattern": "^[a-zA-Z]+$", + "description": "The tag name of the icon set. This is used to create the HTML element." + }, + "className": { + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string", + "description": "The class name of the icon set. This is used to create the HTML element." + }, + "url": { + "type": "string", + "format": "uri", + "description": "The URL to the CSS file that is required to load the icons." + }, + "additionalCss": { + "type": "string", + "description": "Additional CSS to be included in the icon picker. This should include the selector based on your class name." + }, + "icons": { + "type": "array", + "description": "The list of icons in the set.", + "items": { + "type": "object", + "minLength": 1, + "properties": { + "label": { + "type": "string", + "description": "The label of the icon, shown in the icon picker on hover, and for screen readers." + }, + "content": { + "type": "string", + "description": "The content of the icon. This will be inserted inside the HTML element constructed from the Tag and Class names of the icon set." + } + }, + "required": [ "label", "content" ] + } + } + }, + "required": [ "title", "name", "tagName", "className", "url", "icons" ], + "additionalProperties": false +} diff --git a/packages/iconography/src/IconPanel.tsx b/packages/iconography/src/IconPanel.tsx index 423050b..9e221ed 100644 --- a/packages/iconography/src/IconPanel.tsx +++ b/packages/iconography/src/IconPanel.tsx @@ -2,13 +2,23 @@ import React from 'react'; /* WordPress Dependencies */ import { __ } from '@wordpress/i18n'; -import { Flex, Button } from '@wordpress/components'; +import { + Button, + __experimentalGrid as Grid, // eslint-disable-line @wordpress/no-unsafe-wp-apis -- experimental package, but we know the risks! +} from '@wordpress/components'; /* Internal Dependencies */ import { generateRichTextFormat } from './utils'; /* Types */ -import type { IconPanelProps } from './types'; +import type { IconGroup } from './types'; +import type { RichTextValue } from '@wordpress/rich-text'; + +export type IconPanelProps = { + iconGroup: IconGroup; + onClick: ( icon: RichTextValue ) => void; + searchTerm: string; +}; export const IconPanel = ( { iconGroup, @@ -26,34 +36,23 @@ export const IconPanel = ( { : iconGroup.options; return ( - <> - - { filteredIcons.map( ( Icon ) => ( - - ) ) } - - + + { filteredIcons.map( ( Icon ) => ( + + ) ) } + ); }; + +export default IconPanel; diff --git a/packages/iconography/src/IconToolbarButton.tsx b/packages/iconography/src/IconToolbarButton.tsx index eb30722..5d9f270 100644 --- a/packages/iconography/src/IconToolbarButton.tsx +++ b/packages/iconography/src/IconToolbarButton.tsx @@ -1,11 +1,10 @@ -import React, { ComponentProps } from 'react'; +import React, { Suspense, lazy } from 'react'; /* WordPress Dependencies */ import { __ } from '@wordpress/i18n'; import { useState } from '@wordpress/element'; import { BlockControls } from '@wordpress/block-editor'; import { - ToolbarGroup, Modal, ToolbarButton, TabPanel, @@ -14,78 +13,77 @@ import { import { insert } from '@wordpress/rich-text'; /* Internal Dependencies */ -import { IconPanel } from './IconPanel'; -import { iconGroups } from './index'; import { ReactComponent as AddReactionOutlined } from './AddReactionOutlined.svg'; /* Types */ -import type { IconGroup, IconToolbarButtonProps } from './types'; import type { RichTextValue } from '@wordpress/rich-text'; +import { useIconGroups } from './utils'; +import { PlaceholderIconPanel } from './PlaceholderIconPanel'; + +const IconPanel = lazy( () => import( './IconPanel' ) ); + +export type IconToolbarButtonProps = { + onChange: ( value: RichTextValue ) => void; + value: RichTextValue; +}; export const IconToolbarButton = ( { onChange, value, - initialOpenState = false, }: IconToolbarButtonProps ) => { - const [ open, setOpen ] = useState( initialOpenState ); + const [ open, setOpen ] = useState( false ); const [ searchTerm, setSearchTerm ] = useState( '' ); + const iconGroups = useIconGroups(); return ( - - - } - label={ __( 'Add an icon', 'okdo' ) } - onClick={ () => setOpen( ! open ) } - placeholder={ __( 'Add an icon', 'okdo' ) } - /> - { open && ( - setOpen( false ) } - title={ __( 'Select an icon', 'okdo' ) } + + } + label={ __( 'Add an icon', 'boxuk' ) } + onClick={ () => setOpen( ! open ) } + /> + { open && ( + setOpen( false ) } + title={ __( 'Select an icon', 'boxuk' ) } + > + + ( { + title: iconGroup.title, + name: iconGroup.name, + iconGroup, + } ) ) ?? [] + } > - - setSearchTerm( newValue ) - } - /> - { - return { - title: iconGroup.title, - name: iconGroup.name, - iconGroup, - }; - } ) } - children={ ( tab ) => { - const iconGroup: IconGroup = tab.iconGroup; - return ( - { - onChange( - insert( - value, - richText, - value.start, - value.end - ) - ); - setOpen( false ); - } } - /> - ); - } } - /> - - ) } - + { ( tab ) => ( + }> + { + onChange( + insert( + value, + richText, + value.start, + value.end + ) + ); + setOpen( false ); + } } + /> + + ) } + + + ) } ); }; diff --git a/packages/iconography/src/PlaceholderIconPanel.tsx b/packages/iconography/src/PlaceholderIconPanel.tsx new file mode 100644 index 0000000..36b732e --- /dev/null +++ b/packages/iconography/src/PlaceholderIconPanel.tsx @@ -0,0 +1,34 @@ +import React from 'react'; + +/* WordPress Dependencies */ +import { __ } from '@wordpress/i18n'; +import { + Button, + Disabled, + Spinner, + __experimentalGrid as Grid, // eslint-disable-line @wordpress/no-unsafe-wp-apis -- experimental package, but we know the risks! +} from '@wordpress/components'; + +/* Types */ +import type { IconGroup } from './types'; +import type { RichTextValue } from '@wordpress/rich-text'; + +export type IconPanelProps = { + iconGroup: IconGroup; + onClick: ( icon: RichTextValue ) => void; + searchTerm: string; +}; + +export const PlaceholderIconPanel = () => { + return ( + + { [ ...Array( 300 ) ].map( ( index: number ) => ( + + + + ) ) } + + ); +}; diff --git a/packages/iconography/src/icons.json b/packages/iconography/src/icons.json deleted file mode 100644 index 8255d99..0000000 --- a/packages/iconography/src/icons.json +++ /dev/null @@ -1,10096 +0,0 @@ -[ - "Abc", - "AbcOutlined", - "AbcRounded", - "AbcSharp", - "AbcTwoTone", - "AcUnit", - "AcUnitOutlined", - "AcUnitRounded", - "AcUnitSharp", - "AcUnitTwoTone", - "AccessAlarm", - "AccessAlarmOutlined", - "AccessAlarmRounded", - "AccessAlarmSharp", - "AccessAlarmTwoTone", - "AccessAlarms", - "AccessAlarmsOutlined", - "AccessAlarmsRounded", - "AccessAlarmsSharp", - "AccessAlarmsTwoTone", - "AccessTime", - "AccessTimeFilled", - "AccessTimeFilledOutlined", - "AccessTimeFilledRounded", - "AccessTimeFilledSharp", - "AccessTimeFilledTwoTone", - "AccessTimeOutlined", - "AccessTimeRounded", - "AccessTimeSharp", - "AccessTimeTwoTone", - "Accessibility", - "AccessibilityNew", - "AccessibilityNewOutlined", - "AccessibilityNewRounded", - "AccessibilityNewSharp", - "AccessibilityNewTwoTone", - "AccessibilityOutlined", - "AccessibilityRounded", - "AccessibilitySharp", - "AccessibilityTwoTone", - "Accessible", - "AccessibleForward", - "AccessibleForwardOutlined", - "AccessibleForwardRounded", - "AccessibleForwardSharp", - "AccessibleForwardTwoTone", - "AccessibleOutlined", - "AccessibleRounded", - "AccessibleSharp", - "AccessibleTwoTone", - "AccountBalance", - "AccountBalanceOutlined", - "AccountBalanceRounded", - "AccountBalanceSharp", - "AccountBalanceTwoTone", - "AccountBalanceWallet", - "AccountBalanceWalletOutlined", - "AccountBalanceWalletRounded", - "AccountBalanceWalletSharp", - "AccountBalanceWalletTwoTone", - "AccountBox", - "AccountBoxOutlined", - "AccountBoxRounded", - "AccountBoxSharp", - "AccountBoxTwoTone", - "AccountCircle", - "AccountCircleOutlined", - "AccountCircleRounded", - "AccountCircleSharp", - "AccountCircleTwoTone", - "AccountTree", - "AccountTreeOutlined", - "AccountTreeRounded", - "AccountTreeSharp", - "AccountTreeTwoTone", - "AdUnits", - "AdUnitsOutlined", - "AdUnitsRounded", - "AdUnitsSharp", - "AdUnitsTwoTone", - "Adb", - "AdbOutlined", - "AdbRounded", - "AdbSharp", - "AdbTwoTone", - "Add", - "AddAPhoto", - "AddAPhotoOutlined", - "AddAPhotoRounded", - "AddAPhotoSharp", - "AddAPhotoTwoTone", - "AddAlarm", - "AddAlarmOutlined", - "AddAlarmRounded", - "AddAlarmSharp", - "AddAlarmTwoTone", - "AddAlert", - "AddAlertOutlined", - "AddAlertRounded", - "AddAlertSharp", - "AddAlertTwoTone", - "AddBox", - "AddBoxOutlined", - "AddBoxRounded", - "AddBoxSharp", - "AddBoxTwoTone", - "AddBusiness", - "AddBusinessOutlined", - "AddBusinessRounded", - "AddBusinessSharp", - "AddBusinessTwoTone", - "AddCard", - "AddCardOutlined", - "AddCardRounded", - "AddCardSharp", - "AddCardTwoTone", - "AddCircle", - "AddCircleOutline", - "AddCircleOutlineOutlined", - "AddCircleOutlineRounded", - "AddCircleOutlineSharp", - "AddCircleOutlineTwoTone", - "AddCircleOutlined", - "AddCircleRounded", - "AddCircleSharp", - "AddCircleTwoTone", - "AddComment", - "AddCommentOutlined", - "AddCommentRounded", - "AddCommentSharp", - "AddCommentTwoTone", - "AddHome", - "AddHomeOutlined", - "AddHomeRounded", - "AddHomeSharp", - "AddHomeTwoTone", - "AddHomeWork", - "AddHomeWorkOutlined", - "AddHomeWorkRounded", - "AddHomeWorkSharp", - "AddHomeWorkTwoTone", - "AddIcCall", - "AddIcCallOutlined", - "AddIcCallRounded", - "AddIcCallSharp", - "AddIcCallTwoTone", - "AddLink", - "AddLinkOutlined", - "AddLinkRounded", - "AddLinkSharp", - "AddLinkTwoTone", - "AddLocation", - "AddLocationAlt", - "AddLocationAltOutlined", - "AddLocationAltRounded", - "AddLocationAltSharp", - "AddLocationAltTwoTone", - "AddLocationOutlined", - "AddLocationRounded", - "AddLocationSharp", - "AddLocationTwoTone", - "AddModerator", - "AddModeratorOutlined", - "AddModeratorRounded", - "AddModeratorSharp", - "AddModeratorTwoTone", - "AddOutlined", - "AddPhotoAlternate", - "AddPhotoAlternateOutlined", - "AddPhotoAlternateRounded", - "AddPhotoAlternateSharp", - "AddPhotoAlternateTwoTone", - "AddReaction", - "AddReactionOutlined", - "AddReactionRounded", - "AddReactionSharp", - "AddReactionTwoTone", - "AddRoad", - "AddRoadOutlined", - "AddRoadRounded", - "AddRoadSharp", - "AddRoadTwoTone", - "AddRounded", - "AddSharp", - "AddShoppingCart", - "AddShoppingCartOutlined", - "AddShoppingCartRounded", - "AddShoppingCartSharp", - "AddShoppingCartTwoTone", - "AddTask", - "AddTaskOutlined", - "AddTaskRounded", - "AddTaskSharp", - "AddTaskTwoTone", - "AddToDrive", - "AddToDriveOutlined", - "AddToDriveRounded", - "AddToDriveSharp", - "AddToDriveTwoTone", - "AddToHomeScreen", - "AddToHomeScreenOutlined", - "AddToHomeScreenRounded", - "AddToHomeScreenSharp", - "AddToHomeScreenTwoTone", - "AddToPhotos", - "AddToPhotosOutlined", - "AddToPhotosRounded", - "AddToPhotosSharp", - "AddToPhotosTwoTone", - "AddToQueue", - "AddToQueueOutlined", - "AddToQueueRounded", - "AddToQueueSharp", - "AddToQueueTwoTone", - "AddTwoTone", - "Addchart", - "AddchartOutlined", - "AddchartRounded", - "AddchartSharp", - "AddchartTwoTone", - "AdfScanner", - "AdfScannerOutlined", - "AdfScannerRounded", - "AdfScannerSharp", - "AdfScannerTwoTone", - "Adjust", - "AdjustOutlined", - "AdjustRounded", - "AdjustSharp", - "AdjustTwoTone", - "AdminPanelSettings", - "AdminPanelSettingsOutlined", - "AdminPanelSettingsRounded", - "AdminPanelSettingsSharp", - "AdminPanelSettingsTwoTone", - "AdsClick", - "AdsClickOutlined", - "AdsClickRounded", - "AdsClickSharp", - "AdsClickTwoTone", - "Agriculture", - "AgricultureOutlined", - "AgricultureRounded", - "AgricultureSharp", - "AgricultureTwoTone", - "Air", - "AirOutlined", - "AirRounded", - "AirSharp", - "AirTwoTone", - "AirlineSeatFlat", - "AirlineSeatFlatAngled", - "AirlineSeatFlatAngledOutlined", - "AirlineSeatFlatAngledRounded", - "AirlineSeatFlatAngledSharp", - "AirlineSeatFlatAngledTwoTone", - "AirlineSeatFlatOutlined", - "AirlineSeatFlatRounded", - "AirlineSeatFlatSharp", - "AirlineSeatFlatTwoTone", - "AirlineSeatIndividualSuite", - "AirlineSeatIndividualSuiteOutlined", - "AirlineSeatIndividualSuiteRounded", - "AirlineSeatIndividualSuiteSharp", - "AirlineSeatIndividualSuiteTwoTone", - "AirlineSeatLegroomExtra", - "AirlineSeatLegroomExtraOutlined", - "AirlineSeatLegroomExtraRounded", - "AirlineSeatLegroomExtraSharp", - "AirlineSeatLegroomExtraTwoTone", - "AirlineSeatLegroomNormal", - "AirlineSeatLegroomNormalOutlined", - "AirlineSeatLegroomNormalRounded", - "AirlineSeatLegroomNormalSharp", - "AirlineSeatLegroomNormalTwoTone", - "AirlineSeatLegroomReduced", - "AirlineSeatLegroomReducedOutlined", - "AirlineSeatLegroomReducedRounded", - "AirlineSeatLegroomReducedSharp", - "AirlineSeatLegroomReducedTwoTone", - "AirlineSeatReclineExtra", - "AirlineSeatReclineExtraOutlined", - "AirlineSeatReclineExtraRounded", - "AirlineSeatReclineExtraSharp", - "AirlineSeatReclineExtraTwoTone", - "AirlineSeatReclineNormal", - "AirlineSeatReclineNormalOutlined", - "AirlineSeatReclineNormalRounded", - "AirlineSeatReclineNormalSharp", - "AirlineSeatReclineNormalTwoTone", - "AirlineStops", - "AirlineStopsOutlined", - "AirlineStopsRounded", - "AirlineStopsSharp", - "AirlineStopsTwoTone", - "Airlines", - "AirlinesOutlined", - "AirlinesRounded", - "AirlinesSharp", - "AirlinesTwoTone", - "AirplaneTicket", - "AirplaneTicketOutlined", - "AirplaneTicketRounded", - "AirplaneTicketSharp", - "AirplaneTicketTwoTone", - "AirplanemodeActive", - "AirplanemodeActiveOutlined", - "AirplanemodeActiveRounded", - "AirplanemodeActiveSharp", - "AirplanemodeActiveTwoTone", - "AirplanemodeInactive", - "AirplanemodeInactiveOutlined", - "AirplanemodeInactiveRounded", - "AirplanemodeInactiveSharp", - "AirplanemodeInactiveTwoTone", - "Airplay", - "AirplayOutlined", - "AirplayRounded", - "AirplaySharp", - "AirplayTwoTone", - "AirportShuttle", - "AirportShuttleOutlined", - "AirportShuttleRounded", - "AirportShuttleSharp", - "AirportShuttleTwoTone", - "Alarm", - "AlarmAdd", - "AlarmAddOutlined", - "AlarmAddRounded", - "AlarmAddSharp", - "AlarmAddTwoTone", - "AlarmOff", - "AlarmOffOutlined", - "AlarmOffRounded", - "AlarmOffSharp", - "AlarmOffTwoTone", - "AlarmOn", - "AlarmOnOutlined", - "AlarmOnRounded", - "AlarmOnSharp", - "AlarmOnTwoTone", - "AlarmOutlined", - "AlarmRounded", - "AlarmSharp", - "AlarmTwoTone", - "Album", - "AlbumOutlined", - "AlbumRounded", - "AlbumSharp", - "AlbumTwoTone", - "AlignHorizontalCenter", - "AlignHorizontalCenterOutlined", - "AlignHorizontalCenterRounded", - "AlignHorizontalCenterSharp", - "AlignHorizontalCenterTwoTone", - "AlignHorizontalLeft", - "AlignHorizontalLeftOutlined", - "AlignHorizontalLeftRounded", - "AlignHorizontalLeftSharp", - "AlignHorizontalLeftTwoTone", - "AlignHorizontalRight", - "AlignHorizontalRightOutlined", - "AlignHorizontalRightRounded", - "AlignHorizontalRightSharp", - "AlignHorizontalRightTwoTone", - "AlignVerticalBottom", - "AlignVerticalBottomOutlined", - "AlignVerticalBottomRounded", - "AlignVerticalBottomSharp", - "AlignVerticalBottomTwoTone", - "AlignVerticalCenter", - "AlignVerticalCenterOutlined", - "AlignVerticalCenterRounded", - "AlignVerticalCenterSharp", - "AlignVerticalCenterTwoTone", - "AlignVerticalTop", - "AlignVerticalTopOutlined", - "AlignVerticalTopRounded", - "AlignVerticalTopSharp", - "AlignVerticalTopTwoTone", - "AllInbox", - "AllInboxOutlined", - "AllInboxRounded", - "AllInboxSharp", - "AllInboxTwoTone", - "AllInclusive", - "AllInclusiveOutlined", - "AllInclusiveRounded", - "AllInclusiveSharp", - "AllInclusiveTwoTone", - "AllOut", - "AllOutOutlined", - "AllOutRounded", - "AllOutSharp", - "AllOutTwoTone", - "AltRoute", - "AltRouteOutlined", - "AltRouteRounded", - "AltRouteSharp", - "AltRouteTwoTone", - "AlternateEmail", - "AlternateEmailOutlined", - "AlternateEmailRounded", - "AlternateEmailSharp", - "AlternateEmailTwoTone", - "Analytics", - "AnalyticsOutlined", - "AnalyticsRounded", - "AnalyticsSharp", - "AnalyticsTwoTone", - "Anchor", - "AnchorOutlined", - "AnchorRounded", - "AnchorSharp", - "AnchorTwoTone", - "Android", - "AndroidOutlined", - "AndroidRounded", - "AndroidSharp", - "AndroidTwoTone", - "Animation", - "AnimationOutlined", - "AnimationRounded", - "AnimationSharp", - "AnimationTwoTone", - "Announcement", - "AnnouncementOutlined", - "AnnouncementRounded", - "AnnouncementSharp", - "AnnouncementTwoTone", - "Aod", - "AodOutlined", - "AodRounded", - "AodSharp", - "AodTwoTone", - "Apartment", - "ApartmentOutlined", - "ApartmentRounded", - "ApartmentSharp", - "ApartmentTwoTone", - "Api", - "ApiOutlined", - "ApiRounded", - "ApiSharp", - "ApiTwoTone", - "AppBlocking", - "AppBlockingOutlined", - "AppBlockingRounded", - "AppBlockingSharp", - "AppBlockingTwoTone", - "AppRegistration", - "AppRegistrationOutlined", - "AppRegistrationRounded", - "AppRegistrationSharp", - "AppRegistrationTwoTone", - "AppSettingsAlt", - "AppSettingsAltOutlined", - "AppSettingsAltRounded", - "AppSettingsAltSharp", - "AppSettingsAltTwoTone", - "AppShortcut", - "AppShortcutOutlined", - "AppShortcutRounded", - "AppShortcutSharp", - "AppShortcutTwoTone", - "Apple", - "Approval", - "ApprovalOutlined", - "ApprovalRounded", - "ApprovalSharp", - "ApprovalTwoTone", - "Apps", - "AppsOutage", - "AppsOutageOutlined", - "AppsOutageRounded", - "AppsOutageSharp", - "AppsOutageTwoTone", - "AppsOutlined", - "AppsRounded", - "AppsSharp", - "AppsTwoTone", - "Architecture", - "ArchitectureOutlined", - "ArchitectureRounded", - "ArchitectureSharp", - "ArchitectureTwoTone", - "Archive", - "ArchiveOutlined", - "ArchiveRounded", - "ArchiveSharp", - "ArchiveTwoTone", - "ArrowBack", - "ArrowBackIos", - "ArrowBackIosNew", - "ArrowBackIosNewOutlined", - "ArrowBackIosNewRounded", - "ArrowBackIosNewSharp", - "ArrowBackIosNewTwoTone", - "ArrowBackIosOutlined", - "ArrowBackIosRounded", - "ArrowBackIosSharp", - "ArrowBackIosTwoTone", - "ArrowBackOutlined", - "ArrowBackRounded", - "ArrowBackSharp", - "ArrowBackTwoTone", - "ArrowCircleDown", - "ArrowCircleDownOutlined", - "ArrowCircleDownRounded", - "ArrowCircleDownSharp", - "ArrowCircleDownTwoTone", - "ArrowCircleLeft", - "ArrowCircleLeftOutlined", - "ArrowCircleLeftRounded", - "ArrowCircleLeftSharp", - "ArrowCircleLeftTwoTone", - "ArrowCircleRight", - "ArrowCircleRightOutlined", - "ArrowCircleRightRounded", - "ArrowCircleRightSharp", - "ArrowCircleRightTwoTone", - "ArrowCircleUp", - "ArrowCircleUpOutlined", - "ArrowCircleUpRounded", - "ArrowCircleUpSharp", - "ArrowCircleUpTwoTone", - "ArrowDownward", - "ArrowDownwardOutlined", - "ArrowDownwardRounded", - "ArrowDownwardSharp", - "ArrowDownwardTwoTone", - "ArrowDropDown", - "ArrowDropDownCircle", - "ArrowDropDownCircleOutlined", - "ArrowDropDownCircleRounded", - "ArrowDropDownCircleSharp", - "ArrowDropDownCircleTwoTone", - "ArrowDropDownOutlined", - "ArrowDropDownRounded", - "ArrowDropDownSharp", - "ArrowDropDownTwoTone", - "ArrowDropUp", - "ArrowDropUpOutlined", - "ArrowDropUpRounded", - "ArrowDropUpSharp", - "ArrowDropUpTwoTone", - "ArrowForward", - "ArrowForwardIos", - "ArrowForwardIosOutlined", - "ArrowForwardIosRounded", - "ArrowForwardIosSharp", - "ArrowForwardIosTwoTone", - "ArrowForwardOutlined", - "ArrowForwardRounded", - "ArrowForwardSharp", - "ArrowForwardTwoTone", - "ArrowLeft", - "ArrowLeftOutlined", - "ArrowLeftRounded", - "ArrowLeftSharp", - "ArrowLeftTwoTone", - "ArrowOutward", - "ArrowOutwardOutlined", - "ArrowOutwardRounded", - "ArrowOutwardSharp", - "ArrowOutwardTwoTone", - "ArrowRight", - "ArrowRightAlt", - "ArrowRightAltOutlined", - "ArrowRightAltRounded", - "ArrowRightAltSharp", - "ArrowRightAltTwoTone", - "ArrowRightOutlined", - "ArrowRightRounded", - "ArrowRightSharp", - "ArrowRightTwoTone", - "ArrowUpward", - "ArrowUpwardOutlined", - "ArrowUpwardRounded", - "ArrowUpwardSharp", - "ArrowUpwardTwoTone", - "ArtTrack", - "ArtTrackOutlined", - "ArtTrackRounded", - "ArtTrackSharp", - "ArtTrackTwoTone", - "Article", - "ArticleOutlined", - "ArticleRounded", - "ArticleSharp", - "ArticleTwoTone", - "AspectRatio", - "AspectRatioOutlined", - "AspectRatioRounded", - "AspectRatioSharp", - "AspectRatioTwoTone", - "Assessment", - "AssessmentOutlined", - "AssessmentRounded", - "AssessmentSharp", - "AssessmentTwoTone", - "Assignment", - "AssignmentInd", - "AssignmentIndOutlined", - "AssignmentIndRounded", - "AssignmentIndSharp", - "AssignmentIndTwoTone", - "AssignmentLate", - "AssignmentLateOutlined", - "AssignmentLateRounded", - "AssignmentLateSharp", - "AssignmentLateTwoTone", - "AssignmentOutlined", - "AssignmentReturn", - "AssignmentReturnOutlined", - "AssignmentReturnRounded", - "AssignmentReturnSharp", - "AssignmentReturnTwoTone", - "AssignmentReturned", - "AssignmentReturnedOutlined", - "AssignmentReturnedRounded", - "AssignmentReturnedSharp", - "AssignmentReturnedTwoTone", - "AssignmentRounded", - "AssignmentSharp", - "AssignmentTurnedIn", - "AssignmentTurnedInOutlined", - "AssignmentTurnedInRounded", - "AssignmentTurnedInSharp", - "AssignmentTurnedInTwoTone", - "AssignmentTwoTone", - "AssistWalker", - "AssistWalkerOutlined", - "AssistWalkerRounded", - "AssistWalkerSharp", - "AssistWalkerTwoTone", - "Assistant", - "AssistantDirection", - "AssistantDirectionOutlined", - "AssistantDirectionRounded", - "AssistantDirectionSharp", - "AssistantDirectionTwoTone", - "AssistantOutlined", - "AssistantPhoto", - "AssistantPhotoOutlined", - "AssistantPhotoRounded", - "AssistantPhotoSharp", - "AssistantPhotoTwoTone", - "AssistantRounded", - "AssistantSharp", - "AssistantTwoTone", - "AssuredWorkload", - "AssuredWorkloadOutlined", - "AssuredWorkloadRounded", - "AssuredWorkloadSharp", - "AssuredWorkloadTwoTone", - "Atm", - "AtmOutlined", - "AtmRounded", - "AtmSharp", - "AtmTwoTone", - "AttachEmail", - "AttachEmailOutlined", - "AttachEmailRounded", - "AttachEmailSharp", - "AttachEmailTwoTone", - "AttachFile", - "AttachFileOutlined", - "AttachFileRounded", - "AttachFileSharp", - "AttachFileTwoTone", - "AttachMoney", - "AttachMoneyOutlined", - "AttachMoneyRounded", - "AttachMoneySharp", - "AttachMoneyTwoTone", - "Attachment", - "AttachmentOutlined", - "AttachmentRounded", - "AttachmentSharp", - "AttachmentTwoTone", - "Attractions", - "AttractionsOutlined", - "AttractionsRounded", - "AttractionsSharp", - "AttractionsTwoTone", - "Attribution", - "AttributionOutlined", - "AttributionRounded", - "AttributionSharp", - "AttributionTwoTone", - "AudioFile", - "AudioFileOutlined", - "AudioFileRounded", - "AudioFileSharp", - "AudioFileTwoTone", - "Audiotrack", - "AudiotrackOutlined", - "AudiotrackRounded", - "AudiotrackSharp", - "AudiotrackTwoTone", - "AutoAwesome", - "AutoAwesomeMosaic", - "AutoAwesomeMosaicOutlined", - "AutoAwesomeMosaicRounded", - "AutoAwesomeMosaicSharp", - "AutoAwesomeMosaicTwoTone", - "AutoAwesomeMotion", - "AutoAwesomeMotionOutlined", - "AutoAwesomeMotionRounded", - "AutoAwesomeMotionSharp", - "AutoAwesomeMotionTwoTone", - "AutoAwesomeOutlined", - "AutoAwesomeRounded", - "AutoAwesomeSharp", - "AutoAwesomeTwoTone", - "AutoDelete", - "AutoDeleteOutlined", - "AutoDeleteRounded", - "AutoDeleteSharp", - "AutoDeleteTwoTone", - "AutoFixHigh", - "AutoFixHighOutlined", - "AutoFixHighRounded", - "AutoFixHighSharp", - "AutoFixHighTwoTone", - "AutoFixNormal", - "AutoFixNormalOutlined", - "AutoFixNormalRounded", - "AutoFixNormalSharp", - "AutoFixNormalTwoTone", - "AutoFixOff", - "AutoFixOffOutlined", - "AutoFixOffRounded", - "AutoFixOffSharp", - "AutoFixOffTwoTone", - "AutoGraph", - "AutoGraphOutlined", - "AutoGraphRounded", - "AutoGraphSharp", - "AutoGraphTwoTone", - "AutoMode", - "AutoModeOutlined", - "AutoModeRounded", - "AutoModeSharp", - "AutoModeTwoTone", - "AutoStories", - "AutoStoriesOutlined", - "AutoStoriesRounded", - "AutoStoriesSharp", - "AutoStoriesTwoTone", - "AutofpsSelect", - "AutofpsSelectOutlined", - "AutofpsSelectRounded", - "AutofpsSelectSharp", - "AutofpsSelectTwoTone", - "Autorenew", - "AutorenewOutlined", - "AutorenewRounded", - "AutorenewSharp", - "AutorenewTwoTone", - "AvTimer", - "AvTimerOutlined", - "AvTimerRounded", - "AvTimerSharp", - "AvTimerTwoTone", - "BabyChangingStation", - "BabyChangingStationOutlined", - "BabyChangingStationRounded", - "BabyChangingStationSharp", - "BabyChangingStationTwoTone", - "BackHand", - "BackHandOutlined", - "BackHandRounded", - "BackHandSharp", - "BackHandTwoTone", - "Backpack", - "BackpackOutlined", - "BackpackRounded", - "BackpackSharp", - "BackpackTwoTone", - "Backspace", - "BackspaceOutlined", - "BackspaceRounded", - "BackspaceSharp", - "BackspaceTwoTone", - "Backup", - "BackupOutlined", - "BackupRounded", - "BackupSharp", - "BackupTable", - "BackupTableOutlined", - "BackupTableRounded", - "BackupTableSharp", - "BackupTableTwoTone", - "BackupTwoTone", - "Badge", - "BadgeOutlined", - "BadgeRounded", - "BadgeSharp", - "BadgeTwoTone", - "BakeryDining", - "BakeryDiningOutlined", - "BakeryDiningRounded", - "BakeryDiningSharp", - "BakeryDiningTwoTone", - "Balance", - "BalanceOutlined", - "BalanceRounded", - "BalanceSharp", - "BalanceTwoTone", - "Balcony", - "BalconyOutlined", - "BalconyRounded", - "BalconySharp", - "BalconyTwoTone", - "Ballot", - "BallotOutlined", - "BallotRounded", - "BallotSharp", - "BallotTwoTone", - "BarChart", - "BarChartOutlined", - "BarChartRounded", - "BarChartSharp", - "BarChartTwoTone", - "BatchPrediction", - "BatchPredictionOutlined", - "BatchPredictionRounded", - "BatchPredictionSharp", - "BatchPredictionTwoTone", - "Bathroom", - "BathroomOutlined", - "BathroomRounded", - "BathroomSharp", - "BathroomTwoTone", - "Bathtub", - "BathtubOutlined", - "BathtubRounded", - "BathtubSharp", - "BathtubTwoTone", - "Battery0Bar", - "Battery0BarOutlined", - "Battery0BarRounded", - "Battery0BarSharp", - "Battery0BarTwoTone", - "Battery1Bar", - "Battery1BarOutlined", - "Battery1BarRounded", - "Battery1BarSharp", - "Battery1BarTwoTone", - "Battery20", - "Battery20Outlined", - "Battery20Rounded", - "Battery20Sharp", - "Battery20TwoTone", - "Battery2Bar", - "Battery2BarOutlined", - "Battery2BarRounded", - "Battery2BarSharp", - "Battery2BarTwoTone", - "Battery30", - "Battery30Outlined", - "Battery30Rounded", - "Battery30Sharp", - "Battery30TwoTone", - "Battery3Bar", - "Battery3BarOutlined", - "Battery3BarRounded", - "Battery3BarSharp", - "Battery3BarTwoTone", - "Battery4Bar", - "Battery4BarOutlined", - "Battery4BarRounded", - "Battery4BarSharp", - "Battery4BarTwoTone", - "Battery50", - "Battery50Outlined", - "Battery50Rounded", - "Battery50Sharp", - "Battery50TwoTone", - "Battery5Bar", - "Battery5BarOutlined", - "Battery5BarRounded", - "Battery5BarSharp", - "Battery5BarTwoTone", - "Battery60", - "Battery60Outlined", - "Battery60Rounded", - "Battery60Sharp", - "Battery60TwoTone", - "Battery6Bar", - "Battery6BarOutlined", - "Battery6BarRounded", - "Battery6BarSharp", - "Battery6BarTwoTone", - "Battery80", - "Battery80Outlined", - "Battery80Rounded", - "Battery80Sharp", - "Battery80TwoTone", - "Battery90", - "Battery90Outlined", - "Battery90Rounded", - "Battery90Sharp", - "Battery90TwoTone", - "BatteryAlert", - "BatteryAlertOutlined", - "BatteryAlertRounded", - "BatteryAlertSharp", - "BatteryAlertTwoTone", - "BatteryCharging20", - "BatteryCharging20Outlined", - "BatteryCharging20Rounded", - "BatteryCharging20Sharp", - "BatteryCharging20TwoTone", - "BatteryCharging30", - "BatteryCharging30Outlined", - "BatteryCharging30Rounded", - "BatteryCharging30Sharp", - "BatteryCharging30TwoTone", - "BatteryCharging50", - "BatteryCharging50Outlined", - "BatteryCharging50Rounded", - "BatteryCharging50Sharp", - "BatteryCharging50TwoTone", - "BatteryCharging60", - "BatteryCharging60Outlined", - "BatteryCharging60Rounded", - "BatteryCharging60Sharp", - "BatteryCharging60TwoTone", - "BatteryCharging80", - "BatteryCharging80Outlined", - "BatteryCharging80Rounded", - "BatteryCharging80Sharp", - "BatteryCharging80TwoTone", - "BatteryCharging90", - "BatteryCharging90Outlined", - "BatteryCharging90Rounded", - "BatteryCharging90Sharp", - "BatteryCharging90TwoTone", - "BatteryChargingFull", - "BatteryChargingFullOutlined", - "BatteryChargingFullRounded", - "BatteryChargingFullSharp", - "BatteryChargingFullTwoTone", - "BatteryFull", - "BatteryFullOutlined", - "BatteryFullRounded", - "BatteryFullSharp", - "BatteryFullTwoTone", - "BatterySaver", - "BatterySaverOutlined", - "BatterySaverRounded", - "BatterySaverSharp", - "BatterySaverTwoTone", - "BatteryStd", - "BatteryStdOutlined", - "BatteryStdRounded", - "BatteryStdSharp", - "BatteryStdTwoTone", - "BatteryUnknown", - "BatteryUnknownOutlined", - "BatteryUnknownRounded", - "BatteryUnknownSharp", - "BatteryUnknownTwoTone", - "BeachAccess", - "BeachAccessOutlined", - "BeachAccessRounded", - "BeachAccessSharp", - "BeachAccessTwoTone", - "Bed", - "BedOutlined", - "BedRounded", - "BedSharp", - "BedTwoTone", - "BedroomBaby", - "BedroomBabyOutlined", - "BedroomBabyRounded", - "BedroomBabySharp", - "BedroomBabyTwoTone", - "BedroomChild", - "BedroomChildOutlined", - "BedroomChildRounded", - "BedroomChildSharp", - "BedroomChildTwoTone", - "BedroomParent", - "BedroomParentOutlined", - "BedroomParentRounded", - "BedroomParentSharp", - "BedroomParentTwoTone", - "Bedtime", - "BedtimeOff", - "BedtimeOffOutlined", - "BedtimeOffRounded", - "BedtimeOffSharp", - "BedtimeOffTwoTone", - "BedtimeOutlined", - "BedtimeRounded", - "BedtimeSharp", - "BedtimeTwoTone", - "Beenhere", - "BeenhereOutlined", - "BeenhereRounded", - "BeenhereSharp", - "BeenhereTwoTone", - "Bento", - "BentoOutlined", - "BentoRounded", - "BentoSharp", - "BentoTwoTone", - "BikeScooter", - "BikeScooterOutlined", - "BikeScooterRounded", - "BikeScooterSharp", - "BikeScooterTwoTone", - "Biotech", - "BiotechOutlined", - "BiotechRounded", - "BiotechSharp", - "BiotechTwoTone", - "Blender", - "BlenderOutlined", - "BlenderRounded", - "BlenderSharp", - "BlenderTwoTone", - "Blind", - "BlindOutlined", - "BlindRounded", - "BlindSharp", - "BlindTwoTone", - "Blinds", - "BlindsClosed", - "BlindsClosedOutlined", - "BlindsClosedRounded", - "BlindsClosedSharp", - "BlindsClosedTwoTone", - "BlindsOutlined", - "BlindsRounded", - "BlindsSharp", - "BlindsTwoTone", - "Block", - "BlockOutlined", - "BlockRounded", - "BlockSharp", - "BlockTwoTone", - "Bloodtype", - "BloodtypeOutlined", - "BloodtypeRounded", - "BloodtypeSharp", - "BloodtypeTwoTone", - "Bluetooth", - "BluetoothAudio", - "BluetoothAudioOutlined", - "BluetoothAudioRounded", - "BluetoothAudioSharp", - "BluetoothAudioTwoTone", - "BluetoothConnected", - "BluetoothConnectedOutlined", - "BluetoothConnectedRounded", - "BluetoothConnectedSharp", - "BluetoothConnectedTwoTone", - "BluetoothDisabled", - "BluetoothDisabledOutlined", - "BluetoothDisabledRounded", - "BluetoothDisabledSharp", - "BluetoothDisabledTwoTone", - "BluetoothDrive", - "BluetoothDriveOutlined", - "BluetoothDriveRounded", - "BluetoothDriveSharp", - "BluetoothDriveTwoTone", - "BluetoothOutlined", - "BluetoothRounded", - "BluetoothSearching", - "BluetoothSearchingOutlined", - "BluetoothSearchingRounded", - "BluetoothSearchingSharp", - "BluetoothSearchingTwoTone", - "BluetoothSharp", - "BluetoothTwoTone", - "BlurCircular", - "BlurCircularOutlined", - "BlurCircularRounded", - "BlurCircularSharp", - "BlurCircularTwoTone", - "BlurLinear", - "BlurLinearOutlined", - "BlurLinearRounded", - "BlurLinearSharp", - "BlurLinearTwoTone", - "BlurOff", - "BlurOffOutlined", - "BlurOffRounded", - "BlurOffSharp", - "BlurOffTwoTone", - "BlurOn", - "BlurOnOutlined", - "BlurOnRounded", - "BlurOnSharp", - "BlurOnTwoTone", - "Bolt", - "BoltOutlined", - "BoltRounded", - "BoltSharp", - "BoltTwoTone", - "Book", - "BookOnline", - "BookOnlineOutlined", - "BookOnlineRounded", - "BookOnlineSharp", - "BookOnlineTwoTone", - "BookOutlined", - "BookRounded", - "BookSharp", - "BookTwoTone", - "Bookmark", - "BookmarkAdd", - "BookmarkAddOutlined", - "BookmarkAddRounded", - "BookmarkAddSharp", - "BookmarkAddTwoTone", - "BookmarkAdded", - "BookmarkAddedOutlined", - "BookmarkAddedRounded", - "BookmarkAddedSharp", - "BookmarkAddedTwoTone", - "BookmarkBorder", - "BookmarkBorderOutlined", - "BookmarkBorderRounded", - "BookmarkBorderSharp", - "BookmarkBorderTwoTone", - "BookmarkOutlined", - "BookmarkRemove", - "BookmarkRemoveOutlined", - "BookmarkRemoveRounded", - "BookmarkRemoveSharp", - "BookmarkRemoveTwoTone", - "BookmarkRounded", - "BookmarkSharp", - "BookmarkTwoTone", - "Bookmarks", - "BookmarksOutlined", - "BookmarksRounded", - "BookmarksSharp", - "BookmarksTwoTone", - "BorderAll", - "BorderAllOutlined", - "BorderAllRounded", - "BorderAllSharp", - "BorderAllTwoTone", - "BorderBottom", - "BorderBottomOutlined", - "BorderBottomRounded", - "BorderBottomSharp", - "BorderBottomTwoTone", - "BorderClear", - "BorderClearOutlined", - "BorderClearRounded", - "BorderClearSharp", - "BorderClearTwoTone", - "BorderColor", - "BorderColorOutlined", - "BorderColorRounded", - "BorderColorSharp", - "BorderColorTwoTone", - "BorderHorizontal", - "BorderHorizontalOutlined", - "BorderHorizontalRounded", - "BorderHorizontalSharp", - "BorderHorizontalTwoTone", - "BorderInner", - "BorderInnerOutlined", - "BorderInnerRounded", - "BorderInnerSharp", - "BorderInnerTwoTone", - "BorderLeft", - "BorderLeftOutlined", - "BorderLeftRounded", - "BorderLeftSharp", - "BorderLeftTwoTone", - "BorderOuter", - "BorderOuterOutlined", - "BorderOuterRounded", - "BorderOuterSharp", - "BorderOuterTwoTone", - "BorderRight", - "BorderRightOutlined", - "BorderRightRounded", - "BorderRightSharp", - "BorderRightTwoTone", - "BorderStyle", - "BorderStyleOutlined", - "BorderStyleRounded", - "BorderStyleSharp", - "BorderStyleTwoTone", - "BorderTop", - "BorderTopOutlined", - "BorderTopRounded", - "BorderTopSharp", - "BorderTopTwoTone", - "BorderVertical", - "BorderVerticalOutlined", - "BorderVerticalRounded", - "BorderVerticalSharp", - "BorderVerticalTwoTone", - "Boy", - "BoyOutlined", - "BoyRounded", - "BoySharp", - "BoyTwoTone", - "BrandingWatermark", - "BrandingWatermarkOutlined", - "BrandingWatermarkRounded", - "BrandingWatermarkSharp", - "BrandingWatermarkTwoTone", - "BreakfastDining", - "BreakfastDiningOutlined", - "BreakfastDiningRounded", - "BreakfastDiningSharp", - "BreakfastDiningTwoTone", - "Brightness1", - "Brightness1Outlined", - "Brightness1Rounded", - "Brightness1Sharp", - "Brightness1TwoTone", - "Brightness2", - "Brightness2Outlined", - "Brightness2Rounded", - "Brightness2Sharp", - "Brightness2TwoTone", - "Brightness3", - "Brightness3Outlined", - "Brightness3Rounded", - "Brightness3Sharp", - "Brightness3TwoTone", - "Brightness4", - "Brightness4Outlined", - "Brightness4Rounded", - "Brightness4Sharp", - "Brightness4TwoTone", - "Brightness5", - "Brightness5Outlined", - "Brightness5Rounded", - "Brightness5Sharp", - "Brightness5TwoTone", - "Brightness6", - "Brightness6Outlined", - "Brightness6Rounded", - "Brightness6Sharp", - "Brightness6TwoTone", - "Brightness7", - "Brightness7Outlined", - "Brightness7Rounded", - "Brightness7Sharp", - "Brightness7TwoTone", - "BrightnessAuto", - "BrightnessAutoOutlined", - "BrightnessAutoRounded", - "BrightnessAutoSharp", - "BrightnessAutoTwoTone", - "BrightnessHigh", - "BrightnessHighOutlined", - "BrightnessHighRounded", - "BrightnessHighSharp", - "BrightnessHighTwoTone", - "BrightnessLow", - "BrightnessLowOutlined", - "BrightnessLowRounded", - "BrightnessLowSharp", - "BrightnessLowTwoTone", - "BrightnessMedium", - "BrightnessMediumOutlined", - "BrightnessMediumRounded", - "BrightnessMediumSharp", - "BrightnessMediumTwoTone", - "BroadcastOnHome", - "BroadcastOnHomeOutlined", - "BroadcastOnHomeRounded", - "BroadcastOnHomeSharp", - "BroadcastOnHomeTwoTone", - "BroadcastOnPersonal", - "BroadcastOnPersonalOutlined", - "BroadcastOnPersonalRounded", - "BroadcastOnPersonalSharp", - "BroadcastOnPersonalTwoTone", - "BrokenImage", - "BrokenImageOutlined", - "BrokenImageRounded", - "BrokenImageSharp", - "BrokenImageTwoTone", - "BrowseGallery", - "BrowseGalleryOutlined", - "BrowseGalleryRounded", - "BrowseGallerySharp", - "BrowseGalleryTwoTone", - "BrowserNotSupported", - "BrowserNotSupportedOutlined", - "BrowserNotSupportedRounded", - "BrowserNotSupportedSharp", - "BrowserNotSupportedTwoTone", - "BrowserUpdated", - "BrowserUpdatedOutlined", - "BrowserUpdatedRounded", - "BrowserUpdatedSharp", - "BrowserUpdatedTwoTone", - "BrunchDining", - "BrunchDiningOutlined", - "BrunchDiningRounded", - "BrunchDiningSharp", - "BrunchDiningTwoTone", - "Brush", - "BrushOutlined", - "BrushRounded", - "BrushSharp", - "BrushTwoTone", - "BubbleChart", - "BubbleChartOutlined", - "BubbleChartRounded", - "BubbleChartSharp", - "BubbleChartTwoTone", - "BugReport", - "BugReportOutlined", - "BugReportRounded", - "BugReportSharp", - "BugReportTwoTone", - "Build", - "BuildCircle", - "BuildCircleOutlined", - "BuildCircleRounded", - "BuildCircleSharp", - "BuildCircleTwoTone", - "BuildOutlined", - "BuildRounded", - "BuildSharp", - "BuildTwoTone", - "Bungalow", - "BungalowOutlined", - "BungalowRounded", - "BungalowSharp", - "BungalowTwoTone", - "BurstMode", - "BurstModeOutlined", - "BurstModeRounded", - "BurstModeSharp", - "BurstModeTwoTone", - "BusAlert", - "BusAlertOutlined", - "BusAlertRounded", - "BusAlertSharp", - "BusAlertTwoTone", - "Business", - "BusinessCenter", - "BusinessCenterOutlined", - "BusinessCenterRounded", - "BusinessCenterSharp", - "BusinessCenterTwoTone", - "BusinessOutlined", - "BusinessRounded", - "BusinessSharp", - "BusinessTwoTone", - "Cabin", - "CabinOutlined", - "CabinRounded", - "CabinSharp", - "CabinTwoTone", - "Cable", - "CableOutlined", - "CableRounded", - "CableSharp", - "CableTwoTone", - "Cached", - "CachedOutlined", - "CachedRounded", - "CachedSharp", - "CachedTwoTone", - "Cake", - "CakeOutlined", - "CakeRounded", - "CakeSharp", - "CakeTwoTone", - "Calculate", - "CalculateOutlined", - "CalculateRounded", - "CalculateSharp", - "CalculateTwoTone", - "CalendarMonth", - "CalendarMonthOutlined", - "CalendarMonthRounded", - "CalendarMonthSharp", - "CalendarMonthTwoTone", - "CalendarToday", - "CalendarTodayOutlined", - "CalendarTodayRounded", - "CalendarTodaySharp", - "CalendarTodayTwoTone", - "CalendarViewDay", - "CalendarViewDayOutlined", - "CalendarViewDayRounded", - "CalendarViewDaySharp", - "CalendarViewDayTwoTone", - "CalendarViewMonth", - "CalendarViewMonthOutlined", - "CalendarViewMonthRounded", - "CalendarViewMonthSharp", - "CalendarViewMonthTwoTone", - "CalendarViewWeek", - "CalendarViewWeekOutlined", - "CalendarViewWeekRounded", - "CalendarViewWeekSharp", - "CalendarViewWeekTwoTone", - "Call", - "CallEnd", - "CallEndOutlined", - "CallEndRounded", - "CallEndSharp", - "CallEndTwoTone", - "CallMade", - "CallMadeOutlined", - "CallMadeRounded", - "CallMadeSharp", - "CallMadeTwoTone", - "CallMerge", - "CallMergeOutlined", - "CallMergeRounded", - "CallMergeSharp", - "CallMergeTwoTone", - "CallMissed", - "CallMissedOutgoing", - "CallMissedOutgoingOutlined", - "CallMissedOutgoingRounded", - "CallMissedOutgoingSharp", - "CallMissedOutgoingTwoTone", - "CallMissedOutlined", - "CallMissedRounded", - "CallMissedSharp", - "CallMissedTwoTone", - "CallOutlined", - "CallReceived", - "CallReceivedOutlined", - "CallReceivedRounded", - "CallReceivedSharp", - "CallReceivedTwoTone", - "CallRounded", - "CallSharp", - "CallSplit", - "CallSplitOutlined", - "CallSplitRounded", - "CallSplitSharp", - "CallSplitTwoTone", - "CallToAction", - "CallToActionOutlined", - "CallToActionRounded", - "CallToActionSharp", - "CallToActionTwoTone", - "CallTwoTone", - "Camera", - "CameraAlt", - "CameraAltOutlined", - "CameraAltRounded", - "CameraAltSharp", - "CameraAltTwoTone", - "CameraEnhance", - "CameraEnhanceOutlined", - "CameraEnhanceRounded", - "CameraEnhanceSharp", - "CameraEnhanceTwoTone", - "CameraFront", - "CameraFrontOutlined", - "CameraFrontRounded", - "CameraFrontSharp", - "CameraFrontTwoTone", - "CameraIndoor", - "CameraIndoorOutlined", - "CameraIndoorRounded", - "CameraIndoorSharp", - "CameraIndoorTwoTone", - "CameraOutdoor", - "CameraOutdoorOutlined", - "CameraOutdoorRounded", - "CameraOutdoorSharp", - "CameraOutdoorTwoTone", - "CameraOutlined", - "CameraRear", - "CameraRearOutlined", - "CameraRearRounded", - "CameraRearSharp", - "CameraRearTwoTone", - "CameraRoll", - "CameraRollOutlined", - "CameraRollRounded", - "CameraRollSharp", - "CameraRollTwoTone", - "CameraRounded", - "CameraSharp", - "CameraTwoTone", - "Cameraswitch", - "CameraswitchOutlined", - "CameraswitchRounded", - "CameraswitchSharp", - "CameraswitchTwoTone", - "Campaign", - "CampaignOutlined", - "CampaignRounded", - "CampaignSharp", - "CampaignTwoTone", - "Cancel", - "CancelOutlined", - "CancelPresentation", - "CancelPresentationOutlined", - "CancelPresentationRounded", - "CancelPresentationSharp", - "CancelPresentationTwoTone", - "CancelRounded", - "CancelScheduleSend", - "CancelScheduleSendOutlined", - "CancelScheduleSendRounded", - "CancelScheduleSendSharp", - "CancelScheduleSendTwoTone", - "CancelSharp", - "CancelTwoTone", - "CandlestickChart", - "CandlestickChartOutlined", - "CandlestickChartRounded", - "CandlestickChartSharp", - "CandlestickChartTwoTone", - "CarCrash", - "CarCrashOutlined", - "CarCrashRounded", - "CarCrashSharp", - "CarCrashTwoTone", - "CarRental", - "CarRentalOutlined", - "CarRentalRounded", - "CarRentalSharp", - "CarRentalTwoTone", - "CarRepair", - "CarRepairOutlined", - "CarRepairRounded", - "CarRepairSharp", - "CarRepairTwoTone", - "CardGiftcard", - "CardGiftcardOutlined", - "CardGiftcardRounded", - "CardGiftcardSharp", - "CardGiftcardTwoTone", - "CardMembership", - "CardMembershipOutlined", - "CardMembershipRounded", - "CardMembershipSharp", - "CardMembershipTwoTone", - "CardTravel", - "CardTravelOutlined", - "CardTravelRounded", - "CardTravelSharp", - "CardTravelTwoTone", - "Carpenter", - "CarpenterOutlined", - "CarpenterRounded", - "CarpenterSharp", - "CarpenterTwoTone", - "Cases", - "CasesOutlined", - "CasesRounded", - "CasesSharp", - "CasesTwoTone", - "Casino", - "CasinoOutlined", - "CasinoRounded", - "CasinoSharp", - "CasinoTwoTone", - "Cast", - "CastConnected", - "CastConnectedOutlined", - "CastConnectedRounded", - "CastConnectedSharp", - "CastConnectedTwoTone", - "CastForEducation", - "CastForEducationOutlined", - "CastForEducationRounded", - "CastForEducationSharp", - "CastForEducationTwoTone", - "CastOutlined", - "CastRounded", - "CastSharp", - "CastTwoTone", - "Castle", - "CastleOutlined", - "CastleRounded", - "CastleSharp", - "CastleTwoTone", - - "Category", - "CategoryOutlined", - "CategoryRounded", - "CategorySharp", - "CategoryTwoTone", - "Celebration", - "CelebrationOutlined", - "CelebrationRounded", - "CelebrationSharp", - "CelebrationTwoTone", - "CellTower", - "CellTowerOutlined", - "CellTowerRounded", - "CellTowerSharp", - "CellTowerTwoTone", - "CellWifi", - "CellWifiOutlined", - "CellWifiRounded", - "CellWifiSharp", - "CellWifiTwoTone", - "CenterFocusStrong", - "CenterFocusStrongOutlined", - "CenterFocusStrongRounded", - "CenterFocusStrongSharp", - "CenterFocusStrongTwoTone", - "CenterFocusWeak", - "CenterFocusWeakOutlined", - "CenterFocusWeakRounded", - "CenterFocusWeakSharp", - "CenterFocusWeakTwoTone", - "Chair", - "ChairAlt", - "ChairAltOutlined", - "ChairAltRounded", - "ChairAltSharp", - "ChairAltTwoTone", - "ChairOutlined", - "ChairRounded", - "ChairSharp", - "ChairTwoTone", - "Chalet", - "ChaletOutlined", - "ChaletRounded", - "ChaletSharp", - "ChaletTwoTone", - "ChangeCircle", - "ChangeCircleOutlined", - "ChangeCircleRounded", - "ChangeCircleSharp", - "ChangeCircleTwoTone", - "ChangeHistory", - "ChangeHistoryOutlined", - "ChangeHistoryRounded", - "ChangeHistorySharp", - "ChangeHistoryTwoTone", - "ChargingStation", - "ChargingStationOutlined", - "ChargingStationRounded", - "ChargingStationSharp", - "ChargingStationTwoTone", - "Chat", - "ChatBubble", - "ChatBubbleOutline", - "ChatBubbleOutlineOutlined", - "ChatBubbleOutlineRounded", - "ChatBubbleOutlineSharp", - "ChatBubbleOutlineTwoTone", - "ChatBubbleOutlined", - "ChatBubbleRounded", - "ChatBubbleSharp", - "ChatBubbleTwoTone", - "ChatOutlined", - "ChatRounded", - "ChatSharp", - "ChatTwoTone", - "Check", - "CheckBox", - "CheckBoxOutlineBlank", - "CheckBoxOutlineBlankOutlined", - "CheckBoxOutlineBlankRounded", - "CheckBoxOutlineBlankSharp", - "CheckBoxOutlineBlankTwoTone", - "CheckBoxOutlined", - "CheckBoxRounded", - "CheckBoxSharp", - "CheckBoxTwoTone", - "CheckCircle", - "CheckCircleOutline", - "CheckCircleOutlineOutlined", - "CheckCircleOutlineRounded", - "CheckCircleOutlineSharp", - "CheckCircleOutlineTwoTone", - "CheckCircleOutlined", - "CheckCircleRounded", - "CheckCircleSharp", - "CheckCircleTwoTone", - "CheckOutlined", - "CheckRounded", - "CheckSharp", - "CheckTwoTone", - "Checklist", - "ChecklistOutlined", - "ChecklistRounded", - "ChecklistRtl", - "ChecklistRtlOutlined", - "ChecklistRtlRounded", - "ChecklistRtlSharp", - "ChecklistRtlTwoTone", - "ChecklistSharp", - "ChecklistTwoTone", - "Checkroom", - "CheckroomOutlined", - "CheckroomRounded", - "CheckroomSharp", - "CheckroomTwoTone", - "ChevronLeft", - "ChevronLeftOutlined", - "ChevronLeftRounded", - "ChevronLeftSharp", - "ChevronLeftTwoTone", - "ChevronRight", - "ChevronRightOutlined", - "ChevronRightRounded", - "ChevronRightSharp", - "ChevronRightTwoTone", - "ChildCare", - "ChildCareOutlined", - "ChildCareRounded", - "ChildCareSharp", - "ChildCareTwoTone", - "ChildFriendly", - "ChildFriendlyOutlined", - "ChildFriendlyRounded", - "ChildFriendlySharp", - "ChildFriendlyTwoTone", - "ChromeReaderMode", - "ChromeReaderModeOutlined", - "ChromeReaderModeRounded", - "ChromeReaderModeSharp", - "ChromeReaderModeTwoTone", - "Church", - "ChurchOutlined", - "ChurchRounded", - "ChurchSharp", - "ChurchTwoTone", - "Circle", - "CircleNotifications", - "CircleNotificationsOutlined", - "CircleNotificationsRounded", - "CircleNotificationsSharp", - "CircleNotificationsTwoTone", - "CircleOutlined", - "CircleRounded", - "CircleSharp", - "CircleTwoTone", - "Class", - "ClassOutlined", - "ClassRounded", - "ClassSharp", - "ClassTwoTone", - "CleanHands", - "CleanHandsOutlined", - "CleanHandsRounded", - "CleanHandsSharp", - "CleanHandsTwoTone", - "CleaningServices", - "CleaningServicesOutlined", - "CleaningServicesRounded", - "CleaningServicesSharp", - "CleaningServicesTwoTone", - "Clear", - "ClearAll", - "ClearAllOutlined", - "ClearAllRounded", - "ClearAllSharp", - "ClearAllTwoTone", - "ClearOutlined", - "ClearRounded", - "ClearSharp", - "ClearTwoTone", - "Close", - "CloseFullscreen", - "CloseFullscreenOutlined", - "CloseFullscreenRounded", - "CloseFullscreenSharp", - "CloseFullscreenTwoTone", - "CloseOutlined", - "CloseRounded", - "CloseSharp", - "CloseTwoTone", - "ClosedCaption", - "ClosedCaptionDisabled", - "ClosedCaptionDisabledOutlined", - "ClosedCaptionDisabledRounded", - "ClosedCaptionDisabledSharp", - "ClosedCaptionDisabledTwoTone", - "ClosedCaptionOff", - "ClosedCaptionOffOutlined", - "ClosedCaptionOffRounded", - "ClosedCaptionOffSharp", - "ClosedCaptionOffTwoTone", - "ClosedCaptionOutlined", - "ClosedCaptionRounded", - "ClosedCaptionSharp", - "ClosedCaptionTwoTone", - "Cloud", - "CloudCircle", - "CloudCircleOutlined", - "CloudCircleRounded", - "CloudCircleSharp", - "CloudCircleTwoTone", - "CloudDone", - "CloudDoneOutlined", - "CloudDoneRounded", - "CloudDoneSharp", - "CloudDoneTwoTone", - "CloudDownload", - "CloudDownloadOutlined", - "CloudDownloadRounded", - "CloudDownloadSharp", - "CloudDownloadTwoTone", - "CloudOff", - "CloudOffOutlined", - "CloudOffRounded", - "CloudOffSharp", - "CloudOffTwoTone", - "CloudOutlined", - "CloudQueue", - "CloudQueueOutlined", - "CloudQueueRounded", - "CloudQueueSharp", - "CloudQueueTwoTone", - "CloudRounded", - "CloudSharp", - "CloudSync", - "CloudSyncOutlined", - "CloudSyncRounded", - "CloudSyncSharp", - "CloudSyncTwoTone", - "CloudTwoTone", - "CloudUpload", - "CloudUploadOutlined", - "CloudUploadRounded", - "CloudUploadSharp", - "CloudUploadTwoTone", - "CoPresent", - "CoPresentOutlined", - "CoPresentRounded", - "CoPresentSharp", - "CoPresentTwoTone", - "Code", - "CodeOff", - "CodeOffOutlined", - "CodeOffRounded", - "CodeOffSharp", - "CodeOffTwoTone", - "CodeOutlined", - "CodeRounded", - "CodeSharp", - "CodeTwoTone", - "Coffee", - "CoffeeMaker", - "CoffeeMakerOutlined", - "CoffeeMakerRounded", - "CoffeeMakerSharp", - "CoffeeMakerTwoTone", - "CoffeeOutlined", - "CoffeeRounded", - "CoffeeSharp", - "CoffeeTwoTone", - "Collections", - "CollectionsBookmark", - "CollectionsBookmarkOutlined", - "CollectionsBookmarkRounded", - "CollectionsBookmarkSharp", - "CollectionsBookmarkTwoTone", - "CollectionsOutlined", - "CollectionsRounded", - "CollectionsSharp", - "CollectionsTwoTone", - "ColorLens", - "ColorLensOutlined", - "ColorLensRounded", - "ColorLensSharp", - "ColorLensTwoTone", - "Colorize", - "ColorizeOutlined", - "ColorizeRounded", - "ColorizeSharp", - "ColorizeTwoTone", - "Comment", - "CommentBank", - "CommentBankOutlined", - "CommentBankRounded", - "CommentBankSharp", - "CommentBankTwoTone", - "CommentOutlined", - "CommentRounded", - "CommentSharp", - "CommentTwoTone", - "CommentsDisabled", - "CommentsDisabledOutlined", - "CommentsDisabledRounded", - "CommentsDisabledSharp", - "CommentsDisabledTwoTone", - "Commit", - "CommitOutlined", - "CommitRounded", - "CommitSharp", - "CommitTwoTone", - "Commute", - "CommuteOutlined", - "CommuteRounded", - "CommuteSharp", - "CommuteTwoTone", - "Compare", - "CompareArrows", - "CompareArrowsOutlined", - "CompareArrowsRounded", - "CompareArrowsSharp", - "CompareArrowsTwoTone", - "CompareOutlined", - "CompareRounded", - "CompareSharp", - "CompareTwoTone", - "CompassCalibration", - "CompassCalibrationOutlined", - "CompassCalibrationRounded", - "CompassCalibrationSharp", - "CompassCalibrationTwoTone", - "Compress", - "CompressOutlined", - "CompressRounded", - "CompressSharp", - "CompressTwoTone", - "Computer", - "ComputerOutlined", - "ComputerRounded", - "ComputerSharp", - "ComputerTwoTone", - "ConfirmationNumber", - "ConfirmationNumberOutlined", - "ConfirmationNumberRounded", - "ConfirmationNumberSharp", - "ConfirmationNumberTwoTone", - "ConnectWithoutContact", - "ConnectWithoutContactOutlined", - "ConnectWithoutContactRounded", - "ConnectWithoutContactSharp", - "ConnectWithoutContactTwoTone", - "ConnectedTv", - "ConnectedTvOutlined", - "ConnectedTvRounded", - "ConnectedTvSharp", - "ConnectedTvTwoTone", - "ConnectingAirports", - "ConnectingAirportsOutlined", - "ConnectingAirportsRounded", - "ConnectingAirportsSharp", - "ConnectingAirportsTwoTone", - "Construction", - "ConstructionOutlined", - "ConstructionRounded", - "ConstructionSharp", - "ConstructionTwoTone", - "ContactEmergency", - "ContactEmergencyOutlined", - "ContactEmergencyRounded", - "ContactEmergencySharp", - "ContactEmergencyTwoTone", - "ContactMail", - "ContactMailOutlined", - "ContactMailRounded", - "ContactMailSharp", - "ContactMailTwoTone", - "ContactPage", - "ContactPageOutlined", - "ContactPageRounded", - "ContactPageSharp", - "ContactPageTwoTone", - "ContactPhone", - "ContactPhoneOutlined", - "ContactPhoneRounded", - "ContactPhoneSharp", - "ContactPhoneTwoTone", - "ContactSupport", - "ContactSupportOutlined", - "ContactSupportRounded", - "ContactSupportSharp", - "ContactSupportTwoTone", - "Contactless", - "ContactlessOutlined", - "ContactlessRounded", - "ContactlessSharp", - "ContactlessTwoTone", - "Contacts", - "ContactsOutlined", - "ContactsRounded", - "ContactsSharp", - "ContactsTwoTone", - "ContentCopy", - "ContentCopyOutlined", - "ContentCopyRounded", - "ContentCopySharp", - "ContentCopyTwoTone", - "ContentCut", - "ContentCutOutlined", - "ContentCutRounded", - "ContentCutSharp", - "ContentCutTwoTone", - "ContentPaste", - "ContentPasteGo", - "ContentPasteGoOutlined", - "ContentPasteGoRounded", - "ContentPasteGoSharp", - "ContentPasteGoTwoTone", - "ContentPasteOff", - "ContentPasteOffOutlined", - "ContentPasteOffRounded", - "ContentPasteOffSharp", - "ContentPasteOffTwoTone", - "ContentPasteOutlined", - "ContentPasteRounded", - "ContentPasteSearch", - "ContentPasteSearchOutlined", - "ContentPasteSearchRounded", - "ContentPasteSearchSharp", - "ContentPasteSearchTwoTone", - "ContentPasteSharp", - "ContentPasteTwoTone", - "Contrast", - "ContrastOutlined", - "ContrastRounded", - "ContrastSharp", - "ContrastTwoTone", - "ControlCamera", - "ControlCameraOutlined", - "ControlCameraRounded", - "ControlCameraSharp", - "ControlCameraTwoTone", - "ControlPoint", - "ControlPointDuplicate", - "ControlPointDuplicateOutlined", - "ControlPointDuplicateRounded", - "ControlPointDuplicateSharp", - "ControlPointDuplicateTwoTone", - "ControlPointOutlined", - "ControlPointRounded", - "ControlPointSharp", - "ControlPointTwoTone", - "Cookie", - "CookieOutlined", - "CookieRounded", - "CookieSharp", - "CookieTwoTone", - "CopyAll", - "CopyAllOutlined", - "CopyAllRounded", - "CopyAllSharp", - "CopyAllTwoTone", - "Copyright", - "CopyrightOutlined", - "CopyrightRounded", - "CopyrightSharp", - "CopyrightTwoTone", - "Coronavirus", - "CoronavirusOutlined", - "CoronavirusRounded", - "CoronavirusSharp", - "CoronavirusTwoTone", - "CorporateFare", - "CorporateFareOutlined", - "CorporateFareRounded", - "CorporateFareSharp", - "CorporateFareTwoTone", - "Cottage", - "CottageOutlined", - "CottageRounded", - "CottageSharp", - "CottageTwoTone", - "Countertops", - "CountertopsOutlined", - "CountertopsRounded", - "CountertopsSharp", - "CountertopsTwoTone", - "Create", - "CreateNewFolder", - "CreateNewFolderOutlined", - "CreateNewFolderRounded", - "CreateNewFolderSharp", - "CreateNewFolderTwoTone", - "CreateOutlined", - "CreateRounded", - "CreateSharp", - "CreateTwoTone", - "CreditCard", - "CreditCardOff", - "CreditCardOffOutlined", - "CreditCardOffRounded", - "CreditCardOffSharp", - "CreditCardOffTwoTone", - "CreditCardOutlined", - "CreditCardRounded", - "CreditCardSharp", - "CreditCardTwoTone", - "CreditScore", - "CreditScoreOutlined", - "CreditScoreRounded", - "CreditScoreSharp", - "CreditScoreTwoTone", - "Crib", - "CribOutlined", - "CribRounded", - "CribSharp", - "CribTwoTone", - "CrisisAlert", - "CrisisAlertOutlined", - "CrisisAlertRounded", - "CrisisAlertSharp", - "CrisisAlertTwoTone", - "Crop", - "CropDin", - "CropDinOutlined", - "CropDinRounded", - "CropDinSharp", - "CropDinTwoTone", - "CropFree", - "CropFreeOutlined", - "CropFreeRounded", - "CropFreeSharp", - "CropFreeTwoTone", - "CropLandscape", - "CropLandscapeOutlined", - "CropLandscapeRounded", - "CropLandscapeSharp", - "CropLandscapeTwoTone", - "CropOriginal", - "CropOriginalOutlined", - "CropOriginalRounded", - "CropOriginalSharp", - "CropOriginalTwoTone", - "CropOutlined", - "CropPortrait", - "CropPortraitOutlined", - "CropPortraitRounded", - "CropPortraitSharp", - "CropPortraitTwoTone", - "CropRotate", - "CropRotateOutlined", - "CropRotateRounded", - "CropRotateSharp", - "CropRotateTwoTone", - "CropRounded", - "CropSharp", - "CropSquare", - "CropSquareOutlined", - "CropSquareRounded", - "CropSquareSharp", - "CropSquareTwoTone", - "CropTwoTone", - "Css", - "CssOutlined", - "CssRounded", - "CssSharp", - "CssTwoTone", - "CurrencyBitcoin", - "CurrencyBitcoinOutlined", - "CurrencyBitcoinRounded", - "CurrencyBitcoinSharp", - "CurrencyBitcoinTwoTone", - "CurrencyExchange", - "CurrencyExchangeOutlined", - "CurrencyExchangeRounded", - "CurrencyExchangeSharp", - "CurrencyExchangeTwoTone", - "CurrencyFranc", - "CurrencyFrancOutlined", - "CurrencyFrancRounded", - "CurrencyFrancSharp", - "CurrencyFrancTwoTone", - "CurrencyLira", - "CurrencyLiraOutlined", - "CurrencyLiraRounded", - "CurrencyLiraSharp", - "CurrencyLiraTwoTone", - "CurrencyPound", - "CurrencyPoundOutlined", - "CurrencyPoundRounded", - "CurrencyPoundSharp", - "CurrencyPoundTwoTone", - "CurrencyRuble", - "CurrencyRubleOutlined", - "CurrencyRubleRounded", - "CurrencyRubleSharp", - "CurrencyRubleTwoTone", - "CurrencyRupee", - "CurrencyRupeeOutlined", - "CurrencyRupeeRounded", - "CurrencyRupeeSharp", - "CurrencyRupeeTwoTone", - "CurrencyYen", - "CurrencyYenOutlined", - "CurrencyYenRounded", - "CurrencyYenSharp", - "CurrencyYenTwoTone", - "CurrencyYuan", - "CurrencyYuanOutlined", - "CurrencyYuanRounded", - "CurrencyYuanSharp", - "CurrencyYuanTwoTone", - "Curtains", - "CurtainsClosed", - "CurtainsClosedOutlined", - "CurtainsClosedRounded", - "CurtainsClosedSharp", - "CurtainsClosedTwoTone", - "CurtainsOutlined", - "CurtainsRounded", - "CurtainsSharp", - "CurtainsTwoTone", - "Cyclone", - "CycloneOutlined", - "CycloneRounded", - "CycloneSharp", - "CycloneTwoTone", - "Dangerous", - "DangerousOutlined", - "DangerousRounded", - "DangerousSharp", - "DangerousTwoTone", - "DarkMode", - "DarkModeOutlined", - "DarkModeRounded", - "DarkModeSharp", - "DarkModeTwoTone", - "Dashboard", - "DashboardCustomize", - "DashboardCustomizeOutlined", - "DashboardCustomizeRounded", - "DashboardCustomizeSharp", - "DashboardCustomizeTwoTone", - "DashboardOutlined", - "DashboardRounded", - "DashboardSharp", - "DashboardTwoTone", - "DataArray", - "DataArrayOutlined", - "DataArrayRounded", - "DataArraySharp", - "DataArrayTwoTone", - "DataObject", - "DataObjectOutlined", - "DataObjectRounded", - "DataObjectSharp", - "DataObjectTwoTone", - "DataSaverOff", - "DataSaverOffOutlined", - "DataSaverOffRounded", - "DataSaverOffSharp", - "DataSaverOffTwoTone", - "DataSaverOn", - "DataSaverOnOutlined", - "DataSaverOnRounded", - "DataSaverOnSharp", - "DataSaverOnTwoTone", - "DataThresholding", - "DataThresholdingOutlined", - "DataThresholdingRounded", - "DataThresholdingSharp", - "DataThresholdingTwoTone", - "DataUsage", - "DataUsageOutlined", - "DataUsageRounded", - "DataUsageSharp", - "DataUsageTwoTone", - "Dataset", - "DatasetLinked", - "DatasetLinkedOutlined", - "DatasetLinkedRounded", - "DatasetLinkedSharp", - "DatasetLinkedTwoTone", - "DatasetOutlined", - "DatasetRounded", - "DatasetSharp", - "DatasetTwoTone", - "DateRange", - "DateRangeOutlined", - "DateRangeRounded", - "DateRangeSharp", - "DateRangeTwoTone", - "Deblur", - "DeblurOutlined", - "DeblurRounded", - "DeblurSharp", - "DeblurTwoTone", - "Deck", - "DeckOutlined", - "DeckRounded", - "DeckSharp", - "DeckTwoTone", - "Dehaze", - "DehazeOutlined", - "DehazeRounded", - "DehazeSharp", - "DehazeTwoTone", - "Delete", - "DeleteForever", - "DeleteForeverOutlined", - "DeleteForeverRounded", - "DeleteForeverSharp", - "DeleteForeverTwoTone", - "DeleteOutline", - "DeleteOutlineOutlined", - "DeleteOutlineRounded", - "DeleteOutlineSharp", - "DeleteOutlineTwoTone", - "DeleteOutlined", - "DeleteRounded", - "DeleteSharp", - "DeleteSweep", - "DeleteSweepOutlined", - "DeleteSweepRounded", - "DeleteSweepSharp", - "DeleteSweepTwoTone", - "DeleteTwoTone", - "DensityLarge", - "DensityLargeOutlined", - "DensityLargeRounded", - "DensityLargeSharp", - "DensityLargeTwoTone", - "DensityMedium", - "DensityMediumOutlined", - "DensityMediumRounded", - "DensityMediumSharp", - "DensityMediumTwoTone", - "DensitySmall", - "DensitySmallOutlined", - "DensitySmallRounded", - "DensitySmallSharp", - "DensitySmallTwoTone", - "DepartureBoard", - "DepartureBoardOutlined", - "DepartureBoardRounded", - "DepartureBoardSharp", - "DepartureBoardTwoTone", - "Description", - "DescriptionOutlined", - "DescriptionRounded", - "DescriptionSharp", - "DescriptionTwoTone", - "Deselect", - "DeselectOutlined", - "DeselectRounded", - "DeselectSharp", - "DeselectTwoTone", - "DesignServices", - "DesignServicesOutlined", - "DesignServicesRounded", - "DesignServicesSharp", - "DesignServicesTwoTone", - "Desk", - "DeskOutlined", - "DeskRounded", - "DeskSharp", - "DeskTwoTone", - "DesktopAccessDisabled", - "DesktopAccessDisabledOutlined", - "DesktopAccessDisabledRounded", - "DesktopAccessDisabledSharp", - "DesktopAccessDisabledTwoTone", - "DesktopMac", - "DesktopMacOutlined", - "DesktopMacRounded", - "DesktopMacSharp", - "DesktopMacTwoTone", - "DesktopWindows", - "DesktopWindowsOutlined", - "DesktopWindowsRounded", - "DesktopWindowsSharp", - "DesktopWindowsTwoTone", - "Details", - "DetailsOutlined", - "DetailsRounded", - "DetailsSharp", - "DetailsTwoTone", - "DeveloperBoard", - "DeveloperBoardOff", - "DeveloperBoardOffOutlined", - "DeveloperBoardOffRounded", - "DeveloperBoardOffSharp", - "DeveloperBoardOffTwoTone", - "DeveloperBoardOutlined", - "DeveloperBoardRounded", - "DeveloperBoardSharp", - "DeveloperBoardTwoTone", - "DeveloperMode", - "DeveloperModeOutlined", - "DeveloperModeRounded", - "DeveloperModeSharp", - "DeveloperModeTwoTone", - "DeviceHub", - "DeviceHubOutlined", - "DeviceHubRounded", - "DeviceHubSharp", - "DeviceHubTwoTone", - "DeviceThermostat", - "DeviceThermostatOutlined", - "DeviceThermostatRounded", - "DeviceThermostatSharp", - "DeviceThermostatTwoTone", - "DeviceUnknown", - "DeviceUnknownOutlined", - "DeviceUnknownRounded", - "DeviceUnknownSharp", - "DeviceUnknownTwoTone", - "Devices", - "DevicesFold", - "DevicesFoldOutlined", - "DevicesFoldRounded", - "DevicesFoldSharp", - "DevicesFoldTwoTone", - "DevicesOther", - "DevicesOtherOutlined", - "DevicesOtherRounded", - "DevicesOtherSharp", - "DevicesOtherTwoTone", - "DevicesOutlined", - "DevicesRounded", - "DevicesSharp", - "DevicesTwoTone", - "DialerSip", - "DialerSipOutlined", - "DialerSipRounded", - "DialerSipSharp", - "DialerSipTwoTone", - "Dialpad", - "DialpadOutlined", - "DialpadRounded", - "DialpadSharp", - "DialpadTwoTone", - "Diamond", - "DiamondOutlined", - "DiamondRounded", - "DiamondSharp", - "DiamondTwoTone", - "Difference", - "DifferenceOutlined", - "DifferenceRounded", - "DifferenceSharp", - "DifferenceTwoTone", - "Dining", - "DiningOutlined", - "DiningRounded", - "DiningSharp", - "DiningTwoTone", - "DinnerDining", - "DinnerDiningOutlined", - "DinnerDiningRounded", - "DinnerDiningSharp", - "DinnerDiningTwoTone", - "Directions", - "DirectionsBike", - "DirectionsBikeOutlined", - "DirectionsBikeRounded", - "DirectionsBikeSharp", - "DirectionsBikeTwoTone", - "DirectionsBoat", - "DirectionsBoatFilled", - "DirectionsBoatFilledOutlined", - "DirectionsBoatFilledRounded", - "DirectionsBoatFilledSharp", - "DirectionsBoatFilledTwoTone", - "DirectionsBoatOutlined", - "DirectionsBoatRounded", - "DirectionsBoatSharp", - "DirectionsBoatTwoTone", - "DirectionsBus", - "DirectionsBusFilled", - "DirectionsBusFilledOutlined", - "DirectionsBusFilledRounded", - "DirectionsBusFilledSharp", - "DirectionsBusFilledTwoTone", - "DirectionsBusOutlined", - "DirectionsBusRounded", - "DirectionsBusSharp", - "DirectionsBusTwoTone", - "DirectionsCar", - "DirectionsCarFilled", - "DirectionsCarFilledOutlined", - "DirectionsCarFilledRounded", - "DirectionsCarFilledSharp", - "DirectionsCarFilledTwoTone", - "DirectionsCarOutlined", - "DirectionsCarRounded", - "DirectionsCarSharp", - "DirectionsCarTwoTone", - "DirectionsOff", - "DirectionsOffOutlined", - "DirectionsOffRounded", - "DirectionsOffSharp", - "DirectionsOffTwoTone", - "DirectionsOutlined", - "DirectionsRailway", - "DirectionsRailwayFilled", - "DirectionsRailwayFilledOutlined", - "DirectionsRailwayFilledRounded", - "DirectionsRailwayFilledSharp", - "DirectionsRailwayFilledTwoTone", - "DirectionsRailwayOutlined", - "DirectionsRailwayRounded", - "DirectionsRailwaySharp", - "DirectionsRailwayTwoTone", - "DirectionsRounded", - "DirectionsRun", - "DirectionsRunOutlined", - "DirectionsRunRounded", - "DirectionsRunSharp", - "DirectionsRunTwoTone", - "DirectionsSharp", - "DirectionsSubway", - "DirectionsSubwayFilled", - "DirectionsSubwayFilledOutlined", - "DirectionsSubwayFilledRounded", - "DirectionsSubwayFilledSharp", - "DirectionsSubwayFilledTwoTone", - "DirectionsSubwayOutlined", - "DirectionsSubwayRounded", - "DirectionsSubwaySharp", - "DirectionsSubwayTwoTone", - "DirectionsTransit", - "DirectionsTransitFilled", - "DirectionsTransitFilledOutlined", - "DirectionsTransitFilledRounded", - "DirectionsTransitFilledSharp", - "DirectionsTransitFilledTwoTone", - "DirectionsTransitOutlined", - "DirectionsTransitRounded", - "DirectionsTransitSharp", - "DirectionsTransitTwoTone", - "DirectionsTwoTone", - "DirectionsWalk", - "DirectionsWalkOutlined", - "DirectionsWalkRounded", - "DirectionsWalkSharp", - "DirectionsWalkTwoTone", - "DirtyLens", - "DirtyLensOutlined", - "DirtyLensRounded", - "DirtyLensSharp", - "DirtyLensTwoTone", - "DisabledByDefault", - "DisabledByDefaultOutlined", - "DisabledByDefaultRounded", - "DisabledByDefaultSharp", - "DisabledByDefaultTwoTone", - "DiscFull", - "DiscFullOutlined", - "DiscFullRounded", - "DiscFullSharp", - "DiscFullTwoTone", - "DisplaySettings", - "DisplaySettingsOutlined", - "DisplaySettingsRounded", - "DisplaySettingsSharp", - "DisplaySettingsTwoTone", - "Diversity1", - "Diversity1Outlined", - "Diversity1Rounded", - "Diversity1Sharp", - "Diversity1TwoTone", - "Diversity2", - "Diversity2Outlined", - "Diversity2Rounded", - "Diversity2Sharp", - "Diversity2TwoTone", - "Diversity3", - "Diversity3Outlined", - "Diversity3Rounded", - "Diversity3Sharp", - "Diversity3TwoTone", - "Dns", - "DnsOutlined", - "DnsRounded", - "DnsSharp", - "DnsTwoTone", - "DoDisturb", - "DoDisturbAlt", - "DoDisturbAltOutlined", - "DoDisturbAltRounded", - "DoDisturbAltSharp", - "DoDisturbAltTwoTone", - "DoDisturbOff", - "DoDisturbOffOutlined", - "DoDisturbOffRounded", - "DoDisturbOffSharp", - "DoDisturbOffTwoTone", - "DoDisturbOn", - "DoDisturbOnOutlined", - "DoDisturbOnRounded", - "DoDisturbOnSharp", - "DoDisturbOnTwoTone", - "DoDisturbOutlined", - "DoDisturbRounded", - "DoDisturbSharp", - "DoDisturbTwoTone", - "DoNotDisturb", - "DoNotDisturbAlt", - "DoNotDisturbAltOutlined", - "DoNotDisturbAltRounded", - "DoNotDisturbAltSharp", - "DoNotDisturbAltTwoTone", - "DoNotDisturbOff", - "DoNotDisturbOffOutlined", - "DoNotDisturbOffRounded", - "DoNotDisturbOffSharp", - "DoNotDisturbOffTwoTone", - "DoNotDisturbOn", - "DoNotDisturbOnOutlined", - "DoNotDisturbOnRounded", - "DoNotDisturbOnSharp", - "DoNotDisturbOnTotalSilence", - "DoNotDisturbOnTotalSilenceOutlined", - "DoNotDisturbOnTotalSilenceRounded", - "DoNotDisturbOnTotalSilenceSharp", - "DoNotDisturbOnTotalSilenceTwoTone", - "DoNotDisturbOnTwoTone", - "DoNotDisturbOutlined", - "DoNotDisturbRounded", - "DoNotDisturbSharp", - "DoNotDisturbTwoTone", - "DoNotStep", - "DoNotStepOutlined", - "DoNotStepRounded", - "DoNotStepSharp", - "DoNotStepTwoTone", - "DoNotTouch", - "DoNotTouchOutlined", - "DoNotTouchRounded", - "DoNotTouchSharp", - "DoNotTouchTwoTone", - "Dock", - "DockOutlined", - "DockRounded", - "DockSharp", - "DockTwoTone", - "DocumentScanner", - "DocumentScannerOutlined", - "DocumentScannerRounded", - "DocumentScannerSharp", - "DocumentScannerTwoTone", - "Domain", - "DomainAdd", - "DomainAddOutlined", - "DomainAddRounded", - "DomainAddSharp", - "DomainAddTwoTone", - "DomainDisabled", - "DomainDisabledOutlined", - "DomainDisabledRounded", - "DomainDisabledSharp", - "DomainDisabledTwoTone", - "DomainOutlined", - "DomainRounded", - "DomainSharp", - "DomainTwoTone", - "DomainVerification", - "DomainVerificationOutlined", - "DomainVerificationRounded", - "DomainVerificationSharp", - "DomainVerificationTwoTone", - "Done", - "DoneAll", - "DoneAllOutlined", - "DoneAllRounded", - "DoneAllSharp", - "DoneAllTwoTone", - "DoneOutline", - "DoneOutlineOutlined", - "DoneOutlineRounded", - "DoneOutlineSharp", - "DoneOutlineTwoTone", - "DoneOutlined", - "DoneRounded", - "DoneSharp", - "DoneTwoTone", - "DonutLarge", - "DonutLargeOutlined", - "DonutLargeRounded", - "DonutLargeSharp", - "DonutLargeTwoTone", - "DonutSmall", - "DonutSmallOutlined", - "DonutSmallRounded", - "DonutSmallSharp", - "DonutSmallTwoTone", - "DoorBack", - "DoorBackOutlined", - "DoorBackRounded", - "DoorBackSharp", - "DoorBackTwoTone", - "DoorFront", - "DoorFrontOutlined", - "DoorFrontRounded", - "DoorFrontSharp", - "DoorFrontTwoTone", - "DoorSliding", - "DoorSlidingOutlined", - "DoorSlidingRounded", - "DoorSlidingSharp", - "DoorSlidingTwoTone", - "Doorbell", - "DoorbellOutlined", - "DoorbellRounded", - "DoorbellSharp", - "DoorbellTwoTone", - "DoubleArrow", - "DoubleArrowOutlined", - "DoubleArrowRounded", - "DoubleArrowSharp", - "DoubleArrowTwoTone", - "DownhillSkiing", - "DownhillSkiingOutlined", - "DownhillSkiingRounded", - "DownhillSkiingSharp", - "DownhillSkiingTwoTone", - "Download", - "DownloadDone", - "DownloadDoneOutlined", - "DownloadDoneRounded", - "DownloadDoneSharp", - "DownloadDoneTwoTone", - "DownloadForOffline", - "DownloadForOfflineOutlined", - "DownloadForOfflineRounded", - "DownloadForOfflineSharp", - "DownloadForOfflineTwoTone", - "DownloadOutlined", - "DownloadRounded", - "DownloadSharp", - "DownloadTwoTone", - "Downloading", - "DownloadingOutlined", - "DownloadingRounded", - "DownloadingSharp", - "DownloadingTwoTone", - "Drafts", - "DraftsOutlined", - "DraftsRounded", - "DraftsSharp", - "DraftsTwoTone", - "DragHandle", - "DragHandleOutlined", - "DragHandleRounded", - "DragHandleSharp", - "DragHandleTwoTone", - "DragIndicator", - "DragIndicatorOutlined", - "DragIndicatorRounded", - "DragIndicatorSharp", - "DragIndicatorTwoTone", - "Draw", - "DrawOutlined", - "DrawRounded", - "DrawSharp", - "DrawTwoTone", - "DriveEta", - "DriveEtaOutlined", - "DriveEtaRounded", - "DriveEtaSharp", - "DriveEtaTwoTone", - "DriveFileMove", - "DriveFileMoveOutlined", - "DriveFileMoveRounded", - "DriveFileMoveSharp", - "DriveFileMoveTwoTone", - "DriveFileRenameOutline", - "DriveFileRenameOutlineOutlined", - "DriveFileRenameOutlineRounded", - "DriveFileRenameOutlineSharp", - "DriveFileRenameOutlineTwoTone", - "DriveFolderUpload", - "DriveFolderUploadOutlined", - "DriveFolderUploadRounded", - "DriveFolderUploadSharp", - "DriveFolderUploadTwoTone", - "Dry", - "DryCleaning", - "DryCleaningOutlined", - "DryCleaningRounded", - "DryCleaningSharp", - "DryCleaningTwoTone", - "DryOutlined", - "DryRounded", - "DrySharp", - "DryTwoTone", - "Duo", - "DuoOutlined", - "DuoRounded", - "DuoSharp", - "DuoTwoTone", - "Dvr", - "DvrOutlined", - "DvrRounded", - "DvrSharp", - "DvrTwoTone", - "DynamicFeed", - "DynamicFeedOutlined", - "DynamicFeedRounded", - "DynamicFeedSharp", - "DynamicFeedTwoTone", - "DynamicForm", - "DynamicFormOutlined", - "DynamicFormRounded", - "DynamicFormSharp", - "DynamicFormTwoTone", - "EMobiledata", - "EMobiledataOutlined", - "EMobiledataRounded", - "EMobiledataSharp", - "EMobiledataTwoTone", - "Earbuds", - "EarbudsBattery", - "EarbudsBatteryOutlined", - "EarbudsBatteryRounded", - "EarbudsBatterySharp", - "EarbudsBatteryTwoTone", - "EarbudsOutlined", - "EarbudsRounded", - "EarbudsSharp", - "EarbudsTwoTone", - "East", - "EastOutlined", - "EastRounded", - "EastSharp", - "EastTwoTone", - "EdgesensorHigh", - "EdgesensorHighOutlined", - "EdgesensorHighRounded", - "EdgesensorHighSharp", - "EdgesensorHighTwoTone", - "EdgesensorLow", - "EdgesensorLowOutlined", - "EdgesensorLowRounded", - "EdgesensorLowSharp", - "EdgesensorLowTwoTone", - "Edit", - "EditAttributes", - "EditAttributesOutlined", - "EditAttributesRounded", - "EditAttributesSharp", - "EditAttributesTwoTone", - "EditCalendar", - "EditCalendarOutlined", - "EditCalendarRounded", - "EditCalendarSharp", - "EditCalendarTwoTone", - "EditLocation", - "EditLocationAlt", - "EditLocationAltOutlined", - "EditLocationAltRounded", - "EditLocationAltSharp", - "EditLocationAltTwoTone", - "EditLocationOutlined", - "EditLocationRounded", - "EditLocationSharp", - "EditLocationTwoTone", - "EditNote", - "EditNoteOutlined", - "EditNoteRounded", - "EditNoteSharp", - "EditNoteTwoTone", - "EditNotifications", - "EditNotificationsOutlined", - "EditNotificationsRounded", - "EditNotificationsSharp", - "EditNotificationsTwoTone", - "EditOff", - "EditOffOutlined", - "EditOffRounded", - "EditOffSharp", - "EditOffTwoTone", - "EditOutlined", - "EditRoad", - "EditRoadOutlined", - "EditRoadRounded", - "EditRoadSharp", - "EditRoadTwoTone", - "EditRounded", - "EditSharp", - "EditTwoTone", - "Egg", - "EggAlt", - "EggAltOutlined", - "EggAltRounded", - "EggAltSharp", - "EggAltTwoTone", - "EggOutlined", - "EggRounded", - "EggSharp", - "EggTwoTone", - "Eject", - "EjectOutlined", - "EjectRounded", - "EjectSharp", - "EjectTwoTone", - "Elderly", - "ElderlyOutlined", - "ElderlyRounded", - "ElderlySharp", - "ElderlyTwoTone", - "ElderlyWoman", - "ElderlyWomanOutlined", - "ElderlyWomanRounded", - "ElderlyWomanSharp", - "ElderlyWomanTwoTone", - "ElectricBike", - "ElectricBikeOutlined", - "ElectricBikeRounded", - "ElectricBikeSharp", - "ElectricBikeTwoTone", - "ElectricBolt", - "ElectricBoltOutlined", - "ElectricBoltRounded", - "ElectricBoltSharp", - "ElectricBoltTwoTone", - "ElectricCar", - "ElectricCarOutlined", - "ElectricCarRounded", - "ElectricCarSharp", - "ElectricCarTwoTone", - "ElectricMeter", - "ElectricMeterOutlined", - "ElectricMeterRounded", - "ElectricMeterSharp", - "ElectricMeterTwoTone", - "ElectricMoped", - "ElectricMopedOutlined", - "ElectricMopedRounded", - "ElectricMopedSharp", - "ElectricMopedTwoTone", - "ElectricRickshaw", - "ElectricRickshawOutlined", - "ElectricRickshawRounded", - "ElectricRickshawSharp", - "ElectricRickshawTwoTone", - "ElectricScooter", - "ElectricScooterOutlined", - "ElectricScooterRounded", - "ElectricScooterSharp", - "ElectricScooterTwoTone", - "ElectricalServices", - "ElectricalServicesOutlined", - "ElectricalServicesRounded", - "ElectricalServicesSharp", - "ElectricalServicesTwoTone", - "Elevator", - "ElevatorOutlined", - "ElevatorRounded", - "ElevatorSharp", - "ElevatorTwoTone", - "Email", - "EmailOutlined", - "EmailRounded", - "EmailSharp", - "EmailTwoTone", - "EmergencyRecording", - "EmergencyRecordingOutlined", - "EmergencyRecordingRounded", - "EmergencyRecordingSharp", - "EmergencyRecordingTwoTone", - "EmergencyShare", - "EmergencyShareOutlined", - "EmergencyShareRounded", - "EmergencyShareSharp", - "EmergencyShareTwoTone", - "EmojiEmotions", - "EmojiEmotionsOutlined", - "EmojiEmotionsRounded", - "EmojiEmotionsSharp", - "EmojiEmotionsTwoTone", - "EmojiEvents", - "EmojiEventsOutlined", - "EmojiEventsRounded", - "EmojiEventsSharp", - "EmojiEventsTwoTone", - "EmojiFlags", - "EmojiFlagsOutlined", - "EmojiFlagsRounded", - "EmojiFlagsSharp", - "EmojiFlagsTwoTone", - "EmojiFoodBeverage", - "EmojiFoodBeverageOutlined", - "EmojiFoodBeverageRounded", - "EmojiFoodBeverageSharp", - "EmojiFoodBeverageTwoTone", - "EmojiNature", - "EmojiNatureOutlined", - "EmojiNatureRounded", - "EmojiNatureSharp", - "EmojiNatureTwoTone", - "EmojiObjects", - "EmojiObjectsOutlined", - "EmojiObjectsRounded", - "EmojiObjectsSharp", - "EmojiObjectsTwoTone", - "EmojiPeople", - "EmojiPeopleOutlined", - "EmojiPeopleRounded", - "EmojiPeopleSharp", - "EmojiPeopleTwoTone", - "EmojiSymbols", - "EmojiSymbolsOutlined", - "EmojiSymbolsRounded", - "EmojiSymbolsSharp", - "EmojiSymbolsTwoTone", - "EmojiTransportation", - "EmojiTransportationOutlined", - "EmojiTransportationRounded", - "EmojiTransportationSharp", - "EmojiTransportationTwoTone", - "EnergySavingsLeaf", - "EnergySavingsLeafOutlined", - "EnergySavingsLeafRounded", - "EnergySavingsLeafSharp", - "EnergySavingsLeafTwoTone", - "Engineering", - "EngineeringOutlined", - "EngineeringRounded", - "EngineeringSharp", - "EngineeringTwoTone", - "EnhancedEncryption", - "EnhancedEncryptionOutlined", - "EnhancedEncryptionRounded", - "EnhancedEncryptionSharp", - "EnhancedEncryptionTwoTone", - "Equalizer", - "EqualizerOutlined", - "EqualizerRounded", - "EqualizerSharp", - "EqualizerTwoTone", - "Error", - "ErrorOutline", - "ErrorOutlineOutlined", - "ErrorOutlineRounded", - "ErrorOutlineSharp", - "ErrorOutlineTwoTone", - "ErrorOutlined", - "ErrorRounded", - "ErrorSharp", - "ErrorTwoTone", - "Escalator", - "EscalatorOutlined", - "EscalatorRounded", - "EscalatorSharp", - "EscalatorTwoTone", - "EscalatorWarning", - "EscalatorWarningOutlined", - "EscalatorWarningRounded", - "EscalatorWarningSharp", - "EscalatorWarningTwoTone", - "Euro", - "EuroOutlined", - "EuroRounded", - "EuroSharp", - "EuroSymbol", - "EuroSymbolOutlined", - "EuroSymbolRounded", - "EuroSymbolSharp", - "EuroSymbolTwoTone", - "EuroTwoTone", - "EvStation", - "EvStationOutlined", - "EvStationRounded", - "EvStationSharp", - "EvStationTwoTone", - "Event", - "EventAvailable", - "EventAvailableOutlined", - "EventAvailableRounded", - "EventAvailableSharp", - "EventAvailableTwoTone", - "EventBusy", - "EventBusyOutlined", - "EventBusyRounded", - "EventBusySharp", - "EventBusyTwoTone", - "EventNote", - "EventNoteOutlined", - "EventNoteRounded", - "EventNoteSharp", - "EventNoteTwoTone", - "EventOutlined", - "EventRepeat", - "EventRepeatOutlined", - "EventRepeatRounded", - "EventRepeatSharp", - "EventRepeatTwoTone", - "EventRounded", - "EventSeat", - "EventSeatOutlined", - "EventSeatRounded", - "EventSeatSharp", - "EventSeatTwoTone", - "EventSharp", - "EventTwoTone", - "ExitToApp", - "ExitToAppOutlined", - "ExitToAppRounded", - "ExitToAppSharp", - "ExitToAppTwoTone", - "Expand", - "ExpandCircleDown", - "ExpandCircleDownOutlined", - "ExpandCircleDownRounded", - "ExpandCircleDownSharp", - "ExpandCircleDownTwoTone", - "ExpandLess", - "ExpandLessOutlined", - "ExpandLessRounded", - "ExpandLessSharp", - "ExpandLessTwoTone", - "ExpandMore", - "ExpandMoreOutlined", - "ExpandMoreRounded", - "ExpandMoreSharp", - "ExpandMoreTwoTone", - "ExpandOutlined", - "ExpandRounded", - "ExpandSharp", - "ExpandTwoTone", - "Explicit", - "ExplicitOutlined", - "ExplicitRounded", - "ExplicitSharp", - "ExplicitTwoTone", - "Explore", - "ExploreOff", - "ExploreOffOutlined", - "ExploreOffRounded", - "ExploreOffSharp", - "ExploreOffTwoTone", - "ExploreOutlined", - "ExploreRounded", - "ExploreSharp", - "ExploreTwoTone", - "Exposure", - "ExposureOutlined", - "ExposureRounded", - "ExposureSharp", - "ExposureTwoTone", - "Extension", - "ExtensionOff", - "ExtensionOffOutlined", - "ExtensionOffRounded", - "ExtensionOffSharp", - "ExtensionOffTwoTone", - "ExtensionOutlined", - "ExtensionRounded", - "ExtensionSharp", - "ExtensionTwoTone", - "Face", - "Face2", - "Face2Outlined", - "Face2Rounded", - "Face2Sharp", - "Face2TwoTone", - "Face3", - "Face3Outlined", - "Face3Rounded", - "Face3Sharp", - "Face3TwoTone", - "Face4", - "Face4Outlined", - "Face4Rounded", - "Face4Sharp", - "Face4TwoTone", - "Face5", - "Face5Outlined", - "Face5Rounded", - "Face5Sharp", - "Face5TwoTone", - "Face6", - "Face6Outlined", - "Face6Rounded", - "Face6Sharp", - "Face6TwoTone", - "FaceOutlined", - "FaceRetouchingNatural", - "FaceRetouchingNaturalOutlined", - "FaceRetouchingNaturalRounded", - "FaceRetouchingNaturalSharp", - "FaceRetouchingNaturalTwoTone", - "FaceRetouchingOff", - "FaceRetouchingOffOutlined", - "FaceRetouchingOffRounded", - "FaceRetouchingOffSharp", - "FaceRetouchingOffTwoTone", - "FaceRounded", - "FaceSharp", - "FaceTwoTone", - "FactCheck", - "FactCheckOutlined", - "FactCheckRounded", - "FactCheckSharp", - "FactCheckTwoTone", - "Factory", - "FactoryOutlined", - "FactoryRounded", - "FactorySharp", - "FactoryTwoTone", - "FamilyRestroom", - "FamilyRestroomOutlined", - "FamilyRestroomRounded", - "FamilyRestroomSharp", - "FamilyRestroomTwoTone", - "FastForward", - "FastForwardOutlined", - "FastForwardRounded", - "FastForwardSharp", - "FastForwardTwoTone", - "FastRewind", - "FastRewindOutlined", - "FastRewindRounded", - "FastRewindSharp", - "FastRewindTwoTone", - "Fastfood", - "FastfoodOutlined", - "FastfoodRounded", - "FastfoodSharp", - "FastfoodTwoTone", - "Favorite", - "FavoriteBorder", - "FavoriteBorderOutlined", - "FavoriteBorderRounded", - "FavoriteBorderSharp", - "FavoriteBorderTwoTone", - "FavoriteOutlined", - "FavoriteRounded", - "FavoriteSharp", - "FavoriteTwoTone", - "Fax", - "FaxOutlined", - "FaxRounded", - "FaxSharp", - "FaxTwoTone", - "FeaturedPlayList", - "FeaturedPlayListOutlined", - "FeaturedPlayListRounded", - "FeaturedPlayListSharp", - "FeaturedPlayListTwoTone", - "FeaturedVideo", - "FeaturedVideoOutlined", - "FeaturedVideoRounded", - "FeaturedVideoSharp", - "FeaturedVideoTwoTone", - "Feed", - "FeedOutlined", - "FeedRounded", - "FeedSharp", - "FeedTwoTone", - "Feedback", - "FeedbackOutlined", - "FeedbackRounded", - "FeedbackSharp", - "FeedbackTwoTone", - "Female", - "FemaleOutlined", - "FemaleRounded", - "FemaleSharp", - "FemaleTwoTone", - "Fence", - "FenceOutlined", - "FenceRounded", - "FenceSharp", - "FenceTwoTone", - "Festival", - "FestivalOutlined", - "FestivalRounded", - "FestivalSharp", - "FestivalTwoTone", - "FiberDvr", - "FiberDvrOutlined", - "FiberDvrRounded", - "FiberDvrSharp", - "FiberDvrTwoTone", - "FiberManualRecord", - "FiberManualRecordOutlined", - "FiberManualRecordRounded", - "FiberManualRecordSharp", - "FiberManualRecordTwoTone", - "FiberNew", - "FiberNewOutlined", - "FiberNewRounded", - "FiberNewSharp", - "FiberNewTwoTone", - "FiberPin", - "FiberPinOutlined", - "FiberPinRounded", - "FiberPinSharp", - "FiberPinTwoTone", - "FiberSmartRecord", - "FiberSmartRecordOutlined", - "FiberSmartRecordRounded", - "FiberSmartRecordSharp", - "FiberSmartRecordTwoTone", - "FileCopy", - "FileCopyOutlined", - "FileCopyRounded", - "FileCopySharp", - "FileCopyTwoTone", - "FileDownload", - "FileDownloadDone", - "FileDownloadDoneOutlined", - "FileDownloadDoneRounded", - "FileDownloadDoneSharp", - "FileDownloadDoneTwoTone", - "FileDownloadOff", - "FileDownloadOffOutlined", - "FileDownloadOffRounded", - "FileDownloadOffSharp", - "FileDownloadOffTwoTone", - "FileDownloadOutlined", - "FileDownloadRounded", - "FileDownloadSharp", - "FileDownloadTwoTone", - "FileOpen", - "FileOpenOutlined", - "FileOpenRounded", - "FileOpenSharp", - "FileOpenTwoTone", - "FilePresent", - "FilePresentOutlined", - "FilePresentRounded", - "FilePresentSharp", - "FilePresentTwoTone", - "FileUpload", - "FileUploadOutlined", - "FileUploadRounded", - "FileUploadSharp", - "FileUploadTwoTone", - "Filter", - "Filter1", - "Filter1Outlined", - "Filter1Rounded", - "Filter1Sharp", - "Filter1TwoTone", - "Filter2", - "Filter2Outlined", - "Filter2Rounded", - "Filter2Sharp", - "Filter2TwoTone", - "Filter3", - "Filter3Outlined", - "Filter3Rounded", - "Filter3Sharp", - "Filter3TwoTone", - "Filter4", - "Filter4Outlined", - "Filter4Rounded", - "Filter4Sharp", - "Filter4TwoTone", - "Filter5", - "Filter5Outlined", - "Filter5Rounded", - "Filter5Sharp", - "Filter5TwoTone", - "Filter6", - "Filter6Outlined", - "Filter6Rounded", - "Filter6Sharp", - "Filter6TwoTone", - "Filter7", - "Filter7Outlined", - "Filter7Rounded", - "Filter7Sharp", - "Filter7TwoTone", - "Filter8", - "Filter8Outlined", - "Filter8Rounded", - "Filter8Sharp", - "Filter8TwoTone", - "Filter9", - "Filter9Outlined", - "Filter9Plus", - "Filter9PlusOutlined", - "Filter9PlusRounded", - "Filter9PlusSharp", - "Filter9PlusTwoTone", - "Filter9Rounded", - "Filter9Sharp", - "Filter9TwoTone", - "FilterAlt", - "FilterAltOff", - "FilterAltOffOutlined", - "FilterAltOffRounded", - "FilterAltOffSharp", - "FilterAltOffTwoTone", - "FilterAltOutlined", - "FilterAltRounded", - "FilterAltSharp", - "FilterAltTwoTone", - "FilterBAndW", - "FilterBAndWOutlined", - "FilterBAndWRounded", - "FilterBAndWSharp", - "FilterBAndWTwoTone", - "FilterCenterFocus", - "FilterCenterFocusOutlined", - "FilterCenterFocusRounded", - "FilterCenterFocusSharp", - "FilterCenterFocusTwoTone", - "FilterDrama", - "FilterDramaOutlined", - "FilterDramaRounded", - "FilterDramaSharp", - "FilterDramaTwoTone", - "FilterFrames", - "FilterFramesOutlined", - "FilterFramesRounded", - "FilterFramesSharp", - "FilterFramesTwoTone", - "FilterHdr", - "FilterHdrOutlined", - "FilterHdrRounded", - "FilterHdrSharp", - "FilterHdrTwoTone", - "FilterList", - "FilterListOff", - "FilterListOffOutlined", - "FilterListOffRounded", - "FilterListOffSharp", - "FilterListOffTwoTone", - "FilterListOutlined", - "FilterListRounded", - "FilterListSharp", - "FilterListTwoTone", - "FilterNone", - "FilterNoneOutlined", - "FilterNoneRounded", - "FilterNoneSharp", - "FilterNoneTwoTone", - "FilterOutlined", - "FilterRounded", - "FilterSharp", - "FilterTiltShift", - "FilterTiltShiftOutlined", - "FilterTiltShiftRounded", - "FilterTiltShiftSharp", - "FilterTiltShiftTwoTone", - "FilterTwoTone", - "FilterVintage", - "FilterVintageOutlined", - "FilterVintageRounded", - "FilterVintageSharp", - "FilterVintageTwoTone", - "FindInPage", - "FindInPageOutlined", - "FindInPageRounded", - "FindInPageSharp", - "FindInPageTwoTone", - "FindReplace", - "FindReplaceOutlined", - "FindReplaceRounded", - "FindReplaceSharp", - "FindReplaceTwoTone", - "Fingerprint", - "FingerprintOutlined", - "FingerprintRounded", - "FingerprintSharp", - "FingerprintTwoTone", - "FireExtinguisher", - "FireExtinguisherOutlined", - "FireExtinguisherRounded", - "FireExtinguisherSharp", - "FireExtinguisherTwoTone", - "FireTruck", - "FireTruckOutlined", - "FireTruckRounded", - "FireTruckSharp", - "FireTruckTwoTone", - "Fireplace", - "FireplaceOutlined", - "FireplaceRounded", - "FireplaceSharp", - "FireplaceTwoTone", - "FirstPage", - "FirstPageOutlined", - "FirstPageRounded", - "FirstPageSharp", - "FirstPageTwoTone", - "FitScreen", - "FitScreenOutlined", - "FitScreenRounded", - "FitScreenSharp", - "FitScreenTwoTone", - "FitnessCenter", - "FitnessCenterOutlined", - "FitnessCenterRounded", - "FitnessCenterSharp", - "FitnessCenterTwoTone", - "Flag", - "FlagCircle", - "FlagCircleOutlined", - "FlagCircleRounded", - "FlagCircleSharp", - "FlagCircleTwoTone", - "FlagOutlined", - "FlagRounded", - "FlagSharp", - "FlagTwoTone", - "Flaky", - "FlakyOutlined", - "FlakyRounded", - "FlakySharp", - "FlakyTwoTone", - "Flare", - "FlareOutlined", - "FlareRounded", - "FlareSharp", - "FlareTwoTone", - "FlashAuto", - "FlashAutoOutlined", - "FlashAutoRounded", - "FlashAutoSharp", - "FlashAutoTwoTone", - "FlashOff", - "FlashOffOutlined", - "FlashOffRounded", - "FlashOffSharp", - "FlashOffTwoTone", - "FlashOn", - "FlashOnOutlined", - "FlashOnRounded", - "FlashOnSharp", - "FlashOnTwoTone", - "FlashlightOff", - "FlashlightOffOutlined", - "FlashlightOffRounded", - "FlashlightOffSharp", - "FlashlightOffTwoTone", - "FlashlightOn", - "FlashlightOnOutlined", - "FlashlightOnRounded", - "FlashlightOnSharp", - "FlashlightOnTwoTone", - "Flatware", - "FlatwareOutlined", - "FlatwareRounded", - "FlatwareSharp", - "FlatwareTwoTone", - "Flight", - "FlightClass", - "FlightClassOutlined", - "FlightClassRounded", - "FlightClassSharp", - "FlightClassTwoTone", - "FlightLand", - "FlightLandOutlined", - "FlightLandRounded", - "FlightLandSharp", - "FlightLandTwoTone", - "FlightOutlined", - "FlightRounded", - "FlightSharp", - "FlightTakeoff", - "FlightTakeoffOutlined", - "FlightTakeoffRounded", - "FlightTakeoffSharp", - "FlightTakeoffTwoTone", - "FlightTwoTone", - "Flip", - "FlipCameraAndroid", - "FlipCameraAndroidOutlined", - "FlipCameraAndroidRounded", - "FlipCameraAndroidSharp", - "FlipCameraAndroidTwoTone", - "FlipCameraIos", - "FlipCameraIosOutlined", - "FlipCameraIosRounded", - "FlipCameraIosSharp", - "FlipCameraIosTwoTone", - "FlipOutlined", - "FlipRounded", - "FlipSharp", - "FlipToBack", - "FlipToBackOutlined", - "FlipToBackRounded", - "FlipToBackSharp", - "FlipToBackTwoTone", - "FlipToFront", - "FlipToFrontOutlined", - "FlipToFrontRounded", - "FlipToFrontSharp", - "FlipToFrontTwoTone", - "FlipTwoTone", - "Flood", - "FloodOutlined", - "FloodRounded", - "FloodSharp", - "FloodTwoTone", - "Fluorescent", - "FluorescentOutlined", - "FluorescentRounded", - "FluorescentSharp", - "FluorescentTwoTone", - "FlutterDash", - "FlutterDashOutlined", - "FlutterDashRounded", - "FlutterDashSharp", - "FlutterDashTwoTone", - "FmdBad", - "FmdBadOutlined", - "FmdBadRounded", - "FmdBadSharp", - "FmdBadTwoTone", - "FmdGood", - "FmdGoodOutlined", - "FmdGoodRounded", - "FmdGoodSharp", - "FmdGoodTwoTone", - "Folder", - "FolderCopy", - "FolderCopyOutlined", - "FolderCopyRounded", - "FolderCopySharp", - "FolderCopyTwoTone", - "FolderDelete", - "FolderDeleteOutlined", - "FolderDeleteRounded", - "FolderDeleteSharp", - "FolderDeleteTwoTone", - "FolderOff", - "FolderOffOutlined", - "FolderOffRounded", - "FolderOffSharp", - "FolderOffTwoTone", - "FolderOpen", - "FolderOpenOutlined", - "FolderOpenRounded", - "FolderOpenSharp", - "FolderOpenTwoTone", - "FolderOutlined", - "FolderRounded", - "FolderShared", - "FolderSharedOutlined", - "FolderSharedRounded", - "FolderSharedSharp", - "FolderSharedTwoTone", - "FolderSharp", - "FolderSpecial", - "FolderSpecialOutlined", - "FolderSpecialRounded", - "FolderSpecialSharp", - "FolderSpecialTwoTone", - "FolderTwoTone", - "FolderZip", - "FolderZipOutlined", - "FolderZipRounded", - "FolderZipSharp", - "FolderZipTwoTone", - "FollowTheSigns", - "FollowTheSignsOutlined", - "FollowTheSignsRounded", - "FollowTheSignsSharp", - "FollowTheSignsTwoTone", - "FontDownload", - "FontDownloadOff", - "FontDownloadOffOutlined", - "FontDownloadOffRounded", - "FontDownloadOffSharp", - "FontDownloadOffTwoTone", - "FontDownloadOutlined", - "FontDownloadRounded", - "FontDownloadSharp", - "FontDownloadTwoTone", - "FoodBank", - "FoodBankOutlined", - "FoodBankRounded", - "FoodBankSharp", - "FoodBankTwoTone", - "Forest", - "ForestOutlined", - "ForestRounded", - "ForestSharp", - "ForestTwoTone", - "ForkLeft", - "ForkLeftOutlined", - "ForkLeftRounded", - "ForkLeftSharp", - "ForkLeftTwoTone", - "ForkRight", - "ForkRightOutlined", - "ForkRightRounded", - "ForkRightSharp", - "ForkRightTwoTone", - "FormatAlignCenter", - "FormatAlignCenterOutlined", - "FormatAlignCenterRounded", - "FormatAlignCenterSharp", - "FormatAlignCenterTwoTone", - "FormatAlignJustify", - "FormatAlignJustifyOutlined", - "FormatAlignJustifyRounded", - "FormatAlignJustifySharp", - "FormatAlignJustifyTwoTone", - "FormatAlignLeft", - "FormatAlignLeftOutlined", - "FormatAlignLeftRounded", - "FormatAlignLeftSharp", - "FormatAlignLeftTwoTone", - "FormatAlignRight", - "FormatAlignRightOutlined", - "FormatAlignRightRounded", - "FormatAlignRightSharp", - "FormatAlignRightTwoTone", - "FormatBold", - "FormatBoldOutlined", - "FormatBoldRounded", - "FormatBoldSharp", - "FormatBoldTwoTone", - "FormatClear", - "FormatClearOutlined", - "FormatClearRounded", - "FormatClearSharp", - "FormatClearTwoTone", - "FormatColorFill", - "FormatColorFillOutlined", - "FormatColorFillRounded", - "FormatColorFillSharp", - "FormatColorFillTwoTone", - "FormatColorReset", - "FormatColorResetOutlined", - "FormatColorResetRounded", - "FormatColorResetSharp", - "FormatColorResetTwoTone", - "FormatColorText", - "FormatColorTextOutlined", - "FormatColorTextRounded", - "FormatColorTextSharp", - "FormatColorTextTwoTone", - "FormatIndentDecrease", - "FormatIndentDecreaseOutlined", - "FormatIndentDecreaseRounded", - "FormatIndentDecreaseSharp", - "FormatIndentDecreaseTwoTone", - "FormatIndentIncrease", - "FormatIndentIncreaseOutlined", - "FormatIndentIncreaseRounded", - "FormatIndentIncreaseSharp", - "FormatIndentIncreaseTwoTone", - "FormatItalic", - "FormatItalicOutlined", - "FormatItalicRounded", - "FormatItalicSharp", - "FormatItalicTwoTone", - "FormatLineSpacing", - "FormatLineSpacingOutlined", - "FormatLineSpacingRounded", - "FormatLineSpacingSharp", - "FormatLineSpacingTwoTone", - "FormatListBulleted", - "FormatListBulletedOutlined", - "FormatListBulletedRounded", - "FormatListBulletedSharp", - "FormatListBulletedTwoTone", - "FormatListNumbered", - "FormatListNumberedOutlined", - "FormatListNumberedRounded", - "FormatListNumberedRtl", - "FormatListNumberedRtlOutlined", - "FormatListNumberedRtlRounded", - "FormatListNumberedRtlSharp", - "FormatListNumberedRtlTwoTone", - "FormatListNumberedSharp", - "FormatListNumberedTwoTone", - "FormatOverline", - "FormatOverlineOutlined", - "FormatOverlineRounded", - "FormatOverlineSharp", - "FormatOverlineTwoTone", - "FormatPaint", - "FormatPaintOutlined", - "FormatPaintRounded", - "FormatPaintSharp", - "FormatPaintTwoTone", - "FormatQuote", - "FormatQuoteOutlined", - "FormatQuoteRounded", - "FormatQuoteSharp", - "FormatQuoteTwoTone", - "FormatShapes", - "FormatShapesOutlined", - "FormatShapesRounded", - "FormatShapesSharp", - "FormatShapesTwoTone", - "FormatSize", - "FormatSizeOutlined", - "FormatSizeRounded", - "FormatSizeSharp", - "FormatSizeTwoTone", - "FormatStrikethrough", - "FormatStrikethroughOutlined", - "FormatStrikethroughRounded", - "FormatStrikethroughSharp", - "FormatStrikethroughTwoTone", - "FormatTextdirectionLToR", - "FormatTextdirectionLToROutlined", - "FormatTextdirectionLToRRounded", - "FormatTextdirectionLToRSharp", - "FormatTextdirectionLToRTwoTone", - "FormatTextdirectionRToL", - "FormatTextdirectionRToLOutlined", - "FormatTextdirectionRToLRounded", - "FormatTextdirectionRToLSharp", - "FormatTextdirectionRToLTwoTone", - "FormatUnderlined", - "FormatUnderlinedOutlined", - "FormatUnderlinedRounded", - "FormatUnderlinedSharp", - "FormatUnderlinedTwoTone", - "Fort", - "FortOutlined", - "FortRounded", - "FortSharp", - "FortTwoTone", - "Forum", - "ForumOutlined", - "ForumRounded", - "ForumSharp", - "ForumTwoTone", - "Forward", - "Forward10", - "Forward10Outlined", - "Forward10Rounded", - "Forward10Sharp", - "Forward10TwoTone", - "Forward30", - "Forward30Outlined", - "Forward30Rounded", - "Forward30Sharp", - "Forward30TwoTone", - "Forward5", - "Forward5Outlined", - "Forward5Rounded", - "Forward5Sharp", - "Forward5TwoTone", - "ForwardOutlined", - "ForwardRounded", - "ForwardSharp", - "ForwardToInbox", - "ForwardToInboxOutlined", - "ForwardToInboxRounded", - "ForwardToInboxSharp", - "ForwardToInboxTwoTone", - "ForwardTwoTone", - "Foundation", - "FoundationOutlined", - "FoundationRounded", - "FoundationSharp", - "FoundationTwoTone", - "FreeBreakfast", - "FreeBreakfastOutlined", - "FreeBreakfastRounded", - "FreeBreakfastSharp", - "FreeBreakfastTwoTone", - "Fullscreen", - "FullscreenExit", - "FullscreenExitOutlined", - "FullscreenExitRounded", - "FullscreenExitSharp", - "FullscreenExitTwoTone", - "FullscreenOutlined", - "FullscreenRounded", - "FullscreenSharp", - "FullscreenTwoTone", - "Functions", - "FunctionsOutlined", - "FunctionsRounded", - "FunctionsSharp", - "FunctionsTwoTone", - "GMobiledata", - "GMobiledataOutlined", - "GMobiledataRounded", - "GMobiledataSharp", - "GMobiledataTwoTone", - "GTranslate", - "GTranslateOutlined", - "GTranslateRounded", - "GTranslateSharp", - "GTranslateTwoTone", - "Gamepad", - "GamepadOutlined", - "GamepadRounded", - "GamepadSharp", - "GamepadTwoTone", - "Games", - "GamesOutlined", - "GamesRounded", - "GamesSharp", - "GamesTwoTone", - "Garage", - "GarageOutlined", - "GarageRounded", - "GarageSharp", - "GarageTwoTone", - "GasMeter", - "GasMeterOutlined", - "GasMeterRounded", - "GasMeterSharp", - "GasMeterTwoTone", - "Gavel", - "GavelOutlined", - "GavelRounded", - "GavelSharp", - "GavelTwoTone", - "Gesture", - "GestureOutlined", - "GestureRounded", - "GestureSharp", - "GestureTwoTone", - "GetApp", - "GetAppOutlined", - "GetAppRounded", - "GetAppSharp", - "GetAppTwoTone", - "Gif", - "GifBox", - "GifBoxOutlined", - "GifBoxRounded", - "GifBoxSharp", - "GifBoxTwoTone", - "GifOutlined", - "GifRounded", - "GifSharp", - "GifTwoTone", - "Girl", - "GirlOutlined", - "GirlRounded", - "GirlSharp", - "GirlTwoTone", - "GitHub", - "Gite", - "GiteOutlined", - "GiteRounded", - "GiteSharp", - "GiteTwoTone", - "GolfCourse", - "GolfCourseOutlined", - "GolfCourseRounded", - "GolfCourseSharp", - "GolfCourseTwoTone", - "Google", - "GppBad", - "GppBadOutlined", - "GppBadRounded", - "GppBadSharp", - "GppBadTwoTone", - "GppGood", - "GppGoodOutlined", - "GppGoodRounded", - "GppGoodSharp", - "GppGoodTwoTone", - "GppMaybe", - "GppMaybeOutlined", - "GppMaybeRounded", - "GppMaybeSharp", - "GppMaybeTwoTone", - "GpsFixed", - "GpsFixedOutlined", - "GpsFixedRounded", - "GpsFixedSharp", - "GpsFixedTwoTone", - "GpsNotFixed", - "GpsNotFixedOutlined", - "GpsNotFixedRounded", - "GpsNotFixedSharp", - "GpsNotFixedTwoTone", - "GpsOff", - "GpsOffOutlined", - "GpsOffRounded", - "GpsOffSharp", - "GpsOffTwoTone", - "Grade", - "GradeOutlined", - "GradeRounded", - "GradeSharp", - "GradeTwoTone", - "Gradient", - "GradientOutlined", - "GradientRounded", - "GradientSharp", - "GradientTwoTone", - "Grading", - "GradingOutlined", - "GradingRounded", - "GradingSharp", - "GradingTwoTone", - "Grain", - "GrainOutlined", - "GrainRounded", - "GrainSharp", - "GrainTwoTone", - "GraphicEq", - "GraphicEqOutlined", - "GraphicEqRounded", - "GraphicEqSharp", - "GraphicEqTwoTone", - "Grass", - "GrassOutlined", - "GrassRounded", - "GrassSharp", - "GrassTwoTone", - "GridGoldenratio", - "GridGoldenratioOutlined", - "GridGoldenratioRounded", - "GridGoldenratioSharp", - "GridGoldenratioTwoTone", - "GridOff", - "GridOffOutlined", - "GridOffRounded", - "GridOffSharp", - "GridOffTwoTone", - "GridOn", - "GridOnOutlined", - "GridOnRounded", - "GridOnSharp", - "GridOnTwoTone", - "GridView", - "GridViewOutlined", - "GridViewRounded", - "GridViewSharp", - "GridViewTwoTone", - "Group", - "GroupAdd", - "GroupAddOutlined", - "GroupAddRounded", - "GroupAddSharp", - "GroupAddTwoTone", - "GroupOutlined", - "GroupRemove", - "GroupRemoveOutlined", - "GroupRemoveRounded", - "GroupRemoveSharp", - "GroupRemoveTwoTone", - "GroupRounded", - "GroupSharp", - "GroupTwoTone", - "GroupWork", - "GroupWorkOutlined", - "GroupWorkRounded", - "GroupWorkSharp", - "GroupWorkTwoTone", - "Groups", - "Groups2", - "Groups2Outlined", - "Groups2Rounded", - "Groups2Sharp", - "Groups2TwoTone", - "Groups3", - "Groups3Outlined", - "Groups3Rounded", - "Groups3Sharp", - "Groups3TwoTone", - "GroupsOutlined", - "GroupsRounded", - "GroupsSharp", - "GroupsTwoTone", - "HMobiledata", - "HMobiledataOutlined", - "HMobiledataRounded", - "HMobiledataSharp", - "HMobiledataTwoTone", - "HPlusMobiledata", - "HPlusMobiledataOutlined", - "HPlusMobiledataRounded", - "HPlusMobiledataSharp", - "HPlusMobiledataTwoTone", - "Hail", - "HailOutlined", - "HailRounded", - "HailSharp", - "HailTwoTone", - "Handshake", - "HandshakeOutlined", - "HandshakeRounded", - "HandshakeSharp", - "HandshakeTwoTone", - "Handyman", - "HandymanOutlined", - "HandymanRounded", - "HandymanSharp", - "HandymanTwoTone", - "Hardware", - "HardwareOutlined", - "HardwareRounded", - "HardwareSharp", - "HardwareTwoTone", - "Hd", - "HdOutlined", - "HdRounded", - "HdSharp", - "HdTwoTone", - "HdrAuto", - "HdrAutoOutlined", - "HdrAutoRounded", - "HdrAutoSelect", - "HdrAutoSelectOutlined", - "HdrAutoSelectRounded", - "HdrAutoSelectSharp", - "HdrAutoSelectTwoTone", - "HdrAutoSharp", - "HdrAutoTwoTone", - "HdrEnhancedSelect", - "HdrEnhancedSelectOutlined", - "HdrEnhancedSelectRounded", - "HdrEnhancedSelectSharp", - "HdrEnhancedSelectTwoTone", - "HdrOff", - "HdrOffOutlined", - "HdrOffRounded", - "HdrOffSelect", - "HdrOffSelectOutlined", - "HdrOffSelectRounded", - "HdrOffSelectSharp", - "HdrOffSelectTwoTone", - "HdrOffSharp", - "HdrOffTwoTone", - "HdrOn", - "HdrOnOutlined", - "HdrOnRounded", - "HdrOnSelect", - "HdrOnSelectOutlined", - "HdrOnSelectRounded", - "HdrOnSelectSharp", - "HdrOnSelectTwoTone", - "HdrOnSharp", - "HdrOnTwoTone", - "HdrPlus", - "HdrPlusOutlined", - "HdrPlusRounded", - "HdrPlusSharp", - "HdrPlusTwoTone", - "HdrStrong", - "HdrStrongOutlined", - "HdrStrongRounded", - "HdrStrongSharp", - "HdrStrongTwoTone", - "HdrWeak", - "HdrWeakOutlined", - "HdrWeakRounded", - "HdrWeakSharp", - "HdrWeakTwoTone", - "Headphones", - "HeadphonesBattery", - "HeadphonesBatteryOutlined", - "HeadphonesBatteryRounded", - "HeadphonesBatterySharp", - "HeadphonesBatteryTwoTone", - "HeadphonesOutlined", - "HeadphonesRounded", - "HeadphonesSharp", - "HeadphonesTwoTone", - "Headset", - "HeadsetMic", - "HeadsetMicOutlined", - "HeadsetMicRounded", - "HeadsetMicSharp", - "HeadsetMicTwoTone", - "HeadsetOff", - "HeadsetOffOutlined", - "HeadsetOffRounded", - "HeadsetOffSharp", - "HeadsetOffTwoTone", - "HeadsetOutlined", - "HeadsetRounded", - "HeadsetSharp", - "HeadsetTwoTone", - "Healing", - "HealingOutlined", - "HealingRounded", - "HealingSharp", - "HealingTwoTone", - "HealthAndSafety", - "HealthAndSafetyOutlined", - "HealthAndSafetyRounded", - "HealthAndSafetySharp", - "HealthAndSafetyTwoTone", - "Hearing", - "HearingDisabled", - "HearingDisabledOutlined", - "HearingDisabledRounded", - "HearingDisabledSharp", - "HearingDisabledTwoTone", - "HearingOutlined", - "HearingRounded", - "HearingSharp", - "HearingTwoTone", - "HeartBroken", - "HeartBrokenOutlined", - "HeartBrokenRounded", - "HeartBrokenSharp", - "HeartBrokenTwoTone", - "HeatPump", - "HeatPumpOutlined", - "HeatPumpRounded", - "HeatPumpSharp", - "HeatPumpTwoTone", - "Height", - "HeightOutlined", - "HeightRounded", - "HeightSharp", - "HeightTwoTone", - "Help", - "HelpCenter", - "HelpCenterOutlined", - "HelpCenterRounded", - "HelpCenterSharp", - "HelpCenterTwoTone", - "HelpOutline", - "HelpOutlineOutlined", - "HelpOutlineRounded", - "HelpOutlineSharp", - "HelpOutlineTwoTone", - "HelpOutlined", - "HelpRounded", - "HelpSharp", - "HelpTwoTone", - "Hevc", - "HevcOutlined", - "HevcRounded", - "HevcSharp", - "HevcTwoTone", - "Hexagon", - "HexagonOutlined", - "HexagonRounded", - "HexagonSharp", - "HexagonTwoTone", - "HideImage", - "HideImageOutlined", - "HideImageRounded", - "HideImageSharp", - "HideImageTwoTone", - "HideSource", - "HideSourceOutlined", - "HideSourceRounded", - "HideSourceSharp", - "HideSourceTwoTone", - "HighQuality", - "HighQualityOutlined", - "HighQualityRounded", - "HighQualitySharp", - "HighQualityTwoTone", - "Highlight", - "HighlightOff", - "HighlightOffOutlined", - "HighlightOffRounded", - "HighlightOffSharp", - "HighlightOffTwoTone", - "HighlightOutlined", - "HighlightRounded", - "HighlightSharp", - "HighlightTwoTone", - "Hiking", - "HikingOutlined", - "HikingRounded", - "HikingSharp", - "HikingTwoTone", - "History", - "HistoryEdu", - "HistoryEduOutlined", - "HistoryEduRounded", - "HistoryEduSharp", - "HistoryEduTwoTone", - "HistoryOutlined", - "HistoryRounded", - "HistorySharp", - "HistoryToggleOff", - "HistoryToggleOffOutlined", - "HistoryToggleOffRounded", - "HistoryToggleOffSharp", - "HistoryToggleOffTwoTone", - "HistoryTwoTone", - "Hive", - "HiveOutlined", - "HiveRounded", - "HiveSharp", - "HiveTwoTone", - "Hls", - "HlsOff", - "HlsOffOutlined", - "HlsOffRounded", - "HlsOffSharp", - "HlsOffTwoTone", - "HlsOutlined", - "HlsRounded", - "HlsSharp", - "HlsTwoTone", - "HolidayVillage", - "HolidayVillageOutlined", - "HolidayVillageRounded", - "HolidayVillageSharp", - "HolidayVillageTwoTone", - "Home", - "HomeMax", - "HomeMaxOutlined", - "HomeMaxRounded", - "HomeMaxSharp", - "HomeMaxTwoTone", - "HomeMini", - "HomeMiniOutlined", - "HomeMiniRounded", - "HomeMiniSharp", - "HomeMiniTwoTone", - "HomeOutlined", - "HomeRepairService", - "HomeRepairServiceOutlined", - "HomeRepairServiceRounded", - "HomeRepairServiceSharp", - "HomeRepairServiceTwoTone", - "HomeRounded", - "HomeSharp", - "HomeTwoTone", - "HomeWork", - "HomeWorkOutlined", - "HomeWorkRounded", - "HomeWorkSharp", - "HomeWorkTwoTone", - "HorizontalRule", - "HorizontalRuleOutlined", - "HorizontalRuleRounded", - "HorizontalRuleSharp", - "HorizontalRuleTwoTone", - "HorizontalSplit", - "HorizontalSplitOutlined", - "HorizontalSplitRounded", - "HorizontalSplitSharp", - "HorizontalSplitTwoTone", - "HotTub", - "HotTubOutlined", - "HotTubRounded", - "HotTubSharp", - "HotTubTwoTone", - "Hotel", - "HotelOutlined", - "HotelRounded", - "HotelSharp", - "HotelTwoTone", - "HourglassBottom", - "HourglassBottomOutlined", - "HourglassBottomRounded", - "HourglassBottomSharp", - "HourglassBottomTwoTone", - "HourglassDisabled", - "HourglassDisabledOutlined", - "HourglassDisabledRounded", - "HourglassDisabledSharp", - "HourglassDisabledTwoTone", - "HourglassEmpty", - "HourglassEmptyOutlined", - "HourglassEmptyRounded", - "HourglassEmptySharp", - "HourglassEmptyTwoTone", - "HourglassFull", - "HourglassFullOutlined", - "HourglassFullRounded", - "HourglassFullSharp", - "HourglassFullTwoTone", - "HourglassTop", - "HourglassTopOutlined", - "HourglassTopRounded", - "HourglassTopSharp", - "HourglassTopTwoTone", - "House", - "HouseOutlined", - "HouseRounded", - "HouseSharp", - "HouseSiding", - "HouseSidingOutlined", - "HouseSidingRounded", - "HouseSidingSharp", - "HouseSidingTwoTone", - "HouseTwoTone", - "Houseboat", - "HouseboatOutlined", - "HouseboatRounded", - "HouseboatSharp", - "HouseboatTwoTone", - "HowToReg", - "HowToRegOutlined", - "HowToRegRounded", - "HowToRegSharp", - "HowToRegTwoTone", - "HowToVote", - "HowToVoteOutlined", - "HowToVoteRounded", - "HowToVoteSharp", - "HowToVoteTwoTone", - "Html", - "HtmlOutlined", - "HtmlRounded", - "HtmlSharp", - "HtmlTwoTone", - "Http", - "HttpOutlined", - "HttpRounded", - "HttpSharp", - "HttpTwoTone", - "Https", - "HttpsOutlined", - "HttpsRounded", - "HttpsSharp", - "HttpsTwoTone", - "Hub", - "HubOutlined", - "HubRounded", - "HubSharp", - "HubTwoTone", - "Hvac", - "HvacOutlined", - "HvacRounded", - "HvacSharp", - "HvacTwoTone", - "IceSkating", - "IceSkatingOutlined", - "IceSkatingRounded", - "IceSkatingSharp", - "IceSkatingTwoTone", - "Icecream", - "IcecreamOutlined", - "IcecreamRounded", - "IcecreamSharp", - "IcecreamTwoTone", - "Image", - "ImageAspectRatio", - "ImageAspectRatioOutlined", - "ImageAspectRatioRounded", - "ImageAspectRatioSharp", - "ImageAspectRatioTwoTone", - "ImageNotSupported", - "ImageNotSupportedOutlined", - "ImageNotSupportedRounded", - "ImageNotSupportedSharp", - "ImageNotSupportedTwoTone", - "ImageOutlined", - "ImageRounded", - "ImageSearch", - "ImageSearchOutlined", - "ImageSearchRounded", - "ImageSearchSharp", - "ImageSearchTwoTone", - "ImageSharp", - "ImageTwoTone", - "ImagesearchRoller", - "ImagesearchRollerOutlined", - "ImagesearchRollerRounded", - "ImagesearchRollerSharp", - "ImagesearchRollerTwoTone", - "ImportContacts", - "ImportContactsOutlined", - "ImportContactsRounded", - "ImportContactsSharp", - "ImportContactsTwoTone", - "ImportExport", - "ImportExportOutlined", - "ImportExportRounded", - "ImportExportSharp", - "ImportExportTwoTone", - "ImportantDevices", - "ImportantDevicesOutlined", - "ImportantDevicesRounded", - "ImportantDevicesSharp", - "ImportantDevicesTwoTone", - "Inbox", - "InboxOutlined", - "InboxRounded", - "InboxSharp", - "InboxTwoTone", - "IndeterminateCheckBox", - "IndeterminateCheckBoxOutlined", - "IndeterminateCheckBoxRounded", - "IndeterminateCheckBoxSharp", - "IndeterminateCheckBoxTwoTone", - "Info", - "InfoOutlined", - "InfoRounded", - "InfoSharp", - "InfoTwoTone", - "Input", - "InputOutlined", - "InputRounded", - "InputSharp", - "InputTwoTone", - "InsertChart", - "InsertChartOutlined", - "InsertChartOutlinedOutlined", - "InsertChartOutlinedRounded", - "InsertChartOutlinedSharp", - "InsertChartOutlinedTwoTone", - "InsertChartRounded", - "InsertChartSharp", - "InsertChartTwoTone", - "InsertComment", - "InsertCommentOutlined", - "InsertCommentRounded", - "InsertCommentSharp", - "InsertCommentTwoTone", - "InsertDriveFile", - "InsertDriveFileOutlined", - "InsertDriveFileRounded", - "InsertDriveFileSharp", - "InsertDriveFileTwoTone", - "InsertEmoticon", - "InsertEmoticonOutlined", - "InsertEmoticonRounded", - "InsertEmoticonSharp", - "InsertEmoticonTwoTone", - "InsertInvitation", - "InsertInvitationOutlined", - "InsertInvitationRounded", - "InsertInvitationSharp", - "InsertInvitationTwoTone", - "InsertLink", - "InsertLinkOutlined", - "InsertLinkRounded", - "InsertLinkSharp", - "InsertLinkTwoTone", - "InsertPageBreak", - "InsertPageBreakOutlined", - "InsertPageBreakRounded", - "InsertPageBreakSharp", - "InsertPageBreakTwoTone", - "InsertPhoto", - "InsertPhotoOutlined", - "InsertPhotoRounded", - "InsertPhotoSharp", - "InsertPhotoTwoTone", - "Insights", - "InsightsOutlined", - "InsightsRounded", - "InsightsSharp", - "InsightsTwoTone", - "Instagram", - "InstallDesktop", - "InstallDesktopOutlined", - "InstallDesktopRounded", - "InstallDesktopSharp", - "InstallDesktopTwoTone", - "InstallMobile", - "InstallMobileOutlined", - "InstallMobileRounded", - "InstallMobileSharp", - "InstallMobileTwoTone", - "IntegrationInstructions", - "IntegrationInstructionsOutlined", - "IntegrationInstructionsRounded", - "IntegrationInstructionsSharp", - "IntegrationInstructionsTwoTone", - "Interests", - "InterestsOutlined", - "InterestsRounded", - "InterestsSharp", - "InterestsTwoTone", - "InterpreterMode", - "InterpreterModeOutlined", - "InterpreterModeRounded", - "InterpreterModeSharp", - "InterpreterModeTwoTone", - "Inventory", - "Inventory2", - "Inventory2Outlined", - "Inventory2Rounded", - "Inventory2Sharp", - "Inventory2TwoTone", - "InventoryOutlined", - "InventoryRounded", - "InventorySharp", - "InventoryTwoTone", - "InvertColors", - "InvertColorsOff", - "InvertColorsOffOutlined", - "InvertColorsOffRounded", - "InvertColorsOffSharp", - "InvertColorsOffTwoTone", - "InvertColorsOutlined", - "InvertColorsRounded", - "InvertColorsSharp", - "InvertColorsTwoTone", - "IosShare", - "IosShareOutlined", - "IosShareRounded", - "IosShareSharp", - "IosShareTwoTone", - "Iron", - "IronOutlined", - "IronRounded", - "IronSharp", - "IronTwoTone", - "Iso", - "IsoOutlined", - "IsoRounded", - "IsoSharp", - "IsoTwoTone", - "Javascript", - "JavascriptOutlined", - "JavascriptRounded", - "JavascriptSharp", - "JavascriptTwoTone", - "JoinFull", - "JoinFullOutlined", - "JoinFullRounded", - "JoinFullSharp", - "JoinFullTwoTone", - "JoinInner", - "JoinInnerOutlined", - "JoinInnerRounded", - "JoinInnerSharp", - "JoinInnerTwoTone", - "JoinLeft", - "JoinLeftOutlined", - "JoinLeftRounded", - "JoinLeftSharp", - "JoinLeftTwoTone", - "JoinRight", - "JoinRightOutlined", - "JoinRightRounded", - "JoinRightSharp", - "JoinRightTwoTone", - "Kayaking", - "KayakingOutlined", - "KayakingRounded", - "KayakingSharp", - "KayakingTwoTone", - "KebabDining", - "KebabDiningOutlined", - "KebabDiningRounded", - "KebabDiningSharp", - "KebabDiningTwoTone", - "Key", - "KeyOff", - "KeyOffOutlined", - "KeyOffRounded", - "KeyOffSharp", - "KeyOffTwoTone", - "KeyOutlined", - "KeyRounded", - "KeySharp", - "KeyTwoTone", - "Keyboard", - "KeyboardAlt", - "KeyboardAltOutlined", - "KeyboardAltRounded", - "KeyboardAltSharp", - "KeyboardAltTwoTone", - "KeyboardArrowDown", - "KeyboardArrowDownOutlined", - "KeyboardArrowDownRounded", - "KeyboardArrowDownSharp", - "KeyboardArrowDownTwoTone", - "KeyboardArrowLeft", - "KeyboardArrowLeftOutlined", - "KeyboardArrowLeftRounded", - "KeyboardArrowLeftSharp", - "KeyboardArrowLeftTwoTone", - "KeyboardArrowRight", - "KeyboardArrowRightOutlined", - "KeyboardArrowRightRounded", - "KeyboardArrowRightSharp", - "KeyboardArrowRightTwoTone", - "KeyboardArrowUp", - "KeyboardArrowUpOutlined", - "KeyboardArrowUpRounded", - "KeyboardArrowUpSharp", - "KeyboardArrowUpTwoTone", - "KeyboardBackspace", - "KeyboardBackspaceOutlined", - "KeyboardBackspaceRounded", - "KeyboardBackspaceSharp", - "KeyboardBackspaceTwoTone", - "KeyboardCapslock", - "KeyboardCapslockOutlined", - "KeyboardCapslockRounded", - "KeyboardCapslockSharp", - "KeyboardCapslockTwoTone", - "KeyboardCommandKey", - "KeyboardCommandKeyOutlined", - "KeyboardCommandKeyRounded", - "KeyboardCommandKeySharp", - "KeyboardCommandKeyTwoTone", - "KeyboardControlKey", - "KeyboardControlKeyOutlined", - "KeyboardControlKeyRounded", - "KeyboardControlKeySharp", - "KeyboardControlKeyTwoTone", - "KeyboardDoubleArrowDown", - "KeyboardDoubleArrowDownOutlined", - "KeyboardDoubleArrowDownRounded", - "KeyboardDoubleArrowDownSharp", - "KeyboardDoubleArrowDownTwoTone", - "KeyboardDoubleArrowLeft", - "KeyboardDoubleArrowLeftOutlined", - "KeyboardDoubleArrowLeftRounded", - "KeyboardDoubleArrowLeftSharp", - "KeyboardDoubleArrowLeftTwoTone", - "KeyboardDoubleArrowRight", - "KeyboardDoubleArrowRightOutlined", - "KeyboardDoubleArrowRightRounded", - "KeyboardDoubleArrowRightSharp", - "KeyboardDoubleArrowRightTwoTone", - "KeyboardDoubleArrowUp", - "KeyboardDoubleArrowUpOutlined", - "KeyboardDoubleArrowUpRounded", - "KeyboardDoubleArrowUpSharp", - "KeyboardDoubleArrowUpTwoTone", - "KeyboardHide", - "KeyboardHideOutlined", - "KeyboardHideRounded", - "KeyboardHideSharp", - "KeyboardHideTwoTone", - "KeyboardOptionKey", - "KeyboardOptionKeyOutlined", - "KeyboardOptionKeyRounded", - "KeyboardOptionKeySharp", - "KeyboardOptionKeyTwoTone", - "KeyboardOutlined", - "KeyboardReturn", - "KeyboardReturnOutlined", - "KeyboardReturnRounded", - "KeyboardReturnSharp", - "KeyboardReturnTwoTone", - "KeyboardRounded", - "KeyboardSharp", - "KeyboardTab", - "KeyboardTabOutlined", - "KeyboardTabRounded", - "KeyboardTabSharp", - "KeyboardTabTwoTone", - "KeyboardTwoTone", - "KeyboardVoice", - "KeyboardVoiceOutlined", - "KeyboardVoiceRounded", - "KeyboardVoiceSharp", - "KeyboardVoiceTwoTone", - "KingBed", - "KingBedOutlined", - "KingBedRounded", - "KingBedSharp", - "KingBedTwoTone", - "Kitchen", - "KitchenOutlined", - "KitchenRounded", - "KitchenSharp", - "KitchenTwoTone", - "Kitesurfing", - "KitesurfingOutlined", - "KitesurfingRounded", - "KitesurfingSharp", - "KitesurfingTwoTone", - "Label", - "LabelImportant", - "LabelImportantOutlined", - "LabelImportantRounded", - "LabelImportantSharp", - "LabelImportantTwoTone", - "LabelOff", - "LabelOffOutlined", - "LabelOffRounded", - "LabelOffSharp", - "LabelOffTwoTone", - "LabelOutlined", - "LabelRounded", - "LabelSharp", - "LabelTwoTone", - "Lan", - "LanOutlined", - "LanRounded", - "LanSharp", - "LanTwoTone", - "Landscape", - "LandscapeOutlined", - "LandscapeRounded", - "LandscapeSharp", - "LandscapeTwoTone", - "Landslide", - "LandslideOutlined", - "LandslideRounded", - "LandslideSharp", - "LandslideTwoTone", - "Language", - "LanguageOutlined", - "LanguageRounded", - "LanguageSharp", - "LanguageTwoTone", - "Laptop", - "LaptopChromebook", - "LaptopChromebookOutlined", - "LaptopChromebookRounded", - "LaptopChromebookSharp", - "LaptopChromebookTwoTone", - "LaptopMac", - "LaptopMacOutlined", - "LaptopMacRounded", - "LaptopMacSharp", - "LaptopMacTwoTone", - "LaptopOutlined", - "LaptopRounded", - "LaptopSharp", - "LaptopTwoTone", - "LaptopWindows", - "LaptopWindowsOutlined", - "LaptopWindowsRounded", - "LaptopWindowsSharp", - "LaptopWindowsTwoTone", - "LastPage", - "LastPageOutlined", - "LastPageRounded", - "LastPageSharp", - "LastPageTwoTone", - "Launch", - "LaunchOutlined", - "LaunchRounded", - "LaunchSharp", - "LaunchTwoTone", - "Layers", - "LayersClear", - "LayersClearOutlined", - "LayersClearRounded", - "LayersClearSharp", - "LayersClearTwoTone", - "LayersOutlined", - "LayersRounded", - "LayersSharp", - "LayersTwoTone", - "Leaderboard", - "LeaderboardOutlined", - "LeaderboardRounded", - "LeaderboardSharp", - "LeaderboardTwoTone", - "LeakAdd", - "LeakAddOutlined", - "LeakAddRounded", - "LeakAddSharp", - "LeakAddTwoTone", - "LeakRemove", - "LeakRemoveOutlined", - "LeakRemoveRounded", - "LeakRemoveSharp", - "LeakRemoveTwoTone", - "LegendToggle", - "LegendToggleOutlined", - "LegendToggleRounded", - "LegendToggleSharp", - "LegendToggleTwoTone", - "Lens", - "LensBlur", - "LensBlurOutlined", - "LensBlurRounded", - "LensBlurSharp", - "LensBlurTwoTone", - "LensOutlined", - "LensRounded", - "LensSharp", - "LensTwoTone", - "LibraryAdd", - "LibraryAddCheck", - "LibraryAddCheckOutlined", - "LibraryAddCheckRounded", - "LibraryAddCheckSharp", - "LibraryAddCheckTwoTone", - "LibraryAddOutlined", - "LibraryAddRounded", - "LibraryAddSharp", - "LibraryAddTwoTone", - "LibraryBooks", - "LibraryBooksOutlined", - "LibraryBooksRounded", - "LibraryBooksSharp", - "LibraryBooksTwoTone", - "LibraryMusic", - "LibraryMusicOutlined", - "LibraryMusicRounded", - "LibraryMusicSharp", - "LibraryMusicTwoTone", - "Light", - "LightMode", - "LightModeOutlined", - "LightModeRounded", - "LightModeSharp", - "LightModeTwoTone", - "LightOutlined", - "LightRounded", - "LightSharp", - "LightTwoTone", - "Lightbulb", - "LightbulbCircle", - "LightbulbCircleOutlined", - "LightbulbCircleRounded", - "LightbulbCircleSharp", - "LightbulbCircleTwoTone", - "LightbulbOutlined", - "LightbulbRounded", - "LightbulbSharp", - "LightbulbTwoTone", - "LineAxis", - "LineAxisOutlined", - "LineAxisRounded", - "LineAxisSharp", - "LineAxisTwoTone", - "LineStyle", - "LineStyleOutlined", - "LineStyleRounded", - "LineStyleSharp", - "LineStyleTwoTone", - "LineWeight", - "LineWeightOutlined", - "LineWeightRounded", - "LineWeightSharp", - "LineWeightTwoTone", - "LinearScale", - "LinearScaleOutlined", - "LinearScaleRounded", - "LinearScaleSharp", - "LinearScaleTwoTone", - "Link", - "LinkOff", - "LinkOffOutlined", - "LinkOffRounded", - "LinkOffSharp", - "LinkOffTwoTone", - "LinkOutlined", - "LinkRounded", - "LinkSharp", - "LinkTwoTone", - "LinkedCamera", - "LinkedCameraOutlined", - "LinkedCameraRounded", - "LinkedCameraSharp", - "LinkedCameraTwoTone", - "LinkedIn", - "Liquor", - "LiquorOutlined", - "LiquorRounded", - "LiquorSharp", - "LiquorTwoTone", - "List", - "ListAlt", - "ListAltOutlined", - "ListAltRounded", - "ListAltSharp", - "ListAltTwoTone", - "ListOutlined", - "ListRounded", - "ListSharp", - "ListTwoTone", - "LiveHelp", - "LiveHelpOutlined", - "LiveHelpRounded", - "LiveHelpSharp", - "LiveHelpTwoTone", - "LiveTv", - "LiveTvOutlined", - "LiveTvRounded", - "LiveTvSharp", - "LiveTvTwoTone", - "Living", - "LivingOutlined", - "LivingRounded", - "LivingSharp", - "LivingTwoTone", - "LocalActivity", - "LocalActivityOutlined", - "LocalActivityRounded", - "LocalActivitySharp", - "LocalActivityTwoTone", - "LocalAirport", - "LocalAirportOutlined", - "LocalAirportRounded", - "LocalAirportSharp", - "LocalAirportTwoTone", - "LocalAtm", - "LocalAtmOutlined", - "LocalAtmRounded", - "LocalAtmSharp", - "LocalAtmTwoTone", - "LocalBar", - "LocalBarOutlined", - "LocalBarRounded", - "LocalBarSharp", - "LocalBarTwoTone", - "LocalCafe", - "LocalCafeOutlined", - "LocalCafeRounded", - "LocalCafeSharp", - "LocalCafeTwoTone", - "LocalCarWash", - "LocalCarWashOutlined", - "LocalCarWashRounded", - "LocalCarWashSharp", - "LocalCarWashTwoTone", - "LocalConvenienceStore", - "LocalConvenienceStoreOutlined", - "LocalConvenienceStoreRounded", - "LocalConvenienceStoreSharp", - "LocalConvenienceStoreTwoTone", - "LocalDining", - "LocalDiningOutlined", - "LocalDiningRounded", - "LocalDiningSharp", - "LocalDiningTwoTone", - "LocalDrink", - "LocalDrinkOutlined", - "LocalDrinkRounded", - "LocalDrinkSharp", - "LocalDrinkTwoTone", - "LocalFireDepartment", - "LocalFireDepartmentOutlined", - "LocalFireDepartmentRounded", - "LocalFireDepartmentSharp", - "LocalFireDepartmentTwoTone", - "LocalFlorist", - "LocalFloristOutlined", - "LocalFloristRounded", - "LocalFloristSharp", - "LocalFloristTwoTone", - "LocalGasStation", - "LocalGasStationOutlined", - "LocalGasStationRounded", - "LocalGasStationSharp", - "LocalGasStationTwoTone", - "LocalGroceryStore", - "LocalGroceryStoreOutlined", - "LocalGroceryStoreRounded", - "LocalGroceryStoreSharp", - "LocalGroceryStoreTwoTone", - "LocalHospital", - "LocalHospitalOutlined", - "LocalHospitalRounded", - "LocalHospitalSharp", - "LocalHospitalTwoTone", - "LocalHotel", - "LocalHotelOutlined", - "LocalHotelRounded", - "LocalHotelSharp", - "LocalHotelTwoTone", - "LocalLaundryService", - "LocalLaundryServiceOutlined", - "LocalLaundryServiceRounded", - "LocalLaundryServiceSharp", - "LocalLaundryServiceTwoTone", - "LocalLibrary", - "LocalLibraryOutlined", - "LocalLibraryRounded", - "LocalLibrarySharp", - "LocalLibraryTwoTone", - "LocalMall", - "LocalMallOutlined", - "LocalMallRounded", - "LocalMallSharp", - "LocalMallTwoTone", - "LocalMovies", - "LocalMoviesOutlined", - "LocalMoviesRounded", - "LocalMoviesSharp", - "LocalMoviesTwoTone", - "LocalOffer", - "LocalOfferOutlined", - "LocalOfferRounded", - "LocalOfferSharp", - "LocalOfferTwoTone", - "LocalParking", - "LocalParkingOutlined", - "LocalParkingRounded", - "LocalParkingSharp", - "LocalParkingTwoTone", - "LocalPharmacy", - "LocalPharmacyOutlined", - "LocalPharmacyRounded", - "LocalPharmacySharp", - "LocalPharmacyTwoTone", - "LocalPhone", - "LocalPhoneOutlined", - "LocalPhoneRounded", - "LocalPhoneSharp", - "LocalPhoneTwoTone", - "LocalPizza", - "LocalPizzaOutlined", - "LocalPizzaRounded", - "LocalPizzaSharp", - "LocalPizzaTwoTone", - "LocalPlay", - "LocalPlayOutlined", - "LocalPlayRounded", - "LocalPlaySharp", - "LocalPlayTwoTone", - "LocalPolice", - "LocalPoliceOutlined", - "LocalPoliceRounded", - "LocalPoliceSharp", - "LocalPoliceTwoTone", - "LocalPostOffice", - "LocalPostOfficeOutlined", - "LocalPostOfficeRounded", - "LocalPostOfficeSharp", - "LocalPostOfficeTwoTone", - "LocalPrintshop", - "LocalPrintshopOutlined", - "LocalPrintshopRounded", - "LocalPrintshopSharp", - "LocalPrintshopTwoTone", - "LocalSee", - "LocalSeeOutlined", - "LocalSeeRounded", - "LocalSeeSharp", - "LocalSeeTwoTone", - "LocalShipping", - "LocalShippingOutlined", - "LocalShippingRounded", - "LocalShippingSharp", - "LocalShippingTwoTone", - "LocalTaxi", - "LocalTaxiOutlined", - "LocalTaxiRounded", - "LocalTaxiSharp", - "LocalTaxiTwoTone", - "LocationCity", - "LocationCityOutlined", - "LocationCityRounded", - "LocationCitySharp", - "LocationCityTwoTone", - "LocationDisabled", - "LocationDisabledOutlined", - "LocationDisabledRounded", - "LocationDisabledSharp", - "LocationDisabledTwoTone", - "LocationOff", - "LocationOffOutlined", - "LocationOffRounded", - "LocationOffSharp", - "LocationOffTwoTone", - "LocationOn", - "LocationOnOutlined", - "LocationOnRounded", - "LocationOnSharp", - "LocationOnTwoTone", - "LocationSearching", - "LocationSearchingOutlined", - "LocationSearchingRounded", - "LocationSearchingSharp", - "LocationSearchingTwoTone", - "Lock", - "LockClock", - "LockClockOutlined", - "LockClockRounded", - "LockClockSharp", - "LockClockTwoTone", - "LockOpen", - "LockOpenOutlined", - "LockOpenRounded", - "LockOpenSharp", - "LockOpenTwoTone", - "LockOutlined", - "LockPerson", - "LockPersonOutlined", - "LockPersonRounded", - "LockPersonSharp", - "LockPersonTwoTone", - "LockReset", - "LockResetOutlined", - "LockResetRounded", - "LockResetSharp", - "LockResetTwoTone", - "LockRounded", - "LockSharp", - "LockTwoTone", - "Login", - "LoginOutlined", - "LoginRounded", - "LoginSharp", - "LoginTwoTone", - "LogoDev", - "LogoDevOutlined", - "LogoDevRounded", - "LogoDevSharp", - "LogoDevTwoTone", - "Logout", - "LogoutOutlined", - "LogoutRounded", - "LogoutSharp", - "LogoutTwoTone", - "Looks", - "Looks3", - "Looks3Outlined", - "Looks3Rounded", - "Looks3Sharp", - "Looks3TwoTone", - "Looks4", - "Looks4Outlined", - "Looks4Rounded", - "Looks4Sharp", - "Looks4TwoTone", - "Looks5", - "Looks5Outlined", - "Looks5Rounded", - "Looks5Sharp", - "Looks5TwoTone", - "Looks6", - "Looks6Outlined", - "Looks6Rounded", - "Looks6Sharp", - "Looks6TwoTone", - "LooksOne", - "LooksOneOutlined", - "LooksOneRounded", - "LooksOneSharp", - "LooksOneTwoTone", - "LooksOutlined", - "LooksRounded", - "LooksSharp", - "LooksTwo", - "LooksTwoOutlined", - "LooksTwoRounded", - "LooksTwoSharp", - "LooksTwoTone", - "LooksTwoTwoTone", - "Loop", - "LoopOutlined", - "LoopRounded", - "LoopSharp", - "LoopTwoTone", - "Loupe", - "LoupeOutlined", - "LoupeRounded", - "LoupeSharp", - "LoupeTwoTone", - "LowPriority", - "LowPriorityOutlined", - "LowPriorityRounded", - "LowPrioritySharp", - "LowPriorityTwoTone", - "Loyalty", - "LoyaltyOutlined", - "LoyaltyRounded", - "LoyaltySharp", - "LoyaltyTwoTone", - "LteMobiledata", - "LteMobiledataOutlined", - "LteMobiledataRounded", - "LteMobiledataSharp", - "LteMobiledataTwoTone", - "LtePlusMobiledata", - "LtePlusMobiledataOutlined", - "LtePlusMobiledataRounded", - "LtePlusMobiledataSharp", - "LtePlusMobiledataTwoTone", - "Luggage", - "LuggageOutlined", - "LuggageRounded", - "LuggageSharp", - "LuggageTwoTone", - "LunchDining", - "LunchDiningOutlined", - "LunchDiningRounded", - "LunchDiningSharp", - "LunchDiningTwoTone", - "Lyrics", - "LyricsOutlined", - "LyricsRounded", - "LyricsSharp", - "LyricsTwoTone", - "MacroOff", - "MacroOffOutlined", - "MacroOffRounded", - "MacroOffSharp", - "MacroOffTwoTone", - "Mail", - "MailLock", - "MailLockOutlined", - "MailLockRounded", - "MailLockSharp", - "MailLockTwoTone", - "MailOutline", - "MailOutlineOutlined", - "MailOutlineRounded", - "MailOutlineSharp", - "MailOutlineTwoTone", - "MailOutlined", - "MailRounded", - "MailSharp", - "MailTwoTone", - "Male", - "MaleOutlined", - "MaleRounded", - "MaleSharp", - "MaleTwoTone", - "Man", - "Man2", - "Man2Outlined", - "Man2Rounded", - "Man2Sharp", - "Man2TwoTone", - "Man3", - "Man3Outlined", - "Man3Rounded", - "Man3Sharp", - "Man3TwoTone", - "Man4", - "Man4Outlined", - "Man4Rounded", - "Man4Sharp", - "Man4TwoTone", - "ManOutlined", - "ManRounded", - "ManSharp", - "ManTwoTone", - "ManageAccounts", - "ManageAccountsOutlined", - "ManageAccountsRounded", - "ManageAccountsSharp", - "ManageAccountsTwoTone", - "ManageHistory", - "ManageHistoryOutlined", - "ManageHistoryRounded", - "ManageHistorySharp", - "ManageHistoryTwoTone", - "ManageSearch", - "ManageSearchOutlined", - "ManageSearchRounded", - "ManageSearchSharp", - "ManageSearchTwoTone", - "Map", - "MapOutlined", - "MapRounded", - "MapSharp", - "MapTwoTone", - "MapsHomeWork", - "MapsHomeWorkOutlined", - "MapsHomeWorkRounded", - "MapsHomeWorkSharp", - "MapsHomeWorkTwoTone", - "MapsUgc", - "MapsUgcOutlined", - "MapsUgcRounded", - "MapsUgcSharp", - "MapsUgcTwoTone", - "Margin", - "MarginOutlined", - "MarginRounded", - "MarginSharp", - "MarginTwoTone", - "MarkAsUnread", - "MarkAsUnreadOutlined", - "MarkAsUnreadRounded", - "MarkAsUnreadSharp", - "MarkAsUnreadTwoTone", - "MarkChatRead", - "MarkChatReadOutlined", - "MarkChatReadRounded", - "MarkChatReadSharp", - "MarkChatReadTwoTone", - "MarkChatUnread", - "MarkChatUnreadOutlined", - "MarkChatUnreadRounded", - "MarkChatUnreadSharp", - "MarkChatUnreadTwoTone", - "MarkEmailRead", - "MarkEmailReadOutlined", - "MarkEmailReadRounded", - "MarkEmailReadSharp", - "MarkEmailReadTwoTone", - "MarkEmailUnread", - "MarkEmailUnreadOutlined", - "MarkEmailUnreadRounded", - "MarkEmailUnreadSharp", - "MarkEmailUnreadTwoTone", - "MarkUnreadChatAlt", - "MarkUnreadChatAltOutlined", - "MarkUnreadChatAltRounded", - "MarkUnreadChatAltSharp", - "MarkUnreadChatAltTwoTone", - "Markunread", - "MarkunreadMailbox", - "MarkunreadMailboxOutlined", - "MarkunreadMailboxRounded", - "MarkunreadMailboxSharp", - "MarkunreadMailboxTwoTone", - "MarkunreadOutlined", - "MarkunreadRounded", - "MarkunreadSharp", - "MarkunreadTwoTone", - "Masks", - "MasksOutlined", - "MasksRounded", - "MasksSharp", - "MasksTwoTone", - "Maximize", - "MaximizeOutlined", - "MaximizeRounded", - "MaximizeSharp", - "MaximizeTwoTone", - "MediaBluetoothOff", - "MediaBluetoothOffOutlined", - "MediaBluetoothOffRounded", - "MediaBluetoothOffSharp", - "MediaBluetoothOffTwoTone", - "MediaBluetoothOn", - "MediaBluetoothOnOutlined", - "MediaBluetoothOnRounded", - "MediaBluetoothOnSharp", - "MediaBluetoothOnTwoTone", - "Mediation", - "MediationOutlined", - "MediationRounded", - "MediationSharp", - "MediationTwoTone", - "MedicalInformation", - "MedicalInformationOutlined", - "MedicalInformationRounded", - "MedicalInformationSharp", - "MedicalInformationTwoTone", - "MedicalServices", - "MedicalServicesOutlined", - "MedicalServicesRounded", - "MedicalServicesSharp", - "MedicalServicesTwoTone", - "Medication", - "MedicationLiquid", - "MedicationLiquidOutlined", - "MedicationLiquidRounded", - "MedicationLiquidSharp", - "MedicationLiquidTwoTone", - "MedicationOutlined", - "MedicationRounded", - "MedicationSharp", - "MedicationTwoTone", - "MeetingRoom", - "MeetingRoomOutlined", - "MeetingRoomRounded", - "MeetingRoomSharp", - "MeetingRoomTwoTone", - "Memory", - "MemoryOutlined", - "MemoryRounded", - "MemorySharp", - "MemoryTwoTone", - "Menu", - "MenuBook", - "MenuBookOutlined", - "MenuBookRounded", - "MenuBookSharp", - "MenuBookTwoTone", - "MenuOpen", - "MenuOpenOutlined", - "MenuOpenRounded", - "MenuOpenSharp", - "MenuOpenTwoTone", - "MenuOutlined", - "MenuRounded", - "MenuSharp", - "MenuTwoTone", - "Merge", - "MergeOutlined", - "MergeRounded", - "MergeSharp", - "MergeTwoTone", - "MergeType", - "MergeTypeOutlined", - "MergeTypeRounded", - "MergeTypeSharp", - "MergeTypeTwoTone", - "Message", - "MessageOutlined", - "MessageRounded", - "MessageSharp", - "MessageTwoTone", - "Mic", - "MicExternalOff", - "MicExternalOffOutlined", - "MicExternalOffRounded", - "MicExternalOffSharp", - "MicExternalOffTwoTone", - "MicExternalOn", - "MicExternalOnOutlined", - "MicExternalOnRounded", - "MicExternalOnSharp", - "MicExternalOnTwoTone", - "MicNone", - "MicNoneOutlined", - "MicNoneRounded", - "MicNoneSharp", - "MicNoneTwoTone", - "MicOff", - "MicOffOutlined", - "MicOffRounded", - "MicOffSharp", - "MicOffTwoTone", - "MicOutlined", - "MicRounded", - "MicSharp", - "MicTwoTone", - "Microsoft", - "Microwave", - "MicrowaveOutlined", - "MicrowaveRounded", - "MicrowaveSharp", - "MicrowaveTwoTone", - "MilitaryTech", - "MilitaryTechOutlined", - "MilitaryTechRounded", - "MilitaryTechSharp", - "MilitaryTechTwoTone", - "Minimize", - "MinimizeOutlined", - "MinimizeRounded", - "MinimizeSharp", - "MinimizeTwoTone", - "MinorCrash", - "MinorCrashOutlined", - "MinorCrashRounded", - "MinorCrashSharp", - "MinorCrashTwoTone", - "MissedVideoCall", - "MissedVideoCallOutlined", - "MissedVideoCallRounded", - "MissedVideoCallSharp", - "MissedVideoCallTwoTone", - "Mms", - "MmsOutlined", - "MmsRounded", - "MmsSharp", - "MmsTwoTone", - "MobileFriendly", - "MobileFriendlyOutlined", - "MobileFriendlyRounded", - "MobileFriendlySharp", - "MobileFriendlyTwoTone", - "MobileOff", - "MobileOffOutlined", - "MobileOffRounded", - "MobileOffSharp", - "MobileOffTwoTone", - "MobileScreenShare", - "MobileScreenShareOutlined", - "MobileScreenShareRounded", - "MobileScreenShareSharp", - "MobileScreenShareTwoTone", - "MobiledataOff", - "MobiledataOffOutlined", - "MobiledataOffRounded", - "MobiledataOffSharp", - "MobiledataOffTwoTone", - "Mode", - "ModeComment", - "ModeCommentOutlined", - "ModeCommentRounded", - "ModeCommentSharp", - "ModeCommentTwoTone", - "ModeEdit", - "ModeEditOutline", - "ModeEditOutlineOutlined", - "ModeEditOutlineRounded", - "ModeEditOutlineSharp", - "ModeEditOutlineTwoTone", - "ModeEditOutlined", - "ModeEditRounded", - "ModeEditSharp", - "ModeEditTwoTone", - "ModeFanOff", - "ModeFanOffOutlined", - "ModeFanOffRounded", - "ModeFanOffSharp", - "ModeFanOffTwoTone", - "ModeNight", - "ModeNightOutlined", - "ModeNightRounded", - "ModeNightSharp", - "ModeNightTwoTone", - "ModeOfTravel", - "ModeOfTravelOutlined", - "ModeOfTravelRounded", - "ModeOfTravelSharp", - "ModeOfTravelTwoTone", - "ModeOutlined", - "ModeRounded", - "ModeSharp", - "ModeStandby", - "ModeStandbyOutlined", - "ModeStandbyRounded", - "ModeStandbySharp", - "ModeStandbyTwoTone", - "ModeTwoTone", - "ModelTraining", - "ModelTrainingOutlined", - "ModelTrainingRounded", - "ModelTrainingSharp", - "ModelTrainingTwoTone", - "MonetizationOn", - "MonetizationOnOutlined", - "MonetizationOnRounded", - "MonetizationOnSharp", - "MonetizationOnTwoTone", - "Money", - "MoneyOff", - "MoneyOffCsred", - "MoneyOffCsredOutlined", - "MoneyOffCsredRounded", - "MoneyOffCsredSharp", - "MoneyOffCsredTwoTone", - "MoneyOffOutlined", - "MoneyOffRounded", - "MoneyOffSharp", - "MoneyOffTwoTone", - "MoneyOutlined", - "MoneyRounded", - "MoneySharp", - "MoneyTwoTone", - "Monitor", - "MonitorHeart", - "MonitorHeartOutlined", - "MonitorHeartRounded", - "MonitorHeartSharp", - "MonitorHeartTwoTone", - "MonitorOutlined", - "MonitorRounded", - "MonitorSharp", - "MonitorTwoTone", - "MonitorWeight", - "MonitorWeightOutlined", - "MonitorWeightRounded", - "MonitorWeightSharp", - "MonitorWeightTwoTone", - "MonochromePhotos", - "MonochromePhotosOutlined", - "MonochromePhotosRounded", - "MonochromePhotosSharp", - "MonochromePhotosTwoTone", - "Mood", - "MoodBad", - "MoodBadOutlined", - "MoodBadRounded", - "MoodBadSharp", - "MoodBadTwoTone", - "MoodOutlined", - "MoodRounded", - "MoodSharp", - "MoodTwoTone", - "More", - "MoreHoriz", - "MoreHorizOutlined", - "MoreHorizRounded", - "MoreHorizSharp", - "MoreHorizTwoTone", - "MoreOutlined", - "MoreRounded", - "MoreSharp", - "MoreTime", - "MoreTimeOutlined", - "MoreTimeRounded", - "MoreTimeSharp", - "MoreTimeTwoTone", - "MoreTwoTone", - "MoreVert", - "MoreVertOutlined", - "MoreVertRounded", - "MoreVertSharp", - "MoreVertTwoTone", - "Mosque", - "MosqueOutlined", - "MosqueRounded", - "MosqueSharp", - "MosqueTwoTone", - "MotionPhotosAuto", - "MotionPhotosAutoOutlined", - "MotionPhotosAutoRounded", - "MotionPhotosAutoSharp", - "MotionPhotosAutoTwoTone", - "MotionPhotosOff", - "MotionPhotosOffOutlined", - "MotionPhotosOffRounded", - "MotionPhotosOffSharp", - "MotionPhotosOffTwoTone", - "Mouse", - "MouseOutlined", - "MouseRounded", - "MouseSharp", - "MouseTwoTone", - "MoveDown", - "MoveDownOutlined", - "MoveDownRounded", - "MoveDownSharp", - "MoveDownTwoTone", - "MoveToInbox", - "MoveToInboxOutlined", - "MoveToInboxRounded", - "MoveToInboxSharp", - "MoveToInboxTwoTone", - "MoveUp", - "MoveUpOutlined", - "MoveUpRounded", - "MoveUpSharp", - "MoveUpTwoTone", - "Movie", - "MovieCreation", - "MovieCreationOutlined", - "MovieCreationRounded", - "MovieCreationSharp", - "MovieCreationTwoTone", - "MovieFilter", - "MovieFilterOutlined", - "MovieFilterRounded", - "MovieFilterSharp", - "MovieFilterTwoTone", - "MovieOutlined", - "MovieRounded", - "MovieSharp", - "MovieTwoTone", - "Moving", - "MovingOutlined", - "MovingRounded", - "MovingSharp", - "MovingTwoTone", - "Mp", - "MpOutlined", - "MpRounded", - "MpSharp", - "MpTwoTone", - "MultilineChart", - "MultilineChartOutlined", - "MultilineChartRounded", - "MultilineChartSharp", - "MultilineChartTwoTone", - "MultipleStop", - "MultipleStopOutlined", - "MultipleStopRounded", - "MultipleStopSharp", - "MultipleStopTwoTone", - "Museum", - "MuseumOutlined", - "MuseumRounded", - "MuseumSharp", - "MuseumTwoTone", - "MusicNote", - "MusicNoteOutlined", - "MusicNoteRounded", - "MusicNoteSharp", - "MusicNoteTwoTone", - "MusicOff", - "MusicOffOutlined", - "MusicOffRounded", - "MusicOffSharp", - "MusicOffTwoTone", - "MusicVideo", - "MusicVideoOutlined", - "MusicVideoRounded", - "MusicVideoSharp", - "MusicVideoTwoTone", - "MyLocation", - "MyLocationOutlined", - "MyLocationRounded", - "MyLocationSharp", - "MyLocationTwoTone", - "Nat", - "NatOutlined", - "NatRounded", - "NatSharp", - "NatTwoTone", - "Nature", - "NatureOutlined", - "NaturePeople", - "NaturePeopleOutlined", - "NaturePeopleRounded", - "NaturePeopleSharp", - "NaturePeopleTwoTone", - "NatureRounded", - "NatureSharp", - "NatureTwoTone", - "NavigateBefore", - "NavigateBeforeOutlined", - "NavigateBeforeRounded", - "NavigateBeforeSharp", - "NavigateBeforeTwoTone", - "NavigateNext", - "NavigateNextOutlined", - "NavigateNextRounded", - "NavigateNextSharp", - "NavigateNextTwoTone", - "Navigation", - "NavigationOutlined", - "NavigationRounded", - "NavigationSharp", - "NavigationTwoTone", - "NearMe", - "NearMeDisabled", - "NearMeDisabledOutlined", - "NearMeDisabledRounded", - "NearMeDisabledSharp", - "NearMeDisabledTwoTone", - "NearMeOutlined", - "NearMeRounded", - "NearMeSharp", - "NearMeTwoTone", - "NearbyError", - "NearbyErrorOutlined", - "NearbyErrorRounded", - "NearbyErrorSharp", - "NearbyErrorTwoTone", - "NearbyOff", - "NearbyOffOutlined", - "NearbyOffRounded", - "NearbyOffSharp", - "NearbyOffTwoTone", - "NestCamWiredStand", - "NestCamWiredStandOutlined", - "NestCamWiredStandRounded", - "NestCamWiredStandSharp", - "NestCamWiredStandTwoTone", - "NetworkCell", - "NetworkCellOutlined", - "NetworkCellRounded", - "NetworkCellSharp", - "NetworkCellTwoTone", - "NetworkCheck", - "NetworkCheckOutlined", - "NetworkCheckRounded", - "NetworkCheckSharp", - "NetworkCheckTwoTone", - "NetworkLocked", - "NetworkLockedOutlined", - "NetworkLockedRounded", - "NetworkLockedSharp", - "NetworkLockedTwoTone", - "NetworkPing", - "NetworkPingOutlined", - "NetworkPingRounded", - "NetworkPingSharp", - "NetworkPingTwoTone", - "NetworkWifi", - "NetworkWifi1Bar", - "NetworkWifi1BarOutlined", - "NetworkWifi1BarRounded", - "NetworkWifi1BarSharp", - "NetworkWifi1BarTwoTone", - "NetworkWifi2Bar", - "NetworkWifi2BarOutlined", - "NetworkWifi2BarRounded", - "NetworkWifi2BarSharp", - "NetworkWifi2BarTwoTone", - "NetworkWifi3Bar", - "NetworkWifi3BarOutlined", - "NetworkWifi3BarRounded", - "NetworkWifi3BarSharp", - "NetworkWifi3BarTwoTone", - "NetworkWifiOutlined", - "NetworkWifiRounded", - "NetworkWifiSharp", - "NetworkWifiTwoTone", - "NewReleases", - "NewReleasesOutlined", - "NewReleasesRounded", - "NewReleasesSharp", - "NewReleasesTwoTone", - "Newspaper", - "NewspaperOutlined", - "NewspaperRounded", - "NewspaperSharp", - "NewspaperTwoTone", - "NextPlan", - "NextPlanOutlined", - "NextPlanRounded", - "NextPlanSharp", - "NextPlanTwoTone", - "NextWeek", - "NextWeekOutlined", - "NextWeekRounded", - "NextWeekSharp", - "NextWeekTwoTone", - "Nfc", - "NfcOutlined", - "NfcRounded", - "NfcSharp", - "NfcTwoTone", - "NightShelter", - "NightShelterOutlined", - "NightShelterRounded", - "NightShelterSharp", - "NightShelterTwoTone", - "Nightlife", - "NightlifeOutlined", - "NightlifeRounded", - "NightlifeSharp", - "NightlifeTwoTone", - "Nightlight", - "NightlightOutlined", - "NightlightRound", - "NightlightRoundOutlined", - "NightlightRoundRounded", - "NightlightRoundSharp", - "NightlightRoundTwoTone", - "NightlightRounded", - "NightlightSharp", - "NightlightTwoTone", - "NightsStay", - "NightsStayOutlined", - "NightsStayRounded", - "NightsStaySharp", - "NightsStayTwoTone", - "NoAccounts", - "NoAccountsOutlined", - "NoAccountsRounded", - "NoAccountsSharp", - "NoAccountsTwoTone", - "NoAdultContent", - "NoAdultContentOutlined", - "NoAdultContentRounded", - "NoAdultContentSharp", - "NoAdultContentTwoTone", - "NoBackpack", - "NoBackpackOutlined", - "NoBackpackRounded", - "NoBackpackSharp", - "NoBackpackTwoTone", - "NoCrash", - "NoCrashOutlined", - "NoCrashRounded", - "NoCrashSharp", - "NoCrashTwoTone", - "NoDrinks", - "NoDrinksOutlined", - "NoDrinksRounded", - "NoDrinksSharp", - "NoDrinksTwoTone", - "NoEncryption", - "NoEncryptionGmailerrorred", - "NoEncryptionGmailerrorredOutlined", - "NoEncryptionGmailerrorredRounded", - "NoEncryptionGmailerrorredSharp", - "NoEncryptionGmailerrorredTwoTone", - "NoEncryptionOutlined", - "NoEncryptionRounded", - "NoEncryptionSharp", - "NoEncryptionTwoTone", - "NoFlash", - "NoFlashOutlined", - "NoFlashRounded", - "NoFlashSharp", - "NoFlashTwoTone", - "NoFood", - "NoFoodOutlined", - "NoFoodRounded", - "NoFoodSharp", - "NoFoodTwoTone", - "NoLuggage", - "NoLuggageOutlined", - "NoLuggageRounded", - "NoLuggageSharp", - "NoLuggageTwoTone", - "NoMeals", - "NoMealsOutlined", - "NoMealsRounded", - "NoMealsSharp", - "NoMealsTwoTone", - "NoMeetingRoom", - "NoMeetingRoomOutlined", - "NoMeetingRoomRounded", - "NoMeetingRoomSharp", - "NoMeetingRoomTwoTone", - "NoPhotography", - "NoPhotographyOutlined", - "NoPhotographyRounded", - "NoPhotographySharp", - "NoPhotographyTwoTone", - "NoSim", - "NoSimOutlined", - "NoSimRounded", - "NoSimSharp", - "NoSimTwoTone", - "NoStroller", - "NoStrollerOutlined", - "NoStrollerRounded", - "NoStrollerSharp", - "NoStrollerTwoTone", - "NoTransfer", - "NoTransferOutlined", - "NoTransferRounded", - "NoTransferSharp", - "NoTransferTwoTone", - "NoiseAware", - "NoiseAwareOutlined", - "NoiseAwareRounded", - "NoiseAwareSharp", - "NoiseAwareTwoTone", - "NoiseControlOff", - "NoiseControlOffOutlined", - "NoiseControlOffRounded", - "NoiseControlOffSharp", - "NoiseControlOffTwoTone", - "NordicWalking", - "NordicWalkingOutlined", - "NordicWalkingRounded", - "NordicWalkingSharp", - "NordicWalkingTwoTone", - "North", - "NorthEast", - "NorthEastOutlined", - "NorthEastRounded", - "NorthEastSharp", - "NorthEastTwoTone", - "NorthOutlined", - "NorthRounded", - "NorthSharp", - "NorthTwoTone", - "NorthWest", - "NorthWestOutlined", - "NorthWestRounded", - "NorthWestSharp", - "NorthWestTwoTone", - "NotAccessible", - "NotAccessibleOutlined", - "NotAccessibleRounded", - "NotAccessibleSharp", - "NotAccessibleTwoTone", - "NotInterested", - "NotInterestedOutlined", - "NotInterestedRounded", - "NotInterestedSharp", - "NotInterestedTwoTone", - "NotListedLocation", - "NotListedLocationOutlined", - "NotListedLocationRounded", - "NotListedLocationSharp", - "NotListedLocationTwoTone", - "NotStarted", - "NotStartedOutlined", - "NotStartedRounded", - "NotStartedSharp", - "NotStartedTwoTone", - "Note", - "NoteAdd", - "NoteAddOutlined", - "NoteAddRounded", - "NoteAddSharp", - "NoteAddTwoTone", - "NoteAlt", - "NoteAltOutlined", - "NoteAltRounded", - "NoteAltSharp", - "NoteAltTwoTone", - "NoteOutlined", - "NoteRounded", - "NoteSharp", - "NoteTwoTone", - "Notes", - "NotesOutlined", - "NotesRounded", - "NotesSharp", - "NotesTwoTone", - "NotificationAdd", - "NotificationAddOutlined", - "NotificationAddRounded", - "NotificationAddSharp", - "NotificationAddTwoTone", - "NotificationImportant", - "NotificationImportantOutlined", - "NotificationImportantRounded", - "NotificationImportantSharp", - "NotificationImportantTwoTone", - "Notifications", - "NotificationsActive", - "NotificationsActiveOutlined", - "NotificationsActiveRounded", - "NotificationsActiveSharp", - "NotificationsActiveTwoTone", - "NotificationsNone", - "NotificationsNoneOutlined", - "NotificationsNoneRounded", - "NotificationsNoneSharp", - "NotificationsNoneTwoTone", - "NotificationsOff", - "NotificationsOffOutlined", - "NotificationsOffRounded", - "NotificationsOffSharp", - "NotificationsOffTwoTone", - "NotificationsOutlined", - "NotificationsPaused", - "NotificationsPausedOutlined", - "NotificationsPausedRounded", - "NotificationsPausedSharp", - "NotificationsPausedTwoTone", - "NotificationsRounded", - "NotificationsSharp", - "NotificationsTwoTone", - "Numbers", - "NumbersOutlined", - "NumbersRounded", - "NumbersSharp", - "NumbersTwoTone", - "OfflineBolt", - "OfflineBoltOutlined", - "OfflineBoltRounded", - "OfflineBoltSharp", - "OfflineBoltTwoTone", - "OfflinePin", - "OfflinePinOutlined", - "OfflinePinRounded", - "OfflinePinSharp", - "OfflinePinTwoTone", - "OfflineShare", - "OfflineShareOutlined", - "OfflineShareRounded", - "OfflineShareSharp", - "OfflineShareTwoTone", - "OilBarrel", - "OilBarrelOutlined", - "OilBarrelRounded", - "OilBarrelSharp", - "OilBarrelTwoTone", - "OnDeviceTraining", - "OnDeviceTrainingOutlined", - "OnDeviceTrainingRounded", - "OnDeviceTrainingSharp", - "OnDeviceTrainingTwoTone", - "OndemandVideo", - "OndemandVideoOutlined", - "OndemandVideoRounded", - "OndemandVideoSharp", - "OndemandVideoTwoTone", - "OnlinePrediction", - "OnlinePredictionOutlined", - "OnlinePredictionRounded", - "OnlinePredictionSharp", - "OnlinePredictionTwoTone", - "Opacity", - "OpacityOutlined", - "OpacityRounded", - "OpacitySharp", - "OpacityTwoTone", - "OpenInBrowser", - "OpenInBrowserOutlined", - "OpenInBrowserRounded", - "OpenInBrowserSharp", - "OpenInBrowserTwoTone", - "OpenInFull", - "OpenInFullOutlined", - "OpenInFullRounded", - "OpenInFullSharp", - "OpenInFullTwoTone", - "OpenInNew", - "OpenInNewOff", - "OpenInNewOffOutlined", - "OpenInNewOffRounded", - "OpenInNewOffSharp", - "OpenInNewOffTwoTone", - "OpenInNewOutlined", - "OpenInNewRounded", - "OpenInNewSharp", - "OpenInNewTwoTone", - "OpenWith", - "OpenWithOutlined", - "OpenWithRounded", - "OpenWithSharp", - "OpenWithTwoTone", - "OtherHouses", - "OtherHousesOutlined", - "OtherHousesRounded", - "OtherHousesSharp", - "OtherHousesTwoTone", - "Outbound", - "OutboundOutlined", - "OutboundRounded", - "OutboundSharp", - "OutboundTwoTone", - "Outbox", - "OutboxOutlined", - "OutboxRounded", - "OutboxSharp", - "OutboxTwoTone", - "OutdoorGrill", - "OutdoorGrillOutlined", - "OutdoorGrillRounded", - "OutdoorGrillSharp", - "OutdoorGrillTwoTone", - "Outlet", - "OutletOutlined", - "OutletRounded", - "OutletSharp", - "OutletTwoTone", - "OutlinedFlag", - "OutlinedFlagRounded", - "OutlinedFlagSharp", - "OutlinedFlagTwoTone", - "Output", - "OutputOutlined", - "OutputRounded", - "OutputSharp", - "OutputTwoTone", - "Padding", - "PaddingOutlined", - "PaddingRounded", - "PaddingSharp", - "PaddingTwoTone", - "Pages", - "PagesOutlined", - "PagesRounded", - "PagesSharp", - "PagesTwoTone", - "Pageview", - "PageviewOutlined", - "PageviewRounded", - "PageviewSharp", - "PageviewTwoTone", - "Paid", - "PaidOutlined", - "PaidRounded", - "PaidSharp", - "PaidTwoTone", - "Palette", - "PaletteOutlined", - "PaletteRounded", - "PaletteSharp", - "PaletteTwoTone", - "PanTool", - "PanToolAlt", - "PanToolAltOutlined", - "PanToolAltRounded", - "PanToolAltSharp", - "PanToolAltTwoTone", - "PanToolOutlined", - "PanToolRounded", - "PanToolSharp", - "PanToolTwoTone", - "Panorama", - "PanoramaFishEye", - "PanoramaFishEyeOutlined", - "PanoramaFishEyeRounded", - "PanoramaFishEyeSharp", - "PanoramaFishEyeTwoTone", - "PanoramaHorizontal", - "PanoramaHorizontalOutlined", - "PanoramaHorizontalRounded", - "PanoramaHorizontalSharp", - "PanoramaHorizontalTwoTone", - "PanoramaOutlined", - "PanoramaPhotosphere", - "PanoramaPhotosphereOutlined", - "PanoramaPhotosphereRounded", - "PanoramaPhotosphereSharp", - "PanoramaPhotosphereTwoTone", - "PanoramaRounded", - "PanoramaSharp", - "PanoramaTwoTone", - "PanoramaVertical", - "PanoramaVerticalOutlined", - "PanoramaVerticalRounded", - "PanoramaVerticalSharp", - "PanoramaVerticalTwoTone", - "PanoramaWideAngle", - "PanoramaWideAngleOutlined", - "PanoramaWideAngleRounded", - "PanoramaWideAngleSharp", - "PanoramaWideAngleTwoTone", - "Paragliding", - "ParaglidingOutlined", - "ParaglidingRounded", - "ParaglidingSharp", - "ParaglidingTwoTone", - "Park", - "ParkOutlined", - "ParkRounded", - "ParkSharp", - "ParkTwoTone", - "PartyMode", - "PartyModeOutlined", - "PartyModeRounded", - "PartyModeSharp", - "PartyModeTwoTone", - "Password", - "PasswordOutlined", - "PasswordRounded", - "PasswordSharp", - "PasswordTwoTone", - "Pattern", - "PatternOutlined", - "PatternRounded", - "PatternSharp", - "PatternTwoTone", - "Pause", - "PauseCircle", - "PauseCircleFilled", - "PauseCircleFilledOutlined", - "PauseCircleFilledRounded", - "PauseCircleFilledSharp", - "PauseCircleFilledTwoTone", - "PauseCircleOutline", - "PauseCircleOutlineOutlined", - "PauseCircleOutlineRounded", - "PauseCircleOutlineSharp", - "PauseCircleOutlineTwoTone", - "PauseCircleOutlined", - "PauseCircleRounded", - "PauseCircleSharp", - "PauseCircleTwoTone", - "PauseOutlined", - "PausePresentation", - "PausePresentationOutlined", - "PausePresentationRounded", - "PausePresentationSharp", - "PausePresentationTwoTone", - "PauseRounded", - "PauseSharp", - "PauseTwoTone", - "Payment", - "PaymentOutlined", - "PaymentRounded", - "PaymentSharp", - "PaymentTwoTone", - "Payments", - "PaymentsOutlined", - "PaymentsRounded", - "PaymentsSharp", - "PaymentsTwoTone", - "PedalBike", - "PedalBikeOutlined", - "PedalBikeRounded", - "PedalBikeSharp", - "PedalBikeTwoTone", - "Pending", - "PendingActions", - "PendingActionsOutlined", - "PendingActionsRounded", - "PendingActionsSharp", - "PendingActionsTwoTone", - "PendingOutlined", - "PendingRounded", - "PendingSharp", - "PendingTwoTone", - "Pentagon", - "PentagonOutlined", - "PentagonRounded", - "PentagonSharp", - "PentagonTwoTone", - "People", - "PeopleAlt", - "PeopleAltOutlined", - "PeopleAltRounded", - "PeopleAltSharp", - "PeopleAltTwoTone", - "PeopleOutline", - "PeopleOutlineOutlined", - "PeopleOutlineRounded", - "PeopleOutlineSharp", - "PeopleOutlineTwoTone", - "PeopleOutlined", - "PeopleRounded", - "PeopleSharp", - "PeopleTwoTone", - "Percent", - "PercentOutlined", - "PercentRounded", - "PercentSharp", - "PercentTwoTone", - "PermCameraMic", - "PermCameraMicOutlined", - "PermCameraMicRounded", - "PermCameraMicSharp", - "PermCameraMicTwoTone", - "PermContactCalendar", - "PermContactCalendarOutlined", - "PermContactCalendarRounded", - "PermContactCalendarSharp", - "PermContactCalendarTwoTone", - "PermDataSetting", - "PermDataSettingOutlined", - "PermDataSettingRounded", - "PermDataSettingSharp", - "PermDataSettingTwoTone", - "PermDeviceInformation", - "PermDeviceInformationOutlined", - "PermDeviceInformationRounded", - "PermDeviceInformationSharp", - "PermDeviceInformationTwoTone", - "PermIdentity", - "PermIdentityOutlined", - "PermIdentityRounded", - "PermIdentitySharp", - "PermIdentityTwoTone", - "PermMedia", - "PermMediaOutlined", - "PermMediaRounded", - "PermMediaSharp", - "PermMediaTwoTone", - "PermPhoneMsg", - "PermPhoneMsgOutlined", - "PermPhoneMsgRounded", - "PermPhoneMsgSharp", - "PermPhoneMsgTwoTone", - "PermScanWifi", - "PermScanWifiOutlined", - "PermScanWifiRounded", - "PermScanWifiSharp", - "PermScanWifiTwoTone", - "Person", - "Person2", - "Person2Outlined", - "Person2Rounded", - "Person2Sharp", - "Person2TwoTone", - "Person3", - "Person3Outlined", - "Person3Rounded", - "Person3Sharp", - "Person3TwoTone", - "Person4", - "Person4Outlined", - "Person4Rounded", - "Person4Sharp", - "Person4TwoTone", - "PersonAdd", - "PersonAddAlt", - "PersonAddAltOutlined", - "PersonAddAltRounded", - "PersonAddAltSharp", - "PersonAddAltTwoTone", - "PersonAddDisabled", - "PersonAddDisabledOutlined", - "PersonAddDisabledRounded", - "PersonAddDisabledSharp", - "PersonAddDisabledTwoTone", - "PersonAddOutlined", - "PersonAddRounded", - "PersonAddSharp", - "PersonAddTwoTone", - "PersonOff", - "PersonOffOutlined", - "PersonOffRounded", - "PersonOffSharp", - "PersonOffTwoTone", - "PersonOutline", - "PersonOutlineOutlined", - "PersonOutlineRounded", - "PersonOutlineSharp", - "PersonOutlineTwoTone", - "PersonOutlined", - "PersonPin", - "PersonPinCircle", - "PersonPinCircleOutlined", - "PersonPinCircleRounded", - "PersonPinCircleSharp", - "PersonPinCircleTwoTone", - "PersonPinOutlined", - "PersonPinRounded", - "PersonPinSharp", - "PersonPinTwoTone", - "PersonRemove", - "PersonRemoveOutlined", - "PersonRemoveRounded", - "PersonRemoveSharp", - "PersonRemoveTwoTone", - "PersonRounded", - "PersonSearch", - "PersonSearchOutlined", - "PersonSearchRounded", - "PersonSearchSharp", - "PersonSearchTwoTone", - "PersonSharp", - "PersonTwoTone", - "PersonalVideo", - "PersonalVideoOutlined", - "PersonalVideoRounded", - "PersonalVideoSharp", - "PersonalVideoTwoTone", - "PestControl", - "PestControlOutlined", - "PestControlRodent", - "PestControlRodentOutlined", - "PestControlRodentRounded", - "PestControlRodentSharp", - "PestControlRodentTwoTone", - "PestControlRounded", - "PestControlSharp", - "PestControlTwoTone", - "Pets", - "PetsOutlined", - "PetsRounded", - "PetsSharp", - "PetsTwoTone", - "Phishing", - "PhishingOutlined", - "PhishingRounded", - "PhishingSharp", - "PhishingTwoTone", - "Phone", - "PhoneAndroid", - "PhoneAndroidOutlined", - "PhoneAndroidRounded", - "PhoneAndroidSharp", - "PhoneAndroidTwoTone", - "PhoneBluetoothSpeaker", - "PhoneBluetoothSpeakerOutlined", - "PhoneBluetoothSpeakerRounded", - "PhoneBluetoothSpeakerSharp", - "PhoneBluetoothSpeakerTwoTone", - "PhoneCallback", - "PhoneCallbackOutlined", - "PhoneCallbackRounded", - "PhoneCallbackSharp", - "PhoneCallbackTwoTone", - "PhoneDisabled", - "PhoneDisabledOutlined", - "PhoneDisabledRounded", - "PhoneDisabledSharp", - "PhoneDisabledTwoTone", - "PhoneEnabled", - "PhoneEnabledOutlined", - "PhoneEnabledRounded", - "PhoneEnabledSharp", - "PhoneEnabledTwoTone", - "PhoneForwarded", - "PhoneForwardedOutlined", - "PhoneForwardedRounded", - "PhoneForwardedSharp", - "PhoneForwardedTwoTone", - "PhoneInTalk", - "PhoneInTalkOutlined", - "PhoneInTalkRounded", - "PhoneInTalkSharp", - "PhoneInTalkTwoTone", - "PhoneIphone", - "PhoneIphoneOutlined", - "PhoneIphoneRounded", - "PhoneIphoneSharp", - "PhoneIphoneTwoTone", - "PhoneLocked", - "PhoneLockedOutlined", - "PhoneLockedRounded", - "PhoneLockedSharp", - "PhoneLockedTwoTone", - "PhoneMissed", - "PhoneMissedOutlined", - "PhoneMissedRounded", - "PhoneMissedSharp", - "PhoneMissedTwoTone", - "PhoneOutlined", - "PhonePaused", - "PhonePausedOutlined", - "PhonePausedRounded", - "PhonePausedSharp", - "PhonePausedTwoTone", - "PhoneRounded", - "PhoneSharp", - "PhoneTwoTone", - "Phonelink", - "PhonelinkErase", - "PhonelinkEraseOutlined", - "PhonelinkEraseRounded", - "PhonelinkEraseSharp", - "PhonelinkEraseTwoTone", - "PhonelinkLock", - "PhonelinkLockOutlined", - "PhonelinkLockRounded", - "PhonelinkLockSharp", - "PhonelinkLockTwoTone", - "PhonelinkOff", - "PhonelinkOffOutlined", - "PhonelinkOffRounded", - "PhonelinkOffSharp", - "PhonelinkOffTwoTone", - "PhonelinkOutlined", - "PhonelinkRing", - "PhonelinkRingOutlined", - "PhonelinkRingRounded", - "PhonelinkRingSharp", - "PhonelinkRingTwoTone", - "PhonelinkRounded", - "PhonelinkSetup", - "PhonelinkSetupOutlined", - "PhonelinkSetupRounded", - "PhonelinkSetupSharp", - "PhonelinkSetupTwoTone", - "PhonelinkSharp", - "PhonelinkTwoTone", - "Photo", - "PhotoAlbum", - "PhotoAlbumOutlined", - "PhotoAlbumRounded", - "PhotoAlbumSharp", - "PhotoAlbumTwoTone", - "PhotoCamera", - "PhotoCameraBack", - "PhotoCameraBackOutlined", - "PhotoCameraBackRounded", - "PhotoCameraBackSharp", - "PhotoCameraBackTwoTone", - "PhotoCameraFront", - "PhotoCameraFrontOutlined", - "PhotoCameraFrontRounded", - "PhotoCameraFrontSharp", - "PhotoCameraFrontTwoTone", - "PhotoCameraOutlined", - "PhotoCameraRounded", - "PhotoCameraSharp", - "PhotoCameraTwoTone", - "PhotoFilter", - "PhotoFilterOutlined", - "PhotoFilterRounded", - "PhotoFilterSharp", - "PhotoFilterTwoTone", - "PhotoLibrary", - "PhotoLibraryOutlined", - "PhotoLibraryRounded", - "PhotoLibrarySharp", - "PhotoLibraryTwoTone", - "PhotoOutlined", - "PhotoRounded", - "PhotoSharp", - "PhotoSizeSelectActual", - "PhotoSizeSelectActualOutlined", - "PhotoSizeSelectActualRounded", - "PhotoSizeSelectActualSharp", - "PhotoSizeSelectActualTwoTone", - "PhotoSizeSelectLarge", - "PhotoSizeSelectLargeOutlined", - "PhotoSizeSelectLargeRounded", - "PhotoSizeSelectLargeSharp", - "PhotoSizeSelectLargeTwoTone", - "PhotoSizeSelectSmall", - "PhotoSizeSelectSmallOutlined", - "PhotoSizeSelectSmallRounded", - "PhotoSizeSelectSmallSharp", - "PhotoSizeSelectSmallTwoTone", - "PhotoTwoTone", - "Php", - "PhpOutlined", - "PhpRounded", - "PhpSharp", - "PhpTwoTone", - "Piano", - "PianoOff", - "PianoOffOutlined", - "PianoOffRounded", - "PianoOffSharp", - "PianoOffTwoTone", - "PianoOutlined", - "PianoRounded", - "PianoSharp", - "PianoTwoTone", - "PictureAsPdf", - "PictureAsPdfOutlined", - "PictureAsPdfRounded", - "PictureAsPdfSharp", - "PictureAsPdfTwoTone", - "PictureInPicture", - "PictureInPictureAlt", - "PictureInPictureAltOutlined", - "PictureInPictureAltRounded", - "PictureInPictureAltSharp", - "PictureInPictureAltTwoTone", - "PictureInPictureOutlined", - "PictureInPictureRounded", - "PictureInPictureSharp", - "PictureInPictureTwoTone", - "PieChart", - "PieChartOutline", - "PieChartOutlineOutlined", - "PieChartOutlineRounded", - "PieChartOutlineSharp", - "PieChartOutlineTwoTone", - "PieChartOutlined", - "PieChartRounded", - "PieChartSharp", - "PieChartTwoTone", - "Pin", - "PinDrop", - "PinDropOutlined", - "PinDropRounded", - "PinDropSharp", - "PinDropTwoTone", - "PinOutlined", - "PinRounded", - "PinSharp", - "PinTwoTone", - "Pinch", - "PinchOutlined", - "PinchRounded", - "PinchSharp", - "PinchTwoTone", - "Pinterest", - "PivotTableChart", - "PivotTableChartOutlined", - "PivotTableChartRounded", - "PivotTableChartSharp", - "PivotTableChartTwoTone", - "Place", - "PlaceOutlined", - "PlaceRounded", - "PlaceSharp", - "PlaceTwoTone", - "Plagiarism", - "PlagiarismOutlined", - "PlagiarismRounded", - "PlagiarismSharp", - "PlagiarismTwoTone", - "PlayArrow", - "PlayArrowOutlined", - "PlayArrowRounded", - "PlayArrowSharp", - "PlayArrowTwoTone", - "PlayCircle", - "PlayCircleFilled", - "PlayCircleOutlined", - "PlayCircleRounded", - "PlayCircleSharp", - "PlayCircleTwoTone", - "PlayDisabled", - "PlayDisabledOutlined", - "PlayDisabledRounded", - "PlayDisabledSharp", - "PlayDisabledTwoTone", - "PlayForWork", - "PlayForWorkOutlined", - "PlayForWorkRounded", - "PlayForWorkSharp", - "PlayForWorkTwoTone", - "PlayLesson", - "PlayLessonOutlined", - "PlayLessonRounded", - "PlayLessonSharp", - "PlayLessonTwoTone", - "PlaylistAdd", - "PlaylistAddCheck", - "PlaylistAddCheckCircle", - "PlaylistAddCheckCircleOutlined", - "PlaylistAddCheckCircleRounded", - "PlaylistAddCheckCircleSharp", - "PlaylistAddCheckCircleTwoTone", - "PlaylistAddCheckOutlined", - "PlaylistAddCheckRounded", - "PlaylistAddCheckSharp", - "PlaylistAddCheckTwoTone", - "PlaylistAddCircle", - "PlaylistAddCircleOutlined", - "PlaylistAddCircleRounded", - "PlaylistAddCircleSharp", - "PlaylistAddCircleTwoTone", - "PlaylistAddOutlined", - "PlaylistAddRounded", - "PlaylistAddSharp", - "PlaylistAddTwoTone", - "PlaylistPlay", - "PlaylistPlayOutlined", - "PlaylistPlayRounded", - "PlaylistPlaySharp", - "PlaylistPlayTwoTone", - "PlaylistRemove", - "PlaylistRemoveOutlined", - "PlaylistRemoveRounded", - "PlaylistRemoveSharp", - "PlaylistRemoveTwoTone", - "Plumbing", - "PlumbingOutlined", - "PlumbingRounded", - "PlumbingSharp", - "PlumbingTwoTone", - "PlusOne", - "PlusOneOutlined", - "PlusOneRounded", - "PlusOneSharp", - "PlusOneTwoTone", - "Podcasts", - "PodcastsOutlined", - "PodcastsRounded", - "PodcastsSharp", - "PodcastsTwoTone", - "PointOfSale", - "PointOfSaleOutlined", - "PointOfSaleRounded", - "PointOfSaleSharp", - "PointOfSaleTwoTone", - "Policy", - "PolicyOutlined", - "PolicyRounded", - "PolicySharp", - "PolicyTwoTone", - "Poll", - "PollOutlined", - "PollRounded", - "PollSharp", - "PollTwoTone", - "Polyline", - "PolylineOutlined", - "PolylineRounded", - "PolylineSharp", - "PolylineTwoTone", - "Pool", - "PoolOutlined", - "PoolRounded", - "PoolSharp", - "PoolTwoTone", - "PortableWifiOff", - "PortableWifiOffOutlined", - "PortableWifiOffRounded", - "PortableWifiOffSharp", - "PortableWifiOffTwoTone", - "Portrait", - "PortraitOutlined", - "PortraitRounded", - "PortraitSharp", - "PortraitTwoTone", - "PostAdd", - "PostAddOutlined", - "PostAddRounded", - "PostAddSharp", - "PostAddTwoTone", - "Power", - "PowerInput", - "PowerInputOutlined", - "PowerInputRounded", - "PowerInputSharp", - "PowerInputTwoTone", - "PowerOff", - "PowerOffOutlined", - "PowerOffRounded", - "PowerOffSharp", - "PowerOffTwoTone", - "PowerOutlined", - "PowerRounded", - "PowerSettingsNew", - "PowerSettingsNewOutlined", - "PowerSettingsNewRounded", - "PowerSettingsNewSharp", - "PowerSettingsNewTwoTone", - "PowerSharp", - "PowerTwoTone", - "PrecisionManufacturing", - "PrecisionManufacturingOutlined", - "PrecisionManufacturingRounded", - "PrecisionManufacturingSharp", - "PrecisionManufacturingTwoTone", - "PregnantWoman", - "PregnantWomanOutlined", - "PregnantWomanRounded", - "PregnantWomanSharp", - "PregnantWomanTwoTone", - "PresentToAll", - "PresentToAllOutlined", - "PresentToAllRounded", - "PresentToAllSharp", - "PresentToAllTwoTone", - "Preview", - "PreviewOutlined", - "PreviewRounded", - "PreviewSharp", - "PreviewTwoTone", - "PriceChange", - "PriceChangeOutlined", - "PriceChangeRounded", - "PriceChangeSharp", - "PriceChangeTwoTone", - "PriceCheck", - "PriceCheckOutlined", - "PriceCheckRounded", - "PriceCheckSharp", - "PriceCheckTwoTone", - "Print", - "PrintDisabled", - "PrintDisabledOutlined", - "PrintDisabledRounded", - "PrintDisabledSharp", - "PrintDisabledTwoTone", - "PrintOutlined", - "PrintRounded", - "PrintSharp", - "PrintTwoTone", - "PriorityHigh", - "PriorityHighOutlined", - "PriorityHighRounded", - "PriorityHighSharp", - "PriorityHighTwoTone", - "PrivacyTip", - "PrivacyTipOutlined", - "PrivacyTipRounded", - "PrivacyTipSharp", - "PrivacyTipTwoTone", - "ProductionQuantityLimits", - "ProductionQuantityLimitsOutlined", - "ProductionQuantityLimitsRounded", - "ProductionQuantityLimitsSharp", - "ProductionQuantityLimitsTwoTone", - "Propane", - "PropaneOutlined", - "PropaneRounded", - "PropaneSharp", - "PropaneTank", - "PropaneTankOutlined", - "PropaneTankRounded", - "PropaneTankSharp", - "PropaneTankTwoTone", - "PropaneTwoTone", - "Psychology", - "PsychologyAlt", - "PsychologyAltOutlined", - "PsychologyAltRounded", - "PsychologyAltSharp", - "PsychologyAltTwoTone", - "PsychologyOutlined", - "PsychologyRounded", - "PsychologySharp", - "PsychologyTwoTone", - "Public", - "PublicOff", - "PublicOffOutlined", - "PublicOffRounded", - "PublicOffSharp", - "PublicOffTwoTone", - "PublicOutlined", - "PublicRounded", - "PublicSharp", - "PublicTwoTone", - "Publish", - "PublishOutlined", - "PublishRounded", - "PublishSharp", - "PublishTwoTone", - "PublishedWithChanges", - "PublishedWithChangesOutlined", - "PublishedWithChangesRounded", - "PublishedWithChangesSharp", - "PublishedWithChangesTwoTone", - "PunchClock", - "PunchClockOutlined", - "PunchClockRounded", - "PunchClockSharp", - "PunchClockTwoTone", - "PushPin", - "PushPinOutlined", - "PushPinRounded", - "PushPinSharp", - "PushPinTwoTone", - "QrCode", - "QrCode2", - "QrCode2Outlined", - "QrCode2Rounded", - "QrCode2Sharp", - "QrCode2TwoTone", - "QrCodeOutlined", - "QrCodeRounded", - "QrCodeScanner", - "QrCodeScannerOutlined", - "QrCodeScannerRounded", - "QrCodeScannerSharp", - "QrCodeScannerTwoTone", - "QrCodeSharp", - "QrCodeTwoTone", - "QueryBuilder", - "QueryBuilderOutlined", - "QueryBuilderRounded", - "QueryBuilderSharp", - "QueryBuilderTwoTone", - "QueryStats", - "QueryStatsOutlined", - "QueryStatsRounded", - "QueryStatsSharp", - "QueryStatsTwoTone", - "QuestionAnswer", - "QuestionAnswerOutlined", - "QuestionAnswerRounded", - "QuestionAnswerSharp", - "QuestionAnswerTwoTone", - "QuestionMark", - "QuestionMarkOutlined", - "QuestionMarkRounded", - "QuestionMarkSharp", - "QuestionMarkTwoTone", - "Queue", - "QueueMusic", - "QueueMusicOutlined", - "QueueMusicRounded", - "QueueMusicSharp", - "QueueMusicTwoTone", - "QueueOutlined", - "QueuePlayNext", - "QueuePlayNextOutlined", - "QueuePlayNextRounded", - "QueuePlayNextSharp", - "QueuePlayNextTwoTone", - "QueueRounded", - "QueueSharp", - "QueueTwoTone", - "Quickreply", - "QuickreplyOutlined", - "QuickreplyRounded", - "QuickreplySharp", - "QuickreplyTwoTone", - "Quiz", - "QuizOutlined", - "QuizRounded", - "QuizSharp", - "QuizTwoTone", - "RMobiledata", - "RMobiledataOutlined", - "RMobiledataRounded", - "RMobiledataSharp", - "RMobiledataTwoTone", - "Radar", - "RadarOutlined", - "RadarRounded", - "RadarSharp", - "RadarTwoTone", - "Radio", - "RadioButtonChecked", - "RadioButtonCheckedOutlined", - "RadioButtonCheckedRounded", - "RadioButtonCheckedSharp", - "RadioButtonCheckedTwoTone", - "RadioButtonUnchecked", - "RadioButtonUncheckedOutlined", - "RadioButtonUncheckedRounded", - "RadioButtonUncheckedSharp", - "RadioButtonUncheckedTwoTone", - "RadioOutlined", - "RadioRounded", - "RadioSharp", - "RadioTwoTone", - "RailwayAlert", - "RailwayAlertOutlined", - "RailwayAlertRounded", - "RailwayAlertSharp", - "RailwayAlertTwoTone", - "RamenDining", - "RamenDiningOutlined", - "RamenDiningRounded", - "RamenDiningSharp", - "RamenDiningTwoTone", - "RampLeft", - "RampLeftOutlined", - "RampLeftRounded", - "RampLeftSharp", - "RampLeftTwoTone", - "RampRight", - "RampRightOutlined", - "RampRightRounded", - "RampRightSharp", - "RampRightTwoTone", - "RateReview", - "RateReviewOutlined", - "RateReviewRounded", - "RateReviewSharp", - "RateReviewTwoTone", - "RawOff", - "RawOffOutlined", - "RawOffRounded", - "RawOffSharp", - "RawOffTwoTone", - "RawOn", - "RawOnOutlined", - "RawOnRounded", - "RawOnSharp", - "RawOnTwoTone", - "ReadMore", - "ReadMoreOutlined", - "ReadMoreRounded", - "ReadMoreSharp", - "ReadMoreTwoTone", - "Receipt", - "ReceiptLong", - "ReceiptLongOutlined", - "ReceiptLongRounded", - "ReceiptLongSharp", - "ReceiptLongTwoTone", - "ReceiptOutlined", - "ReceiptRounded", - "ReceiptSharp", - "ReceiptTwoTone", - "RecentActors", - "RecentActorsOutlined", - "RecentActorsRounded", - "RecentActorsSharp", - "RecentActorsTwoTone", - "Recommend", - "RecommendOutlined", - "RecommendRounded", - "RecommendSharp", - "RecommendTwoTone", - "RecordVoiceOver", - "RecordVoiceOverOutlined", - "RecordVoiceOverRounded", - "RecordVoiceOverSharp", - "RecordVoiceOverTwoTone", - "Rectangle", - "RectangleOutlined", - "RectangleRounded", - "RectangleSharp", - "RectangleTwoTone", - "Recycling", - "RecyclingOutlined", - "RecyclingRounded", - "RecyclingSharp", - "RecyclingTwoTone", - "Reddit", - "Redeem", - "RedeemOutlined", - "RedeemRounded", - "RedeemSharp", - "RedeemTwoTone", - "Redo", - "RedoOutlined", - "RedoRounded", - "RedoSharp", - "RedoTwoTone", - "ReduceCapacity", - "ReduceCapacityOutlined", - "ReduceCapacityRounded", - "ReduceCapacitySharp", - "ReduceCapacityTwoTone", - "Refresh", - "RefreshOutlined", - "RefreshRounded", - "RefreshSharp", - "RefreshTwoTone", - "RememberMe", - "RememberMeOutlined", - "RememberMeRounded", - "RememberMeSharp", - "RememberMeTwoTone", - "Remove", - "RemoveCircle", - "RemoveCircleOutline", - "RemoveCircleOutlineOutlined", - "RemoveCircleOutlineRounded", - "RemoveCircleOutlineSharp", - "RemoveCircleOutlineTwoTone", - "RemoveCircleOutlined", - "RemoveCircleRounded", - "RemoveCircleSharp", - "RemoveCircleTwoTone", - "RemoveDone", - "RemoveDoneOutlined", - "RemoveDoneRounded", - "RemoveDoneSharp", - "RemoveDoneTwoTone", - "RemoveFromQueue", - "RemoveFromQueueOutlined", - "RemoveFromQueueRounded", - "RemoveFromQueueSharp", - "RemoveFromQueueTwoTone", - "RemoveModerator", - "RemoveModeratorOutlined", - "RemoveModeratorRounded", - "RemoveModeratorSharp", - "RemoveModeratorTwoTone", - "RemoveOutlined", - "RemoveRedEye", - "RemoveRedEyeOutlined", - "RemoveRedEyeRounded", - "RemoveRedEyeSharp", - "RemoveRedEyeTwoTone", - "RemoveRoad", - "RemoveRoadOutlined", - "RemoveRoadRounded", - "RemoveRoadSharp", - "RemoveRoadTwoTone", - "RemoveRounded", - "RemoveSharp", - "RemoveShoppingCart", - "RemoveShoppingCartOutlined", - "RemoveShoppingCartRounded", - "RemoveShoppingCartSharp", - "RemoveShoppingCartTwoTone", - "RemoveTwoTone", - "Reorder", - "ReorderOutlined", - "ReorderRounded", - "ReorderSharp", - "ReorderTwoTone", - "Repartition", - "RepartitionOutlined", - "RepartitionRounded", - "RepartitionSharp", - "RepartitionTwoTone", - "Repeat", - "RepeatOn", - "RepeatOnOutlined", - "RepeatOnRounded", - "RepeatOnSharp", - "RepeatOnTwoTone", - "RepeatOne", - "RepeatOneOn", - "RepeatOneOnOutlined", - "RepeatOneOnRounded", - "RepeatOneOnSharp", - "RepeatOneOnTwoTone", - "RepeatOneOutlined", - "RepeatOneRounded", - "RepeatOneSharp", - "RepeatOneTwoTone", - "RepeatOutlined", - "RepeatRounded", - "RepeatSharp", - "RepeatTwoTone", - "Replay", - "Replay10", - "Replay10Outlined", - "Replay10Rounded", - "Replay10Sharp", - "Replay10TwoTone", - "Replay30", - "Replay30Outlined", - "Replay30Rounded", - "Replay30Sharp", - "Replay30TwoTone", - "Replay5", - "Replay5Outlined", - "Replay5Rounded", - "Replay5Sharp", - "Replay5TwoTone", - "ReplayCircleFilled", - "ReplayCircleFilledOutlined", - "ReplayCircleFilledRounded", - "ReplayCircleFilledSharp", - "ReplayCircleFilledTwoTone", - "ReplayOutlined", - "ReplayRounded", - "ReplaySharp", - "ReplayTwoTone", - "Reply", - "ReplyAll", - "ReplyAllOutlined", - "ReplyAllRounded", - "ReplyAllSharp", - "ReplyAllTwoTone", - "ReplyOutlined", - "ReplyRounded", - "ReplySharp", - "ReplyTwoTone", - "Report", - "ReportGmailerrorred", - "ReportGmailerrorredOutlined", - "ReportGmailerrorredRounded", - "ReportGmailerrorredSharp", - "ReportGmailerrorredTwoTone", - "ReportOff", - "ReportOffOutlined", - "ReportOffRounded", - "ReportOffSharp", - "ReportOffTwoTone", - "ReportOutlined", - "ReportProblem", - "ReportProblemOutlined", - "ReportProblemRounded", - "ReportProblemSharp", - "ReportProblemTwoTone", - "ReportRounded", - "ReportSharp", - "ReportTwoTone", - "RequestPage", - "RequestPageOutlined", - "RequestPageRounded", - "RequestPageSharp", - "RequestPageTwoTone", - "RequestQuote", - "RequestQuoteOutlined", - "RequestQuoteRounded", - "RequestQuoteSharp", - "RequestQuoteTwoTone", - "ResetTv", - "ResetTvOutlined", - "ResetTvRounded", - "ResetTvSharp", - "ResetTvTwoTone", - "RestartAlt", - "RestartAltOutlined", - "RestartAltRounded", - "RestartAltSharp", - "RestartAltTwoTone", - "Restaurant", - "RestaurantMenu", - "RestaurantMenuOutlined", - "RestaurantMenuRounded", - "RestaurantMenuSharp", - "RestaurantMenuTwoTone", - "RestaurantOutlined", - "RestaurantRounded", - "RestaurantSharp", - "RestaurantTwoTone", - "Restore", - "RestoreFromTrash", - "RestoreFromTrashOutlined", - "RestoreFromTrashRounded", - "RestoreFromTrashSharp", - "RestoreFromTrashTwoTone", - "RestoreOutlined", - "RestorePage", - "RestorePageOutlined", - "RestorePageRounded", - "RestorePageSharp", - "RestorePageTwoTone", - "RestoreRounded", - "RestoreSharp", - "RestoreTwoTone", - "Reviews", - "ReviewsOutlined", - "ReviewsRounded", - "ReviewsSharp", - "ReviewsTwoTone", - "RiceBowl", - "RiceBowlOutlined", - "RiceBowlRounded", - "RiceBowlSharp", - "RiceBowlTwoTone", - "RingVolume", - "RingVolumeOutlined", - "RingVolumeRounded", - "RingVolumeSharp", - "RingVolumeTwoTone", - "Rocket", - "RocketLaunch", - "RocketLaunchOutlined", - "RocketLaunchRounded", - "RocketLaunchSharp", - "RocketLaunchTwoTone", - "RocketOutlined", - "RocketRounded", - "RocketSharp", - "RocketTwoTone", - "RollerShades", - "RollerShadesClosed", - "RollerShadesClosedOutlined", - "RollerShadesClosedRounded", - "RollerShadesClosedSharp", - "RollerShadesClosedTwoTone", - "RollerShadesOutlined", - "RollerShadesRounded", - "RollerShadesSharp", - "RollerShadesTwoTone", - "RollerSkating", - "RollerSkatingOutlined", - "RollerSkatingRounded", - "RollerSkatingSharp", - "RollerSkatingTwoTone", - "Roofing", - "RoofingOutlined", - "RoofingRounded", - "RoofingSharp", - "RoofingTwoTone", - "Room", - "RoomOutlined", - "RoomPreferences", - "RoomPreferencesOutlined", - "RoomPreferencesRounded", - "RoomPreferencesSharp", - "RoomPreferencesTwoTone", - "RoomRounded", - "RoomService", - "RoomServiceOutlined", - "RoomServiceRounded", - "RoomServiceSharp", - "RoomServiceTwoTone", - "RoomSharp", - "RoomTwoTone", - "Rotate90DegreesCcw", - "Rotate90DegreesCcwOutlined", - "Rotate90DegreesCcwRounded", - "Rotate90DegreesCcwSharp", - "Rotate90DegreesCcwTwoTone", - "Rotate90DegreesCw", - "Rotate90DegreesCwOutlined", - "Rotate90DegreesCwRounded", - "Rotate90DegreesCwSharp", - "Rotate90DegreesCwTwoTone", - "RotateLeft", - "RotateLeftOutlined", - "RotateLeftRounded", - "RotateLeftSharp", - "RotateLeftTwoTone", - "RotateRight", - "RotateRightOutlined", - "RotateRightRounded", - "RotateRightSharp", - "RotateRightTwoTone", - "RoundaboutLeft", - "RoundaboutLeftOutlined", - "RoundaboutLeftRounded", - "RoundaboutLeftSharp", - "RoundaboutLeftTwoTone", - "RoundaboutRight", - "RoundaboutRightOutlined", - "RoundaboutRightRounded", - "RoundaboutRightSharp", - "RoundaboutRightTwoTone", - "RoundedCorner", - "RoundedCornerOutlined", - "RoundedCornerSharp", - "RoundedCornerTwoTone", - "Route", - "RouteOutlined", - "RouteRounded", - "RouteSharp", - "RouteTwoTone", - "Router", - "RouterOutlined", - "RouterRounded", - "RouterSharp", - "RouterTwoTone", - "Rowing", - "RowingOutlined", - "RowingRounded", - "RowingSharp", - "RowingTwoTone", - "RssFeed", - "RssFeedOutlined", - "RssFeedRounded", - "RssFeedSharp", - "RssFeedTwoTone", - "Rsvp", - "RsvpOutlined", - "RsvpRounded", - "RsvpSharp", - "RsvpTwoTone", - "Rtt", - "RttOutlined", - "RttRounded", - "RttSharp", - "RttTwoTone", - "Rule", - "RuleFolder", - "RuleFolderOutlined", - "RuleFolderRounded", - "RuleFolderSharp", - "RuleFolderTwoTone", - "RuleOutlined", - "RuleRounded", - "RuleSharp", - "RuleTwoTone", - "RunCircle", - "RunCircleOutlined", - "RunCircleRounded", - "RunCircleSharp", - "RunCircleTwoTone", - "RunningWithErrors", - "RunningWithErrorsOutlined", - "RunningWithErrorsRounded", - "RunningWithErrorsSharp", - "RunningWithErrorsTwoTone", - "RvHookup", - "RvHookupOutlined", - "RvHookupRounded", - "RvHookupSharp", - "RvHookupTwoTone", - "SafetyCheck", - "SafetyCheckOutlined", - "SafetyCheckRounded", - "SafetyCheckSharp", - "SafetyCheckTwoTone", - "SafetyDivider", - "SafetyDividerOutlined", - "SafetyDividerRounded", - "SafetyDividerSharp", - "SafetyDividerTwoTone", - "Sailing", - "SailingOutlined", - "SailingRounded", - "SailingSharp", - "SailingTwoTone", - "Sanitizer", - "SanitizerOutlined", - "SanitizerRounded", - "SanitizerSharp", - "SanitizerTwoTone", - "Satellite", - "SatelliteAlt", - "SatelliteAltOutlined", - "SatelliteAltRounded", - "SatelliteAltSharp", - "SatelliteAltTwoTone", - "SatelliteOutlined", - "SatelliteRounded", - "SatelliteSharp", - "SatelliteTwoTone", - "Save", - "SaveAlt", - "SaveAltOutlined", - "SaveAltRounded", - "SaveAltSharp", - "SaveAltTwoTone", - "SaveAs", - "SaveAsOutlined", - "SaveAsRounded", - "SaveAsSharp", - "SaveAsTwoTone", - "SaveOutlined", - "SaveRounded", - "SaveSharp", - "SaveTwoTone", - "SavedSearch", - "SavedSearchOutlined", - "SavedSearchRounded", - "SavedSearchSharp", - "SavedSearchTwoTone", - "Savings", - "SavingsOutlined", - "SavingsRounded", - "SavingsSharp", - "SavingsTwoTone", - "Scale", - "ScaleOutlined", - "ScaleRounded", - "ScaleSharp", - "ScaleTwoTone", - "Scanner", - "ScannerOutlined", - "ScannerRounded", - "ScannerSharp", - "ScannerTwoTone", - "ScatterPlot", - "ScatterPlotOutlined", - "ScatterPlotRounded", - "ScatterPlotSharp", - "ScatterPlotTwoTone", - "Schedule", - "ScheduleOutlined", - "ScheduleRounded", - "ScheduleSend", - "ScheduleSendOutlined", - "ScheduleSendRounded", - "ScheduleSendSharp", - "ScheduleSendTwoTone", - "ScheduleSharp", - "ScheduleTwoTone", - "Schema", - "SchemaOutlined", - "SchemaRounded", - "SchemaSharp", - "SchemaTwoTone", - "School", - "SchoolOutlined", - "SchoolRounded", - "SchoolSharp", - "SchoolTwoTone", - "Science", - "ScienceOutlined", - "ScienceRounded", - "ScienceSharp", - "ScienceTwoTone", - "Score", - "ScoreOutlined", - "ScoreRounded", - "ScoreSharp", - "ScoreTwoTone", - "Scoreboard", - "ScoreboardOutlined", - "ScoreboardRounded", - "ScoreboardSharp", - "ScoreboardTwoTone", - "ScreenLockLandscape", - "ScreenLockLandscapeOutlined", - "ScreenLockLandscapeRounded", - "ScreenLockLandscapeSharp", - "ScreenLockLandscapeTwoTone", - "ScreenLockPortrait", - "ScreenLockPortraitOutlined", - "ScreenLockPortraitRounded", - "ScreenLockPortraitSharp", - "ScreenLockPortraitTwoTone", - "ScreenLockRotation", - "ScreenLockRotationOutlined", - "ScreenLockRotationRounded", - "ScreenLockRotationSharp", - "ScreenLockRotationTwoTone", - "ScreenRotation", - "ScreenRotationAlt", - "ScreenRotationAltOutlined", - "ScreenRotationAltRounded", - "ScreenRotationAltSharp", - "ScreenRotationAltTwoTone", - "ScreenRotationOutlined", - "ScreenRotationRounded", - "ScreenRotationSharp", - "ScreenRotationTwoTone", - "ScreenSearchDesktop", - "ScreenSearchDesktopOutlined", - "ScreenSearchDesktopRounded", - "ScreenSearchDesktopSharp", - "ScreenSearchDesktopTwoTone", - "ScreenShare", - "ScreenShareOutlined", - "ScreenShareRounded", - "ScreenShareSharp", - "ScreenShareTwoTone", - "Screenshot", - "ScreenshotMonitor", - "ScreenshotMonitorOutlined", - "ScreenshotMonitorRounded", - "ScreenshotMonitorSharp", - "ScreenshotMonitorTwoTone", - "ScreenshotOutlined", - "ScreenshotRounded", - "ScreenshotSharp", - "ScreenshotTwoTone", - "ScubaDiving", - "ScubaDivingOutlined", - "ScubaDivingRounded", - "ScubaDivingSharp", - "ScubaDivingTwoTone", - "Sd", - "SdCard", - "SdCardAlert", - "SdCardAlertOutlined", - "SdCardAlertRounded", - "SdCardAlertSharp", - "SdCardAlertTwoTone", - "SdCardOutlined", - "SdCardRounded", - "SdCardSharp", - "SdCardTwoTone", - "SdOutlined", - "SdRounded", - "SdSharp", - "SdStorage", - "SdStorageOutlined", - "SdStorageRounded", - "SdStorageSharp", - "SdStorageTwoTone", - "SdTwoTone", - "Search", - "SearchOff", - "SearchOffOutlined", - "SearchOffRounded", - "SearchOffSharp", - "SearchOffTwoTone", - "SearchOutlined", - "SearchRounded", - "SearchSharp", - "SearchTwoTone", - "Security", - "SecurityOutlined", - "SecurityRounded", - "SecuritySharp", - "SecurityTwoTone", - "SecurityUpdate", - "SecurityUpdateGood", - "SecurityUpdateGoodOutlined", - "SecurityUpdateGoodRounded", - "SecurityUpdateGoodSharp", - "SecurityUpdateGoodTwoTone", - "SecurityUpdateOutlined", - "SecurityUpdateRounded", - "SecurityUpdateSharp", - "SecurityUpdateTwoTone", - "SecurityUpdateWarning", - "SecurityUpdateWarningOutlined", - "SecurityUpdateWarningRounded", - "SecurityUpdateWarningSharp", - "SecurityUpdateWarningTwoTone", - "Segment", - "SegmentOutlined", - "SegmentRounded", - "SegmentSharp", - "SegmentTwoTone", - "SelectAll", - "SelectAllOutlined", - "SelectAllRounded", - "SelectAllSharp", - "SelectAllTwoTone", - "SelfImprovement", - "SelfImprovementOutlined", - "SelfImprovementRounded", - "SelfImprovementSharp", - "SelfImprovementTwoTone", - "Sell", - "SellOutlined", - "SellRounded", - "SellSharp", - "SellTwoTone", - "Send", - "SendAndArchive", - "SendAndArchiveOutlined", - "SendAndArchiveRounded", - "SendAndArchiveSharp", - "SendAndArchiveTwoTone", - "SendOutlined", - "SendRounded", - "SendSharp", - "SendTimeExtension", - "SendTimeExtensionOutlined", - "SendTimeExtensionRounded", - "SendTimeExtensionSharp", - "SendTimeExtensionTwoTone", - "SendToMobile", - "SendToMobileOutlined", - "SendToMobileRounded", - "SendToMobileSharp", - "SendToMobileTwoTone", - "SendTwoTone", - "SensorDoor", - "SensorDoorOutlined", - "SensorDoorRounded", - "SensorDoorSharp", - "SensorDoorTwoTone", - "SensorOccupied", - "SensorOccupiedOutlined", - "SensorOccupiedRounded", - "SensorOccupiedSharp", - "SensorOccupiedTwoTone", - "SensorWindow", - "SensorWindowOutlined", - "SensorWindowRounded", - "SensorWindowSharp", - "SensorWindowTwoTone", - "Sensors", - "SensorsOff", - "SensorsOffOutlined", - "SensorsOffRounded", - "SensorsOffSharp", - "SensorsOffTwoTone", - "SensorsOutlined", - "SensorsRounded", - "SensorsSharp", - "SensorsTwoTone", - "SentimentDissatisfied", - "SentimentDissatisfiedOutlined", - "SentimentDissatisfiedRounded", - "SentimentDissatisfiedSharp", - "SentimentDissatisfiedTwoTone", - "SentimentNeutral", - "SentimentNeutralOutlined", - "SentimentNeutralRounded", - "SentimentNeutralSharp", - "SentimentNeutralTwoTone", - "SentimentSatisfied", - "SentimentSatisfiedAlt", - "SentimentSatisfiedAltOutlined", - "SentimentSatisfiedAltRounded", - "SentimentSatisfiedAltSharp", - "SentimentSatisfiedAltTwoTone", - "SentimentSatisfiedOutlined", - "SentimentSatisfiedRounded", - "SentimentSatisfiedSharp", - "SentimentSatisfiedTwoTone", - "SentimentVeryDissatisfied", - "SentimentVeryDissatisfiedOutlined", - "SentimentVeryDissatisfiedRounded", - "SentimentVeryDissatisfiedSharp", - "SentimentVeryDissatisfiedTwoTone", - "SentimentVerySatisfied", - "SentimentVerySatisfiedOutlined", - "SentimentVerySatisfiedRounded", - "SentimentVerySatisfiedSharp", - "SentimentVerySatisfiedTwoTone", - "SetMeal", - "SetMealOutlined", - "SetMealRounded", - "SetMealSharp", - "SetMealTwoTone", - "Settings", - "SettingsAccessibility", - "SettingsAccessibilityOutlined", - "SettingsAccessibilityRounded", - "SettingsAccessibilitySharp", - "SettingsAccessibilityTwoTone", - "SettingsApplications", - "SettingsApplicationsOutlined", - "SettingsApplicationsRounded", - "SettingsApplicationsSharp", - "SettingsApplicationsTwoTone", - "SettingsBackupRestore", - "SettingsBackupRestoreOutlined", - "SettingsBackupRestoreRounded", - "SettingsBackupRestoreSharp", - "SettingsBackupRestoreTwoTone", - "SettingsBluetooth", - "SettingsBluetoothOutlined", - "SettingsBluetoothRounded", - "SettingsBluetoothSharp", - "SettingsBluetoothTwoTone", - "SettingsBrightness", - "SettingsBrightnessOutlined", - "SettingsBrightnessRounded", - "SettingsBrightnessSharp", - "SettingsBrightnessTwoTone", - "SettingsCell", - "SettingsCellOutlined", - "SettingsCellRounded", - "SettingsCellSharp", - "SettingsCellTwoTone", - "SettingsEthernet", - "SettingsEthernetOutlined", - "SettingsEthernetRounded", - "SettingsEthernetSharp", - "SettingsEthernetTwoTone", - "SettingsInputAntenna", - "SettingsInputAntennaOutlined", - "SettingsInputAntennaRounded", - "SettingsInputAntennaSharp", - "SettingsInputAntennaTwoTone", - "SettingsInputComponent", - "SettingsInputComponentOutlined", - "SettingsInputComponentRounded", - "SettingsInputComponentSharp", - "SettingsInputComponentTwoTone", - "SettingsInputComposite", - "SettingsInputCompositeOutlined", - "SettingsInputCompositeRounded", - "SettingsInputCompositeSharp", - "SettingsInputCompositeTwoTone", - "SettingsInputHdmi", - "SettingsInputHdmiOutlined", - "SettingsInputHdmiRounded", - "SettingsInputHdmiSharp", - "SettingsInputHdmiTwoTone", - "SettingsInputSvideo", - "SettingsInputSvideoOutlined", - "SettingsInputSvideoRounded", - "SettingsInputSvideoSharp", - "SettingsInputSvideoTwoTone", - "SettingsOutlined", - "SettingsOverscan", - "SettingsOverscanOutlined", - "SettingsOverscanRounded", - "SettingsOverscanSharp", - "SettingsOverscanTwoTone", - "SettingsPhone", - "SettingsPhoneOutlined", - "SettingsPhoneRounded", - "SettingsPhoneSharp", - "SettingsPhoneTwoTone", - "SettingsPower", - "SettingsPowerOutlined", - "SettingsPowerRounded", - "SettingsPowerSharp", - "SettingsPowerTwoTone", - "SettingsRemote", - "SettingsRemoteOutlined", - "SettingsRemoteRounded", - "SettingsRemoteSharp", - "SettingsRemoteTwoTone", - "SettingsRounded", - "SettingsSharp", - "SettingsSuggest", - "SettingsSuggestOutlined", - "SettingsSuggestRounded", - "SettingsSuggestSharp", - "SettingsSuggestTwoTone", - "SettingsSystemDaydream", - "SettingsSystemDaydreamOutlined", - "SettingsSystemDaydreamRounded", - "SettingsSystemDaydreamSharp", - "SettingsSystemDaydreamTwoTone", - "SettingsTwoTone", - "SettingsVoice", - "SettingsVoiceOutlined", - "SettingsVoiceRounded", - "SettingsVoiceSharp", - "SettingsVoiceTwoTone", - "SevereCold", - "SevereColdOutlined", - "SevereColdRounded", - "SevereColdSharp", - "SevereColdTwoTone", - "ShapeLine", - "ShapeLineOutlined", - "ShapeLineRounded", - "ShapeLineSharp", - "ShapeLineTwoTone", - "Share", - "ShareLocation", - "ShareLocationOutlined", - "ShareLocationRounded", - "ShareLocationSharp", - "ShareLocationTwoTone", - "ShareOutlined", - "ShareRounded", - "ShareSharp", - "ShareTwoTone", - "Shield", - "ShieldMoon", - "ShieldMoonOutlined", - "ShieldMoonRounded", - "ShieldMoonSharp", - "ShieldMoonTwoTone", - "ShieldOutlined", - "ShieldRounded", - "ShieldSharp", - "ShieldTwoTone", - "Shop", - "Shop2", - "Shop2Outlined", - "Shop2Rounded", - "Shop2Sharp", - "Shop2TwoTone", - "ShopOutlined", - "ShopRounded", - "ShopSharp", - "ShopTwo", - "ShopTwoOutlined", - "ShopTwoRounded", - "ShopTwoSharp", - "ShopTwoTone", - "ShopTwoTwoTone", - "ShoppingBag", - "ShoppingBagOutlined", - "ShoppingBagRounded", - "ShoppingBagSharp", - "ShoppingBagTwoTone", - "ShoppingBasket", - "ShoppingBasketOutlined", - "ShoppingBasketRounded", - "ShoppingBasketSharp", - "ShoppingBasketTwoTone", - "ShoppingCart", - "ShoppingCartCheckout", - "ShoppingCartCheckoutOutlined", - "ShoppingCartCheckoutRounded", - "ShoppingCartCheckoutSharp", - "ShoppingCartCheckoutTwoTone", - "ShoppingCartOutlined", - "ShoppingCartRounded", - "ShoppingCartSharp", - "ShoppingCartTwoTone", - "ShortText", - "ShortTextOutlined", - "ShortTextRounded", - "ShortTextSharp", - "ShortTextTwoTone", - "Shortcut", - "ShortcutOutlined", - "ShortcutRounded", - "ShortcutSharp", - "ShortcutTwoTone", - "ShowChart", - "ShowChartOutlined", - "ShowChartRounded", - "ShowChartSharp", - "ShowChartTwoTone", - "Shower", - "ShowerOutlined", - "ShowerRounded", - "ShowerSharp", - "ShowerTwoTone", - "Shuffle", - "ShuffleOn", - "ShuffleOnOutlined", - "ShuffleOnRounded", - "ShuffleOnSharp", - "ShuffleOnTwoTone", - "ShuffleOutlined", - "ShuffleRounded", - "ShuffleSharp", - "ShuffleTwoTone", - "ShutterSpeed", - "ShutterSpeedOutlined", - "ShutterSpeedRounded", - "ShutterSpeedSharp", - "ShutterSpeedTwoTone", - "Sick", - "SickOutlined", - "SickRounded", - "SickSharp", - "SickTwoTone", - "SignLanguage", - "SignLanguageOutlined", - "SignLanguageRounded", - "SignLanguageSharp", - "SignLanguageTwoTone", - "SignalCellular0Bar", - "SignalCellular0BarOutlined", - "SignalCellular0BarRounded", - "SignalCellular0BarSharp", - "SignalCellular0BarTwoTone", - "SignalCellular1Bar", - "SignalCellular1BarOutlined", - "SignalCellular1BarRounded", - "SignalCellular1BarSharp", - "SignalCellular1BarTwoTone", - "SignalCellular2Bar", - "SignalCellular2BarOutlined", - "SignalCellular2BarRounded", - "SignalCellular2BarSharp", - "SignalCellular2BarTwoTone", - "SignalCellular3Bar", - "SignalCellular3BarOutlined", - "SignalCellular3BarRounded", - "SignalCellular3BarSharp", - "SignalCellular3BarTwoTone", - "SignalCellular4Bar", - "SignalCellular4BarOutlined", - "SignalCellular4BarRounded", - "SignalCellular4BarSharp", - "SignalCellular4BarTwoTone", - "SignalCellularAlt", - "SignalCellularAlt1Bar", - "SignalCellularAlt1BarOutlined", - "SignalCellularAlt1BarRounded", - "SignalCellularAlt1BarSharp", - "SignalCellularAlt1BarTwoTone", - "SignalCellularAlt2Bar", - "SignalCellularAlt2BarOutlined", - "SignalCellularAlt2BarRounded", - "SignalCellularAlt2BarSharp", - "SignalCellularAlt2BarTwoTone", - "SignalCellularAltOutlined", - "SignalCellularAltRounded", - "SignalCellularAltSharp", - "SignalCellularAltTwoTone", - "SignalCellularNoSim", - "SignalCellularNoSimOutlined", - "SignalCellularNoSimRounded", - "SignalCellularNoSimSharp", - "SignalCellularNoSimTwoTone", - "SignalCellularNodata", - "SignalCellularNodataOutlined", - "SignalCellularNodataRounded", - "SignalCellularNodataSharp", - "SignalCellularNodataTwoTone", - "SignalCellularNull", - "SignalCellularNullOutlined", - "SignalCellularNullRounded", - "SignalCellularNullSharp", - "SignalCellularNullTwoTone", - "SignalCellularOff", - "SignalCellularOffOutlined", - "SignalCellularOffRounded", - "SignalCellularOffSharp", - "SignalCellularOffTwoTone", - "SignalWifi0Bar", - "SignalWifi0BarOutlined", - "SignalWifi0BarRounded", - "SignalWifi0BarSharp", - "SignalWifi0BarTwoTone", - "SignalWifiBad", - "SignalWifiBadOutlined", - "SignalWifiBadRounded", - "SignalWifiBadSharp", - "SignalWifiBadTwoTone", - "SignalWifiOff", - "SignalWifiOffOutlined", - "SignalWifiOffRounded", - "SignalWifiOffSharp", - "SignalWifiOffTwoTone", - "SignalWifiStatusbar4Bar", - "SignalWifiStatusbar4BarOutlined", - "SignalWifiStatusbar4BarRounded", - "SignalWifiStatusbar4BarSharp", - "SignalWifiStatusbar4BarTwoTone", - "SignalWifiStatusbarNull", - "SignalWifiStatusbarNullOutlined", - "SignalWifiStatusbarNullRounded", - "SignalWifiStatusbarNullSharp", - "SignalWifiStatusbarNullTwoTone", - "Signpost", - "SignpostOutlined", - "SignpostRounded", - "SignpostSharp", - "SignpostTwoTone", - "SimCard", - "SimCardAlert", - "SimCardAlertOutlined", - "SimCardAlertRounded", - "SimCardAlertSharp", - "SimCardAlertTwoTone", - "SimCardDownload", - "SimCardDownloadOutlined", - "SimCardDownloadRounded", - "SimCardDownloadSharp", - "SimCardDownloadTwoTone", - "SimCardOutlined", - "SimCardRounded", - "SimCardSharp", - "SimCardTwoTone", - "SingleBed", - "SingleBedOutlined", - "SingleBedRounded", - "SingleBedSharp", - "SingleBedTwoTone", - "Sip", - "SipOutlined", - "SipRounded", - "SipSharp", - "SipTwoTone", - "Skateboarding", - "SkateboardingOutlined", - "SkateboardingRounded", - "SkateboardingSharp", - "SkateboardingTwoTone", - "SkipNext", - "SkipNextOutlined", - "SkipNextRounded", - "SkipNextSharp", - "SkipNextTwoTone", - "SkipPrevious", - "SkipPreviousOutlined", - "SkipPreviousRounded", - "SkipPreviousSharp", - "SkipPreviousTwoTone", - "Sledding", - "SleddingOutlined", - "SleddingRounded", - "SleddingSharp", - "SleddingTwoTone", - "Slideshow", - "SlideshowOutlined", - "SlideshowRounded", - "SlideshowSharp", - "SlideshowTwoTone", - "SlowMotionVideo", - "SlowMotionVideoOutlined", - "SlowMotionVideoRounded", - "SlowMotionVideoSharp", - "SlowMotionVideoTwoTone", - "SmartButton", - "SmartButtonOutlined", - "SmartButtonRounded", - "SmartButtonSharp", - "SmartButtonTwoTone", - "SmartDisplay", - "SmartDisplayOutlined", - "SmartDisplayRounded", - "SmartDisplaySharp", - "SmartDisplayTwoTone", - "SmartScreen", - "SmartScreenOutlined", - "SmartScreenRounded", - "SmartScreenSharp", - "SmartScreenTwoTone", - "SmartToy", - "SmartToyOutlined", - "SmartToyRounded", - "SmartToySharp", - "SmartToyTwoTone", - "Smartphone", - "SmartphoneOutlined", - "SmartphoneRounded", - "SmartphoneSharp", - "SmartphoneTwoTone", - "SmokeFree", - "SmokeFreeOutlined", - "SmokeFreeRounded", - "SmokeFreeSharp", - "SmokeFreeTwoTone", - "SmokingRooms", - "SmokingRoomsOutlined", - "SmokingRoomsRounded", - "SmokingRoomsSharp", - "SmokingRoomsTwoTone", - "Sms", - "SmsFailed", - "SmsFailedOutlined", - "SmsFailedRounded", - "SmsFailedSharp", - "SmsFailedTwoTone", - "SmsOutlined", - "SmsRounded", - "SmsSharp", - "SmsTwoTone", - "SnippetFolder", - "SnippetFolderOutlined", - "SnippetFolderRounded", - "SnippetFolderSharp", - "SnippetFolderTwoTone", - "Snooze", - "SnoozeOutlined", - "SnoozeRounded", - "SnoozeSharp", - "SnoozeTwoTone", - "Snowboarding", - "SnowboardingOutlined", - "SnowboardingRounded", - "SnowboardingSharp", - "SnowboardingTwoTone", - "Snowmobile", - "SnowmobileOutlined", - "SnowmobileRounded", - "SnowmobileSharp", - "SnowmobileTwoTone", - "Snowshoeing", - "SnowshoeingOutlined", - "SnowshoeingRounded", - "SnowshoeingSharp", - "SnowshoeingTwoTone", - "Soap", - "SoapOutlined", - "SoapRounded", - "SoapSharp", - "SoapTwoTone", - "SocialDistance", - "SocialDistanceOutlined", - "SocialDistanceRounded", - "SocialDistanceSharp", - "SocialDistanceTwoTone", - "SolarPower", - "SolarPowerOutlined", - "SolarPowerRounded", - "SolarPowerSharp", - "SolarPowerTwoTone", - "Sort", - "SortByAlpha", - "SortByAlphaOutlined", - "SortByAlphaRounded", - "SortByAlphaSharp", - "SortByAlphaTwoTone", - "SortOutlined", - "SortRounded", - "SortSharp", - "SortTwoTone", - "Sos", - "SosOutlined", - "SosRounded", - "SosSharp", - "SosTwoTone", - "SoupKitchen", - "SoupKitchenOutlined", - "SoupKitchenRounded", - "SoupKitchenSharp", - "SoupKitchenTwoTone", - "Source", - "SourceOutlined", - "SourceRounded", - "SourceSharp", - "SourceTwoTone", - "South", - "SouthAmerica", - "SouthAmericaOutlined", - "SouthAmericaRounded", - "SouthAmericaSharp", - "SouthAmericaTwoTone", - "SouthEast", - "SouthEastOutlined", - "SouthEastRounded", - "SouthEastSharp", - "SouthEastTwoTone", - "SouthOutlined", - "SouthRounded", - "SouthSharp", - "SouthTwoTone", - "SouthWest", - "SouthWestOutlined", - "SouthWestRounded", - "SouthWestSharp", - "SouthWestTwoTone", - "Spa", - "SpaOutlined", - "SpaRounded", - "SpaSharp", - "SpaTwoTone", - "SpaceBar", - "SpaceBarOutlined", - "SpaceBarRounded", - "SpaceBarSharp", - "SpaceBarTwoTone", - "SpaceDashboard", - "SpaceDashboardOutlined", - "SpaceDashboardRounded", - "SpaceDashboardSharp", - "SpaceDashboardTwoTone", - "SpatialAudio", - "SpatialAudioOff", - "SpatialAudioOffOutlined", - "SpatialAudioOffRounded", - "SpatialAudioOffSharp", - "SpatialAudioOffTwoTone", - "SpatialAudioOutlined", - "SpatialAudioRounded", - "SpatialAudioSharp", - "SpatialAudioTwoTone", - "SpatialTracking", - "SpatialTrackingOutlined", - "SpatialTrackingRounded", - "SpatialTrackingSharp", - "SpatialTrackingTwoTone", - "Speaker", - "SpeakerGroup", - "SpeakerGroupOutlined", - "SpeakerGroupRounded", - "SpeakerGroupSharp", - "SpeakerGroupTwoTone", - "SpeakerNotes", - "SpeakerNotesOff", - "SpeakerNotesOffOutlined", - "SpeakerNotesOffRounded", - "SpeakerNotesOffSharp", - "SpeakerNotesOffTwoTone", - "SpeakerNotesOutlined", - "SpeakerNotesRounded", - "SpeakerNotesSharp", - "SpeakerNotesTwoTone", - "SpeakerOutlined", - "SpeakerPhone", - "SpeakerPhoneOutlined", - "SpeakerPhoneRounded", - "SpeakerPhoneSharp", - "SpeakerPhoneTwoTone", - "SpeakerRounded", - "SpeakerSharp", - "SpeakerTwoTone", - "Speed", - "SpeedOutlined", - "SpeedRounded", - "SpeedSharp", - "SpeedTwoTone", - "Spellcheck", - "SpellcheckOutlined", - "SpellcheckRounded", - "SpellcheckSharp", - "SpellcheckTwoTone", - "Splitscreen", - "SplitscreenOutlined", - "SplitscreenRounded", - "SplitscreenSharp", - "SplitscreenTwoTone", - "Spoke", - "SpokeOutlined", - "SpokeRounded", - "SpokeSharp", - "SpokeTwoTone", - "Sports", - "SportsBar", - "SportsBarOutlined", - "SportsBarRounded", - "SportsBarSharp", - "SportsBarTwoTone", - "SportsBaseball", - "SportsBaseballOutlined", - "SportsBaseballRounded", - "SportsBaseballSharp", - "SportsBaseballTwoTone", - "SportsBasketball", - "SportsBasketballOutlined", - "SportsBasketballRounded", - "SportsBasketballSharp", - "SportsBasketballTwoTone", - "SportsCricket", - "SportsCricketOutlined", - "SportsCricketRounded", - "SportsCricketSharp", - "SportsCricketTwoTone", - "SportsEsports", - "SportsEsportsOutlined", - "SportsEsportsRounded", - "SportsEsportsSharp", - "SportsEsportsTwoTone", - "SportsFootball", - "SportsFootballOutlined", - "SportsFootballRounded", - "SportsFootballSharp", - "SportsFootballTwoTone", - "SportsGolf", - "SportsGolfOutlined", - "SportsGolfRounded", - "SportsGolfSharp", - "SportsGolfTwoTone", - "SportsGymnastics", - "SportsGymnasticsOutlined", - "SportsGymnasticsRounded", - "SportsGymnasticsSharp", - "SportsGymnasticsTwoTone", - "SportsHandball", - "SportsHandballOutlined", - "SportsHandballRounded", - "SportsHandballSharp", - "SportsHandballTwoTone", - "SportsHockey", - "SportsHockeyOutlined", - "SportsHockeyRounded", - "SportsHockeySharp", - "SportsHockeyTwoTone", - "SportsKabaddi", - "SportsKabaddiOutlined", - "SportsKabaddiRounded", - "SportsKabaddiSharp", - "SportsKabaddiTwoTone", - "SportsMartialArts", - "SportsMartialArtsOutlined", - "SportsMartialArtsRounded", - "SportsMartialArtsSharp", - "SportsMartialArtsTwoTone", - "SportsMma", - "SportsMmaOutlined", - "SportsMmaRounded", - "SportsMmaSharp", - "SportsMmaTwoTone", - "SportsMotorsports", - "SportsMotorsportsOutlined", - "SportsMotorsportsRounded", - "SportsMotorsportsSharp", - "SportsMotorsportsTwoTone", - "SportsOutlined", - "SportsRounded", - "SportsRugby", - "SportsRugbyOutlined", - "SportsRugbyRounded", - "SportsRugbySharp", - "SportsRugbyTwoTone", - "SportsScore", - "SportsScoreOutlined", - "SportsScoreRounded", - "SportsScoreSharp", - "SportsScoreTwoTone", - "SportsSharp", - "SportsSoccer", - "SportsSoccerOutlined", - "SportsSoccerRounded", - "SportsSoccerSharp", - "SportsSoccerTwoTone", - "SportsTennis", - "SportsTennisOutlined", - "SportsTennisRounded", - "SportsTennisSharp", - "SportsTennisTwoTone", - "SportsTwoTone", - "SportsVolleyball", - "SportsVolleyballOutlined", - "SportsVolleyballRounded", - "SportsVolleyballSharp", - "SportsVolleyballTwoTone", - "Square", - "SquareFoot", - "SquareFootOutlined", - "SquareFootRounded", - "SquareFootSharp", - "SquareFootTwoTone", - "SquareOutlined", - "SquareRounded", - "SquareSharp", - "SquareTwoTone", - "SsidChart", - "SsidChartOutlined", - "SsidChartRounded", - "SsidChartSharp", - "SsidChartTwoTone", - "StackedBarChart", - "StackedBarChartOutlined", - "StackedBarChartRounded", - "StackedBarChartSharp", - "StackedBarChartTwoTone", - "StackedLineChart", - "StackedLineChartOutlined", - "StackedLineChartRounded", - "StackedLineChartSharp", - "StackedLineChartTwoTone", - "Stadium", - "StadiumOutlined", - "StadiumRounded", - "StadiumSharp", - "StadiumTwoTone", - "Stairs", - "StairsOutlined", - "StairsRounded", - "StairsSharp", - "StairsTwoTone", - "Star", - "StarBorder", - "StarBorderOutlined", - "StarBorderRounded", - "StarBorderSharp", - "StarBorderTwoTone", - "StarHalf", - "StarHalfOutlined", - "StarHalfRounded", - "StarHalfSharp", - "StarHalfTwoTone", - "StarOutline", - "StarOutlineOutlined", - "StarOutlineRounded", - "StarOutlineSharp", - "StarOutlineTwoTone", - "StarOutlined", - "StarRate", - "StarRateOutlined", - "StarRateRounded", - "StarRateSharp", - "StarRateTwoTone", - "StarRounded", - "StarSharp", - "StarTwoTone", - "Stars", - "StarsOutlined", - "StarsRounded", - "StarsSharp", - "StarsTwoTone", - "Start", - "StartOutlined", - "StartRounded", - "StartSharp", - "StartTwoTone", - "StayCurrentLandscape", - "StayCurrentLandscapeOutlined", - "StayCurrentLandscapeRounded", - "StayCurrentLandscapeSharp", - "StayCurrentLandscapeTwoTone", - "StayCurrentPortrait", - "StayCurrentPortraitOutlined", - "StayCurrentPortraitRounded", - "StayCurrentPortraitSharp", - "StayCurrentPortraitTwoTone", - "StayPrimaryLandscape", - "StayPrimaryLandscapeOutlined", - "StayPrimaryLandscapeRounded", - "StayPrimaryLandscapeSharp", - "StayPrimaryLandscapeTwoTone", - "StayPrimaryPortrait", - "StayPrimaryPortraitOutlined", - "StayPrimaryPortraitRounded", - "StayPrimaryPortraitSharp", - "StayPrimaryPortraitTwoTone", - "StickyNote2", - "StickyNote2Outlined", - "StickyNote2Rounded", - "StickyNote2Sharp", - "StickyNote2TwoTone", - "Stop", - "StopCircle", - "StopCircleOutlined", - "StopCircleRounded", - "StopCircleSharp", - "StopCircleTwoTone", - "StopOutlined", - "StopRounded", - "StopScreenShare", - "StopScreenShareOutlined", - "StopScreenShareRounded", - "StopScreenShareSharp", - "StopScreenShareTwoTone", - "StopSharp", - "StopTwoTone", - "Storage", - "StorageOutlined", - "StorageRounded", - "StorageSharp", - "StorageTwoTone", - "Store", - "StoreMallDirectory", - "StoreMallDirectoryOutlined", - "StoreMallDirectoryRounded", - "StoreMallDirectorySharp", - "StoreMallDirectoryTwoTone", - "StoreOutlined", - "StoreRounded", - "StoreSharp", - "StoreTwoTone", - "Storefront", - "StorefrontOutlined", - "StorefrontRounded", - "StorefrontSharp", - "StorefrontTwoTone", - "Storm", - "StormOutlined", - "StormRounded", - "StormSharp", - "StormTwoTone", - "Straight", - "StraightOutlined", - "StraightRounded", - "StraightSharp", - "StraightTwoTone", - "Straighten", - "StraightenOutlined", - "StraightenRounded", - "StraightenSharp", - "StraightenTwoTone", - "Stream", - "StreamOutlined", - "StreamRounded", - "StreamSharp", - "StreamTwoTone", - "Streetview", - "StreetviewOutlined", - "StreetviewRounded", - "StreetviewSharp", - "StreetviewTwoTone", - "StrikethroughS", - "StrikethroughSOutlined", - "StrikethroughSRounded", - "StrikethroughSSharp", - "StrikethroughSTwoTone", - "Stroller", - "StrollerOutlined", - "StrollerRounded", - "StrollerSharp", - "StrollerTwoTone", - "Style", - "StyleOutlined", - "StyleRounded", - "StyleSharp", - "StyleTwoTone", - "SubdirectoryArrowLeft", - "SubdirectoryArrowLeftOutlined", - "SubdirectoryArrowLeftRounded", - "SubdirectoryArrowLeftSharp", - "SubdirectoryArrowLeftTwoTone", - "SubdirectoryArrowRight", - "SubdirectoryArrowRightOutlined", - "SubdirectoryArrowRightRounded", - "SubdirectoryArrowRightSharp", - "SubdirectoryArrowRightTwoTone", - "Subject", - "SubjectOutlined", - "SubjectRounded", - "SubjectSharp", - "SubjectTwoTone", - "Subscript", - "SubscriptOutlined", - "SubscriptRounded", - "SubscriptSharp", - "SubscriptTwoTone", - "Subscriptions", - "SubscriptionsOutlined", - "SubscriptionsRounded", - "SubscriptionsSharp", - "SubscriptionsTwoTone", - "Subtitles", - "SubtitlesOff", - "SubtitlesOffOutlined", - "SubtitlesOffRounded", - "SubtitlesOffSharp", - "SubtitlesOffTwoTone", - "SubtitlesOutlined", - "SubtitlesRounded", - "SubtitlesSharp", - "SubtitlesTwoTone", - "Subway", - "SubwayOutlined", - "SubwayRounded", - "SubwaySharp", - "SubwayTwoTone", - "Summarize", - "SummarizeOutlined", - "SummarizeRounded", - "SummarizeSharp", - "SummarizeTwoTone", - "Superscript", - "SuperscriptOutlined", - "SuperscriptRounded", - "SuperscriptSharp", - "SuperscriptTwoTone", - "SupervisedUserCircle", - "SupervisedUserCircleOutlined", - "SupervisedUserCircleRounded", - "SupervisedUserCircleSharp", - "SupervisedUserCircleTwoTone", - "SupervisorAccount", - "SupervisorAccountOutlined", - "SupervisorAccountRounded", - "SupervisorAccountSharp", - "SupervisorAccountTwoTone", - "Support", - "SupportAgent", - "SupportAgentOutlined", - "SupportAgentRounded", - "SupportAgentSharp", - "SupportAgentTwoTone", - "SupportOutlined", - "SupportRounded", - "SupportSharp", - "SupportTwoTone", - "Surfing", - "SurfingOutlined", - "SurfingRounded", - "SurfingSharp", - "SurfingTwoTone", - "SurroundSound", - "SurroundSoundOutlined", - "SurroundSoundRounded", - "SurroundSoundSharp", - "SurroundSoundTwoTone", - "SwapCalls", - "SwapCallsOutlined", - "SwapCallsRounded", - "SwapCallsSharp", - "SwapCallsTwoTone", - "SwapHoriz", - "SwapHorizOutlined", - "SwapHorizRounded", - "SwapHorizSharp", - "SwapHorizTwoTone", - "SwapHorizontalCircle", - "SwapHorizontalCircleOutlined", - "SwapHorizontalCircleRounded", - "SwapHorizontalCircleSharp", - "SwapHorizontalCircleTwoTone", - "SwapVert", - "SwapVertOutlined", - "SwapVertRounded", - "SwapVertSharp", - "SwapVertTwoTone", - "SwapVerticalCircle", - "SwapVerticalCircleOutlined", - "SwapVerticalCircleRounded", - "SwapVerticalCircleSharp", - "SwapVerticalCircleTwoTone", - "Swipe", - "SwipeDown", - "SwipeDownAlt", - "SwipeDownAltOutlined", - "SwipeDownAltRounded", - "SwipeDownAltSharp", - "SwipeDownAltTwoTone", - "SwipeDownOutlined", - "SwipeDownRounded", - "SwipeDownSharp", - "SwipeDownTwoTone", - "SwipeLeft", - "SwipeLeftAlt", - "SwipeLeftAltOutlined", - "SwipeLeftAltRounded", - "SwipeLeftAltSharp", - "SwipeLeftAltTwoTone", - "SwipeLeftOutlined", - "SwipeLeftRounded", - "SwipeLeftSharp", - "SwipeLeftTwoTone", - "SwipeOutlined", - "SwipeRight", - "SwipeRightAlt", - "SwipeRightAltOutlined", - "SwipeRightAltRounded", - "SwipeRightAltSharp", - "SwipeRightAltTwoTone", - "SwipeRightOutlined", - "SwipeRightRounded", - "SwipeRightSharp", - "SwipeRightTwoTone", - "SwipeRounded", - "SwipeSharp", - "SwipeTwoTone", - "SwipeUp", - "SwipeUpAlt", - "SwipeUpAltOutlined", - "SwipeUpAltRounded", - "SwipeUpAltSharp", - "SwipeUpAltTwoTone", - "SwipeUpOutlined", - "SwipeUpRounded", - "SwipeUpSharp", - "SwipeUpTwoTone", - "SwipeVertical", - "SwipeVerticalOutlined", - "SwipeVerticalRounded", - "SwipeVerticalSharp", - "SwipeVerticalTwoTone", - "SwitchAccessShortcut", - "SwitchAccessShortcutAdd", - "SwitchAccessShortcutAddOutlined", - "SwitchAccessShortcutAddRounded", - "SwitchAccessShortcutAddSharp", - "SwitchAccessShortcutAddTwoTone", - "SwitchAccessShortcutOutlined", - "SwitchAccessShortcutRounded", - "SwitchAccessShortcutSharp", - "SwitchAccessShortcutTwoTone", - "SwitchAccount", - "SwitchAccountOutlined", - "SwitchAccountRounded", - "SwitchAccountSharp", - "SwitchAccountTwoTone", - "SwitchCamera", - "SwitchCameraOutlined", - "SwitchCameraRounded", - "SwitchCameraSharp", - "SwitchCameraTwoTone", - "SwitchLeft", - "SwitchLeftOutlined", - "SwitchLeftRounded", - "SwitchLeftSharp", - "SwitchLeftTwoTone", - "SwitchRight", - "SwitchRightOutlined", - "SwitchRightRounded", - "SwitchRightSharp", - "SwitchRightTwoTone", - "SwitchVideo", - "SwitchVideoOutlined", - "SwitchVideoRounded", - "SwitchVideoSharp", - "SwitchVideoTwoTone", - "Synagogue", - "SynagogueOutlined", - "SynagogueRounded", - "SynagogueSharp", - "SynagogueTwoTone", - "Sync", - "SyncAlt", - "SyncAltOutlined", - "SyncAltRounded", - "SyncAltSharp", - "SyncAltTwoTone", - "SyncDisabled", - "SyncDisabledOutlined", - "SyncDisabledRounded", - "SyncDisabledSharp", - "SyncDisabledTwoTone", - "SyncLock", - "SyncLockOutlined", - "SyncLockRounded", - "SyncLockSharp", - "SyncLockTwoTone", - "SyncOutlined", - "SyncProblem", - "SyncProblemOutlined", - "SyncProblemRounded", - "SyncProblemSharp", - "SyncProblemTwoTone", - "SyncRounded", - "SyncSharp", - "SyncTwoTone", - "SystemSecurityUpdate", - "SystemSecurityUpdateGood", - "SystemSecurityUpdateGoodOutlined", - "SystemSecurityUpdateGoodRounded", - "SystemSecurityUpdateGoodSharp", - "SystemSecurityUpdateGoodTwoTone", - "SystemSecurityUpdateOutlined", - "SystemSecurityUpdateRounded", - "SystemSecurityUpdateSharp", - "SystemSecurityUpdateTwoTone", - "SystemSecurityUpdateWarning", - "SystemSecurityUpdateWarningOutlined", - "SystemSecurityUpdateWarningRounded", - "SystemSecurityUpdateWarningSharp", - "SystemSecurityUpdateWarningTwoTone", - "SystemUpdate", - "SystemUpdateAlt", - "SystemUpdateAltOutlined", - "SystemUpdateAltRounded", - "SystemUpdateAltSharp", - "SystemUpdateAltTwoTone", - "SystemUpdateOutlined", - "SystemUpdateRounded", - "SystemUpdateSharp", - "SystemUpdateTwoTone", - "Tab", - "TabOutlined", - "TabRounded", - "TabSharp", - "TabTwoTone", - "TabUnselected", - "TabUnselectedOutlined", - "TabUnselectedRounded", - "TabUnselectedSharp", - "TabUnselectedTwoTone", - "TableBar", - "TableBarOutlined", - "TableBarRounded", - "TableBarSharp", - "TableBarTwoTone", - "TableChart", - "TableChartOutlined", - "TableChartRounded", - "TableChartSharp", - "TableChartTwoTone", - "TableRestaurant", - "TableRestaurantOutlined", - "TableRestaurantRounded", - "TableRestaurantSharp", - "TableRestaurantTwoTone", - "TableRows", - "TableRowsOutlined", - "TableRowsRounded", - "TableRowsSharp", - "TableRowsTwoTone", - "TableView", - "TableViewOutlined", - "TableViewRounded", - "TableViewSharp", - "TableViewTwoTone", - "Tablet", - "TabletAndroid", - "TabletAndroidOutlined", - "TabletAndroidRounded", - "TabletAndroidSharp", - "TabletAndroidTwoTone", - "TabletMac", - "TabletMacOutlined", - "TabletMacRounded", - "TabletMacSharp", - "TabletMacTwoTone", - "TabletOutlined", - "TabletRounded", - "TabletSharp", - "TabletTwoTone", - "Tag", - "TagFaces", - "TagFacesOutlined", - "TagFacesRounded", - "TagFacesSharp", - "TagFacesTwoTone", - "TagOutlined", - "TagRounded", - "TagSharp", - "TagTwoTone", - "TakeoutDining", - "TakeoutDiningOutlined", - "TakeoutDiningRounded", - "TakeoutDiningSharp", - "TakeoutDiningTwoTone", - "TapAndPlay", - "TapAndPlayOutlined", - "TapAndPlayRounded", - "TapAndPlaySharp", - "TapAndPlayTwoTone", - "Tapas", - "TapasOutlined", - "TapasRounded", - "TapasSharp", - "TapasTwoTone", - "Task", - "TaskAlt", - "TaskAltOutlined", - "TaskAltRounded", - "TaskAltSharp", - "TaskAltTwoTone", - "TaskOutlined", - "TaskRounded", - "TaskSharp", - "TaskTwoTone", - "TaxiAlert", - "TaxiAlertOutlined", - "TaxiAlertRounded", - "TaxiAlertSharp", - "TaxiAlertTwoTone", - "Telegram", - "TempleBuddhist", - "TempleBuddhistOutlined", - "TempleBuddhistRounded", - "TempleBuddhistSharp", - "TempleBuddhistTwoTone", - "TempleHindu", - "TempleHinduOutlined", - "TempleHinduRounded", - "TempleHinduSharp", - "TempleHinduTwoTone", - "Terminal", - "TerminalOutlined", - "TerminalRounded", - "TerminalSharp", - "TerminalTwoTone", - "Terrain", - "TerrainOutlined", - "TerrainRounded", - "TerrainSharp", - "TerrainTwoTone", - "TextDecrease", - "TextDecreaseOutlined", - "TextDecreaseRounded", - "TextDecreaseSharp", - "TextDecreaseTwoTone", - "TextFields", - "TextFieldsOutlined", - "TextFieldsRounded", - "TextFieldsSharp", - "TextFieldsTwoTone", - "TextFormat", - "TextFormatOutlined", - "TextFormatRounded", - "TextFormatSharp", - "TextFormatTwoTone", - "TextIncrease", - "TextIncreaseOutlined", - "TextIncreaseRounded", - "TextIncreaseSharp", - "TextIncreaseTwoTone", - "TextRotateUp", - "TextRotateUpOutlined", - "TextRotateUpRounded", - "TextRotateUpSharp", - "TextRotateUpTwoTone", - "TextRotateVertical", - "TextRotateVerticalOutlined", - "TextRotateVerticalRounded", - "TextRotateVerticalSharp", - "TextRotateVerticalTwoTone", - "TextRotationAngledown", - "TextRotationAngledownOutlined", - "TextRotationAngledownRounded", - "TextRotationAngledownSharp", - "TextRotationAngledownTwoTone", - "TextRotationAngleup", - "TextRotationAngleupOutlined", - "TextRotationAngleupRounded", - "TextRotationAngleupSharp", - "TextRotationAngleupTwoTone", - "TextRotationDown", - "TextRotationDownOutlined", - "TextRotationDownRounded", - "TextRotationDownSharp", - "TextRotationDownTwoTone", - "TextRotationNone", - "TextRotationNoneOutlined", - "TextRotationNoneRounded", - "TextRotationNoneSharp", - "TextRotationNoneTwoTone", - "TextSnippet", - "TextSnippetOutlined", - "TextSnippetRounded", - "TextSnippetSharp", - "TextSnippetTwoTone", - "Textsms", - "TextsmsOutlined", - "TextsmsRounded", - "TextsmsSharp", - "TextsmsTwoTone", - "Texture", - "TextureOutlined", - "TextureRounded", - "TextureSharp", - "TextureTwoTone", - "TheaterComedy", - "TheaterComedyOutlined", - "TheaterComedyRounded", - "TheaterComedySharp", - "TheaterComedyTwoTone", - "Theaters", - "TheatersOutlined", - "TheatersRounded", - "TheatersSharp", - "TheatersTwoTone", - "Thermostat", - "ThermostatAuto", - "ThermostatAutoOutlined", - "ThermostatAutoRounded", - "ThermostatAutoSharp", - "ThermostatAutoTwoTone", - "ThermostatOutlined", - "ThermostatRounded", - "ThermostatSharp", - "ThermostatTwoTone", - "ThumbDown", - "ThumbDownAlt", - "ThumbDownAltOutlined", - "ThumbDownAltRounded", - "ThumbDownAltSharp", - "ThumbDownAltTwoTone", - "ThumbDownOffAlt", - "ThumbDownOffAltOutlined", - "ThumbDownOffAltRounded", - "ThumbDownOffAltSharp", - "ThumbDownOffAltTwoTone", - "ThumbDownOutlined", - "ThumbDownRounded", - "ThumbDownSharp", - "ThumbDownTwoTone", - "ThumbUp", - "ThumbUpAlt", - "ThumbUpAltOutlined", - "ThumbUpAltRounded", - "ThumbUpAltSharp", - "ThumbUpAltTwoTone", - "ThumbUpOffAlt", - "ThumbUpOffAltOutlined", - "ThumbUpOffAltRounded", - "ThumbUpOffAltSharp", - "ThumbUpOffAltTwoTone", - "ThumbUpOutlined", - "ThumbUpRounded", - "ThumbUpSharp", - "ThumbUpTwoTone", - "ThumbsUpDown", - "ThumbsUpDownOutlined", - "ThumbsUpDownRounded", - "ThumbsUpDownSharp", - "ThumbsUpDownTwoTone", - "Thunderstorm", - "ThunderstormOutlined", - "ThunderstormRounded", - "ThunderstormSharp", - "ThunderstormTwoTone", - "TimeToLeave", - "TimeToLeaveOutlined", - "TimeToLeaveRounded", - "TimeToLeaveSharp", - "TimeToLeaveTwoTone", - "Timelapse", - "TimelapseOutlined", - "TimelapseRounded", - "TimelapseSharp", - "TimelapseTwoTone", - "Timeline", - "TimelineOutlined", - "TimelineRounded", - "TimelineSharp", - "TimelineTwoTone", - "Timer", - "Timer10", - "Timer10Outlined", - "Timer10Rounded", - "Timer10Select", - "Timer10SelectOutlined", - "Timer10SelectRounded", - "Timer10SelectSharp", - "Timer10SelectTwoTone", - "Timer10Sharp", - "Timer10TwoTone", - "Timer3", - "Timer3Outlined", - "Timer3Rounded", - "Timer3Select", - "Timer3SelectOutlined", - "Timer3SelectRounded", - "Timer3SelectSharp", - "Timer3SelectTwoTone", - "Timer3Sharp", - "Timer3TwoTone", - "TimerOff", - "TimerOffOutlined", - "TimerOffRounded", - "TimerOffSharp", - "TimerOffTwoTone", - "TimerOutlined", - "TimerRounded", - "TimerSharp", - "TimerTwoTone", - "TipsAndUpdates", - "TipsAndUpdatesOutlined", - "TipsAndUpdatesRounded", - "TipsAndUpdatesSharp", - "TipsAndUpdatesTwoTone", - "TireRepair", - "TireRepairOutlined", - "TireRepairRounded", - "TireRepairSharp", - "TireRepairTwoTone", - "Title", - "TitleOutlined", - "TitleRounded", - "TitleSharp", - "TitleTwoTone", - "Toc", - "TocOutlined", - "TocRounded", - "TocSharp", - "TocTwoTone", - "Today", - "TodayOutlined", - "TodayRounded", - "TodaySharp", - "TodayTwoTone", - "ToggleOff", - "ToggleOffOutlined", - "ToggleOffRounded", - "ToggleOffSharp", - "ToggleOffTwoTone", - "ToggleOn", - "ToggleOnOutlined", - "ToggleOnRounded", - "ToggleOnSharp", - "ToggleOnTwoTone", - "Token", - "TokenOutlined", - "TokenRounded", - "TokenSharp", - "TokenTwoTone", - "Toll", - "TollOutlined", - "TollRounded", - "TollSharp", - "TollTwoTone", - "Tonality", - "TonalityOutlined", - "TonalityRounded", - "TonalitySharp", - "TonalityTwoTone", - "Topic", - "TopicOutlined", - "TopicRounded", - "TopicSharp", - "TopicTwoTone", - "Tornado", - "TornadoOutlined", - "TornadoRounded", - "TornadoSharp", - "TornadoTwoTone", - "TouchApp", - "TouchAppOutlined", - "TouchAppRounded", - "TouchAppSharp", - "TouchAppTwoTone", - "Tour", - "TourOutlined", - "TourRounded", - "TourSharp", - "TourTwoTone", - "Toys", - "ToysOutlined", - "ToysRounded", - "ToysSharp", - "ToysTwoTone", - "TrackChanges", - "TrackChangesOutlined", - "TrackChangesRounded", - "TrackChangesSharp", - "TrackChangesTwoTone", - "Traffic", - "TrafficOutlined", - "TrafficRounded", - "TrafficSharp", - "TrafficTwoTone", - "Train", - "TrainOutlined", - "TrainRounded", - "TrainSharp", - "TrainTwoTone", - "Tram", - "TramOutlined", - "TramRounded", - "TramSharp", - "TramTwoTone", - "Transcribe", - "TranscribeOutlined", - "TranscribeRounded", - "TranscribeSharp", - "TranscribeTwoTone", - "TransferWithinAStation", - "TransferWithinAStationOutlined", - "TransferWithinAStationRounded", - "TransferWithinAStationSharp", - "TransferWithinAStationTwoTone", - "Transform", - "TransformOutlined", - "TransformRounded", - "TransformSharp", - "TransformTwoTone", - "Transgender", - "TransgenderOutlined", - "TransgenderRounded", - "TransgenderSharp", - "TransgenderTwoTone", - "TransitEnterexit", - "TransitEnterexitOutlined", - "TransitEnterexitRounded", - "TransitEnterexitSharp", - "TransitEnterexitTwoTone", - "Translate", - "TranslateOutlined", - "TranslateRounded", - "TranslateSharp", - "TranslateTwoTone", - "TravelExplore", - "TravelExploreOutlined", - "TravelExploreRounded", - "TravelExploreSharp", - "TravelExploreTwoTone", - "TrendingDown", - "TrendingDownOutlined", - "TrendingDownRounded", - "TrendingDownSharp", - "TrendingDownTwoTone", - "TrendingFlat", - "TrendingFlatOutlined", - "TrendingFlatRounded", - "TrendingFlatSharp", - "TrendingFlatTwoTone", - "TrendingUp", - "TrendingUpOutlined", - "TrendingUpRounded", - "TrendingUpSharp", - "TrendingUpTwoTone", - "TripOrigin", - "TripOriginOutlined", - "TripOriginRounded", - "TripOriginSharp", - "TripOriginTwoTone", - "Troubleshoot", - "TroubleshootOutlined", - "TroubleshootRounded", - "TroubleshootSharp", - "TroubleshootTwoTone", - "Try", - "TryOutlined", - "TryRounded", - "TrySharp", - "TryTwoTone", - "Tsunami", - "TsunamiOutlined", - "TsunamiRounded", - "TsunamiSharp", - "TsunamiTwoTone", - "Tty", - "TtyOutlined", - "TtyRounded", - "TtySharp", - "TtyTwoTone", - "Tune", - "TuneOutlined", - "TuneRounded", - "TuneSharp", - "TuneTwoTone", - "Tungsten", - "TungstenOutlined", - "TungstenRounded", - "TungstenSharp", - "TungstenTwoTone", - "TurnLeftOutlined", - "TurnLeftRounded", - "TurnRightOutlined", - "TurnRightRounded", - "TurnSharpLeft", - "TurnSharpLeftOutlined", - "TurnSharpLeftRounded", - "TurnSharpLeftTwoTone", - "TurnSharpRight", - "TurnSharpRightOutlined", - "TurnSharpRightRounded", - "TurnSharpRightTwoTone", - "TurnSlightLeft", - "TurnSlightLeftOutlined", - "TurnSlightLeftRounded", - "TurnSlightLeftSharp", - "TurnSlightLeftTwoTone", - "TurnSlightRight", - "TurnSlightRightOutlined", - "TurnSlightRightRounded", - "TurnSlightRightSharp", - "TurnSlightRightTwoTone", - "TurnedIn", - "TurnedInNot", - "TurnedInNotOutlined", - "TurnedInNotRounded", - "TurnedInNotSharp", - "TurnedInNotTwoTone", - "TurnedInOutlined", - "TurnedInRounded", - "TurnedInSharp", - "TurnedInTwoTone", - "Tv", - "TvOff", - "TvOffOutlined", - "TvOffRounded", - "TvOffSharp", - "TvOffTwoTone", - "TvOutlined", - "TvRounded", - "TvSharp", - "TvTwoTone", - "Twitter", - "TwoWheeler", - "TwoWheelerOutlined", - "TwoWheelerRounded", - "TwoWheelerSharp", - "TwoWheelerTwoTone", - "TypeSpecimen", - "TypeSpecimenOutlined", - "TypeSpecimenRounded", - "TypeSpecimenSharp", - "TypeSpecimenTwoTone", - "UTurnLeft", - "UTurnLeftOutlined", - "UTurnLeftRounded", - "UTurnLeftSharp", - "UTurnLeftTwoTone", - "UTurnRight", - "UTurnRightOutlined", - "UTurnRightRounded", - "UTurnRightSharp", - "UTurnRightTwoTone", - "Umbrella", - "UmbrellaOutlined", - "UmbrellaRounded", - "UmbrellaSharp", - "UmbrellaTwoTone", - "Unarchive", - "UnarchiveOutlined", - "UnarchiveRounded", - "UnarchiveSharp", - "UnarchiveTwoTone", - "Undo", - "UndoOutlined", - "UndoRounded", - "UndoSharp", - "UndoTwoTone", - "UnfoldLess", - "UnfoldLessDouble", - "UnfoldLessDoubleOutlined", - "UnfoldLessDoubleRounded", - "UnfoldLessDoubleSharp", - "UnfoldLessDoubleTwoTone", - "UnfoldLessOutlined", - "UnfoldLessRounded", - "UnfoldLessSharp", - "UnfoldLessTwoTone", - "UnfoldMore", - "UnfoldMoreDouble", - "UnfoldMoreDoubleOutlined", - "UnfoldMoreDoubleRounded", - "UnfoldMoreDoubleSharp", - "UnfoldMoreDoubleTwoTone", - "UnfoldMoreOutlined", - "UnfoldMoreRounded", - "UnfoldMoreSharp", - "UnfoldMoreTwoTone", - "Unpublished", - "UnpublishedOutlined", - "UnpublishedRounded", - "UnpublishedSharp", - "UnpublishedTwoTone", - "Unsubscribe", - "UnsubscribeOutlined", - "UnsubscribeRounded", - "UnsubscribeSharp", - "UnsubscribeTwoTone", - "Upcoming", - "UpcomingOutlined", - "UpcomingRounded", - "UpcomingSharp", - "UpcomingTwoTone", - "Update", - "UpdateDisabled", - "UpdateDisabledOutlined", - "UpdateDisabledRounded", - "UpdateDisabledSharp", - "UpdateDisabledTwoTone", - "UpdateOutlined", - "UpdateRounded", - "UpdateSharp", - "UpdateTwoTone", - "Upgrade", - "UpgradeOutlined", - "UpgradeRounded", - "UpgradeSharp", - "UpgradeTwoTone", - "Upload", - "UploadFile", - "UploadFileOutlined", - "UploadFileRounded", - "UploadFileSharp", - "UploadFileTwoTone", - "UploadOutlined", - "UploadRounded", - "UploadSharp", - "UploadTwoTone", - "Usb", - "UsbOff", - "UsbOffOutlined", - "UsbOffRounded", - "UsbOffSharp", - "UsbOffTwoTone", - "UsbOutlined", - "UsbRounded", - "UsbSharp", - "UsbTwoTone", - "Vaccines", - "VaccinesOutlined", - "VaccinesRounded", - "VaccinesSharp", - "VaccinesTwoTone", - "VapeFree", - "VapeFreeOutlined", - "VapeFreeRounded", - "VapeFreeSharp", - "VapeFreeTwoTone", - "VapingRooms", - "VapingRoomsOutlined", - "VapingRoomsRounded", - "VapingRoomsSharp", - "VapingRoomsTwoTone", - "Verified", - "VerifiedOutlined", - "VerifiedRounded", - "VerifiedSharp", - "VerifiedTwoTone", - "VerifiedUser", - "VerifiedUserOutlined", - "VerifiedUserRounded", - "VerifiedUserSharp", - "VerifiedUserTwoTone", - "VerticalAlignBottom", - "VerticalAlignBottomOutlined", - "VerticalAlignBottomRounded", - "VerticalAlignBottomSharp", - "VerticalAlignBottomTwoTone", - "VerticalAlignCenter", - "VerticalAlignCenterOutlined", - "VerticalAlignCenterRounded", - "VerticalAlignCenterSharp", - "VerticalAlignCenterTwoTone", - "VerticalAlignTop", - "VerticalAlignTopOutlined", - "VerticalAlignTopRounded", - "VerticalAlignTopSharp", - "VerticalAlignTopTwoTone", - "VerticalShades", - "VerticalShadesClosed", - "VerticalShadesClosedOutlined", - "VerticalShadesClosedRounded", - "VerticalShadesClosedSharp", - "VerticalShadesClosedTwoTone", - "VerticalShadesOutlined", - "VerticalShadesRounded", - "VerticalShadesSharp", - "VerticalShadesTwoTone", - "VerticalSplit", - "VerticalSplitOutlined", - "VerticalSplitRounded", - "VerticalSplitSharp", - "VerticalSplitTwoTone", - "Vibration", - "VibrationOutlined", - "VibrationRounded", - "VibrationSharp", - "VibrationTwoTone", - "VideoCall", - "VideoCallOutlined", - "VideoCallRounded", - "VideoCallSharp", - "VideoCallTwoTone", - "VideoCameraBack", - "VideoCameraBackOutlined", - "VideoCameraBackRounded", - "VideoCameraBackSharp", - "VideoCameraBackTwoTone", - "VideoCameraFront", - "VideoCameraFrontOutlined", - "VideoCameraFrontRounded", - "VideoCameraFrontSharp", - "VideoCameraFrontTwoTone", - "VideoChat", - "VideoChatOutlined", - "VideoChatRounded", - "VideoChatSharp", - "VideoChatTwoTone", - "VideoFile", - "VideoFileOutlined", - "VideoFileRounded", - "VideoFileSharp", - "VideoFileTwoTone", - "VideoLabel", - "VideoLabelOutlined", - "VideoLabelRounded", - "VideoLabelSharp", - "VideoLabelTwoTone", - "VideoLibrary", - "VideoLibraryOutlined", - "VideoLibraryRounded", - "VideoLibrarySharp", - "VideoLibraryTwoTone", - "VideoSettings", - "VideoSettingsOutlined", - "VideoSettingsRounded", - "VideoSettingsSharp", - "VideoSettingsTwoTone", - "VideoStable", - "VideoStableOutlined", - "VideoStableRounded", - "VideoStableSharp", - "VideoStableTwoTone", - "Videocam", - "VideocamOff", - "VideocamOffOutlined", - "VideocamOffRounded", - "VideocamOffSharp", - "VideocamOffTwoTone", - "VideocamOutlined", - "VideocamRounded", - "VideocamSharp", - "VideocamTwoTone", - "VideogameAsset", - "VideogameAssetOff", - "VideogameAssetOffOutlined", - "VideogameAssetOffRounded", - "VideogameAssetOffSharp", - "VideogameAssetOffTwoTone", - "VideogameAssetOutlined", - "VideogameAssetRounded", - "VideogameAssetSharp", - "VideogameAssetTwoTone", - "ViewAgenda", - "ViewAgendaOutlined", - "ViewAgendaRounded", - "ViewAgendaSharp", - "ViewAgendaTwoTone", - "ViewArray", - "ViewArrayOutlined", - "ViewArrayRounded", - "ViewArraySharp", - "ViewArrayTwoTone", - "ViewCarousel", - "ViewCarouselOutlined", - "ViewCarouselRounded", - "ViewCarouselSharp", - "ViewCarouselTwoTone", - "ViewColumn", - "ViewColumnOutlined", - "ViewColumnRounded", - "ViewColumnSharp", - "ViewColumnTwoTone", - "ViewComfy", - "ViewComfyAlt", - "ViewComfyAltOutlined", - "ViewComfyAltRounded", - "ViewComfyAltSharp", - "ViewComfyAltTwoTone", - "ViewComfyOutlined", - "ViewComfyRounded", - "ViewComfySharp", - "ViewComfyTwoTone", - "ViewCompact", - "ViewCompactAlt", - "ViewCompactAltOutlined", - "ViewCompactAltRounded", - "ViewCompactAltSharp", - "ViewCompactAltTwoTone", - "ViewCompactOutlined", - "ViewCompactRounded", - "ViewCompactSharp", - "ViewCompactTwoTone", - "ViewCozy", - "ViewCozyOutlined", - "ViewCozyRounded", - "ViewCozySharp", - "ViewCozyTwoTone", - "ViewDay", - "ViewDayOutlined", - "ViewDayRounded", - "ViewDaySharp", - "ViewDayTwoTone", - "ViewHeadline", - "ViewHeadlineOutlined", - "ViewHeadlineRounded", - "ViewHeadlineSharp", - "ViewHeadlineTwoTone", - "ViewInAr", - "ViewInArOutlined", - "ViewInArRounded", - "ViewInArSharp", - "ViewInArTwoTone", - "ViewKanban", - "ViewKanbanOutlined", - "ViewKanbanRounded", - "ViewKanbanSharp", - "ViewKanbanTwoTone", - "ViewList", - "ViewListOutlined", - "ViewListRounded", - "ViewListSharp", - "ViewListTwoTone", - "ViewModule", - "ViewModuleOutlined", - "ViewModuleRounded", - "ViewModuleSharp", - "ViewModuleTwoTone", - "ViewQuilt", - "ViewQuiltOutlined", - "ViewQuiltRounded", - "ViewQuiltSharp", - "ViewQuiltTwoTone", - "ViewSidebar", - "ViewSidebarOutlined", - "ViewSidebarRounded", - "ViewSidebarSharp", - "ViewSidebarTwoTone", - "ViewStream", - "ViewStreamOutlined", - "ViewStreamRounded", - "ViewStreamSharp", - "ViewStreamTwoTone", - "ViewTimeline", - "ViewTimelineOutlined", - "ViewTimelineRounded", - "ViewTimelineSharp", - "ViewTimelineTwoTone", - "ViewWeek", - "ViewWeekOutlined", - "ViewWeekRounded", - "ViewWeekSharp", - "ViewWeekTwoTone", - "Vignette", - "VignetteOutlined", - "VignetteRounded", - "VignetteSharp", - "VignetteTwoTone", - "Villa", - "VillaOutlined", - "VillaRounded", - "VillaSharp", - "VillaTwoTone", - "Visibility", - "VisibilityOff", - "VisibilityOffOutlined", - "VisibilityOffRounded", - "VisibilityOffSharp", - "VisibilityOffTwoTone", - "VisibilityOutlined", - "VisibilityRounded", - "VisibilitySharp", - "VisibilityTwoTone", - "VoiceChat", - "VoiceChatOutlined", - "VoiceChatRounded", - "VoiceChatSharp", - "VoiceChatTwoTone", - "VoiceOverOff", - "VoiceOverOffOutlined", - "VoiceOverOffRounded", - "VoiceOverOffSharp", - "VoiceOverOffTwoTone", - "Voicemail", - "VoicemailOutlined", - "VoicemailRounded", - "VoicemailSharp", - "VoicemailTwoTone", - "Volcano", - "VolcanoOutlined", - "VolcanoRounded", - "VolcanoSharp", - "VolcanoTwoTone", - "VolumeDown", - "VolumeDownOutlined", - "VolumeDownRounded", - "VolumeDownSharp", - "VolumeDownTwoTone", - "VolumeMute", - "VolumeMuteOutlined", - "VolumeMuteRounded", - "VolumeMuteSharp", - "VolumeMuteTwoTone", - "VolumeOff", - "VolumeOffOutlined", - "VolumeOffRounded", - "VolumeOffSharp", - "VolumeOffTwoTone", - "VolumeUp", - "VolumeUpOutlined", - "VolumeUpRounded", - "VolumeUpSharp", - "VolumeUpTwoTone", - "VolunteerActivism", - "VolunteerActivismOutlined", - "VolunteerActivismRounded", - "VolunteerActivismSharp", - "VolunteerActivismTwoTone", - "VpnKey", - "VpnKeyOff", - "VpnKeyOffOutlined", - "VpnKeyOffRounded", - "VpnKeyOffSharp", - "VpnKeyOffTwoTone", - "VpnKeyOutlined", - "VpnKeyRounded", - "VpnKeySharp", - "VpnKeyTwoTone", - "VpnLock", - "VpnLockOutlined", - "VpnLockRounded", - "VpnLockSharp", - "VpnLockTwoTone", - "Vrpano", - "VrpanoOutlined", - "VrpanoRounded", - "VrpanoSharp", - "VrpanoTwoTone", - "Wallet", - "WalletOutlined", - "WalletRounded", - "WalletSharp", - "WalletTwoTone", - "Wallpaper", - "WallpaperOutlined", - "WallpaperRounded", - "WallpaperSharp", - "WallpaperTwoTone", - "Warehouse", - "WarehouseOutlined", - "WarehouseRounded", - "WarehouseSharp", - "WarehouseTwoTone", - "Warning", - "WarningAmber", - "WarningAmberOutlined", - "WarningAmberRounded", - "WarningAmberSharp", - "WarningAmberTwoTone", - "WarningOutlined", - "WarningRounded", - "WarningSharp", - "WarningTwoTone", - "Wash", - "WashOutlined", - "WashRounded", - "WashSharp", - "WashTwoTone", - "Watch", - "WatchLater", - "WatchLaterOutlined", - "WatchLaterRounded", - "WatchLaterSharp", - "WatchLaterTwoTone", - "WatchOff", - "WatchOffOutlined", - "WatchOffRounded", - "WatchOffSharp", - "WatchOffTwoTone", - "WatchOutlined", - "WatchRounded", - "WatchSharp", - "WatchTwoTone", - "Water", - "WaterDamage", - "WaterDamageOutlined", - "WaterDamageRounded", - "WaterDamageSharp", - "WaterDamageTwoTone", - "WaterDrop", - "WaterDropOutlined", - "WaterDropRounded", - "WaterDropSharp", - "WaterDropTwoTone", - "WaterOutlined", - "WaterRounded", - "WaterSharp", - "WaterTwoTone", - "WaterfallChart", - "WaterfallChartOutlined", - "WaterfallChartRounded", - "WaterfallChartSharp", - "WaterfallChartTwoTone", - "Waves", - "WavesOutlined", - "WavesRounded", - "WavesSharp", - "WavesTwoTone", - "WavingHand", - "WavingHandOutlined", - "WavingHandRounded", - "WavingHandSharp", - "WavingHandTwoTone", - "WbAuto", - "WbAutoOutlined", - "WbAutoRounded", - "WbAutoSharp", - "WbAutoTwoTone", - "WbCloudy", - "WbCloudyOutlined", - "WbCloudyRounded", - "WbCloudySharp", - "WbCloudyTwoTone", - "WbIncandescent", - "WbIncandescentOutlined", - "WbIncandescentRounded", - "WbIncandescentSharp", - "WbIncandescentTwoTone", - "WbIridescent", - "WbIridescentOutlined", - "WbIridescentRounded", - "WbIridescentSharp", - "WbIridescentTwoTone", - "WbShade", - "WbShadeOutlined", - "WbShadeRounded", - "WbShadeSharp", - "WbShadeTwoTone", - "WbSunny", - "WbSunnyOutlined", - "WbSunnyRounded", - "WbSunnySharp", - "WbSunnyTwoTone", - "WbTwilight", - "WbTwilightOutlined", - "WbTwilightRounded", - "WbTwilightSharp", - "WbTwilightTwoTone", - "Wc", - "WcOutlined", - "WcRounded", - "WcSharp", - "WcTwoTone", - "Web", - "WebAsset", - "WebAssetOff", - "WebAssetOffOutlined", - "WebAssetOffRounded", - "WebAssetOffSharp", - "WebAssetOffTwoTone", - "WebAssetOutlined", - "WebAssetRounded", - "WebAssetSharp", - "WebAssetTwoTone", - "WebOutlined", - "WebRounded", - "WebSharp", - "WebStories", - "WebStoriesOutlined", - "WebStoriesRounded", - "WebStoriesSharp", - "WebStoriesTwoTone", - "WebTwoTone", - "Webhook", - "WebhookOutlined", - "WebhookRounded", - "WebhookSharp", - "WebhookTwoTone", - "Weekend", - "WeekendOutlined", - "WeekendRounded", - "WeekendSharp", - "WeekendTwoTone", - "West", - "WestOutlined", - "WestRounded", - "WestSharp", - "WestTwoTone", - "WhatsApp", - "Whatshot", - "WhatshotOutlined", - "WhatshotRounded", - "WhatshotSharp", - "WhatshotTwoTone", - "WheelchairPickup", - "WheelchairPickupOutlined", - "WheelchairPickupRounded", - "WheelchairPickupSharp", - "WheelchairPickupTwoTone", - "WhereToVote", - "WhereToVoteOutlined", - "WhereToVoteRounded", - "WhereToVoteSharp", - "WhereToVoteTwoTone", - "Widgets", - "WidgetsOutlined", - "WidgetsRounded", - "WidgetsSharp", - "WidgetsTwoTone", - "WidthFull", - "WidthFullOutlined", - "WidthFullRounded", - "WidthFullSharp", - "WidthFullTwoTone", - "WidthNormal", - "WidthNormalOutlined", - "WidthNormalRounded", - "WidthNormalSharp", - "WidthNormalTwoTone", - "WidthWide", - "WidthWideOutlined", - "WidthWideRounded", - "WidthWideSharp", - "WidthWideTwoTone", - "Wifi", - "Wifi1Bar", - "Wifi1BarOutlined", - "Wifi1BarRounded", - "Wifi1BarSharp", - "Wifi1BarTwoTone", - "Wifi2Bar", - "Wifi2BarOutlined", - "Wifi2BarRounded", - "Wifi2BarSharp", - "Wifi2BarTwoTone", - "WifiCalling", - "WifiCalling3", - "WifiCalling3Outlined", - "WifiCalling3Rounded", - "WifiCalling3Sharp", - "WifiCalling3TwoTone", - "WifiCallingOutlined", - "WifiCallingRounded", - "WifiCallingSharp", - "WifiCallingTwoTone", - "WifiChannel", - "WifiChannelOutlined", - "WifiChannelRounded", - "WifiChannelSharp", - "WifiChannelTwoTone", - "WifiFind", - "WifiFindOutlined", - "WifiFindRounded", - "WifiFindSharp", - "WifiFindTwoTone", - "WifiLock", - "WifiLockOutlined", - "WifiLockRounded", - "WifiLockSharp", - "WifiLockTwoTone", - "WifiOff", - "WifiOffOutlined", - "WifiOffRounded", - "WifiOffSharp", - "WifiOffTwoTone", - "WifiOutlined", - "WifiPassword", - "WifiPasswordOutlined", - "WifiPasswordRounded", - "WifiPasswordSharp", - "WifiPasswordTwoTone", - "WifiProtectedSetup", - "WifiProtectedSetupOutlined", - "WifiProtectedSetupRounded", - "WifiProtectedSetupSharp", - "WifiProtectedSetupTwoTone", - "WifiRounded", - "WifiSharp", - "WifiTethering", - "WifiTetheringError", - "WifiTetheringErrorOutlined", - "WifiTetheringErrorRounded", - "WifiTetheringErrorSharp", - "WifiTetheringErrorTwoTone", - "WifiTetheringOff", - "WifiTetheringOffOutlined", - "WifiTetheringOffRounded", - "WifiTetheringOffSharp", - "WifiTetheringOffTwoTone", - "WifiTetheringOutlined", - "WifiTetheringRounded", - "WifiTetheringSharp", - "WifiTetheringTwoTone", - "WifiTwoTone", - "WindPower", - "WindPowerOutlined", - "WindPowerRounded", - "WindPowerSharp", - "WindPowerTwoTone", - "Window", - "WindowOutlined", - "WindowRounded", - "WindowSharp", - "WindowTwoTone", - "WineBar", - "WineBarOutlined", - "WineBarRounded", - "WineBarSharp", - "WineBarTwoTone", - "Woman", - "Woman2", - "Woman2Outlined", - "Woman2Rounded", - "Woman2Sharp", - "Woman2TwoTone", - "WomanOutlined", - "WomanRounded", - "WomanSharp", - "WomanTwoTone", - "Work", - "WorkHistory", - "WorkHistoryOutlined", - "WorkHistoryRounded", - "WorkHistorySharp", - "WorkHistoryTwoTone", - "WorkOff", - "WorkOffOutlined", - "WorkOffRounded", - "WorkOffSharp", - "WorkOffTwoTone", - "WorkOutline", - "WorkOutlineOutlined", - "WorkOutlineRounded", - "WorkOutlineSharp", - "WorkOutlineTwoTone", - "WorkOutlined", - "WorkRounded", - "WorkSharp", - "WorkTwoTone", - "WorkspacePremium", - "WorkspacePremiumOutlined", - "WorkspacePremiumRounded", - "WorkspacePremiumSharp", - "WorkspacePremiumTwoTone", - "Workspaces", - "WorkspacesOutlined", - "WorkspacesRounded", - "WorkspacesSharp", - "WorkspacesTwoTone", - "WrapText", - "WrapTextOutlined", - "WrapTextRounded", - "WrapTextSharp", - "WrapTextTwoTone", - "WrongLocation", - "WrongLocationOutlined", - "WrongLocationRounded", - "WrongLocationSharp", - "WrongLocationTwoTone", - "Wysiwyg", - "WysiwygOutlined", - "WysiwygRounded", - "WysiwygSharp", - "WysiwygTwoTone", - "X", - "Yard", - "YardOutlined", - "YardRounded", - "YardSharp", - "YardTwoTone", - "YouTube", - "YoutubeSearchedFor", - "YoutubeSearchedForOutlined", - "YoutubeSearchedForRounded", - "YoutubeSearchedForSharp", - "YoutubeSearchedForTwoTone", - "ZoomIn", - "ZoomInMap", - "ZoomInMapOutlined", - "ZoomInMapRounded", - "ZoomInMapSharp", - "ZoomInMapTwoTone", - "ZoomInOutlined", - "ZoomInRounded", - "ZoomInSharp", - "ZoomInTwoTone", - "ZoomOut", - "ZoomOutMap", - "ZoomOutMapOutlined", - "ZoomOutMapRounded", - "ZoomOutMapSharp", - "ZoomOutMapTwoTone", - "ZoomOutOutlined", - "ZoomOutRounded", - "ZoomOutSharp", - "ZoomOutTwoTone" -] diff --git a/packages/iconography/src/index.ts b/packages/iconography/src/index.ts index 279bdb7..73f696d 100644 --- a/packages/iconography/src/index.ts +++ b/packages/iconography/src/index.ts @@ -1,107 +1,66 @@ /* WordPress Dependencies */ +import domReady from '@wordpress/dom-ready'; import { registerFormatType } from '@wordpress/rich-text'; /* Internal Dependencies */ -import { IconToolbarButton } from './IconToolbarButton'; -import { getIconOptions, selectIconAtCurrentCursor } from './utils'; +import { getIconGroups, selectIconAtCurrentCursor } from './utils'; /* Types */ import type { IconGroup } from './types'; -import domReady from '@wordpress/dom-ready'; -/** - * The supported icon groups. - */ -export const iconGroups: IconGroup[] = [ - { - title: 'Outlined', - name: 'content-only/ms-outlined', - className: 'material-symbols-outlined', - tagName: 'span', - edit: IconToolbarButton, - options: getIconOptions( 'Outlined' ), - interactive: false, - }, - { - title: 'Rounded', - name: 'content-only/ms-rounded', - className: 'material-symbols-rounded', - tagName: 'span', - edit: () => {}, // only render the button on the first icon group. It contains markup for evertything in a grouped layout. - options: getIconOptions( 'Rounded' ), - interactive: false, - }, - { - title: 'Sharp', - name: 'content-only/ms-sharp', - className: 'material-symbols-sharp', - tagName: 'span', - options: getIconOptions( 'Sharp' ), - edit: () => {}, // only render the button on the first icon group. It contains markup for evertything in a grouped layout. - interactive: false, - }, -]; +export const handleKeyDown = + ( iconGroups: IconGroup[] | undefined ) => ( event: KeyboardEvent ) => { + switch ( event.key ) { + case 'ArrowLeft': + case 'Backspace': + case 'Delete': + selectIconAtCurrentCursor( iconGroups ); + break; + default: + break; + } + }; -/** - * Keydown event listener for handling the selection of an icon at the current cursor. - * @param {KeyboardEvent} event The keyboard event. - */ -export const handleKeyDown = ( event: KeyboardEvent ) => { - switch ( event.key ) { - case 'ArrowLeft': - case 'Backspace': - case 'Delete': - selectIconAtCurrentCursor(); - break; - default: - break; - } -}; +export const handleKeyUp = + ( iconGroups: IconGroup[] | undefined ) => ( event: KeyboardEvent ) => { + if ( 'ArrowRight' === event.key ) { + const { selection, icon } = selectIconAtCurrentCursor( iconGroups ); + // Move the cursor one-right after the icon. + if ( selection && icon ) { + selection.setPosition( icon, 1 ); + selection.selectAllChildren( icon ); + } + } + }; -/** - * Handle keyup event for ArrowRight. - * @param {KeyboardEvent} event The keyboard event. - */ -export const handleKeyUp = ( event: KeyboardEvent ) => { - if ( 'ArrowRight' === event.key ) { - const { selection, icon } = selectIconAtCurrentCursor(); - // Move the cursor one-right after the icon. - if ( selection && icon ) { - selection.setPosition( icon, 1 ); - selection.selectAllChildren( icon ); +export const handleKeyEvent = + ( iconGroups: IconGroup[] | undefined ) => ( event: KeyboardEvent ) => { + switch ( event.type ) { + case 'keydown': + handleKeyDown( iconGroups )( event ); + break; + case 'keyup': + handleKeyUp( iconGroups )( event ); + break; + default: + break; } - } -}; + }; -/** - * Handles the key event for Iconography. - * @param {KeyboardEvent} event The keyboard event. - */ -export const handleKeyEvent = ( event: KeyboardEvent ) => { - switch ( event.type ) { - case 'keydown': - handleKeyDown( event ); - break; - case 'keyup': - handleKeyUp( event ); - break; - default: - break; +export const registerIconography = () => { + const iconGroups = getIconGroups(); + if ( ! iconGroups ) { + return; } -}; -/** - * Registers the formats, and the event listeners required for Iconography. - */ -const registerIconography = () => { iconGroups.forEach( ( iconGroup ) => { registerFormatType( iconGroup.name, iconGroup ); } ); // ArrowLeft, Backspace, and Delete need to be handled on KeyDown, because the selection is updated before the event fires. - document.addEventListener( 'keydown', handleKeyEvent ); + document.addEventListener( 'keydown', handleKeyEvent( iconGroups ) ); // ArrowRight needs a special case for KeyUp, because the selection needs to happen after the event has moved the cursor into the next character. - document.addEventListener( 'keyup', handleKeyEvent ); + document.addEventListener( 'keyup', handleKeyEvent( iconGroups ) ); }; domReady( registerIconography ); diff --git a/packages/iconography/src/readme.md b/packages/iconography/src/readme.md deleted file mode 100644 index 44ffbdd..0000000 --- a/packages/iconography/src/readme.md +++ /dev/null @@ -1,7 +0,0 @@ -# Iconography - -The data for the iconography is defined here _instead_ of deriving it directly from -the MUI-Symbols package. This is because if we import all the MUI-Symbols the bundle -size is _massive_ where we don't actually need any of the SVG elements. As a result, -we define the names of all the supported icons. This package will need to be updated -periodically to ensure it is in sync with the MUI-Symbols package. diff --git a/packages/iconography/src/tests/IconPanel.test.tsx b/packages/iconography/src/tests/IconPanel.test.tsx index f191cea..1e9eee0 100644 --- a/packages/iconography/src/tests/IconPanel.test.tsx +++ b/packages/iconography/src/tests/IconPanel.test.tsx @@ -7,7 +7,6 @@ import { IconPanel } from '../IconPanel'; jest.mock( '../utils', () => ( { generateRichTextFormat: jest.fn(), - getIconOptions: jest.fn(), } ) ); const iconGroup = { @@ -46,6 +45,19 @@ describe( 'IconPanel', () => { ).toMatchSnapshot(); } ); + test( 'search term filters icons', () => { + render( + + ); + + expect( screen.queryByText( 'accessibility' ) ).toBe( null ); + expect( screen.queryByText( 'add' ) ).not.toBe( null ); + } ); + test( 'clicking icon triggers onClick', () => { const onClick = jest.fn(); render( diff --git a/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap b/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap index 47d34d6..6776fbf 100644 --- a/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap +++ b/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap @@ -30,15 +30,15 @@ exports[`IconPanel rendered IconPanel matches snapshot 1`] = ` />