diff --git a/.ruff.toml b/.ruff.toml new file mode 100644 index 0000000000..3620da2df1 --- /dev/null +++ b/.ruff.toml @@ -0,0 +1 @@ +exclude = ["ci/templates"] diff --git a/ci/generate_cupertino_icons_dart.sh b/ci/generate_cupertino_icons_dart.sh deleted file mode 100644 index 0a80b1ae37..0000000000 --- a/ci/generate_cupertino_icons_dart.sh +++ /dev/null @@ -1,15 +0,0 @@ -url='https://raw.githubusercontent.com/flutter/flutter/stable/packages/flutter/lib/src/cupertino/icons.dart' -output_file="cupertino_icons.txt" - -echo "Map cupertinoIcons = {" > "$output_file" - -curl -s $url | python -c ' -import re - -for line in __import__("sys").stdin: - match = re.search(r"const IconData ([a-z0-9_]+)", line) - if match: - print("\"cupertino_{}\": CupertinoIcons.{}, ".format(match.group(1), match.group(1))) -' >> "$output_file" - -echo "};" >> "$output_file" \ No newline at end of file diff --git a/ci/generate_cupertino_icons_python.sh b/ci/generate_cupertino_icons_python.sh deleted file mode 100644 index c9fd2fca76..0000000000 --- a/ci/generate_cupertino_icons_python.sh +++ /dev/null @@ -1,11 +0,0 @@ -url='https://raw.githubusercontent.com/flutter/flutter/stable/packages/flutter/lib/src/cupertino/icons.dart' -output_file="cupertino_icons_python.txt" - -curl -s $url | python -c ' -import re - -for line in __import__("sys").stdin: - match = re.search(r"const IconData ([a-z0-9_]+)", line) - if match: - print("{} = \"cupertino_{}\"".format(match.group(1).upper(), match.group(1))) -' >> "$output_file" \ No newline at end of file diff --git a/ci/generate_icons.py b/ci/generate_icons.py new file mode 100644 index 0000000000..04dde2b871 --- /dev/null +++ b/ci/generate_icons.py @@ -0,0 +1,91 @@ +# /// script +# dependencies = [ +# "requests", +# "Jinja2", +# ] +# /// + +import re +from pathlib import Path + +import requests +from jinja2 import Environment, FileSystemLoader + +# Regex for parsing icon definitions (handles multi-line IconData) +ICON_VAR_PATTERN = re.compile( + r"""^\s*static const IconData\s+(\w+)\s*=""", re.MULTILINE +) + +file_loader = FileSystemLoader(Path(__file__).parent / "templates") +templates = Environment(loader=file_loader) + + +def download_dart_file(url: str) -> str: + print(f"Downloading Dart file from: {url}") + response = requests.get(url) + response.raise_for_status() + return response.text + + +def parse_dart_icons(dart_content: str, set_id: int): + # Extract and sort icon names alphabetically + icon_names = sorted(ICON_VAR_PATTERN.findall(dart_content)) + + icons = [] + for i, icon_name in enumerate(icon_names): + packed_value = (set_id << 16) | i + icons.append((icon_name, packed_value)) + + print(f"🔍 Found {len(icons)} icons for set ID {set_id} (sorted).") + return icons + + +def generate_file(icons, template_name, output_file: str): + template = templates.get_template(template_name) + with open( + Path(__file__).parent.joinpath(output_file).resolve(), "w", encoding="utf-8" + ) as f: + f.write(template.render(icons=icons)) + print(f"✅ File written to {output_file}") + + +def main(): + # material icons + url = "https://raw.githubusercontent.com/flutter/flutter/refs/heads/stable/packages/flutter/lib/src/material/icons.dart" + set_id = 1 + dart_content = download_dart_file(url) + icons = parse_dart_icons(dart_content, set_id) + + generate_file( + icons, + "material_icons.dart", + "../packages/flet/lib/src/utils/material_icons.dart", + ) + + generate_file( + icons, + "material_icons.py", + "../sdk/python/packages/flet/src/flet/controls/material/icons.py", + ) + + # cupertino icons + url = "https://raw.githubusercontent.com/flutter/flutter/refs/heads/stable/packages/flutter/lib/src/cupertino/icons.dart" + set_id = 2 + dart_content = download_dart_file(url) + icons = parse_dart_icons(dart_content, set_id) + + generate_file( + icons, + "cupertino_icons.dart", + "../packages/flet/lib/src/utils/cupertino_icons.dart", + ) + + generate_file( + icons, + "cupertino_icons.py", + "../sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_icons.py", + ) + + +if __name__ == "__main__": + main() diff --git a/ci/generate_material_icons_dart.sh b/ci/generate_material_icons_dart.sh deleted file mode 100644 index 5006b844bb..0000000000 --- a/ci/generate_material_icons_dart.sh +++ /dev/null @@ -1,15 +0,0 @@ -url='https://raw.githubusercontent.com/flutter/flutter/stable/packages/flutter/lib/src/material/icons.dart' -output_file="material-icons.txt" - -echo "Map materialIcons = {" > "$output_file" - -curl -s $url | python -c ' -import re - -for line in __import__("sys").stdin: - match = re.search(r"const IconData ([a-z0-9_]+)", line) - if match: - print("\"{}\": Icons.{}, ".format(match.group(1), match.group(1))) -' >> "$output_file" - -echo "};" >> "$output_file" \ No newline at end of file diff --git a/ci/generate_material_icons_python.sh b/ci/generate_material_icons_python.sh deleted file mode 100644 index b5974b470a..0000000000 --- a/ci/generate_material_icons_python.sh +++ /dev/null @@ -1,11 +0,0 @@ -url='https://raw.githubusercontent.com/flutter/flutter/master/packages/flutter/lib/src/material/icons.dart' -output_file="material_icons_python.txt" - -curl -s $url | python -c ' -import re - -for line in __import__("sys").stdin: - match = re.search(r"const IconData ([a-z0-9_]+)", line) - if match: - print("{} = \"{}\"".format(match.group(1).upper(), match.group(1))) -' >> "$output_file" \ No newline at end of file diff --git a/ci/templates/cupertino_icons.dart b/ci/templates/cupertino_icons.dart new file mode 100644 index 0000000000..ac7eb8f2e8 --- /dev/null +++ b/ci/templates/cupertino_icons.dart @@ -0,0 +1,7 @@ +import 'package:flutter/cupertino.dart'; + +List cupertinoIcons = [ + {% for name, code in icons -%} + CupertinoIcons.{{ name }}, + {% endfor -%} +]; diff --git a/ci/templates/cupertino_icons.py b/ci/templates/cupertino_icons.py new file mode 100644 index 0000000000..e2572af460 --- /dev/null +++ b/ci/templates/cupertino_icons.py @@ -0,0 +1,19 @@ +""" +Flet Cupertino Icons + +To generate/update this file run from the root of the repository: + +``` +uv run ci/generate_icons.py +``` +""" + +from flet.controls.icon_data import IconData + +__all__ = ["CupertinoIcons"] + + +class CupertinoIcons(IconData, package_name="flet", class_name="CupertinoIcons"): + {% for name, code in icons -%} + {{ name.upper() }} = {{ "0x%X" % code }} + {% endfor -%} diff --git a/ci/templates/material_icons.dart b/ci/templates/material_icons.dart new file mode 100644 index 0000000000..7065fb25db --- /dev/null +++ b/ci/templates/material_icons.dart @@ -0,0 +1,7 @@ +import 'package:flutter/material.dart'; + +List materialIcons = [ + {% for name, code in icons -%} + Icons.{{ name }}, + {% endfor -%} +]; diff --git a/ci/templates/material_icons.py b/ci/templates/material_icons.py new file mode 100644 index 0000000000..f3a8dea23a --- /dev/null +++ b/ci/templates/material_icons.py @@ -0,0 +1,19 @@ +""" +Flet Material Icons + +To generate/update this file run from the root of the repository: + +``` +uv run ci/generate_icons.py +``` +""" + +from flet.controls.icon_data import IconData + +__all__ = ["Icons"] + + +class Icons(IconData, package_name="flet", class_name="Icons"): + {% for name, code in icons -%} + {{ name.upper() }} = {{ "0x%X" % code }} + {% endfor -%} diff --git a/client/lib/main.dart b/client/lib/main.dart index 86ce8dc569..dbb2ff65ad 100644 --- a/client/lib/main.dart +++ b/client/lib/main.dart @@ -27,10 +27,10 @@ const bool isProduction = bool.fromEnvironment('dart.vm.product'); Tester? tester; void main([List? args]) async { - // if (isProduction) { - // // ignore: avoid_returning_null_for_void - // debugPrint = (String? message, {int? wrapWidth}) => null; - // } + if (isProduction) { + // ignore: avoid_returning_null_for_void + debugPrint = (String? message, {int? wrapWidth}) => null; + } await setupDesktop(); diff --git a/client/pubspec.lock b/client/pubspec.lock index 74c5495384..c50c7bf890 100644 --- a/client/pubspec.lock +++ b/client/pubspec.lock @@ -101,10 +101,10 @@ packages: dependency: transitive description: name: checked_yaml - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + sha256: "959525d3162f249993882720d52b7e0c833978df229be20702b33d48d91de70f" url: "https://pub.dev" source: hosted - version: "2.0.3" + version: "2.0.4" cli_util: dependency: transitive description: @@ -197,10 +197,10 @@ packages: dependency: transitive description: name: dio - sha256: "253a18bbd4851fecba42f7343a1df3a9a4c1d31a2c1b37e221086b4fa8c8dbc9" + sha256: d90ee57923d1828ac14e492ca49440f65477f4bb1263575900be731a3dac66a9 url: "https://pub.dev" source: hosted - version: "5.8.0+1" + version: "5.9.0" dio_web_adapter: dependency: transitive description: @@ -245,10 +245,10 @@ packages: dependency: transitive description: name: file_picker - sha256: ef9908739bdd9c476353d6adff72e88fd00c625f5b959ae23f7567bd5137db0a + sha256: ef7d2a085c1b1d69d17b6842d0734aad90156de08df6bd3c12496d0bd6ddf8e2 url: "https://pub.dev" source: hosted - version: "10.2.0" + version: "10.3.1" fixnum: dependency: transitive description: @@ -276,8 +276,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_ads" - ref: v1 - resolved-ref: d52c10df46113a73669f0897cff1cc51f45c4df7 + ref: main + resolved-ref: e847a431388733d6bcd81748c617a3b962c5efa9 url: "https://github.com/flet-dev/flet-ads.git" source: git version: "0.2.0" @@ -285,8 +285,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_audio" - ref: v1 - resolved-ref: "35cffd36eb481ac4ac361d86a2d9ec1d8833804f" + ref: main + resolved-ref: aa29c5e0e342b4569201859c9e62b8acae620a2b url: "https://github.com/flet-dev/flet-audio.git" source: git version: "0.2.0" @@ -294,8 +294,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_audio_recorder" - ref: v1 - resolved-ref: "776e614815a581a49233fa4d799953d9f0279277" + ref: main + resolved-ref: "5bdaa07ff608f7a9de8cc92307aadaaa0261a7f1" url: "https://github.com/flet-dev/flet-audio-recorder.git" source: git version: "0.2.0" @@ -303,17 +303,17 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_charts" - ref: v1 - resolved-ref: cb3c7b56ea13e078526190b07be9bc113ce10ace + ref: main + resolved-ref: c34fbf906177fef58bfc77acb49f63ad5bedb142 url: "https://github.com/flet-dev/flet-charts.git" source: git - version: "0.1.0" + version: "0.2.0" flet_datatable2: dependency: "direct main" description: path: "src/flutter/flet_datatable2" - ref: v1 - resolved-ref: "98c2b38801ddc131e30d2082b4fc9271201384a8" + ref: main + resolved-ref: "1b459cf33f0ccb36a98ad14591eadfcad1ba6cb6" url: "https://github.com/flet-dev/flet-datatable2.git" source: git version: "0.1.0" @@ -321,8 +321,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_flashlight" - ref: v1 - resolved-ref: ed8be1e10886a8e1cfffe444bff8c82999908125 + ref: main + resolved-ref: d73e7bc8f373c5ce0efaa2728e10d17ef1ef3ac6 url: "https://github.com/flet-dev/flet-flashlight.git" source: git version: "0.2.0" @@ -330,8 +330,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_geolocator" - ref: v1 - resolved-ref: "9f7c54c0a66a910a3ba3e325b3fef132c930015a" + ref: main + resolved-ref: "0e64efc7546cac99fcdcce6419ec0c34a9bbb32b" url: "https://github.com/flet-dev/flet-geolocator.git" source: git version: "0.25.2" @@ -339,8 +339,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_lottie" - ref: v1 - resolved-ref: "46f622d6af9b62a7938f1bc87297fde756535c49" + ref: main + resolved-ref: df503b249f8c592bcc7b9f09dc259c6e0431c385 url: "https://github.com/flet-dev/flet-lottie.git" source: git version: "0.2.0" @@ -348,8 +348,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_map" - ref: v1 - resolved-ref: "163d73f4faa871acda0d2de20e454143ed4108d0" + ref: main + resolved-ref: f6aa55454634a00e1cccdbb47552c755230d0d40 url: "https://github.com/flet-dev/flet-map.git" source: git version: "0.2.0" @@ -357,8 +357,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_permission_handler" - ref: v1 - resolved-ref: "64e95b8eb66b516935383c1365e0d8470acfcc96" + ref: main + resolved-ref: "23ce2b73f25ff1f734e05350b4ccabfcce8b7e5f" url: "https://github.com/flet-dev/flet-permission-handler.git" source: git version: "0.2.0" @@ -366,8 +366,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_rive" - ref: v1 - resolved-ref: d62927ad51f16c39cd6592bad34e983aee0f4d61 + ref: main + resolved-ref: "8172c9bd2be612643250de0a2519f2831d29c38c" url: "https://github.com/flet-dev/flet-rive.git" source: git version: "0.2.0" @@ -375,8 +375,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_video" - ref: v1 - resolved-ref: "7c05efe78f0409b5b57dcfad13fa1ecafeb5788b" + ref: main + resolved-ref: ccad84d3e8a815dfa4360a53d6df9e4890ffec0f url: "https://github.com/flet-dev/flet-video.git" source: git version: "0.2.0" @@ -384,8 +384,8 @@ packages: dependency: "direct main" description: path: "src/flutter/flet_webview" - ref: v1 - resolved-ref: "8d592b0485e4c137fdd5eae14f9395bb75df5984" + ref: main + resolved-ref: fbb41fd77ba7ea51dd49c508a8916e5c4b48cb2e url: "https://github.com/flet-dev/flet-webview.git" source: git version: "0.2.0" @@ -448,10 +448,10 @@ packages: dependency: transitive description: name: flutter_map_cancellable_tile_provider - sha256: "801760c104a3cfd9268cda7c9b1241223247e8182613a7e060ef4ffc0d825ac8" + sha256: "582df422f65c68216fcbc8f2d2c335ff3e8a014d9815382cfdde23ef772b4fb0" url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.1" flutter_markdown: dependency: transitive description: @@ -464,10 +464,10 @@ packages: dependency: transitive description: name: flutter_plugin_android_lifecycle - sha256: f948e346c12f8d5480d2825e03de228d0eb8c3a737e4cdaa122267b89c022b5e + sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab" url: "https://pub.dev" source: hosted - version: "2.0.28" + version: "2.0.29" flutter_svg: dependency: transitive description: @@ -491,22 +491,30 @@ packages: description: flutter source: sdk version: "0.0.0" + geoclue: + dependency: transitive + description: + name: geoclue + sha256: c2a998c77474fc57aa00c6baa2928e58f4b267649057a1c76738656e9dbd2a7f + url: "https://pub.dev" + source: hosted + version: "0.1.1" geolocator: dependency: transitive description: name: geolocator - sha256: ee2212a3df8292ec4c90b91183b8001d3f5a800823c974b570c5f9344ca320dc + sha256: "79939537046c9025be47ec645f35c8090ecadb6fe98eba146a0d25e8c1357516" url: "https://pub.dev" source: hosted - version: "14.0.1" + version: "14.0.2" geolocator_android: dependency: transitive description: name: geolocator_android - sha256: "114072db5d1dce0ec0b36af2697f55c133bc89a2c8dd513e137c0afe59696ed4" + sha256: "179c3cb66dfa674fc9ccbf2be872a02658724d1c067634e2c427cf6df7df901a" url: "https://pub.dev" source: hosted - version: "5.0.1+1" + version: "5.0.2" geolocator_apple: dependency: transitive description: @@ -515,6 +523,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.3.13" + geolocator_linux: + dependency: transitive + description: + name: geolocator_linux + sha256: c4e966f0a7a87e70049eac7a2617f9e16fd4c585a26e4330bdfc3a71e6a721f3 + url: "https://pub.dev" + source: hosted + version: "0.2.3" geolocator_platform_interface: dependency: transitive description: @@ -555,6 +571,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.3.2" + gsettings: + dependency: transitive + description: + name: gsettings + sha256: "1b0ce661f5436d2db1e51f3c4295a49849f03d304003a7ba177d01e3a858249c" + url: "https://pub.dev" + source: hosted + version: "0.2.8" highlight: dependency: transitive description: @@ -660,10 +684,10 @@ packages: dependency: transitive description: name: logger - sha256: be4b23575aac7ebf01f225a241eb7f6b5641eeaf43c6a8613510fc2f8cf187d1 + sha256: "55d6c23a6c15db14920e037fe7e0dc32e7cdaf3b64b4b25df2d541b5b6b81c0c" url: "https://pub.dev" source: hosted - version: "2.5.0" + version: "2.6.1" logging: dependency: transitive description: @@ -784,6 +808,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.0.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" msgpack_dart: dependency: transitive description: @@ -804,18 +836,18 @@ packages: dependency: transitive description: name: package_info_plus - sha256: "7976bfe4c583170d6cdc7077e3237560b364149fcd268b5f53d95a991963b191" + sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968" url: "https://pub.dev" source: hosted - version: "8.3.0" + version: "8.3.1" package_info_plus_platform_interface: dependency: transitive description: name: package_info_plus_platform_interface - sha256: "6c935fb612dff8e3cc9632c2b301720c77450a126114126ffaafe28d2e87956c" + sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086" url: "https://pub.dev" source: hosted - version: "3.2.0" + version: "3.2.1" path: dependency: transitive description: @@ -884,10 +916,10 @@ packages: dependency: transitive description: name: permission_handler - sha256: "2d070d8684b68efb580a5997eb62f675e8a885ef0be6e754fb9ef489c177470f" + sha256: bc917da36261b00137bbc8896bf1482169cd76f866282368948f032c8c1caae1 url: "https://pub.dev" source: hosted - version: "12.0.0+1" + version: "12.0.1" permission_handler_android: dependency: transitive description: @@ -996,50 +1028,50 @@ packages: dependency: transitive description: name: record_android - sha256: "97d7122455f30de89a01c6c244c839085be6b12abca251fc0e78f67fed73628b" + sha256: "8b170e33d9866f9b51e01a767d7e1ecb97b9ecd629950bd87a47c79359ec57f8" url: "https://pub.dev" source: hosted - version: "1.3.3" + version: "1.4.0" record_ios: dependency: transitive description: name: record_ios - sha256: "73706ebbece6150654c9d6f57897cf9b622c581148304132ba85dba15df0fdfb" + sha256: ad97d0a75933c44bcf5aff648e86e32fc05eb61f8fbef190f14968c8eaf86692 url: "https://pub.dev" source: hosted - version: "1.0.0" + version: "1.1.0" record_linux: dependency: transitive description: name: record_linux - sha256: "29e7735b05c1944bb6c9b72a36c08d4a1b24117e712d6a9523c003bde12bf484" + sha256: "785e8e8d6db109aa606d0669d95aaae416458aaa39782bb0abe0bee74eee17d7" url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.2.0" record_macos: dependency: transitive description: name: record_macos - sha256: "02240833fde16c33fcf2c589f3e08d4394b704761b4a3bb609d872ff3043fbbd" + sha256: f1399bca76a1634da109e5b0cba764ed8332a2b4da49c704c66d2c553405ed81 url: "https://pub.dev" source: hosted - version: "1.0.0" + version: "1.1.0" record_platform_interface: dependency: transitive description: name: record_platform_interface - sha256: "8a575828733d4c3cb5983c914696f40db8667eab3538d4c41c50cbb79e722ef4" + sha256: b0065fdf1ec28f5a634d676724d388a77e43ce7646fb049949f58c69f3fcb4ed url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.4.0" record_web: dependency: transitive description: name: record_web - sha256: "024c81eb7f51468b1833a3eca8b461c7ca25c04899dba37abe580bb57afd32e4" + sha256: "4f0adf20c9ccafcc02d71111fd91fba1ca7b17a7453902593e5a9b25b74a5c56" url: "https://pub.dev" source: hosted - version: "1.1.8" + version: "1.2.0" record_windows: dependency: transitive description: @@ -1076,10 +1108,10 @@ packages: dependency: transitive description: name: screen_brightness_android - sha256: "6ba1b5812f66c64e9e4892be2d36ecd34210f4e0da8bdec6a2ea34f1aa42683e" + sha256: fb5fa43cb89d0c9b8534556c427db1e97e46594ac5d66ebdcf16063b773d54ed url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" screen_brightness_platform_interface: dependency: transitive description: @@ -1140,10 +1172,10 @@ packages: dependency: transitive description: name: sensors_plus - sha256: "905282c917c6bb731c242f928665c2ea15445aa491249dea9d98d7c79dc8fd39" + sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52" url: "https://pub.dev" source: hosted - version: "6.1.1" + version: "6.1.2" sensors_plus_platform_interface: dependency: transitive description: @@ -1164,10 +1196,10 @@ packages: dependency: transitive description: name: shared_preferences_android - sha256: "20cbd561f743a342c76c151d6ddb93a9ce6005751e7aa458baad3858bfbfb6ac" + sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e" url: "https://pub.dev" source: hosted - version: "2.4.10" + version: "2.4.11" shared_preferences_foundation: dependency: transitive description: @@ -1265,10 +1297,10 @@ packages: dependency: transitive description: name: synchronized - sha256: "0669c70faae6270521ee4f05bffd2919892d42d1276e6c495be80174b6bc0ef6" + sha256: c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0 url: "https://pub.dev" source: hosted - version: "3.3.1" + version: "3.4.0" term_glyph: dependency: transitive description: @@ -1337,10 +1369,10 @@ packages: dependency: transitive description: name: url_launcher_android - sha256: "8582d7f6fe14d2652b4c45c9b6c14c0b678c2af2d083a11b604caeba51930d79" + sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656" url: "https://pub.dev" source: hosted - version: "6.3.16" + version: "6.3.17" url_launcher_ios: dependency: transitive description: @@ -1417,10 +1449,10 @@ packages: dependency: transitive description: name: vector_graphics_compiler - sha256: "557a315b7d2a6dbb0aaaff84d857967ce6bdc96a63dc6ee2a57ce5a6ee5d3331" + sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0 url: "https://pub.dev" source: hosted - version: "1.1.17" + version: "1.1.18" vector_math: dependency: transitive description: @@ -1505,18 +1537,18 @@ packages: dependency: transitive description: name: webview_flutter_android - sha256: f6e6afef6e234801da77170f7a1847ded8450778caf2fe13979d140484be3678 + sha256: "0a42444056b24ed832bdf3442d65c5194f6416f7e782152384944053c2ecc9a3" url: "https://pub.dev" source: hosted - version: "4.7.0" + version: "4.10.0" webview_flutter_platform_interface: dependency: transitive description: name: webview_flutter_platform_interface - sha256: f0dc2dc3a2b1e3a6abdd6801b9355ebfeb3b8f6cde6b9dc7c9235909c4a1f147 + sha256: "63d26ee3aca7256a83ccb576a50272edd7cfc80573a4305caa98985feb493ee0" url: "https://pub.dev" source: hosted - version: "2.13.1" + version: "2.14.0" webview_flutter_web: dependency: transitive description: @@ -1529,18 +1561,18 @@ packages: dependency: transitive description: name: webview_flutter_wkwebview - sha256: a3d461fe3467014e05f3ac4962e5fdde2a4bf44c561cb53e9ae5c586600fdbc3 + sha256: fb46db8216131a3e55bcf44040ca808423539bc6732e7ed34fb6d8044e3d512f url: "https://pub.dev" source: hosted - version: "3.22.0" + version: "3.23.0" win32: dependency: transitive description: name: win32 - sha256: "329edf97fdd893e0f1e3b9e88d6a0e627128cc17cc316a8d67fda8f1451178ba" + sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03" url: "https://pub.dev" source: hosted - version: "5.13.0" + version: "5.14.0" win32_registry: dependency: transitive description: @@ -1553,10 +1585,10 @@ packages: dependency: transitive description: name: window_manager - sha256: "51d50168ab267d344b975b15390426b1243600d436770d3f13de67e55b05ec16" + sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd" url: "https://pub.dev" source: hosted - version: "0.5.0" + version: "0.5.1" window_to_front: dependency: transitive description: @@ -1598,5 +1630,5 @@ packages: source: hosted version: "3.1.3" sdks: - dart: ">=3.7.0 <4.0.0" + dart: ">=3.8.0 <4.0.0" flutter: ">=3.29.0" diff --git a/client/pubspec.yaml b/client/pubspec.yaml index 9a0cc0734b..df5bea5b9f 100644 --- a/client/pubspec.yaml +++ b/client/pubspec.yaml @@ -36,74 +36,74 @@ dependencies: flet_audio: git: url: https://github.com/flet-dev/flet-audio.git - ref: v1 + ref: main path: src/flutter/flet_audio flet_video: git: url: https://github.com/flet-dev/flet-video.git - ref: v1 + ref: main path: src/flutter/flet_video # --FAT_CLIENT_END-- flet_lottie: git: url: https://github.com/flet-dev/flet-lottie.git - ref: v1 + ref: main path: src/flutter/flet_lottie flet_map: git: url: https://github.com/flet-dev/flet-map.git - ref: v1 + ref: main path: src/flutter/flet_map flet_ads: git: url: https://github.com/flet-dev/flet-ads.git - ref: v1 + ref: main path: src/flutter/flet_ads flet_rive: git: url: https://github.com/flet-dev/flet-rive.git - ref: v1 + ref: main path: src/flutter/flet_rive flet_audio_recorder: git: url: https://github.com/flet-dev/flet-audio-recorder.git - ref: v1 + ref: main path: src/flutter/flet_audio_recorder flet_permission_handler: git: url: https://github.com/flet-dev/flet-permission-handler.git - ref: v1 + ref: main path: src/flutter/flet_permission_handler flet_geolocator: git: url: https://github.com/flet-dev/flet-geolocator.git - ref: v1 + ref: main path: src/flutter/flet_geolocator flet_webview: git: url: https://github.com/flet-dev/flet-webview.git - ref: v1 + ref: main path: src/flutter/flet_webview flet_flashlight: git: url: https://github.com/flet-dev/flet-flashlight.git - ref: v1 + ref: main path: src/flutter/flet_flashlight flet_datatable2: git: url: https://github.com/flet-dev/flet-datatable2.git - ref: v1 + ref: main path: src/flutter/flet_datatable2 flet_charts: git: url: https://github.com/flet-dev/flet-charts.git - ref: v1 + ref: main path: src/flutter/flet_charts cupertino_icons: ^1.0.6 diff --git a/packages/flet/lib/flet.dart b/packages/flet/lib/flet.dart index a2a45a4086..600fe08fee 100644 --- a/packages/flet/lib/flet.dart +++ b/packages/flet/lib/flet.dart @@ -2,6 +2,9 @@ library flet; export 'dart:io'; +export 'package:flutter/cupertino.dart' show CupertinoIcons; +export 'package:flutter/material.dart' show Icons; + export 'src/controls/base_controls.dart'; export 'src/extensions/control.dart'; export 'src/flet_app.dart'; @@ -42,7 +45,6 @@ export 'src/utils/launch_url.dart'; export 'src/utils/locale.dart'; export 'src/utils/lock.dart'; export 'src/utils/markdown.dart'; -export 'src/utils/material_icons.dart'; export 'src/utils/material_state.dart'; export 'src/utils/menu.dart'; export 'src/utils/misc.dart'; diff --git a/packages/flet/lib/src/controls/cupertino_context_menu_action.dart b/packages/flet/lib/src/controls/cupertino_context_menu_action.dart index 491c3d691e..07227e64fa 100644 --- a/packages/flet/lib/src/controls/cupertino_context_menu_action.dart +++ b/packages/flet/lib/src/controls/cupertino_context_menu_action.dart @@ -28,7 +28,7 @@ class CupertinoContextMenuActionControl extends StatelessWidget { Navigator.of(context).pop(); // Close the context menu } }, - trailingIcon: control.getIcon("trailing_icon"), + trailingIcon: control.getIconData("trailing_icon"), child: content); } } diff --git a/packages/flet/lib/src/controls/cupertino_navigation_bar.dart b/packages/flet/lib/src/controls/cupertino_navigation_bar.dart index b177728316..54053079fb 100644 --- a/packages/flet/lib/src/controls/cupertino_navigation_bar.dart +++ b/packages/flet/lib/src/controls/cupertino_navigation_bar.dart @@ -5,7 +5,6 @@ import '../extensions/control.dart'; import '../models/control.dart'; import '../utils/borders.dart'; import '../utils/colors.dart'; -import '../utils/icons.dart'; import '../utils/numbers.dart'; import '../widgets/flet_store_mixin.dart'; import 'base_controls.dart'; @@ -52,11 +51,10 @@ class _CupertinoNavigationBarControlState border: widget.control.getBorder("border", Theme.of(context)), onTap: widget.control.disabled ? null : _onTap, items: widget.control.children("destinations").map((dest) { - var icon = parseIcon(dest.getString("icon")); return BottomNavigationBarItem( tooltip: !dest.disabled ? dest.getString("tooltip") : null, backgroundColor: dest.getColor("bgcolor", context), - icon: dest.buildWidget("icon") ?? Icon(icon), + icon: dest.buildIconOrWidget("icon")!, activeIcon: dest.buildIconOrWidget("selected_icon"), label: dest.getString("label", "")!); }).toList()); diff --git a/packages/flet/lib/src/controls/date_picker.dart b/packages/flet/lib/src/controls/date_picker.dart index 861327b406..6d2c65bd48 100644 --- a/packages/flet/lib/src/controls/date_picker.dart +++ b/packages/flet/lib/src/controls/date_picker.dart @@ -28,9 +28,9 @@ class _DatePickerControlState extends State { var value = widget.control.getDateTime("value"); var currentDate = widget.control.getDateTime("current_date"); var switchToCalendarEntryModeIcon = - parseIcon(widget.control.getString("switch_to_calendar_icon", "")!); + widget.control.getIconData("switch_to_calendar_icon"); var switchToInputEntryModeIcon = - parseIcon(widget.control.getString("switch_to_input_icon")); + widget.control.getIconData("switch_to_input_icon"); void onClosed(DateTime? dateValue) { widget.control.updateProperties({"_open": false}, python: false); diff --git a/packages/flet/lib/src/controls/icon.dart b/packages/flet/lib/src/controls/icon.dart index 894683bb0f..03c76263da 100644 --- a/packages/flet/lib/src/controls/icon.dart +++ b/packages/flet/lib/src/controls/icon.dart @@ -20,7 +20,7 @@ class IconControl extends StatelessWidget { return ConstrainedControl( control: control, child: Icon( - control.getIcon("name"), + control.getIconData("icon"), size: control.getDouble("size"), color: control.getColor("color", context), blendMode: control.getBlendMode("blend_mode"), diff --git a/packages/flet/lib/src/controls/icon_button.dart b/packages/flet/lib/src/controls/icon_button.dart index e7b87b46a4..529fed6668 100644 --- a/packages/flet/lib/src/controls/icon_button.dart +++ b/packages/flet/lib/src/controls/icon_button.dart @@ -125,9 +125,10 @@ class _IconButtonControlState extends State Widget? iconWidget; if (icon is Control) { iconWidget = ControlWidget(control: icon); - } else if (icon is String) { + } else if (icon is int) { + // Icon values are stored as raw integers (set_id << 16 | index) in this codebase. iconWidget = Icon( - widget.control.getIcon("icon"), + widget.control.getIconData("icon"), color: iconColor, ); } else if (content != null) { @@ -138,9 +139,9 @@ class _IconButtonControlState extends State if (selectedIcon is Control) { selectedIconWidget = ControlWidget(control: selectedIcon); - } else if (selectedIcon is String) { + } else if (selectedIcon is int) { selectedIconWidget = Icon( - widget.control.getIcon("selected_icon"), + widget.control.getIconData("selected_icon"), color: selectedIconColor, ); } diff --git a/packages/flet/lib/src/controls/navigation_bar_destination.dart b/packages/flet/lib/src/controls/navigation_bar_destination.dart index 7d2d202449..53ad0cc301 100644 --- a/packages/flet/lib/src/controls/navigation_bar_destination.dart +++ b/packages/flet/lib/src/controls/navigation_bar_destination.dart @@ -15,12 +15,11 @@ class NavigationBarDestinationControl extends StatelessWidget { Widget build(BuildContext context) { debugPrint("NavigationBarDestination build: ${control.id}"); - var icon = parseIcon(control.getString("icon")); - var selectedIcon = parseIcon(control.getString("selected_icon")); + var selectedIcon = control.getIconData("selected_icon"); var child = NavigationDestination( enabled: !control.disabled, tooltip: !control.disabled ? control.getString("tooltip") : null, - icon: control.buildWidget("icon") ?? Icon(icon), + icon: control.buildIconOrWidget("icon")!, selectedIcon: control.buildWidget("selected_icon") ?? (selectedIcon != null ? Icon(selectedIcon) : null), label: control.getString("label", "")!); diff --git a/packages/flet/lib/src/controls/navigation_drawer.dart b/packages/flet/lib/src/controls/navigation_drawer.dart index 00a2243b07..e89ba8d037 100644 --- a/packages/flet/lib/src/controls/navigation_drawer.dart +++ b/packages/flet/lib/src/controls/navigation_drawer.dart @@ -68,14 +68,14 @@ class _NavigationDrawerControlState extends State { ? ControlWidget( control: icon, ) - : Icon(parseIcon(icon)), + : Icon(parseIconData(icon, widget.control.backend)), label: Text(dest.getString("label", "")!), selectedIcon: selectedIcon is Control ? ControlWidget( control: selectedIcon, ) - : selectedIcon is String - ? Icon(parseIcon(selectedIcon)) + : selectedIcon is int + ? Icon(parseIconData(selectedIcon, widget.control.backend)) : null, ); } else { diff --git a/packages/flet/lib/src/controls/navigation_rail.dart b/packages/flet/lib/src/controls/navigation_rail.dart index 1e09660861..c94b05e92d 100644 --- a/packages/flet/lib/src/controls/navigation_rail.dart +++ b/packages/flet/lib/src/controls/navigation_rail.dart @@ -91,10 +91,10 @@ class _NavigationRailControlState extends State widget.control.children("destinations").map((destinationControl) { destinationControl.notifyParent = true; var icon = destinationControl.buildWidget("icon") ?? - Icon(parseIcon(destinationControl.getString("icon"))); - var selectedIcon = destinationControl - .buildWidget("selected_icon") ?? - Icon(parseIcon(destinationControl.getString("selected_icon"))); + Icon(destinationControl.getIconData("icon")); + var selectedIcon = + destinationControl.buildWidget("selected_icon") ?? + Icon(destinationControl.getIconData("selected_icon")); return NavigationRailDestination( disabled: disabled || destinationControl.disabled, padding: destinationControl.getPadding("padding"), diff --git a/packages/flet/lib/src/extensions/control.dart b/packages/flet/lib/src/extensions/control.dart index f1a81d6354..8f2c222f48 100644 --- a/packages/flet/lib/src/extensions/control.dart +++ b/packages/flet/lib/src/extensions/control.dart @@ -50,8 +50,9 @@ extension WidgetFromControl on Control { if (c == null) return null; c.notifyParent = notifyParent; return ControlWidget(key: key, control: c); - } else if (icon is String) { - return Icon(getIcon(propertyName), color: color); + } else if (icon is int) { + // Icon values are stored as raw integers (set_id << 16 | index) in this codebase. + return Icon(getIconData(propertyName), color: color); } return null; } diff --git a/packages/flet/lib/src/flet_core_extension.dart b/packages/flet/lib/src/flet_core_extension.dart index 0b118c2ab1..c7aa83af6a 100644 --- a/packages/flet/lib/src/flet_core_extension.dart +++ b/packages/flet/lib/src/flet_core_extension.dart @@ -115,6 +115,8 @@ import 'services/shared_preferences.dart'; import 'services/storage_paths.dart'; import 'services/tester.dart'; import 'services/url_launcher.dart'; +import 'utils/cupertino_icons.dart'; +import 'utils/material_icons.dart'; class FletCoreExtension extends FletExtension { @override @@ -370,6 +372,20 @@ class FletCoreExtension extends FletExtension { } } + @override + IconData? createIconData(iconCode) { + int setId = (iconCode >> 16) & 0xFF; + int iconIndex = iconCode & 0xFFFF; + + if (setId == 1) { + return materialIcons[iconIndex]; + } else if (setId == 2) { + return cupertinoIcons[iconIndex]; + } else { + return null; + } + } + @override void ensureInitialized() {} } diff --git a/packages/flet/lib/src/flet_extension.dart b/packages/flet/lib/src/flet_extension.dart index b6d0e559f8..279fb7663f 100644 --- a/packages/flet/lib/src/flet_extension.dart +++ b/packages/flet/lib/src/flet_extension.dart @@ -4,6 +4,8 @@ import 'flet_service.dart'; import 'models/control.dart'; abstract class FletExtension { + void ensureInitialized() {} + Widget? createWidget(Key? key, Control control) { return null; } @@ -12,5 +14,7 @@ abstract class FletExtension { return null; } - void ensureInitialized() {} + IconData? createIconData(int iconCode) { + return null; + } } diff --git a/packages/flet/lib/src/services/tester.dart b/packages/flet/lib/src/services/tester.dart index 1aea172d20..cc5d011ae4 100644 --- a/packages/flet/lib/src/services/tester.dart +++ b/packages/flet/lib/src/services/tester.dart @@ -61,10 +61,10 @@ class TesterService extends FletService { return finder.toMap(); case "find_by_icon": - var iconName = args["icon"]; - var icon = parseIcon(iconName); + var iconCode = args["icon"]; + var icon = parseIconData(iconCode, control.backend); if (icon == null) { - throw Exception("Icon not found: $iconName"); + throw Exception("Icon not found: $iconCode"); } var finder = control.backend.tester!.findByIcon(icon); _finders[finder.id] = finder; diff --git a/packages/flet/lib/src/utils/cupertino_icons.dart b/packages/flet/lib/src/utils/cupertino_icons.dart index 9ec551bb87..881b8ed488 100644 --- a/packages/flet/lib/src/utils/cupertino_icons.dart +++ b/packages/flet/lib/src/utils/cupertino_icons.dart @@ -1,1472 +1,1326 @@ import 'package:flutter/cupertino.dart'; -/* - -To generate update the list run: - -sh ci/generate_cupertino_icons_dart.sh - -*/ - -Map cupertinoIcons = { - "cupertino_left_chevron": CupertinoIcons.left_chevron, - "cupertino_right_chevron": CupertinoIcons.right_chevron, - "cupertino_share": CupertinoIcons.share, - "cupertino_share_solid": CupertinoIcons.share_solid, - "cupertino_book": CupertinoIcons.book, - "cupertino_book_solid": CupertinoIcons.book_solid, - "cupertino_bookmark": CupertinoIcons.bookmark, - "cupertino_bookmark_solid": CupertinoIcons.bookmark_solid, - "cupertino_info": CupertinoIcons.info, - "cupertino_reply": CupertinoIcons.reply, - "cupertino_conversation_bubble": CupertinoIcons.conversation_bubble, - "cupertino_profile_circled": CupertinoIcons.profile_circled, - "cupertino_plus_circled": CupertinoIcons.plus_circled, - "cupertino_minus_circled": CupertinoIcons.minus_circled, - "cupertino_flag": CupertinoIcons.flag, - "cupertino_search": CupertinoIcons.search, - "cupertino_check_mark": CupertinoIcons.check_mark, - "cupertino_check_mark_circled": CupertinoIcons.check_mark_circled, - "cupertino_check_mark_circled_solid": CupertinoIcons.check_mark_circled_solid, - "cupertino_circle": CupertinoIcons.circle, - "cupertino_circle_filled": CupertinoIcons.circle_filled, - "cupertino_back": CupertinoIcons.back, - "cupertino_forward": CupertinoIcons.forward, - "cupertino_home": CupertinoIcons.home, - "cupertino_shopping_cart": CupertinoIcons.shopping_cart, - "cupertino_ellipsis": CupertinoIcons.ellipsis, - "cupertino_phone": CupertinoIcons.phone, - "cupertino_phone_solid": CupertinoIcons.phone_solid, - "cupertino_down_arrow": CupertinoIcons.down_arrow, - "cupertino_up_arrow": CupertinoIcons.up_arrow, - "cupertino_battery_charging": CupertinoIcons.battery_charging, - "cupertino_battery_empty": CupertinoIcons.battery_empty, - "cupertino_battery_full": CupertinoIcons.battery_full, - "cupertino_battery_75_percent": CupertinoIcons.battery_75_percent, - "cupertino_battery_25_percent": CupertinoIcons.battery_25_percent, - "cupertino_bluetooth": CupertinoIcons.bluetooth, - "cupertino_restart": CupertinoIcons.restart, - "cupertino_reply_all": CupertinoIcons.reply_all, - "cupertino_reply_thick_solid": CupertinoIcons.reply_thick_solid, - "cupertino_share_up": CupertinoIcons.share_up, - "cupertino_shuffle": CupertinoIcons.shuffle, - "cupertino_shuffle_medium": CupertinoIcons.shuffle_medium, - "cupertino_shuffle_thick": CupertinoIcons.shuffle_thick, - "cupertino_photo_camera": CupertinoIcons.photo_camera, - "cupertino_photo_camera_solid": CupertinoIcons.photo_camera_solid, - "cupertino_video_camera": CupertinoIcons.video_camera, - "cupertino_video_camera_solid": CupertinoIcons.video_camera_solid, - "cupertino_switch_camera": CupertinoIcons.switch_camera, - "cupertino_switch_camera_solid": CupertinoIcons.switch_camera_solid, - "cupertino_collections": CupertinoIcons.collections, - "cupertino_collections_solid": CupertinoIcons.collections_solid, - "cupertino_folder": CupertinoIcons.folder, - "cupertino_folder_solid": CupertinoIcons.folder_solid, - "cupertino_folder_open": CupertinoIcons.folder_open, - "cupertino_delete": CupertinoIcons.delete, - "cupertino_delete_solid": CupertinoIcons.delete_solid, - "cupertino_delete_simple": CupertinoIcons.delete_simple, - "cupertino_pen": CupertinoIcons.pen, - "cupertino_pencil": CupertinoIcons.pencil, - "cupertino_create": CupertinoIcons.create, - "cupertino_create_solid": CupertinoIcons.create_solid, - "cupertino_refresh": CupertinoIcons.refresh, - "cupertino_refresh_circled": CupertinoIcons.refresh_circled, - "cupertino_refresh_circled_solid": CupertinoIcons.refresh_circled_solid, - "cupertino_refresh_thin": CupertinoIcons.refresh_thin, - "cupertino_refresh_thick": CupertinoIcons.refresh_thick, - "cupertino_refresh_bold": CupertinoIcons.refresh_bold, - "cupertino_clear_thick": CupertinoIcons.clear_thick, - "cupertino_clear_thick_circled": CupertinoIcons.clear_thick_circled, - "cupertino_clear": CupertinoIcons.clear, - "cupertino_clear_circled": CupertinoIcons.clear_circled, - "cupertino_clear_circled_solid": CupertinoIcons.clear_circled_solid, - "cupertino_add": CupertinoIcons.add, - "cupertino_add_circled": CupertinoIcons.add_circled, - "cupertino_add_circled_solid": CupertinoIcons.add_circled_solid, - "cupertino_gear": CupertinoIcons.gear, - "cupertino_gear_solid": CupertinoIcons.gear_solid, - "cupertino_gear_big": CupertinoIcons.gear_big, - "cupertino_settings": CupertinoIcons.settings, - "cupertino_settings_solid": CupertinoIcons.settings_solid, - "cupertino_music_note": CupertinoIcons.music_note, - "cupertino_double_music_note": CupertinoIcons.double_music_note, - "cupertino_play_arrow": CupertinoIcons.play_arrow, - "cupertino_play_arrow_solid": CupertinoIcons.play_arrow_solid, - "cupertino_pause": CupertinoIcons.pause, - "cupertino_pause_solid": CupertinoIcons.pause_solid, - "cupertino_loop": CupertinoIcons.loop, - "cupertino_loop_thick": CupertinoIcons.loop_thick, - "cupertino_volume_down": CupertinoIcons.volume_down, - "cupertino_volume_mute": CupertinoIcons.volume_mute, - "cupertino_volume_off": CupertinoIcons.volume_off, - "cupertino_volume_up": CupertinoIcons.volume_up, - "cupertino_fullscreen": CupertinoIcons.fullscreen, - "cupertino_fullscreen_exit": CupertinoIcons.fullscreen_exit, - "cupertino_mic_off": CupertinoIcons.mic_off, - "cupertino_mic": CupertinoIcons.mic, - "cupertino_mic_solid": CupertinoIcons.mic_solid, - "cupertino_clock": CupertinoIcons.clock, - "cupertino_clock_solid": CupertinoIcons.clock_solid, - "cupertino_time": CupertinoIcons.time, - "cupertino_time_solid": CupertinoIcons.time_solid, - "cupertino_padlock": CupertinoIcons.padlock, - "cupertino_padlock_solid": CupertinoIcons.padlock_solid, - "cupertino_eye": CupertinoIcons.eye, - "cupertino_eye_solid": CupertinoIcons.eye_solid, - "cupertino_person": CupertinoIcons.person, - "cupertino_person_solid": CupertinoIcons.person_solid, - "cupertino_person_add": CupertinoIcons.person_add, - "cupertino_person_add_solid": CupertinoIcons.person_add_solid, - "cupertino_group": CupertinoIcons.group, - "cupertino_group_solid": CupertinoIcons.group_solid, - "cupertino_mail": CupertinoIcons.mail, - "cupertino_mail_solid": CupertinoIcons.mail_solid, - "cupertino_location": CupertinoIcons.location, - "cupertino_location_solid": CupertinoIcons.location_solid, - "cupertino_tag": CupertinoIcons.tag, - "cupertino_tag_solid": CupertinoIcons.tag_solid, - "cupertino_tags": CupertinoIcons.tags, - "cupertino_tags_solid": CupertinoIcons.tags_solid, - "cupertino_bus": CupertinoIcons.bus, - "cupertino_car": CupertinoIcons.car, - "cupertino_car_detailed": CupertinoIcons.car_detailed, - "cupertino_train_style_one": CupertinoIcons.train_style_one, - "cupertino_train_style_two": CupertinoIcons.train_style_two, - "cupertino_paw": CupertinoIcons.paw, - "cupertino_paw_solid": CupertinoIcons.paw_solid, - "cupertino_game_controller": CupertinoIcons.game_controller, - "cupertino_game_controller_solid": CupertinoIcons.game_controller_solid, - "cupertino_lab_flask": CupertinoIcons.lab_flask, - "cupertino_lab_flask_solid": CupertinoIcons.lab_flask_solid, - "cupertino_heart": CupertinoIcons.heart, - "cupertino_heart_solid": CupertinoIcons.heart_solid, - "cupertino_bell": CupertinoIcons.bell, - "cupertino_bell_solid": CupertinoIcons.bell_solid, - "cupertino_news": CupertinoIcons.news, - "cupertino_news_solid": CupertinoIcons.news_solid, - "cupertino_brightness": CupertinoIcons.brightness, - "cupertino_brightness_solid": CupertinoIcons.brightness_solid, - "cupertino_airplane": CupertinoIcons.airplane, - "cupertino_alarm": CupertinoIcons.alarm, - "cupertino_alarm_fill": CupertinoIcons.alarm_fill, - "cupertino_alt": CupertinoIcons.alt, - "cupertino_ant": CupertinoIcons.ant, - "cupertino_ant_circle": CupertinoIcons.ant_circle, - "cupertino_ant_circle_fill": CupertinoIcons.ant_circle_fill, - "cupertino_ant_fill": CupertinoIcons.ant_fill, - "cupertino_antenna_radiowaves_left_right": - CupertinoIcons.antenna_radiowaves_left_right, - "cupertino_app": CupertinoIcons.app, - "cupertino_app_badge": CupertinoIcons.app_badge, - "cupertino_app_badge_fill": CupertinoIcons.app_badge_fill, - "cupertino_app_fill": CupertinoIcons.app_fill, - "cupertino_archivebox": CupertinoIcons.archivebox, - "cupertino_archivebox_fill": CupertinoIcons.archivebox_fill, - "cupertino_arrow_2_circlepath": CupertinoIcons.arrow_2_circlepath, - "cupertino_arrow_2_circlepath_circle": - CupertinoIcons.arrow_2_circlepath_circle, - "cupertino_arrow_2_circlepath_circle_fill": - CupertinoIcons.arrow_2_circlepath_circle_fill, - "cupertino_arrow_2_squarepath": CupertinoIcons.arrow_2_squarepath, - "cupertino_arrow_3_trianglepath": CupertinoIcons.arrow_3_trianglepath, - "cupertino_arrow_branch": CupertinoIcons.arrow_branch, - "cupertino_arrow_clockwise": CupertinoIcons.arrow_clockwise, - "cupertino_arrow_clockwise_circle": CupertinoIcons.arrow_clockwise_circle, - "cupertino_arrow_clockwise_circle_fill": - CupertinoIcons.arrow_clockwise_circle_fill, - "cupertino_arrow_counterclockwise": CupertinoIcons.arrow_counterclockwise, - "cupertino_arrow_counterclockwise_circle": - CupertinoIcons.arrow_counterclockwise_circle, - "cupertino_arrow_counterclockwise_circle_fill": - CupertinoIcons.arrow_counterclockwise_circle_fill, - "cupertino_arrow_down": CupertinoIcons.arrow_down, - "cupertino_arrow_down_circle": CupertinoIcons.arrow_down_circle, - "cupertino_arrow_down_circle_fill": CupertinoIcons.arrow_down_circle_fill, - "cupertino_arrow_down_doc": CupertinoIcons.arrow_down_doc, - "cupertino_arrow_down_doc_fill": CupertinoIcons.arrow_down_doc_fill, - "cupertino_arrow_down_left": CupertinoIcons.arrow_down_left, - "cupertino_arrow_down_left_circle": CupertinoIcons.arrow_down_left_circle, - "cupertino_arrow_down_left_circle_fill": - CupertinoIcons.arrow_down_left_circle_fill, - "cupertino_arrow_down_left_square": CupertinoIcons.arrow_down_left_square, - "cupertino_arrow_down_left_square_fill": - CupertinoIcons.arrow_down_left_square_fill, - "cupertino_arrow_down_right": CupertinoIcons.arrow_down_right, - "cupertino_arrow_down_right_arrow_up_left": - CupertinoIcons.arrow_down_right_arrow_up_left, - "cupertino_arrow_down_right_circle": CupertinoIcons.arrow_down_right_circle, - "cupertino_arrow_down_right_circle_fill": - CupertinoIcons.arrow_down_right_circle_fill, - "cupertino_arrow_down_right_square": CupertinoIcons.arrow_down_right_square, - "cupertino_arrow_down_right_square_fill": - CupertinoIcons.arrow_down_right_square_fill, - "cupertino_arrow_down_square": CupertinoIcons.arrow_down_square, - "cupertino_arrow_down_square_fill": CupertinoIcons.arrow_down_square_fill, - "cupertino_arrow_down_to_line": CupertinoIcons.arrow_down_to_line, - "cupertino_arrow_down_to_line_alt": CupertinoIcons.arrow_down_to_line_alt, - "cupertino_arrow_left": CupertinoIcons.arrow_left, - "cupertino_arrow_left_circle": CupertinoIcons.arrow_left_circle, - "cupertino_arrow_left_circle_fill": CupertinoIcons.arrow_left_circle_fill, - "cupertino_arrow_left_right": CupertinoIcons.arrow_left_right, - "cupertino_arrow_left_right_circle": CupertinoIcons.arrow_left_right_circle, - "cupertino_arrow_left_right_circle_fill": - CupertinoIcons.arrow_left_right_circle_fill, - "cupertino_arrow_left_right_square": CupertinoIcons.arrow_left_right_square, - "cupertino_arrow_left_right_square_fill": - CupertinoIcons.arrow_left_right_square_fill, - "cupertino_arrow_left_square": CupertinoIcons.arrow_left_square, - "cupertino_arrow_left_square_fill": CupertinoIcons.arrow_left_square_fill, - "cupertino_arrow_left_to_line": CupertinoIcons.arrow_left_to_line, - "cupertino_arrow_left_to_line_alt": CupertinoIcons.arrow_left_to_line_alt, - "cupertino_arrow_merge": CupertinoIcons.arrow_merge, - "cupertino_arrow_right": CupertinoIcons.arrow_right, - "cupertino_arrow_right_arrow_left": CupertinoIcons.arrow_right_arrow_left, - "cupertino_arrow_right_arrow_left_circle": - CupertinoIcons.arrow_right_arrow_left_circle, - "cupertino_arrow_right_arrow_left_circle_fill": - CupertinoIcons.arrow_right_arrow_left_circle_fill, - "cupertino_arrow_right_arrow_left_square": - CupertinoIcons.arrow_right_arrow_left_square, - "cupertino_arrow_right_arrow_left_square_fill": - CupertinoIcons.arrow_right_arrow_left_square_fill, - "cupertino_arrow_right_circle": CupertinoIcons.arrow_right_circle, - "cupertino_arrow_right_circle_fill": CupertinoIcons.arrow_right_circle_fill, - "cupertino_arrow_right_square": CupertinoIcons.arrow_right_square, - "cupertino_arrow_right_square_fill": CupertinoIcons.arrow_right_square_fill, - "cupertino_arrow_right_to_line": CupertinoIcons.arrow_right_to_line, - "cupertino_arrow_right_to_line_alt": CupertinoIcons.arrow_right_to_line_alt, - "cupertino_arrow_swap": CupertinoIcons.arrow_swap, - "cupertino_arrow_turn_down_left": CupertinoIcons.arrow_turn_down_left, - "cupertino_arrow_turn_down_right": CupertinoIcons.arrow_turn_down_right, - "cupertino_arrow_turn_left_down": CupertinoIcons.arrow_turn_left_down, - "cupertino_arrow_turn_left_up": CupertinoIcons.arrow_turn_left_up, - "cupertino_arrow_turn_right_down": CupertinoIcons.arrow_turn_right_down, - "cupertino_arrow_turn_right_up": CupertinoIcons.arrow_turn_right_up, - "cupertino_arrow_turn_up_left": CupertinoIcons.arrow_turn_up_left, - "cupertino_arrow_turn_up_right": CupertinoIcons.arrow_turn_up_right, - "cupertino_arrow_up": CupertinoIcons.arrow_up, - "cupertino_arrow_up_arrow_down": CupertinoIcons.arrow_up_arrow_down, - "cupertino_arrow_up_arrow_down_circle": - CupertinoIcons.arrow_up_arrow_down_circle, - "cupertino_arrow_up_arrow_down_circle_fill": - CupertinoIcons.arrow_up_arrow_down_circle_fill, - "cupertino_arrow_up_arrow_down_square": - CupertinoIcons.arrow_up_arrow_down_square, - "cupertino_arrow_up_arrow_down_square_fill": - CupertinoIcons.arrow_up_arrow_down_square_fill, - "cupertino_arrow_up_bin": CupertinoIcons.arrow_up_bin, - "cupertino_arrow_up_bin_fill": CupertinoIcons.arrow_up_bin_fill, - "cupertino_arrow_up_circle": CupertinoIcons.arrow_up_circle, - "cupertino_arrow_up_circle_fill": CupertinoIcons.arrow_up_circle_fill, - "cupertino_arrow_up_doc": CupertinoIcons.arrow_up_doc, - "cupertino_arrow_up_doc_fill": CupertinoIcons.arrow_up_doc_fill, - "cupertino_arrow_up_down": CupertinoIcons.arrow_up_down, - "cupertino_arrow_up_down_circle": CupertinoIcons.arrow_up_down_circle, - "cupertino_arrow_up_down_circle_fill": - CupertinoIcons.arrow_up_down_circle_fill, - "cupertino_arrow_up_down_square": CupertinoIcons.arrow_up_down_square, - "cupertino_arrow_up_down_square_fill": - CupertinoIcons.arrow_up_down_square_fill, - "cupertino_arrow_up_left": CupertinoIcons.arrow_up_left, - "cupertino_arrow_up_left_arrow_down_right": - CupertinoIcons.arrow_up_left_arrow_down_right, - "cupertino_arrow_up_left_circle": CupertinoIcons.arrow_up_left_circle, - "cupertino_arrow_up_left_circle_fill": - CupertinoIcons.arrow_up_left_circle_fill, - "cupertino_arrow_up_left_square": CupertinoIcons.arrow_up_left_square, - "cupertino_arrow_up_left_square_fill": - CupertinoIcons.arrow_up_left_square_fill, - "cupertino_arrow_up_right": CupertinoIcons.arrow_up_right, - "cupertino_arrow_up_right_circle": CupertinoIcons.arrow_up_right_circle, - "cupertino_arrow_up_right_circle_fill": - CupertinoIcons.arrow_up_right_circle_fill, - "cupertino_arrow_up_right_diamond": CupertinoIcons.arrow_up_right_diamond, - "cupertino_arrow_up_right_diamond_fill": - CupertinoIcons.arrow_up_right_diamond_fill, - "cupertino_arrow_up_right_square": CupertinoIcons.arrow_up_right_square, - "cupertino_arrow_up_right_square_fill": - CupertinoIcons.arrow_up_right_square_fill, - "cupertino_arrow_up_square": CupertinoIcons.arrow_up_square, - "cupertino_arrow_up_square_fill": CupertinoIcons.arrow_up_square_fill, - "cupertino_arrow_up_to_line": CupertinoIcons.arrow_up_to_line, - "cupertino_arrow_up_to_line_alt": CupertinoIcons.arrow_up_to_line_alt, - "cupertino_arrow_uturn_down": CupertinoIcons.arrow_uturn_down, - "cupertino_arrow_uturn_down_circle": CupertinoIcons.arrow_uturn_down_circle, - "cupertino_arrow_uturn_down_circle_fill": - CupertinoIcons.arrow_uturn_down_circle_fill, - "cupertino_arrow_uturn_down_square": CupertinoIcons.arrow_uturn_down_square, - "cupertino_arrow_uturn_down_square_fill": - CupertinoIcons.arrow_uturn_down_square_fill, - "cupertino_arrow_uturn_left": CupertinoIcons.arrow_uturn_left, - "cupertino_arrow_uturn_left_circle": CupertinoIcons.arrow_uturn_left_circle, - "cupertino_arrow_uturn_left_circle_fill": - CupertinoIcons.arrow_uturn_left_circle_fill, - "cupertino_arrow_uturn_left_square": CupertinoIcons.arrow_uturn_left_square, - "cupertino_arrow_uturn_left_square_fill": - CupertinoIcons.arrow_uturn_left_square_fill, - "cupertino_arrow_uturn_right": CupertinoIcons.arrow_uturn_right, - "cupertino_arrow_uturn_right_circle": CupertinoIcons.arrow_uturn_right_circle, - "cupertino_arrow_uturn_right_circle_fill": - CupertinoIcons.arrow_uturn_right_circle_fill, - "cupertino_arrow_uturn_right_square": CupertinoIcons.arrow_uturn_right_square, - "cupertino_arrow_uturn_right_square_fill": - CupertinoIcons.arrow_uturn_right_square_fill, - "cupertino_arrow_uturn_up": CupertinoIcons.arrow_uturn_up, - "cupertino_arrow_uturn_up_circle": CupertinoIcons.arrow_uturn_up_circle, - "cupertino_arrow_uturn_up_circle_fill": - CupertinoIcons.arrow_uturn_up_circle_fill, - "cupertino_arrow_uturn_up_square": CupertinoIcons.arrow_uturn_up_square, - "cupertino_arrow_uturn_up_square_fill": - CupertinoIcons.arrow_uturn_up_square_fill, - "cupertino_arrowshape_turn_up_left": CupertinoIcons.arrowshape_turn_up_left, - "cupertino_arrowshape_turn_up_left_2": - CupertinoIcons.arrowshape_turn_up_left_2, - "cupertino_arrowshape_turn_up_left_2_fill": - CupertinoIcons.arrowshape_turn_up_left_2_fill, - "cupertino_arrowshape_turn_up_left_circle": - CupertinoIcons.arrowshape_turn_up_left_circle, - "cupertino_arrowshape_turn_up_left_circle_fill": - CupertinoIcons.arrowshape_turn_up_left_circle_fill, - "cupertino_arrowshape_turn_up_left_fill": - CupertinoIcons.arrowshape_turn_up_left_fill, - "cupertino_arrowshape_turn_up_right": CupertinoIcons.arrowshape_turn_up_right, - "cupertino_arrowshape_turn_up_right_circle": - CupertinoIcons.arrowshape_turn_up_right_circle, - "cupertino_arrowshape_turn_up_right_circle_fill": - CupertinoIcons.arrowshape_turn_up_right_circle_fill, - "cupertino_arrowshape_turn_up_right_fill": - CupertinoIcons.arrowshape_turn_up_right_fill, - "cupertino_arrowtriangle_down": CupertinoIcons.arrowtriangle_down, - "cupertino_arrowtriangle_down_circle": - CupertinoIcons.arrowtriangle_down_circle, - "cupertino_arrowtriangle_down_circle_fill": - CupertinoIcons.arrowtriangle_down_circle_fill, - "cupertino_arrowtriangle_down_fill": CupertinoIcons.arrowtriangle_down_fill, - "cupertino_arrowtriangle_down_square": - CupertinoIcons.arrowtriangle_down_square, - "cupertino_arrowtriangle_down_square_fill": - CupertinoIcons.arrowtriangle_down_square_fill, - "cupertino_arrowtriangle_left": CupertinoIcons.arrowtriangle_left, - "cupertino_arrowtriangle_left_circle": - CupertinoIcons.arrowtriangle_left_circle, - "cupertino_arrowtriangle_left_circle_fill": - CupertinoIcons.arrowtriangle_left_circle_fill, - "cupertino_arrowtriangle_left_fill": CupertinoIcons.arrowtriangle_left_fill, - "cupertino_arrowtriangle_left_square": - CupertinoIcons.arrowtriangle_left_square, - "cupertino_arrowtriangle_left_square_fill": - CupertinoIcons.arrowtriangle_left_square_fill, - "cupertino_arrowtriangle_right": CupertinoIcons.arrowtriangle_right, - "cupertino_arrowtriangle_right_circle": - CupertinoIcons.arrowtriangle_right_circle, - "cupertino_arrowtriangle_right_circle_fill": - CupertinoIcons.arrowtriangle_right_circle_fill, - "cupertino_arrowtriangle_right_fill": CupertinoIcons.arrowtriangle_right_fill, - "cupertino_arrowtriangle_right_square": - CupertinoIcons.arrowtriangle_right_square, - "cupertino_arrowtriangle_right_square_fill": - CupertinoIcons.arrowtriangle_right_square_fill, - "cupertino_arrowtriangle_up": CupertinoIcons.arrowtriangle_up, - "cupertino_arrowtriangle_up_circle": CupertinoIcons.arrowtriangle_up_circle, - "cupertino_arrowtriangle_up_circle_fill": - CupertinoIcons.arrowtriangle_up_circle_fill, - "cupertino_arrowtriangle_up_fill": CupertinoIcons.arrowtriangle_up_fill, - "cupertino_arrowtriangle_up_square": CupertinoIcons.arrowtriangle_up_square, - "cupertino_arrowtriangle_up_square_fill": - CupertinoIcons.arrowtriangle_up_square_fill, - "cupertino_asterisk_circle": CupertinoIcons.asterisk_circle, - "cupertino_asterisk_circle_fill": CupertinoIcons.asterisk_circle_fill, - "cupertino_at": CupertinoIcons.at, - "cupertino_at_badge_minus": CupertinoIcons.at_badge_minus, - "cupertino_at_badge_plus": CupertinoIcons.at_badge_plus, - "cupertino_at_circle": CupertinoIcons.at_circle, - "cupertino_at_circle_fill": CupertinoIcons.at_circle_fill, - "cupertino_backward": CupertinoIcons.backward, - "cupertino_backward_end": CupertinoIcons.backward_end, - "cupertino_backward_end_alt": CupertinoIcons.backward_end_alt, - "cupertino_backward_end_alt_fill": CupertinoIcons.backward_end_alt_fill, - "cupertino_backward_end_fill": CupertinoIcons.backward_end_fill, - "cupertino_backward_fill": CupertinoIcons.backward_fill, - "cupertino_badge_plus_radiowaves_right": - CupertinoIcons.badge_plus_radiowaves_right, - "cupertino_bag": CupertinoIcons.bag, - "cupertino_bag_badge_minus": CupertinoIcons.bag_badge_minus, - "cupertino_bag_badge_plus": CupertinoIcons.bag_badge_plus, - "cupertino_bag_fill": CupertinoIcons.bag_fill, - "cupertino_bag_fill_badge_minus": CupertinoIcons.bag_fill_badge_minus, - "cupertino_bag_fill_badge_plus": CupertinoIcons.bag_fill_badge_plus, - "cupertino_bandage": CupertinoIcons.bandage, - "cupertino_bandage_fill": CupertinoIcons.bandage_fill, - "cupertino_barcode": CupertinoIcons.barcode, - "cupertino_barcode_viewfinder": CupertinoIcons.barcode_viewfinder, - "cupertino_bars": CupertinoIcons.bars, - "cupertino_battery_0": CupertinoIcons.battery_0, - "cupertino_battery_100": CupertinoIcons.battery_100, - "cupertino_battery_25": CupertinoIcons.battery_25, - "cupertino_bed_double": CupertinoIcons.bed_double, - "cupertino_bed_double_fill": CupertinoIcons.bed_double_fill, - "cupertino_bell_circle": CupertinoIcons.bell_circle, - "cupertino_bell_circle_fill": CupertinoIcons.bell_circle_fill, - "cupertino_bell_fill": CupertinoIcons.bell_fill, - "cupertino_bell_slash": CupertinoIcons.bell_slash, - "cupertino_bell_slash_fill": CupertinoIcons.bell_slash_fill, - "cupertino_bin_xmark": CupertinoIcons.bin_xmark, - "cupertino_bin_xmark_fill": CupertinoIcons.bin_xmark_fill, - "cupertino_bitcoin": CupertinoIcons.bitcoin, - "cupertino_bitcoin_circle": CupertinoIcons.bitcoin_circle, - "cupertino_bitcoin_circle_fill": CupertinoIcons.bitcoin_circle_fill, - "cupertino_bold": CupertinoIcons.bold, - "cupertino_bold_italic_underline": CupertinoIcons.bold_italic_underline, - "cupertino_bold_underline": CupertinoIcons.bold_underline, - "cupertino_bolt": CupertinoIcons.bolt, - "cupertino_bolt_badge_a": CupertinoIcons.bolt_badge_a, - "cupertino_bolt_badge_a_fill": CupertinoIcons.bolt_badge_a_fill, - "cupertino_bolt_circle": CupertinoIcons.bolt_circle, - "cupertino_bolt_circle_fill": CupertinoIcons.bolt_circle_fill, - "cupertino_bolt_fill": CupertinoIcons.bolt_fill, - "cupertino_bolt_horizontal": CupertinoIcons.bolt_horizontal, - "cupertino_bolt_horizontal_circle": CupertinoIcons.bolt_horizontal_circle, - "cupertino_bolt_horizontal_circle_fill": - CupertinoIcons.bolt_horizontal_circle_fill, - "cupertino_bolt_horizontal_fill": CupertinoIcons.bolt_horizontal_fill, - "cupertino_bolt_slash": CupertinoIcons.bolt_slash, - "cupertino_bolt_slash_fill": CupertinoIcons.bolt_slash_fill, - "cupertino_book_circle": CupertinoIcons.book_circle, - "cupertino_book_circle_fill": CupertinoIcons.book_circle_fill, - "cupertino_book_fill": CupertinoIcons.book_fill, - "cupertino_bookmark_fill": CupertinoIcons.bookmark_fill, - "cupertino_briefcase": CupertinoIcons.briefcase, - "cupertino_briefcase_fill": CupertinoIcons.briefcase_fill, - "cupertino_bubble_left": CupertinoIcons.bubble_left, - "cupertino_bubble_left_bubble_right": CupertinoIcons.bubble_left_bubble_right, - "cupertino_bubble_left_bubble_right_fill": - CupertinoIcons.bubble_left_bubble_right_fill, - "cupertino_bubble_left_fill": CupertinoIcons.bubble_left_fill, - "cupertino_bubble_middle_bottom": CupertinoIcons.bubble_middle_bottom, - "cupertino_bubble_middle_bottom_fill": - CupertinoIcons.bubble_middle_bottom_fill, - "cupertino_bubble_middle_top": CupertinoIcons.bubble_middle_top, - "cupertino_bubble_middle_top_fill": CupertinoIcons.bubble_middle_top_fill, - "cupertino_bubble_right": CupertinoIcons.bubble_right, - "cupertino_bubble_right_fill": CupertinoIcons.bubble_right_fill, - "cupertino_building_2_fill": CupertinoIcons.building_2_fill, - "cupertino_burn": CupertinoIcons.burn, - "cupertino_burst": CupertinoIcons.burst, - "cupertino_burst_fill": CupertinoIcons.burst_fill, - "cupertino_calendar": CupertinoIcons.calendar, - "cupertino_calendar_badge_minus": CupertinoIcons.calendar_badge_minus, - "cupertino_calendar_badge_plus": CupertinoIcons.calendar_badge_plus, - "cupertino_calendar_circle": CupertinoIcons.calendar_circle, - "cupertino_calendar_circle_fill": CupertinoIcons.calendar_circle_fill, - "cupertino_calendar_today": CupertinoIcons.calendar_today, - "cupertino_camera": CupertinoIcons.camera, - "cupertino_camera_circle": CupertinoIcons.camera_circle, - "cupertino_camera_circle_fill": CupertinoIcons.camera_circle_fill, - "cupertino_camera_fill": CupertinoIcons.camera_fill, - "cupertino_camera_on_rectangle": CupertinoIcons.camera_on_rectangle, - "cupertino_camera_on_rectangle_fill": CupertinoIcons.camera_on_rectangle_fill, - "cupertino_camera_rotate": CupertinoIcons.camera_rotate, - "cupertino_camera_rotate_fill": CupertinoIcons.camera_rotate_fill, - "cupertino_camera_viewfinder": CupertinoIcons.camera_viewfinder, - "cupertino_capslock": CupertinoIcons.capslock, - "cupertino_capslock_fill": CupertinoIcons.capslock_fill, - "cupertino_capsule": CupertinoIcons.capsule, - "cupertino_capsule_fill": CupertinoIcons.capsule_fill, - "cupertino_captions_bubble": CupertinoIcons.captions_bubble, - "cupertino_captions_bubble_fill": CupertinoIcons.captions_bubble_fill, - "cupertino_car_fill": CupertinoIcons.car_fill, - "cupertino_cart": CupertinoIcons.cart, - "cupertino_cart_badge_minus": CupertinoIcons.cart_badge_minus, - "cupertino_cart_badge_plus": CupertinoIcons.cart_badge_plus, - "cupertino_cart_fill": CupertinoIcons.cart_fill, - "cupertino_cart_fill_badge_minus": CupertinoIcons.cart_fill_badge_minus, - "cupertino_cart_fill_badge_plus": CupertinoIcons.cart_fill_badge_plus, - "cupertino_chart_bar": CupertinoIcons.chart_bar, - "cupertino_chart_bar_alt_fill": CupertinoIcons.chart_bar_alt_fill, - "cupertino_chart_bar_circle": CupertinoIcons.chart_bar_circle, - "cupertino_chart_bar_circle_fill": CupertinoIcons.chart_bar_circle_fill, - "cupertino_chart_bar_fill": CupertinoIcons.chart_bar_fill, - "cupertino_chart_bar_square": CupertinoIcons.chart_bar_square, - "cupertino_chart_bar_square_fill": CupertinoIcons.chart_bar_square_fill, - "cupertino_chart_pie": CupertinoIcons.chart_pie, - "cupertino_chart_pie_fill": CupertinoIcons.chart_pie_fill, - "cupertino_chat_bubble": CupertinoIcons.chat_bubble, - "cupertino_chat_bubble_2": CupertinoIcons.chat_bubble_2, - "cupertino_chat_bubble_2_fill": CupertinoIcons.chat_bubble_2_fill, - "cupertino_chat_bubble_fill": CupertinoIcons.chat_bubble_fill, - "cupertino_chat_bubble_text": CupertinoIcons.chat_bubble_text, - "cupertino_chat_bubble_text_fill": CupertinoIcons.chat_bubble_text_fill, - "cupertino_checkmark": CupertinoIcons.checkmark, - "cupertino_checkmark_alt": CupertinoIcons.checkmark_alt, - "cupertino_checkmark_alt_circle": CupertinoIcons.checkmark_alt_circle, - "cupertino_checkmark_alt_circle_fill": - CupertinoIcons.checkmark_alt_circle_fill, - "cupertino_checkmark_circle": CupertinoIcons.checkmark_circle, - "cupertino_checkmark_circle_fill": CupertinoIcons.checkmark_circle_fill, - "cupertino_checkmark_rectangle": CupertinoIcons.checkmark_rectangle, - "cupertino_checkmark_rectangle_fill": CupertinoIcons.checkmark_rectangle_fill, - "cupertino_checkmark_seal": CupertinoIcons.checkmark_seal, - "cupertino_checkmark_seal_fill": CupertinoIcons.checkmark_seal_fill, - "cupertino_checkmark_shield": CupertinoIcons.checkmark_shield, - "cupertino_checkmark_shield_fill": CupertinoIcons.checkmark_shield_fill, - "cupertino_checkmark_square": CupertinoIcons.checkmark_square, - "cupertino_checkmark_square_fill": CupertinoIcons.checkmark_square_fill, - "cupertino_chevron_back": CupertinoIcons.chevron_back, - "cupertino_chevron_compact_down": CupertinoIcons.chevron_compact_down, - "cupertino_chevron_compact_left": CupertinoIcons.chevron_compact_left, - "cupertino_chevron_compact_right": CupertinoIcons.chevron_compact_right, - "cupertino_chevron_compact_up": CupertinoIcons.chevron_compact_up, - "cupertino_chevron_down": CupertinoIcons.chevron_down, - "cupertino_chevron_down_circle": CupertinoIcons.chevron_down_circle, - "cupertino_chevron_down_circle_fill": CupertinoIcons.chevron_down_circle_fill, - "cupertino_chevron_down_square": CupertinoIcons.chevron_down_square, - "cupertino_chevron_down_square_fill": CupertinoIcons.chevron_down_square_fill, - "cupertino_chevron_forward": CupertinoIcons.chevron_forward, - "cupertino_chevron_left": CupertinoIcons.chevron_left, - "cupertino_chevron_left_2": CupertinoIcons.chevron_left_2, - "cupertino_chevron_left_circle": CupertinoIcons.chevron_left_circle, - "cupertino_chevron_left_circle_fill": CupertinoIcons.chevron_left_circle_fill, - "cupertino_chevron_left_slash_chevron_right": - CupertinoIcons.chevron_left_slash_chevron_right, - "cupertino_chevron_left_square": CupertinoIcons.chevron_left_square, - "cupertino_chevron_left_square_fill": CupertinoIcons.chevron_left_square_fill, - "cupertino_chevron_right": CupertinoIcons.chevron_right, - "cupertino_chevron_right_2": CupertinoIcons.chevron_right_2, - "cupertino_chevron_right_circle": CupertinoIcons.chevron_right_circle, - "cupertino_chevron_right_circle_fill": - CupertinoIcons.chevron_right_circle_fill, - "cupertino_chevron_right_square": CupertinoIcons.chevron_right_square, - "cupertino_chevron_right_square_fill": - CupertinoIcons.chevron_right_square_fill, - "cupertino_chevron_up": CupertinoIcons.chevron_up, - "cupertino_chevron_up_chevron_down": CupertinoIcons.chevron_up_chevron_down, - "cupertino_chevron_up_circle": CupertinoIcons.chevron_up_circle, - "cupertino_chevron_up_circle_fill": CupertinoIcons.chevron_up_circle_fill, - "cupertino_chevron_up_square": CupertinoIcons.chevron_up_square, - "cupertino_chevron_up_square_fill": CupertinoIcons.chevron_up_square_fill, - "cupertino_circle_bottomthird_split": CupertinoIcons.circle_bottomthird_split, - "cupertino_circle_fill": CupertinoIcons.circle_fill, - "cupertino_circle_grid_3x3": CupertinoIcons.circle_grid_3x3, - "cupertino_circle_grid_3x3_fill": CupertinoIcons.circle_grid_3x3_fill, - "cupertino_circle_grid_hex": CupertinoIcons.circle_grid_hex, - "cupertino_circle_grid_hex_fill": CupertinoIcons.circle_grid_hex_fill, - "cupertino_circle_lefthalf_fill": CupertinoIcons.circle_lefthalf_fill, - "cupertino_circle_righthalf_fill": CupertinoIcons.circle_righthalf_fill, - "cupertino_clear_fill": CupertinoIcons.clear_fill, - "cupertino_clock_fill": CupertinoIcons.clock_fill, - "cupertino_cloud": CupertinoIcons.cloud, - "cupertino_cloud_bolt": CupertinoIcons.cloud_bolt, - "cupertino_cloud_bolt_fill": CupertinoIcons.cloud_bolt_fill, - "cupertino_cloud_bolt_rain": CupertinoIcons.cloud_bolt_rain, - "cupertino_cloud_bolt_rain_fill": CupertinoIcons.cloud_bolt_rain_fill, - "cupertino_cloud_download": CupertinoIcons.cloud_download, - "cupertino_cloud_download_fill": CupertinoIcons.cloud_download_fill, - "cupertino_cloud_drizzle": CupertinoIcons.cloud_drizzle, - "cupertino_cloud_drizzle_fill": CupertinoIcons.cloud_drizzle_fill, - "cupertino_cloud_fill": CupertinoIcons.cloud_fill, - "cupertino_cloud_fog": CupertinoIcons.cloud_fog, - "cupertino_cloud_fog_fill": CupertinoIcons.cloud_fog_fill, - "cupertino_cloud_hail": CupertinoIcons.cloud_hail, - "cupertino_cloud_hail_fill": CupertinoIcons.cloud_hail_fill, - "cupertino_cloud_heavyrain": CupertinoIcons.cloud_heavyrain, - "cupertino_cloud_heavyrain_fill": CupertinoIcons.cloud_heavyrain_fill, - "cupertino_cloud_moon": CupertinoIcons.cloud_moon, - "cupertino_cloud_moon_bolt": CupertinoIcons.cloud_moon_bolt, - "cupertino_cloud_moon_bolt_fill": CupertinoIcons.cloud_moon_bolt_fill, - "cupertino_cloud_moon_fill": CupertinoIcons.cloud_moon_fill, - "cupertino_cloud_moon_rain": CupertinoIcons.cloud_moon_rain, - "cupertino_cloud_moon_rain_fill": CupertinoIcons.cloud_moon_rain_fill, - "cupertino_cloud_rain": CupertinoIcons.cloud_rain, - "cupertino_cloud_rain_fill": CupertinoIcons.cloud_rain_fill, - "cupertino_cloud_sleet": CupertinoIcons.cloud_sleet, - "cupertino_cloud_sleet_fill": CupertinoIcons.cloud_sleet_fill, - "cupertino_cloud_snow": CupertinoIcons.cloud_snow, - "cupertino_cloud_snow_fill": CupertinoIcons.cloud_snow_fill, - "cupertino_cloud_sun": CupertinoIcons.cloud_sun, - "cupertino_cloud_sun_bolt": CupertinoIcons.cloud_sun_bolt, - "cupertino_cloud_sun_bolt_fill": CupertinoIcons.cloud_sun_bolt_fill, - "cupertino_cloud_sun_fill": CupertinoIcons.cloud_sun_fill, - "cupertino_cloud_sun_rain": CupertinoIcons.cloud_sun_rain, - "cupertino_cloud_sun_rain_fill": CupertinoIcons.cloud_sun_rain_fill, - "cupertino_cloud_upload": CupertinoIcons.cloud_upload, - "cupertino_cloud_upload_fill": CupertinoIcons.cloud_upload_fill, - "cupertino_color_filter": CupertinoIcons.color_filter, - "cupertino_color_filter_fill": CupertinoIcons.color_filter_fill, - "cupertino_command": CupertinoIcons.command, - "cupertino_compass": CupertinoIcons.compass, - "cupertino_compass_fill": CupertinoIcons.compass_fill, - "cupertino_control": CupertinoIcons.control, - "cupertino_creditcard": CupertinoIcons.creditcard, - "cupertino_creditcard_fill": CupertinoIcons.creditcard_fill, - "cupertino_crop": CupertinoIcons.crop, - "cupertino_crop_rotate": CupertinoIcons.crop_rotate, - "cupertino_cube": CupertinoIcons.cube, - "cupertino_cube_box": CupertinoIcons.cube_box, - "cupertino_cube_box_fill": CupertinoIcons.cube_box_fill, - "cupertino_cube_fill": CupertinoIcons.cube_fill, - "cupertino_cursor_rays": CupertinoIcons.cursor_rays, - "cupertino_decrease_indent": CupertinoIcons.decrease_indent, - "cupertino_decrease_quotelevel": CupertinoIcons.decrease_quotelevel, - "cupertino_delete_left": CupertinoIcons.delete_left, - "cupertino_delete_left_fill": CupertinoIcons.delete_left_fill, - "cupertino_delete_right": CupertinoIcons.delete_right, - "cupertino_delete_right_fill": CupertinoIcons.delete_right_fill, - "cupertino_desktopcomputer": CupertinoIcons.desktopcomputer, - "cupertino_device_desktop": CupertinoIcons.device_desktop, - "cupertino_device_laptop": CupertinoIcons.device_laptop, - "cupertino_device_phone_landscape": CupertinoIcons.device_phone_landscape, - "cupertino_device_phone_portrait": CupertinoIcons.device_phone_portrait, - "cupertino_dial": CupertinoIcons.dial, - "cupertino_dial_fill": CupertinoIcons.dial_fill, - "cupertino_divide": CupertinoIcons.divide, - "cupertino_divide_circle": CupertinoIcons.divide_circle, - "cupertino_divide_circle_fill": CupertinoIcons.divide_circle_fill, - "cupertino_divide_square": CupertinoIcons.divide_square, - "cupertino_divide_square_fill": CupertinoIcons.divide_square_fill, - "cupertino_doc": CupertinoIcons.doc, - "cupertino_doc_append": CupertinoIcons.doc_append, - "cupertino_doc_chart": CupertinoIcons.doc_chart, - "cupertino_doc_chart_fill": CupertinoIcons.doc_chart_fill, - "cupertino_doc_checkmark": CupertinoIcons.doc_checkmark, - "cupertino_doc_checkmark_fill": CupertinoIcons.doc_checkmark_fill, - "cupertino_doc_circle": CupertinoIcons.doc_circle, - "cupertino_doc_circle_fill": CupertinoIcons.doc_circle_fill, - "cupertino_doc_fill": CupertinoIcons.doc_fill, - "cupertino_doc_on_clipboard": CupertinoIcons.doc_on_clipboard, - "cupertino_doc_on_clipboard_fill": CupertinoIcons.doc_on_clipboard_fill, - "cupertino_doc_on_doc": CupertinoIcons.doc_on_doc, - "cupertino_doc_on_doc_fill": CupertinoIcons.doc_on_doc_fill, - "cupertino_doc_person": CupertinoIcons.doc_person, - "cupertino_doc_person_fill": CupertinoIcons.doc_person_fill, - "cupertino_doc_plaintext": CupertinoIcons.doc_plaintext, - "cupertino_doc_richtext": CupertinoIcons.doc_richtext, - "cupertino_doc_text": CupertinoIcons.doc_text, - "cupertino_doc_text_fill": CupertinoIcons.doc_text_fill, - "cupertino_doc_text_search": CupertinoIcons.doc_text_search, - "cupertino_doc_text_viewfinder": CupertinoIcons.doc_text_viewfinder, - "cupertino_dot_radiowaves_left_right": - CupertinoIcons.dot_radiowaves_left_right, - "cupertino_dot_radiowaves_right": CupertinoIcons.dot_radiowaves_right, - "cupertino_dot_square": CupertinoIcons.dot_square, - "cupertino_dot_square_fill": CupertinoIcons.dot_square_fill, - "cupertino_download_circle": CupertinoIcons.download_circle, - "cupertino_download_circle_fill": CupertinoIcons.download_circle_fill, - "cupertino_drop": CupertinoIcons.drop, - "cupertino_drop_fill": CupertinoIcons.drop_fill, - "cupertino_drop_triangle": CupertinoIcons.drop_triangle, - "cupertino_drop_triangle_fill": CupertinoIcons.drop_triangle_fill, - "cupertino_ear": CupertinoIcons.ear, - "cupertino_eject": CupertinoIcons.eject, - "cupertino_eject_fill": CupertinoIcons.eject_fill, - "cupertino_ellipses_bubble": CupertinoIcons.ellipses_bubble, - "cupertino_ellipses_bubble_fill": CupertinoIcons.ellipses_bubble_fill, - "cupertino_ellipsis_circle": CupertinoIcons.ellipsis_circle, - "cupertino_ellipsis_circle_fill": CupertinoIcons.ellipsis_circle_fill, - "cupertino_ellipsis_vertical": CupertinoIcons.ellipsis_vertical, - "cupertino_ellipsis_vertical_circle": CupertinoIcons.ellipsis_vertical_circle, - "cupertino_ellipsis_vertical_circle_fill": - CupertinoIcons.ellipsis_vertical_circle_fill, - "cupertino_envelope": CupertinoIcons.envelope, - "cupertino_envelope_badge": CupertinoIcons.envelope_badge, - "cupertino_envelope_badge_fill": CupertinoIcons.envelope_badge_fill, - "cupertino_envelope_circle": CupertinoIcons.envelope_circle, - "cupertino_envelope_circle_fill": CupertinoIcons.envelope_circle_fill, - "cupertino_envelope_fill": CupertinoIcons.envelope_fill, - "cupertino_envelope_open": CupertinoIcons.envelope_open, - "cupertino_envelope_open_fill": CupertinoIcons.envelope_open_fill, - "cupertino_equal": CupertinoIcons.equal, - "cupertino_equal_circle": CupertinoIcons.equal_circle, - "cupertino_equal_circle_fill": CupertinoIcons.equal_circle_fill, - "cupertino_equal_square": CupertinoIcons.equal_square, - "cupertino_equal_square_fill": CupertinoIcons.equal_square_fill, - "cupertino_escape": CupertinoIcons.escape, - "cupertino_exclamationmark": CupertinoIcons.exclamationmark, - "cupertino_exclamationmark_bubble": CupertinoIcons.exclamationmark_bubble, - "cupertino_exclamationmark_bubble_fill": - CupertinoIcons.exclamationmark_bubble_fill, - "cupertino_exclamationmark_circle": CupertinoIcons.exclamationmark_circle, - "cupertino_exclamationmark_circle_fill": - CupertinoIcons.exclamationmark_circle_fill, - "cupertino_exclamationmark_octagon": CupertinoIcons.exclamationmark_octagon, - "cupertino_exclamationmark_octagon_fill": - CupertinoIcons.exclamationmark_octagon_fill, - "cupertino_exclamationmark_shield": CupertinoIcons.exclamationmark_shield, - "cupertino_exclamationmark_shield_fill": - CupertinoIcons.exclamationmark_shield_fill, - "cupertino_exclamationmark_square": CupertinoIcons.exclamationmark_square, - "cupertino_exclamationmark_square_fill": - CupertinoIcons.exclamationmark_square_fill, - "cupertino_exclamationmark_triangle": CupertinoIcons.exclamationmark_triangle, - "cupertino_exclamationmark_triangle_fill": - CupertinoIcons.exclamationmark_triangle_fill, - "cupertino_eye_fill": CupertinoIcons.eye_fill, - "cupertino_eye_slash": CupertinoIcons.eye_slash, - "cupertino_eye_slash_fill": CupertinoIcons.eye_slash_fill, - "cupertino_eyedropper": CupertinoIcons.eyedropper, - "cupertino_eyedropper_full": CupertinoIcons.eyedropper_full, - "cupertino_eyedropper_halffull": CupertinoIcons.eyedropper_halffull, - "cupertino_eyeglasses": CupertinoIcons.eyeglasses, - "cupertino_f_cursive": CupertinoIcons.f_cursive, - "cupertino_f_cursive_circle": CupertinoIcons.f_cursive_circle, - "cupertino_f_cursive_circle_fill": CupertinoIcons.f_cursive_circle_fill, - "cupertino_film": CupertinoIcons.film, - "cupertino_film_fill": CupertinoIcons.film_fill, - "cupertino_flag_circle": CupertinoIcons.flag_circle, - "cupertino_flag_circle_fill": CupertinoIcons.flag_circle_fill, - "cupertino_flag_fill": CupertinoIcons.flag_fill, - "cupertino_flag_slash": CupertinoIcons.flag_slash, - "cupertino_flag_slash_fill": CupertinoIcons.flag_slash_fill, - "cupertino_flame": CupertinoIcons.flame, - "cupertino_flame_fill": CupertinoIcons.flame_fill, - "cupertino_floppy_disk": CupertinoIcons.floppy_disk, - "cupertino_flowchart": CupertinoIcons.flowchart, - "cupertino_flowchart_fill": CupertinoIcons.flowchart_fill, - "cupertino_folder_badge_minus": CupertinoIcons.folder_badge_minus, - "cupertino_folder_badge_person_crop": CupertinoIcons.folder_badge_person_crop, - "cupertino_folder_badge_plus": CupertinoIcons.folder_badge_plus, - "cupertino_folder_circle": CupertinoIcons.folder_circle, - "cupertino_folder_circle_fill": CupertinoIcons.folder_circle_fill, - "cupertino_folder_fill": CupertinoIcons.folder_fill, - "cupertino_folder_fill_badge_minus": CupertinoIcons.folder_fill_badge_minus, - "cupertino_folder_fill_badge_person_crop": - CupertinoIcons.folder_fill_badge_person_crop, - "cupertino_folder_fill_badge_plus": CupertinoIcons.folder_fill_badge_plus, - "cupertino_forward_end": CupertinoIcons.forward_end, - "cupertino_forward_end_alt": CupertinoIcons.forward_end_alt, - "cupertino_forward_end_alt_fill": CupertinoIcons.forward_end_alt_fill, - "cupertino_forward_end_fill": CupertinoIcons.forward_end_fill, - "cupertino_forward_fill": CupertinoIcons.forward_fill, - "cupertino_function": CupertinoIcons.function, - "cupertino_fx": CupertinoIcons.fx, - "cupertino_gamecontroller": CupertinoIcons.gamecontroller, - "cupertino_gamecontroller_alt_fill": CupertinoIcons.gamecontroller_alt_fill, - "cupertino_gamecontroller_fill": CupertinoIcons.gamecontroller_fill, - "cupertino_gauge": CupertinoIcons.gauge, - "cupertino_gauge_badge_minus": CupertinoIcons.gauge_badge_minus, - "cupertino_gauge_badge_plus": CupertinoIcons.gauge_badge_plus, - "cupertino_gear_alt": CupertinoIcons.gear_alt, - "cupertino_gear_alt_fill": CupertinoIcons.gear_alt_fill, - "cupertino_gift": CupertinoIcons.gift, - "cupertino_gift_alt": CupertinoIcons.gift_alt, - "cupertino_gift_alt_fill": CupertinoIcons.gift_alt_fill, - "cupertino_gift_fill": CupertinoIcons.gift_fill, - "cupertino_globe": CupertinoIcons.globe, - "cupertino_gobackward": CupertinoIcons.gobackward, - "cupertino_gobackward_10": CupertinoIcons.gobackward_10, - "cupertino_gobackward_15": CupertinoIcons.gobackward_15, - "cupertino_gobackward_30": CupertinoIcons.gobackward_30, - "cupertino_gobackward_45": CupertinoIcons.gobackward_45, - "cupertino_gobackward_60": CupertinoIcons.gobackward_60, - "cupertino_gobackward_75": CupertinoIcons.gobackward_75, - "cupertino_gobackward_90": CupertinoIcons.gobackward_90, - "cupertino_gobackward_minus": CupertinoIcons.gobackward_minus, - "cupertino_goforward": CupertinoIcons.goforward, - "cupertino_goforward_10": CupertinoIcons.goforward_10, - "cupertino_goforward_15": CupertinoIcons.goforward_15, - "cupertino_goforward_30": CupertinoIcons.goforward_30, - "cupertino_goforward_45": CupertinoIcons.goforward_45, - "cupertino_goforward_60": CupertinoIcons.goforward_60, - "cupertino_goforward_75": CupertinoIcons.goforward_75, - "cupertino_goforward_90": CupertinoIcons.goforward_90, - "cupertino_goforward_plus": CupertinoIcons.goforward_plus, - "cupertino_graph_circle": CupertinoIcons.graph_circle, - "cupertino_graph_circle_fill": CupertinoIcons.graph_circle_fill, - "cupertino_graph_square": CupertinoIcons.graph_square, - "cupertino_graph_square_fill": CupertinoIcons.graph_square_fill, - "cupertino_greaterthan": CupertinoIcons.greaterthan, - "cupertino_greaterthan_circle": CupertinoIcons.greaterthan_circle, - "cupertino_greaterthan_circle_fill": CupertinoIcons.greaterthan_circle_fill, - "cupertino_greaterthan_square": CupertinoIcons.greaterthan_square, - "cupertino_greaterthan_square_fill": CupertinoIcons.greaterthan_square_fill, - "cupertino_grid": CupertinoIcons.grid, - "cupertino_grid_circle": CupertinoIcons.grid_circle, - "cupertino_grid_circle_fill": CupertinoIcons.grid_circle_fill, - "cupertino_guitars": CupertinoIcons.guitars, - "cupertino_hammer": CupertinoIcons.hammer, - "cupertino_hammer_fill": CupertinoIcons.hammer_fill, - "cupertino_hand_draw": CupertinoIcons.hand_draw, - "cupertino_hand_draw_fill": CupertinoIcons.hand_draw_fill, - "cupertino_hand_point_left": CupertinoIcons.hand_point_left, - "cupertino_hand_point_left_fill": CupertinoIcons.hand_point_left_fill, - "cupertino_hand_point_right": CupertinoIcons.hand_point_right, - "cupertino_hand_point_right_fill": CupertinoIcons.hand_point_right_fill, - "cupertino_hand_raised": CupertinoIcons.hand_raised, - "cupertino_hand_raised_fill": CupertinoIcons.hand_raised_fill, - "cupertino_hand_raised_slash": CupertinoIcons.hand_raised_slash, - "cupertino_hand_raised_slash_fill": CupertinoIcons.hand_raised_slash_fill, - "cupertino_hand_thumbsdown": CupertinoIcons.hand_thumbsdown, - "cupertino_hand_thumbsdown_fill": CupertinoIcons.hand_thumbsdown_fill, - "cupertino_hand_thumbsup": CupertinoIcons.hand_thumbsup, - "cupertino_hand_thumbsup_fill": CupertinoIcons.hand_thumbsup_fill, - "cupertino_hare": CupertinoIcons.hare, - "cupertino_hare_fill": CupertinoIcons.hare_fill, - "cupertino_headphones": CupertinoIcons.headphones, - "cupertino_heart_circle": CupertinoIcons.heart_circle, - "cupertino_heart_circle_fill": CupertinoIcons.heart_circle_fill, - "cupertino_heart_fill": CupertinoIcons.heart_fill, - "cupertino_heart_slash": CupertinoIcons.heart_slash, - "cupertino_heart_slash_circle": CupertinoIcons.heart_slash_circle, - "cupertino_heart_slash_circle_fill": CupertinoIcons.heart_slash_circle_fill, - "cupertino_heart_slash_fill": CupertinoIcons.heart_slash_fill, - "cupertino_helm": CupertinoIcons.helm, - "cupertino_hexagon": CupertinoIcons.hexagon, - "cupertino_hexagon_fill": CupertinoIcons.hexagon_fill, - "cupertino_hifispeaker": CupertinoIcons.hifispeaker, - "cupertino_hifispeaker_fill": CupertinoIcons.hifispeaker_fill, - "cupertino_hourglass": CupertinoIcons.hourglass, - "cupertino_hourglass_bottomhalf_fill": - CupertinoIcons.hourglass_bottomhalf_fill, - "cupertino_hourglass_tophalf_fill": CupertinoIcons.hourglass_tophalf_fill, - "cupertino_house": CupertinoIcons.house, - "cupertino_house_alt": CupertinoIcons.house_alt, - "cupertino_house_alt_fill": CupertinoIcons.house_alt_fill, - "cupertino_house_fill": CupertinoIcons.house_fill, - "cupertino_hurricane": CupertinoIcons.hurricane, - "cupertino_increase_indent": CupertinoIcons.increase_indent, - "cupertino_increase_quotelevel": CupertinoIcons.increase_quotelevel, - "cupertino_infinite": CupertinoIcons.infinite, - "cupertino_info_circle": CupertinoIcons.info_circle, - "cupertino_info_circle_fill": CupertinoIcons.info_circle_fill, - "cupertino_italic": CupertinoIcons.italic, - "cupertino_keyboard": CupertinoIcons.keyboard, - "cupertino_keyboard_chevron_compact_down": - CupertinoIcons.keyboard_chevron_compact_down, - "cupertino_largecircle_fill_circle": CupertinoIcons.largecircle_fill_circle, - "cupertino_lasso": CupertinoIcons.lasso, - "cupertino_layers": CupertinoIcons.layers, - "cupertino_layers_alt": CupertinoIcons.layers_alt, - "cupertino_layers_alt_fill": CupertinoIcons.layers_alt_fill, - "cupertino_layers_fill": CupertinoIcons.layers_fill, - "cupertino_leaf_arrow_circlepath": CupertinoIcons.leaf_arrow_circlepath, - "cupertino_lessthan": CupertinoIcons.lessthan, - "cupertino_lessthan_circle": CupertinoIcons.lessthan_circle, - "cupertino_lessthan_circle_fill": CupertinoIcons.lessthan_circle_fill, - "cupertino_lessthan_square": CupertinoIcons.lessthan_square, - "cupertino_lessthan_square_fill": CupertinoIcons.lessthan_square_fill, - "cupertino_light_max": CupertinoIcons.light_max, - "cupertino_light_min": CupertinoIcons.light_min, - "cupertino_lightbulb": CupertinoIcons.lightbulb, - "cupertino_lightbulb_fill": CupertinoIcons.lightbulb_fill, - "cupertino_lightbulb_slash": CupertinoIcons.lightbulb_slash, - "cupertino_lightbulb_slash_fill": CupertinoIcons.lightbulb_slash_fill, - "cupertino_line_horizontal_3": CupertinoIcons.line_horizontal_3, - "cupertino_line_horizontal_3_decrease": - CupertinoIcons.line_horizontal_3_decrease, - "cupertino_line_horizontal_3_decrease_circle": - CupertinoIcons.line_horizontal_3_decrease_circle, - "cupertino_line_horizontal_3_decrease_circle_fill": - CupertinoIcons.line_horizontal_3_decrease_circle_fill, - "cupertino_link": CupertinoIcons.link, - "cupertino_link_circle": CupertinoIcons.link_circle, - "cupertino_link_circle_fill": CupertinoIcons.link_circle_fill, - "cupertino_list_bullet": CupertinoIcons.list_bullet, - "cupertino_list_bullet_below_rectangle": - CupertinoIcons.list_bullet_below_rectangle, - "cupertino_list_bullet_indent": CupertinoIcons.list_bullet_indent, - "cupertino_list_dash": CupertinoIcons.list_dash, - "cupertino_list_number": CupertinoIcons.list_number, - "cupertino_list_number_rtl": CupertinoIcons.list_number_rtl, - "cupertino_location_circle": CupertinoIcons.location_circle, - "cupertino_location_circle_fill": CupertinoIcons.location_circle_fill, - "cupertino_location_fill": CupertinoIcons.location_fill, - "cupertino_location_north": CupertinoIcons.location_north, - "cupertino_location_north_fill": CupertinoIcons.location_north_fill, - "cupertino_location_north_line": CupertinoIcons.location_north_line, - "cupertino_location_north_line_fill": CupertinoIcons.location_north_line_fill, - "cupertino_location_slash": CupertinoIcons.location_slash, - "cupertino_location_slash_fill": CupertinoIcons.location_slash_fill, - "cupertino_lock": CupertinoIcons.lock, - "cupertino_lock_circle": CupertinoIcons.lock_circle, - "cupertino_lock_circle_fill": CupertinoIcons.lock_circle_fill, - "cupertino_lock_fill": CupertinoIcons.lock_fill, - "cupertino_lock_open": CupertinoIcons.lock_open, - "cupertino_lock_open_fill": CupertinoIcons.lock_open_fill, - "cupertino_lock_rotation": CupertinoIcons.lock_rotation, - "cupertino_lock_rotation_open": CupertinoIcons.lock_rotation_open, - "cupertino_lock_shield": CupertinoIcons.lock_shield, - "cupertino_lock_shield_fill": CupertinoIcons.lock_shield_fill, - "cupertino_lock_slash": CupertinoIcons.lock_slash, - "cupertino_lock_slash_fill": CupertinoIcons.lock_slash_fill, - "cupertino_macwindow": CupertinoIcons.macwindow, - "cupertino_map": CupertinoIcons.map, - "cupertino_map_fill": CupertinoIcons.map_fill, - "cupertino_map_pin": CupertinoIcons.map_pin, - "cupertino_map_pin_ellipse": CupertinoIcons.map_pin_ellipse, - "cupertino_map_pin_slash": CupertinoIcons.map_pin_slash, - "cupertino_memories": CupertinoIcons.memories, - "cupertino_memories_badge_minus": CupertinoIcons.memories_badge_minus, - "cupertino_memories_badge_plus": CupertinoIcons.memories_badge_plus, - "cupertino_metronome": CupertinoIcons.metronome, - "cupertino_mic_circle": CupertinoIcons.mic_circle, - "cupertino_mic_circle_fill": CupertinoIcons.mic_circle_fill, - "cupertino_mic_fill": CupertinoIcons.mic_fill, - "cupertino_mic_slash": CupertinoIcons.mic_slash, - "cupertino_mic_slash_fill": CupertinoIcons.mic_slash_fill, - "cupertino_minus": CupertinoIcons.minus, - "cupertino_minus_circle": CupertinoIcons.minus_circle, - "cupertino_minus_circle_fill": CupertinoIcons.minus_circle_fill, - "cupertino_minus_rectangle": CupertinoIcons.minus_rectangle, - "cupertino_minus_rectangle_fill": CupertinoIcons.minus_rectangle_fill, - "cupertino_minus_slash_plus": CupertinoIcons.minus_slash_plus, - "cupertino_minus_square": CupertinoIcons.minus_square, - "cupertino_minus_square_fill": CupertinoIcons.minus_square_fill, - "cupertino_money_dollar": CupertinoIcons.money_dollar, - "cupertino_money_dollar_circle": CupertinoIcons.money_dollar_circle, - "cupertino_money_dollar_circle_fill": CupertinoIcons.money_dollar_circle_fill, - "cupertino_money_euro": CupertinoIcons.money_euro, - "cupertino_money_euro_circle": CupertinoIcons.money_euro_circle, - "cupertino_money_euro_circle_fill": CupertinoIcons.money_euro_circle_fill, - "cupertino_money_pound": CupertinoIcons.money_pound, - "cupertino_money_pound_circle": CupertinoIcons.money_pound_circle, - "cupertino_money_pound_circle_fill": CupertinoIcons.money_pound_circle_fill, - "cupertino_money_rubl": CupertinoIcons.money_rubl, - "cupertino_money_rubl_circle": CupertinoIcons.money_rubl_circle, - "cupertino_money_rubl_circle_fill": CupertinoIcons.money_rubl_circle_fill, - "cupertino_money_yen": CupertinoIcons.money_yen, - "cupertino_money_yen_circle": CupertinoIcons.money_yen_circle, - "cupertino_money_yen_circle_fill": CupertinoIcons.money_yen_circle_fill, - "cupertino_moon": CupertinoIcons.moon, - "cupertino_moon_circle": CupertinoIcons.moon_circle, - "cupertino_moon_circle_fill": CupertinoIcons.moon_circle_fill, - "cupertino_moon_fill": CupertinoIcons.moon_fill, - "cupertino_moon_stars": CupertinoIcons.moon_stars, - "cupertino_moon_stars_fill": CupertinoIcons.moon_stars_fill, - "cupertino_moon_zzz": CupertinoIcons.moon_zzz, - "cupertino_moon_zzz_fill": CupertinoIcons.moon_zzz_fill, - "cupertino_move": CupertinoIcons.move, - "cupertino_multiply": CupertinoIcons.multiply, - "cupertino_multiply_circle": CupertinoIcons.multiply_circle, - "cupertino_multiply_circle_fill": CupertinoIcons.multiply_circle_fill, - "cupertino_multiply_square": CupertinoIcons.multiply_square, - "cupertino_multiply_square_fill": CupertinoIcons.multiply_square_fill, - "cupertino_music_albums": CupertinoIcons.music_albums, - "cupertino_music_albums_fill": CupertinoIcons.music_albums_fill, - "cupertino_music_house": CupertinoIcons.music_house, - "cupertino_music_house_fill": CupertinoIcons.music_house_fill, - "cupertino_music_mic": CupertinoIcons.music_mic, - "cupertino_music_note_2": CupertinoIcons.music_note_2, - "cupertino_music_note_list": CupertinoIcons.music_note_list, - "cupertino_nosign": CupertinoIcons.nosign, - "cupertino_number": CupertinoIcons.number, - "cupertino_number_circle": CupertinoIcons.number_circle, - "cupertino_number_circle_fill": CupertinoIcons.number_circle_fill, - "cupertino_number_square": CupertinoIcons.number_square, - "cupertino_number_square_fill": CupertinoIcons.number_square_fill, - "cupertino_option": CupertinoIcons.option, - "cupertino_paintbrush": CupertinoIcons.paintbrush, - "cupertino_paintbrush_fill": CupertinoIcons.paintbrush_fill, - "cupertino_pano": CupertinoIcons.pano, - "cupertino_pano_fill": CupertinoIcons.pano_fill, - "cupertino_paperclip": CupertinoIcons.paperclip, - "cupertino_paperplane": CupertinoIcons.paperplane, - "cupertino_paperplane_fill": CupertinoIcons.paperplane_fill, - "cupertino_paragraph": CupertinoIcons.paragraph, - "cupertino_pause_circle": CupertinoIcons.pause_circle, - "cupertino_pause_circle_fill": CupertinoIcons.pause_circle_fill, - "cupertino_pause_fill": CupertinoIcons.pause_fill, - "cupertino_pause_rectangle": CupertinoIcons.pause_rectangle, - "cupertino_pause_rectangle_fill": CupertinoIcons.pause_rectangle_fill, - "cupertino_pencil_circle": CupertinoIcons.pencil_circle, - "cupertino_pencil_circle_fill": CupertinoIcons.pencil_circle_fill, - "cupertino_pencil_ellipsis_rectangle": - CupertinoIcons.pencil_ellipsis_rectangle, - "cupertino_pencil_outline": CupertinoIcons.pencil_outline, - "cupertino_pencil_slash": CupertinoIcons.pencil_slash, - "cupertino_percent": CupertinoIcons.percent, - "cupertino_person_2": CupertinoIcons.person_2, - "cupertino_person_2_alt": CupertinoIcons.person_2_alt, - "cupertino_person_2_fill": CupertinoIcons.person_2_fill, - "cupertino_person_2_square_stack": CupertinoIcons.person_2_square_stack, - "cupertino_person_2_square_stack_fill": - CupertinoIcons.person_2_square_stack_fill, - "cupertino_person_3": CupertinoIcons.person_3, - "cupertino_person_3_fill": CupertinoIcons.person_3_fill, - "cupertino_person_alt": CupertinoIcons.person_alt, - "cupertino_person_alt_circle": CupertinoIcons.person_alt_circle, - "cupertino_person_alt_circle_fill": CupertinoIcons.person_alt_circle_fill, - "cupertino_person_badge_minus": CupertinoIcons.person_badge_minus, - "cupertino_person_badge_minus_fill": CupertinoIcons.person_badge_minus_fill, - "cupertino_person_badge_plus": CupertinoIcons.person_badge_plus, - "cupertino_person_badge_plus_fill": CupertinoIcons.person_badge_plus_fill, - "cupertino_person_circle": CupertinoIcons.person_circle, - "cupertino_person_circle_fill": CupertinoIcons.person_circle_fill, - "cupertino_person_crop_circle": CupertinoIcons.person_crop_circle, - "cupertino_person_crop_circle_badge_checkmark": - CupertinoIcons.person_crop_circle_badge_checkmark, - "cupertino_person_crop_circle_badge_exclam": - CupertinoIcons.person_crop_circle_badge_exclam, - "cupertino_person_crop_circle_badge_minus": - CupertinoIcons.person_crop_circle_badge_minus, - "cupertino_person_crop_circle_badge_plus": - CupertinoIcons.person_crop_circle_badge_plus, - "cupertino_person_crop_circle_badge_xmark": - CupertinoIcons.person_crop_circle_badge_xmark, - "cupertino_person_crop_circle_fill": CupertinoIcons.person_crop_circle_fill, - "cupertino_person_crop_circle_fill_badge_checkmark": - CupertinoIcons.person_crop_circle_fill_badge_checkmark, - "cupertino_person_crop_circle_fill_badge_exclam": - CupertinoIcons.person_crop_circle_fill_badge_exclam, - "cupertino_person_crop_circle_fill_badge_minus": - CupertinoIcons.person_crop_circle_fill_badge_minus, - "cupertino_person_crop_circle_fill_badge_plus": - CupertinoIcons.person_crop_circle_fill_badge_plus, - "cupertino_person_crop_circle_fill_badge_xmark": - CupertinoIcons.person_crop_circle_fill_badge_xmark, - "cupertino_person_crop_rectangle": CupertinoIcons.person_crop_rectangle, - "cupertino_person_crop_rectangle_fill": - CupertinoIcons.person_crop_rectangle_fill, - "cupertino_person_crop_square": CupertinoIcons.person_crop_square, - "cupertino_person_crop_square_fill": CupertinoIcons.person_crop_square_fill, - "cupertino_person_fill": CupertinoIcons.person_fill, - "cupertino_personalhotspot": CupertinoIcons.personalhotspot, - "cupertino_perspective": CupertinoIcons.perspective, - "cupertino_phone_arrow_down_left": CupertinoIcons.phone_arrow_down_left, - "cupertino_phone_arrow_right": CupertinoIcons.phone_arrow_right, - "cupertino_phone_arrow_up_right": CupertinoIcons.phone_arrow_up_right, - "cupertino_phone_badge_plus": CupertinoIcons.phone_badge_plus, - "cupertino_phone_circle": CupertinoIcons.phone_circle, - "cupertino_phone_circle_fill": CupertinoIcons.phone_circle_fill, - "cupertino_phone_down": CupertinoIcons.phone_down, - "cupertino_phone_down_circle": CupertinoIcons.phone_down_circle, - "cupertino_phone_down_circle_fill": CupertinoIcons.phone_down_circle_fill, - "cupertino_phone_down_fill": CupertinoIcons.phone_down_fill, - "cupertino_phone_fill": CupertinoIcons.phone_fill, - "cupertino_phone_fill_arrow_down_left": - CupertinoIcons.phone_fill_arrow_down_left, - "cupertino_phone_fill_arrow_right": CupertinoIcons.phone_fill_arrow_right, - "cupertino_phone_fill_arrow_up_right": - CupertinoIcons.phone_fill_arrow_up_right, - "cupertino_phone_fill_badge_plus": CupertinoIcons.phone_fill_badge_plus, - "cupertino_photo": CupertinoIcons.photo, - "cupertino_photo_fill": CupertinoIcons.photo_fill, - "cupertino_photo_fill_on_rectangle_fill": - CupertinoIcons.photo_fill_on_rectangle_fill, - "cupertino_photo_on_rectangle": CupertinoIcons.photo_on_rectangle, - "cupertino_piano": CupertinoIcons.piano, - "cupertino_pin": CupertinoIcons.pin, - "cupertino_pin_fill": CupertinoIcons.pin_fill, - "cupertino_pin_slash": CupertinoIcons.pin_slash, - "cupertino_pin_slash_fill": CupertinoIcons.pin_slash_fill, - "cupertino_placemark": CupertinoIcons.placemark, - "cupertino_placemark_fill": CupertinoIcons.placemark_fill, - "cupertino_play": CupertinoIcons.play, - "cupertino_play_circle": CupertinoIcons.play_circle, - "cupertino_play_circle_fill": CupertinoIcons.play_circle_fill, - "cupertino_play_fill": CupertinoIcons.play_fill, - "cupertino_play_rectangle": CupertinoIcons.play_rectangle, - "cupertino_play_rectangle_fill": CupertinoIcons.play_rectangle_fill, - "cupertino_playpause": CupertinoIcons.playpause, - "cupertino_playpause_fill": CupertinoIcons.playpause_fill, - "cupertino_plus": CupertinoIcons.plus, - "cupertino_plus_app": CupertinoIcons.plus_app, - "cupertino_plus_app_fill": CupertinoIcons.plus_app_fill, - "cupertino_plus_bubble": CupertinoIcons.plus_bubble, - "cupertino_plus_bubble_fill": CupertinoIcons.plus_bubble_fill, - "cupertino_plus_circle": CupertinoIcons.plus_circle, - "cupertino_plus_circle_fill": CupertinoIcons.plus_circle_fill, - "cupertino_plus_rectangle": CupertinoIcons.plus_rectangle, - "cupertino_plus_rectangle_fill": CupertinoIcons.plus_rectangle_fill, - "cupertino_plus_rectangle_fill_on_rectangle_fill": - CupertinoIcons.plus_rectangle_fill_on_rectangle_fill, - "cupertino_plus_rectangle_on_rectangle": - CupertinoIcons.plus_rectangle_on_rectangle, - "cupertino_plus_slash_minus": CupertinoIcons.plus_slash_minus, - "cupertino_plus_square": CupertinoIcons.plus_square, - "cupertino_plus_square_fill": CupertinoIcons.plus_square_fill, - "cupertino_plus_square_fill_on_square_fill": - CupertinoIcons.plus_square_fill_on_square_fill, - "cupertino_plus_square_on_square": CupertinoIcons.plus_square_on_square, - "cupertino_plusminus": CupertinoIcons.plusminus, - "cupertino_plusminus_circle": CupertinoIcons.plusminus_circle, - "cupertino_plusminus_circle_fill": CupertinoIcons.plusminus_circle_fill, - "cupertino_power": CupertinoIcons.power, - "cupertino_printer": CupertinoIcons.printer, - "cupertino_printer_fill": CupertinoIcons.printer_fill, - "cupertino_projective": CupertinoIcons.projective, - "cupertino_purchased": CupertinoIcons.purchased, - "cupertino_purchased_circle": CupertinoIcons.purchased_circle, - "cupertino_purchased_circle_fill": CupertinoIcons.purchased_circle_fill, - "cupertino_qrcode": CupertinoIcons.qrcode, - "cupertino_qrcode_viewfinder": CupertinoIcons.qrcode_viewfinder, - "cupertino_question": CupertinoIcons.question, - "cupertino_question_circle": CupertinoIcons.question_circle, - "cupertino_question_circle_fill": CupertinoIcons.question_circle_fill, - "cupertino_question_diamond": CupertinoIcons.question_diamond, - "cupertino_question_diamond_fill": CupertinoIcons.question_diamond_fill, - "cupertino_question_square": CupertinoIcons.question_square, - "cupertino_question_square_fill": CupertinoIcons.question_square_fill, - "cupertino_quote_bubble": CupertinoIcons.quote_bubble, - "cupertino_quote_bubble_fill": CupertinoIcons.quote_bubble_fill, - "cupertino_radiowaves_left": CupertinoIcons.radiowaves_left, - "cupertino_radiowaves_right": CupertinoIcons.radiowaves_right, - "cupertino_rays": CupertinoIcons.rays, - "cupertino_recordingtape": CupertinoIcons.recordingtape, - "cupertino_rectangle": CupertinoIcons.rectangle, - "cupertino_rectangle_3_offgrid": CupertinoIcons.rectangle_3_offgrid, - "cupertino_rectangle_3_offgrid_fill": CupertinoIcons.rectangle_3_offgrid_fill, - "cupertino_rectangle_arrow_up_right_arrow_down_left": - CupertinoIcons.rectangle_arrow_up_right_arrow_down_left, - "cupertino_rectangle_arrow_up_right_arrow_down_left_slash": - CupertinoIcons.rectangle_arrow_up_right_arrow_down_left_slash, - "cupertino_rectangle_badge_checkmark": - CupertinoIcons.rectangle_badge_checkmark, - "cupertino_rectangle_badge_xmark": CupertinoIcons.rectangle_badge_xmark, - "cupertino_rectangle_compress_vertical": - CupertinoIcons.rectangle_compress_vertical, - "cupertino_rectangle_dock": CupertinoIcons.rectangle_dock, - "cupertino_rectangle_expand_vertical": - CupertinoIcons.rectangle_expand_vertical, - "cupertino_rectangle_fill": CupertinoIcons.rectangle_fill, - "cupertino_rectangle_fill_badge_checkmark": - CupertinoIcons.rectangle_fill_badge_checkmark, - "cupertino_rectangle_fill_badge_xmark": - CupertinoIcons.rectangle_fill_badge_xmark, - "cupertino_rectangle_fill_on_rectangle_angled_fill": - CupertinoIcons.rectangle_fill_on_rectangle_angled_fill, - "cupertino_rectangle_fill_on_rectangle_fill": - CupertinoIcons.rectangle_fill_on_rectangle_fill, - "cupertino_rectangle_grid_1x2": CupertinoIcons.rectangle_grid_1x2, - "cupertino_rectangle_grid_1x2_fill": CupertinoIcons.rectangle_grid_1x2_fill, - "cupertino_rectangle_grid_2x2": CupertinoIcons.rectangle_grid_2x2, - "cupertino_rectangle_grid_2x2_fill": CupertinoIcons.rectangle_grid_2x2_fill, - "cupertino_rectangle_grid_3x2": CupertinoIcons.rectangle_grid_3x2, - "cupertino_rectangle_grid_3x2_fill": CupertinoIcons.rectangle_grid_3x2_fill, - "cupertino_rectangle_on_rectangle": CupertinoIcons.rectangle_on_rectangle, - "cupertino_rectangle_on_rectangle_angled": - CupertinoIcons.rectangle_on_rectangle_angled, - "cupertino_rectangle_paperclip": CupertinoIcons.rectangle_paperclip, - "cupertino_rectangle_split_3x1": CupertinoIcons.rectangle_split_3x1, - "cupertino_rectangle_split_3x1_fill": CupertinoIcons.rectangle_split_3x1_fill, - "cupertino_rectangle_split_3x3": CupertinoIcons.rectangle_split_3x3, - "cupertino_rectangle_split_3x3_fill": CupertinoIcons.rectangle_split_3x3_fill, - "cupertino_rectangle_stack": CupertinoIcons.rectangle_stack, - "cupertino_rectangle_stack_badge_minus": - CupertinoIcons.rectangle_stack_badge_minus, - "cupertino_rectangle_stack_badge_person_crop": - CupertinoIcons.rectangle_stack_badge_person_crop, - "cupertino_rectangle_stack_badge_plus": - CupertinoIcons.rectangle_stack_badge_plus, - "cupertino_rectangle_stack_fill": CupertinoIcons.rectangle_stack_fill, - "cupertino_rectangle_stack_fill_badge_minus": - CupertinoIcons.rectangle_stack_fill_badge_minus, - "cupertino_rectangle_stack_fill_badge_person_crop": - CupertinoIcons.rectangle_stack_fill_badge_person_crop, - "cupertino_rectangle_stack_fill_badge_plus": - CupertinoIcons.rectangle_stack_fill_badge_plus, - "cupertino_rectangle_stack_person_crop": - CupertinoIcons.rectangle_stack_person_crop, - "cupertino_rectangle_stack_person_crop_fill": - CupertinoIcons.rectangle_stack_person_crop_fill, - "cupertino_repeat": CupertinoIcons.repeat, - "cupertino_repeat_1": CupertinoIcons.repeat_1, - "cupertino_resize": CupertinoIcons.resize, - "cupertino_resize_h": CupertinoIcons.resize_h, - "cupertino_resize_v": CupertinoIcons.resize_v, - "cupertino_return_icon": CupertinoIcons.return_icon, - "cupertino_rhombus": CupertinoIcons.rhombus, - "cupertino_rhombus_fill": CupertinoIcons.rhombus_fill, - "cupertino_rocket": CupertinoIcons.rocket, - "cupertino_rocket_fill": CupertinoIcons.rocket_fill, - "cupertino_rosette": CupertinoIcons.rosette, - "cupertino_rotate_left": CupertinoIcons.rotate_left, - "cupertino_rotate_left_fill": CupertinoIcons.rotate_left_fill, - "cupertino_rotate_right": CupertinoIcons.rotate_right, - "cupertino_rotate_right_fill": CupertinoIcons.rotate_right_fill, - "cupertino_scissors": CupertinoIcons.scissors, - "cupertino_scissors_alt": CupertinoIcons.scissors_alt, - "cupertino_scope": CupertinoIcons.scope, - "cupertino_scribble": CupertinoIcons.scribble, - "cupertino_search_circle": CupertinoIcons.search_circle, - "cupertino_search_circle_fill": CupertinoIcons.search_circle_fill, - "cupertino_selection_pin_in_out": CupertinoIcons.selection_pin_in_out, - "cupertino_shield": CupertinoIcons.shield, - "cupertino_shield_fill": CupertinoIcons.shield_fill, - "cupertino_shield_lefthalf_fill": CupertinoIcons.shield_lefthalf_fill, - "cupertino_shield_slash": CupertinoIcons.shield_slash, - "cupertino_shield_slash_fill": CupertinoIcons.shield_slash_fill, - "cupertino_shift": CupertinoIcons.shift, - "cupertino_shift_fill": CupertinoIcons.shift_fill, - "cupertino_sidebar_left": CupertinoIcons.sidebar_left, - "cupertino_sidebar_right": CupertinoIcons.sidebar_right, - "cupertino_signature": CupertinoIcons.signature, - "cupertino_skew": CupertinoIcons.skew, - "cupertino_slash_circle": CupertinoIcons.slash_circle, - "cupertino_slash_circle_fill": CupertinoIcons.slash_circle_fill, - "cupertino_slider_horizontal_3": CupertinoIcons.slider_horizontal_3, - "cupertino_slider_horizontal_below_rectangle": - CupertinoIcons.slider_horizontal_below_rectangle, - "cupertino_slowmo": CupertinoIcons.slowmo, - "cupertino_smallcircle_circle": CupertinoIcons.smallcircle_circle, - "cupertino_smallcircle_circle_fill": CupertinoIcons.smallcircle_circle_fill, - "cupertino_smallcircle_fill_circle": CupertinoIcons.smallcircle_fill_circle, - "cupertino_smallcircle_fill_circle_fill": - CupertinoIcons.smallcircle_fill_circle_fill, - "cupertino_smiley": CupertinoIcons.smiley, - "cupertino_smiley_fill": CupertinoIcons.smiley_fill, - "cupertino_smoke": CupertinoIcons.smoke, - "cupertino_smoke_fill": CupertinoIcons.smoke_fill, - "cupertino_snow": CupertinoIcons.snow, - "cupertino_sort_down": CupertinoIcons.sort_down, - "cupertino_sort_down_circle": CupertinoIcons.sort_down_circle, - "cupertino_sort_down_circle_fill": CupertinoIcons.sort_down_circle_fill, - "cupertino_sort_up": CupertinoIcons.sort_up, - "cupertino_sort_up_circle": CupertinoIcons.sort_up_circle, - "cupertino_sort_up_circle_fill": CupertinoIcons.sort_up_circle_fill, - "cupertino_sparkles": CupertinoIcons.sparkles, - "cupertino_speaker": CupertinoIcons.speaker, - "cupertino_speaker_1": CupertinoIcons.speaker_1, - "cupertino_speaker_1_fill": CupertinoIcons.speaker_1_fill, - "cupertino_speaker_2": CupertinoIcons.speaker_2, - "cupertino_speaker_2_fill": CupertinoIcons.speaker_2_fill, - "cupertino_speaker_3": CupertinoIcons.speaker_3, - "cupertino_speaker_3_fill": CupertinoIcons.speaker_3_fill, - "cupertino_speaker_fill": CupertinoIcons.speaker_fill, - "cupertino_speaker_slash": CupertinoIcons.speaker_slash, - "cupertino_speaker_slash_fill": CupertinoIcons.speaker_slash_fill, - "cupertino_speaker_slash_fill_rtl": CupertinoIcons.speaker_slash_fill_rtl, - "cupertino_speaker_slash_rtl": CupertinoIcons.speaker_slash_rtl, - "cupertino_speaker_zzz": CupertinoIcons.speaker_zzz, - "cupertino_speaker_zzz_fill": CupertinoIcons.speaker_zzz_fill, - "cupertino_speaker_zzz_fill_rtl": CupertinoIcons.speaker_zzz_fill_rtl, - "cupertino_speaker_zzz_rtl": CupertinoIcons.speaker_zzz_rtl, - "cupertino_speedometer": CupertinoIcons.speedometer, - "cupertino_sportscourt": CupertinoIcons.sportscourt, - "cupertino_sportscourt_fill": CupertinoIcons.sportscourt_fill, - "cupertino_square": CupertinoIcons.square, - "cupertino_square_arrow_down": CupertinoIcons.square_arrow_down, - "cupertino_square_arrow_down_fill": CupertinoIcons.square_arrow_down_fill, - "cupertino_square_arrow_down_on_square": - CupertinoIcons.square_arrow_down_on_square, - "cupertino_square_arrow_down_on_square_fill": - CupertinoIcons.square_arrow_down_on_square_fill, - "cupertino_square_arrow_left": CupertinoIcons.square_arrow_left, - "cupertino_square_arrow_left_fill": CupertinoIcons.square_arrow_left_fill, - "cupertino_square_arrow_right": CupertinoIcons.square_arrow_right, - "cupertino_square_arrow_right_fill": CupertinoIcons.square_arrow_right_fill, - "cupertino_square_arrow_up": CupertinoIcons.square_arrow_up, - "cupertino_square_arrow_up_fill": CupertinoIcons.square_arrow_up_fill, - "cupertino_square_arrow_up_on_square": - CupertinoIcons.square_arrow_up_on_square, - "cupertino_square_arrow_up_on_square_fill": - CupertinoIcons.square_arrow_up_on_square_fill, - "cupertino_square_favorites": CupertinoIcons.square_favorites, - "cupertino_square_favorites_alt": CupertinoIcons.square_favorites_alt, - "cupertino_square_favorites_alt_fill": - CupertinoIcons.square_favorites_alt_fill, - "cupertino_square_favorites_fill": CupertinoIcons.square_favorites_fill, - "cupertino_square_fill": CupertinoIcons.square_fill, - "cupertino_square_fill_line_vertical_square": - CupertinoIcons.square_fill_line_vertical_square, - "cupertino_square_fill_line_vertical_square_fill": - CupertinoIcons.square_fill_line_vertical_square_fill, - "cupertino_square_fill_on_circle_fill": - CupertinoIcons.square_fill_on_circle_fill, - "cupertino_square_fill_on_square_fill": - CupertinoIcons.square_fill_on_square_fill, - "cupertino_square_grid_2x2": CupertinoIcons.square_grid_2x2, - "cupertino_square_grid_2x2_fill": CupertinoIcons.square_grid_2x2_fill, - "cupertino_square_grid_3x2": CupertinoIcons.square_grid_3x2, - "cupertino_square_grid_3x2_fill": CupertinoIcons.square_grid_3x2_fill, - "cupertino_square_grid_4x3_fill": CupertinoIcons.square_grid_4x3_fill, - "cupertino_square_lefthalf_fill": CupertinoIcons.square_lefthalf_fill, - "cupertino_square_line_vertical_square": - CupertinoIcons.square_line_vertical_square, - "cupertino_square_line_vertical_square_fill": - CupertinoIcons.square_line_vertical_square_fill, - "cupertino_square_list": CupertinoIcons.square_list, - "cupertino_square_list_fill": CupertinoIcons.square_list_fill, - "cupertino_square_on_circle": CupertinoIcons.square_on_circle, - "cupertino_square_on_square": CupertinoIcons.square_on_square, - "cupertino_square_pencil": CupertinoIcons.square_pencil, - "cupertino_square_pencil_fill": CupertinoIcons.square_pencil_fill, - "cupertino_square_righthalf_fill": CupertinoIcons.square_righthalf_fill, - "cupertino_square_split_1x2": CupertinoIcons.square_split_1x2, - "cupertino_square_split_1x2_fill": CupertinoIcons.square_split_1x2_fill, - "cupertino_square_split_2x1": CupertinoIcons.square_split_2x1, - "cupertino_square_split_2x1_fill": CupertinoIcons.square_split_2x1_fill, - "cupertino_square_split_2x2": CupertinoIcons.square_split_2x2, - "cupertino_square_split_2x2_fill": CupertinoIcons.square_split_2x2_fill, - "cupertino_square_stack": CupertinoIcons.square_stack, - "cupertino_square_stack_3d_down_dottedline": - CupertinoIcons.square_stack_3d_down_dottedline, - "cupertino_square_stack_3d_down_right": - CupertinoIcons.square_stack_3d_down_right, - "cupertino_square_stack_3d_down_right_fill": - CupertinoIcons.square_stack_3d_down_right_fill, - "cupertino_square_stack_3d_up": CupertinoIcons.square_stack_3d_up, - "cupertino_square_stack_3d_up_fill": CupertinoIcons.square_stack_3d_up_fill, - "cupertino_square_stack_3d_up_slash": CupertinoIcons.square_stack_3d_up_slash, - "cupertino_square_stack_3d_up_slash_fill": - CupertinoIcons.square_stack_3d_up_slash_fill, - "cupertino_square_stack_fill": CupertinoIcons.square_stack_fill, - "cupertino_squares_below_rectangle": CupertinoIcons.squares_below_rectangle, - "cupertino_star": CupertinoIcons.star, - "cupertino_star_circle": CupertinoIcons.star_circle, - "cupertino_star_circle_fill": CupertinoIcons.star_circle_fill, - "cupertino_star_fill": CupertinoIcons.star_fill, - "cupertino_star_lefthalf_fill": CupertinoIcons.star_lefthalf_fill, - "cupertino_star_slash": CupertinoIcons.star_slash, - "cupertino_star_slash_fill": CupertinoIcons.star_slash_fill, - "cupertino_staroflife": CupertinoIcons.staroflife, - "cupertino_staroflife_fill": CupertinoIcons.staroflife_fill, - "cupertino_stop": CupertinoIcons.stop, - "cupertino_stop_circle": CupertinoIcons.stop_circle, - "cupertino_stop_circle_fill": CupertinoIcons.stop_circle_fill, - "cupertino_stop_fill": CupertinoIcons.stop_fill, - "cupertino_stopwatch": CupertinoIcons.stopwatch, - "cupertino_stopwatch_fill": CupertinoIcons.stopwatch_fill, - "cupertino_strikethrough": CupertinoIcons.strikethrough, - "cupertino_suit_club": CupertinoIcons.suit_club, - "cupertino_suit_club_fill": CupertinoIcons.suit_club_fill, - "cupertino_suit_diamond": CupertinoIcons.suit_diamond, - "cupertino_suit_diamond_fill": CupertinoIcons.suit_diamond_fill, - "cupertino_suit_heart": CupertinoIcons.suit_heart, - "cupertino_suit_heart_fill": CupertinoIcons.suit_heart_fill, - "cupertino_suit_spade": CupertinoIcons.suit_spade, - "cupertino_suit_spade_fill": CupertinoIcons.suit_spade_fill, - "cupertino_sum": CupertinoIcons.sum, - "cupertino_sun_dust": CupertinoIcons.sun_dust, - "cupertino_sun_dust_fill": CupertinoIcons.sun_dust_fill, - "cupertino_sun_haze": CupertinoIcons.sun_haze, - "cupertino_sun_haze_fill": CupertinoIcons.sun_haze_fill, - "cupertino_sun_max": CupertinoIcons.sun_max, - "cupertino_sun_max_fill": CupertinoIcons.sun_max_fill, - "cupertino_sun_min": CupertinoIcons.sun_min, - "cupertino_sun_min_fill": CupertinoIcons.sun_min_fill, - "cupertino_sunrise": CupertinoIcons.sunrise, - "cupertino_sunrise_fill": CupertinoIcons.sunrise_fill, - "cupertino_sunset": CupertinoIcons.sunset, - "cupertino_sunset_fill": CupertinoIcons.sunset_fill, - "cupertino_t_bubble": CupertinoIcons.t_bubble, - "cupertino_t_bubble_fill": CupertinoIcons.t_bubble_fill, - "cupertino_table": CupertinoIcons.table, - "cupertino_table_badge_more": CupertinoIcons.table_badge_more, - "cupertino_table_badge_more_fill": CupertinoIcons.table_badge_more_fill, - "cupertino_table_fill": CupertinoIcons.table_fill, - "cupertino_tag_circle": CupertinoIcons.tag_circle, - "cupertino_tag_circle_fill": CupertinoIcons.tag_circle_fill, - "cupertino_tag_fill": CupertinoIcons.tag_fill, - "cupertino_text_aligncenter": CupertinoIcons.text_aligncenter, - "cupertino_text_alignleft": CupertinoIcons.text_alignleft, - "cupertino_text_alignright": CupertinoIcons.text_alignright, - "cupertino_text_append": CupertinoIcons.text_append, - "cupertino_text_badge_checkmark": CupertinoIcons.text_badge_checkmark, - "cupertino_text_badge_minus": CupertinoIcons.text_badge_minus, - "cupertino_text_badge_plus": CupertinoIcons.text_badge_plus, - "cupertino_text_badge_star": CupertinoIcons.text_badge_star, - "cupertino_text_badge_xmark": CupertinoIcons.text_badge_xmark, - "cupertino_text_bubble": CupertinoIcons.text_bubble, - "cupertino_text_bubble_fill": CupertinoIcons.text_bubble_fill, - "cupertino_text_cursor": CupertinoIcons.text_cursor, - "cupertino_text_insert": CupertinoIcons.text_insert, - "cupertino_text_justify": CupertinoIcons.text_justify, - "cupertino_text_justifyleft": CupertinoIcons.text_justifyleft, - "cupertino_text_justifyright": CupertinoIcons.text_justifyright, - "cupertino_text_quote": CupertinoIcons.text_quote, - "cupertino_textbox": CupertinoIcons.textbox, - "cupertino_textformat": CupertinoIcons.textformat, - "cupertino_textformat_123": CupertinoIcons.textformat_123, - "cupertino_textformat_abc": CupertinoIcons.textformat_abc, - "cupertino_textformat_abc_dottedunderline": - CupertinoIcons.textformat_abc_dottedunderline, - "cupertino_textformat_alt": CupertinoIcons.textformat_alt, - "cupertino_textformat_size": CupertinoIcons.textformat_size, - "cupertino_textformat_subscript": CupertinoIcons.textformat_subscript, - "cupertino_textformat_superscript": CupertinoIcons.textformat_superscript, - "cupertino_thermometer": CupertinoIcons.thermometer, - "cupertino_thermometer_snowflake": CupertinoIcons.thermometer_snowflake, - "cupertino_thermometer_sun": CupertinoIcons.thermometer_sun, - "cupertino_ticket": CupertinoIcons.ticket, - "cupertino_ticket_fill": CupertinoIcons.ticket_fill, - "cupertino_tickets": CupertinoIcons.tickets, - "cupertino_tickets_fill": CupertinoIcons.tickets_fill, - "cupertino_timelapse": CupertinoIcons.timelapse, - "cupertino_timer": CupertinoIcons.timer, - "cupertino_timer_fill": CupertinoIcons.timer_fill, - "cupertino_today": CupertinoIcons.today, - "cupertino_today_fill": CupertinoIcons.today_fill, - "cupertino_tornado": CupertinoIcons.tornado, - "cupertino_tortoise": CupertinoIcons.tortoise, - "cupertino_tortoise_fill": CupertinoIcons.tortoise_fill, - "cupertino_tram_fill": CupertinoIcons.tram_fill, - "cupertino_trash": CupertinoIcons.trash, - "cupertino_trash_circle": CupertinoIcons.trash_circle, - "cupertino_trash_circle_fill": CupertinoIcons.trash_circle_fill, - "cupertino_trash_fill": CupertinoIcons.trash_fill, - "cupertino_trash_slash": CupertinoIcons.trash_slash, - "cupertino_trash_slash_fill": CupertinoIcons.trash_slash_fill, - "cupertino_tray": CupertinoIcons.tray, - "cupertino_tray_2": CupertinoIcons.tray_2, - "cupertino_tray_2_fill": CupertinoIcons.tray_2_fill, - "cupertino_tray_arrow_down": CupertinoIcons.tray_arrow_down, - "cupertino_tray_arrow_down_fill": CupertinoIcons.tray_arrow_down_fill, - "cupertino_tray_arrow_up": CupertinoIcons.tray_arrow_up, - "cupertino_tray_arrow_up_fill": CupertinoIcons.tray_arrow_up_fill, - "cupertino_tray_fill": CupertinoIcons.tray_fill, - "cupertino_tray_full": CupertinoIcons.tray_full, - "cupertino_tray_full_fill": CupertinoIcons.tray_full_fill, - "cupertino_tree": CupertinoIcons.tree, - "cupertino_triangle": CupertinoIcons.triangle, - "cupertino_triangle_fill": CupertinoIcons.triangle_fill, - "cupertino_triangle_lefthalf_fill": CupertinoIcons.triangle_lefthalf_fill, - "cupertino_triangle_righthalf_fill": CupertinoIcons.triangle_righthalf_fill, - "cupertino_tropicalstorm": CupertinoIcons.tropicalstorm, - "cupertino_tuningfork": CupertinoIcons.tuningfork, - "cupertino_tv": CupertinoIcons.tv, - "cupertino_tv_circle": CupertinoIcons.tv_circle, - "cupertino_tv_circle_fill": CupertinoIcons.tv_circle_fill, - "cupertino_tv_fill": CupertinoIcons.tv_fill, - "cupertino_tv_music_note": CupertinoIcons.tv_music_note, - "cupertino_tv_music_note_fill": CupertinoIcons.tv_music_note_fill, - "cupertino_uiwindow_split_2x1": CupertinoIcons.uiwindow_split_2x1, - "cupertino_umbrella": CupertinoIcons.umbrella, - "cupertino_umbrella_fill": CupertinoIcons.umbrella_fill, - "cupertino_underline": CupertinoIcons.underline, - "cupertino_upload_circle": CupertinoIcons.upload_circle, - "cupertino_upload_circle_fill": CupertinoIcons.upload_circle_fill, - "cupertino_videocam": CupertinoIcons.videocam, - "cupertino_videocam_circle": CupertinoIcons.videocam_circle, - "cupertino_videocam_circle_fill": CupertinoIcons.videocam_circle_fill, - "cupertino_videocam_fill": CupertinoIcons.videocam_fill, - "cupertino_view_2d": CupertinoIcons.view_2d, - "cupertino_view_3d": CupertinoIcons.view_3d, - "cupertino_viewfinder": CupertinoIcons.viewfinder, - "cupertino_viewfinder_circle": CupertinoIcons.viewfinder_circle, - "cupertino_viewfinder_circle_fill": CupertinoIcons.viewfinder_circle_fill, - "cupertino_wand_rays": CupertinoIcons.wand_rays, - "cupertino_wand_rays_inverse": CupertinoIcons.wand_rays_inverse, - "cupertino_wand_stars": CupertinoIcons.wand_stars, - "cupertino_wand_stars_inverse": CupertinoIcons.wand_stars_inverse, - "cupertino_waveform": CupertinoIcons.waveform, - "cupertino_waveform_circle": CupertinoIcons.waveform_circle, - "cupertino_waveform_circle_fill": CupertinoIcons.waveform_circle_fill, - "cupertino_waveform_path": CupertinoIcons.waveform_path, - "cupertino_waveform_path_badge_minus": - CupertinoIcons.waveform_path_badge_minus, - "cupertino_waveform_path_badge_plus": CupertinoIcons.waveform_path_badge_plus, - "cupertino_waveform_path_ecg": CupertinoIcons.waveform_path_ecg, - "cupertino_wifi": CupertinoIcons.wifi, - "cupertino_wifi_exclamationmark": CupertinoIcons.wifi_exclamationmark, - "cupertino_wifi_slash": CupertinoIcons.wifi_slash, - "cupertino_wind": CupertinoIcons.wind, - "cupertino_wind_snow": CupertinoIcons.wind_snow, - "cupertino_wrench": CupertinoIcons.wrench, - "cupertino_wrench_fill": CupertinoIcons.wrench_fill, - "cupertino_xmark": CupertinoIcons.xmark, - "cupertino_xmark_circle": CupertinoIcons.xmark_circle, - "cupertino_xmark_circle_fill": CupertinoIcons.xmark_circle_fill, - "cupertino_xmark_octagon": CupertinoIcons.xmark_octagon, - "cupertino_xmark_octagon_fill": CupertinoIcons.xmark_octagon_fill, - "cupertino_xmark_rectangle": CupertinoIcons.xmark_rectangle, - "cupertino_xmark_rectangle_fill": CupertinoIcons.xmark_rectangle_fill, - "cupertino_xmark_seal": CupertinoIcons.xmark_seal, - "cupertino_xmark_seal_fill": CupertinoIcons.xmark_seal_fill, - "cupertino_xmark_shield": CupertinoIcons.xmark_shield, - "cupertino_xmark_shield_fill": CupertinoIcons.xmark_shield_fill, - "cupertino_xmark_square": CupertinoIcons.xmark_square, - "cupertino_xmark_square_fill": CupertinoIcons.xmark_square_fill, - "cupertino_zoom_in": CupertinoIcons.zoom_in, - "cupertino_zoom_out": CupertinoIcons.zoom_out, - "cupertino_zzz": CupertinoIcons.zzz, -}; +List cupertinoIcons = [ + CupertinoIcons.add, + CupertinoIcons.add_circled, + CupertinoIcons.add_circled_solid, + CupertinoIcons.airplane, + CupertinoIcons.alarm, + CupertinoIcons.alarm_fill, + CupertinoIcons.alt, + CupertinoIcons.ant, + CupertinoIcons.ant_circle, + CupertinoIcons.ant_circle_fill, + CupertinoIcons.ant_fill, + CupertinoIcons.antenna_radiowaves_left_right, + CupertinoIcons.app, + CupertinoIcons.app_badge, + CupertinoIcons.app_badge_fill, + CupertinoIcons.app_fill, + CupertinoIcons.archivebox, + CupertinoIcons.archivebox_fill, + CupertinoIcons.arrow_2_circlepath, + CupertinoIcons.arrow_2_circlepath_circle, + CupertinoIcons.arrow_2_circlepath_circle_fill, + CupertinoIcons.arrow_2_squarepath, + CupertinoIcons.arrow_3_trianglepath, + CupertinoIcons.arrow_branch, + CupertinoIcons.arrow_clockwise, + CupertinoIcons.arrow_clockwise_circle, + CupertinoIcons.arrow_clockwise_circle_fill, + CupertinoIcons.arrow_counterclockwise, + CupertinoIcons.arrow_counterclockwise_circle, + CupertinoIcons.arrow_counterclockwise_circle_fill, + CupertinoIcons.arrow_down, + CupertinoIcons.arrow_down_circle, + CupertinoIcons.arrow_down_circle_fill, + CupertinoIcons.arrow_down_doc, + CupertinoIcons.arrow_down_doc_fill, + CupertinoIcons.arrow_down_left, + CupertinoIcons.arrow_down_left_circle, + CupertinoIcons.arrow_down_left_circle_fill, + CupertinoIcons.arrow_down_left_square, + CupertinoIcons.arrow_down_left_square_fill, + CupertinoIcons.arrow_down_right, + CupertinoIcons.arrow_down_right_arrow_up_left, + CupertinoIcons.arrow_down_right_circle, + CupertinoIcons.arrow_down_right_circle_fill, + CupertinoIcons.arrow_down_right_square, + CupertinoIcons.arrow_down_right_square_fill, + CupertinoIcons.arrow_down_square, + CupertinoIcons.arrow_down_square_fill, + CupertinoIcons.arrow_down_to_line, + CupertinoIcons.arrow_down_to_line_alt, + CupertinoIcons.arrow_left, + CupertinoIcons.arrow_left_circle, + CupertinoIcons.arrow_left_circle_fill, + CupertinoIcons.arrow_left_right, + CupertinoIcons.arrow_left_right_circle, + CupertinoIcons.arrow_left_right_circle_fill, + CupertinoIcons.arrow_left_right_square, + CupertinoIcons.arrow_left_right_square_fill, + CupertinoIcons.arrow_left_square, + CupertinoIcons.arrow_left_square_fill, + CupertinoIcons.arrow_left_to_line, + CupertinoIcons.arrow_left_to_line_alt, + CupertinoIcons.arrow_merge, + CupertinoIcons.arrow_right, + CupertinoIcons.arrow_right_arrow_left, + CupertinoIcons.arrow_right_arrow_left_circle, + CupertinoIcons.arrow_right_arrow_left_circle_fill, + CupertinoIcons.arrow_right_arrow_left_square, + CupertinoIcons.arrow_right_arrow_left_square_fill, + CupertinoIcons.arrow_right_circle, + CupertinoIcons.arrow_right_circle_fill, + CupertinoIcons.arrow_right_square, + CupertinoIcons.arrow_right_square_fill, + CupertinoIcons.arrow_right_to_line, + CupertinoIcons.arrow_right_to_line_alt, + CupertinoIcons.arrow_swap, + CupertinoIcons.arrow_turn_down_left, + CupertinoIcons.arrow_turn_down_right, + CupertinoIcons.arrow_turn_left_down, + CupertinoIcons.arrow_turn_left_up, + CupertinoIcons.arrow_turn_right_down, + CupertinoIcons.arrow_turn_right_up, + CupertinoIcons.arrow_turn_up_left, + CupertinoIcons.arrow_turn_up_right, + CupertinoIcons.arrow_up, + CupertinoIcons.arrow_up_arrow_down, + CupertinoIcons.arrow_up_arrow_down_circle, + CupertinoIcons.arrow_up_arrow_down_circle_fill, + CupertinoIcons.arrow_up_arrow_down_square, + CupertinoIcons.arrow_up_arrow_down_square_fill, + CupertinoIcons.arrow_up_bin, + CupertinoIcons.arrow_up_bin_fill, + CupertinoIcons.arrow_up_circle, + CupertinoIcons.arrow_up_circle_fill, + CupertinoIcons.arrow_up_doc, + CupertinoIcons.arrow_up_doc_fill, + CupertinoIcons.arrow_up_down, + CupertinoIcons.arrow_up_down_circle, + CupertinoIcons.arrow_up_down_circle_fill, + CupertinoIcons.arrow_up_down_square, + CupertinoIcons.arrow_up_down_square_fill, + CupertinoIcons.arrow_up_left, + CupertinoIcons.arrow_up_left_arrow_down_right, + CupertinoIcons.arrow_up_left_circle, + CupertinoIcons.arrow_up_left_circle_fill, + CupertinoIcons.arrow_up_left_square, + CupertinoIcons.arrow_up_left_square_fill, + CupertinoIcons.arrow_up_right, + CupertinoIcons.arrow_up_right_circle, + CupertinoIcons.arrow_up_right_circle_fill, + CupertinoIcons.arrow_up_right_diamond, + CupertinoIcons.arrow_up_right_diamond_fill, + CupertinoIcons.arrow_up_right_square, + CupertinoIcons.arrow_up_right_square_fill, + CupertinoIcons.arrow_up_square, + CupertinoIcons.arrow_up_square_fill, + CupertinoIcons.arrow_up_to_line, + CupertinoIcons.arrow_up_to_line_alt, + CupertinoIcons.arrow_uturn_down, + CupertinoIcons.arrow_uturn_down_circle, + CupertinoIcons.arrow_uturn_down_circle_fill, + CupertinoIcons.arrow_uturn_down_square, + CupertinoIcons.arrow_uturn_down_square_fill, + CupertinoIcons.arrow_uturn_left, + CupertinoIcons.arrow_uturn_left_circle, + CupertinoIcons.arrow_uturn_left_circle_fill, + CupertinoIcons.arrow_uturn_left_square, + CupertinoIcons.arrow_uturn_left_square_fill, + CupertinoIcons.arrow_uturn_right, + CupertinoIcons.arrow_uturn_right_circle, + CupertinoIcons.arrow_uturn_right_circle_fill, + CupertinoIcons.arrow_uturn_right_square, + CupertinoIcons.arrow_uturn_right_square_fill, + CupertinoIcons.arrow_uturn_up, + CupertinoIcons.arrow_uturn_up_circle, + CupertinoIcons.arrow_uturn_up_circle_fill, + CupertinoIcons.arrow_uturn_up_square, + CupertinoIcons.arrow_uturn_up_square_fill, + CupertinoIcons.arrowshape_turn_up_left, + CupertinoIcons.arrowshape_turn_up_left_2, + CupertinoIcons.arrowshape_turn_up_left_2_fill, + CupertinoIcons.arrowshape_turn_up_left_circle, + CupertinoIcons.arrowshape_turn_up_left_circle_fill, + CupertinoIcons.arrowshape_turn_up_left_fill, + CupertinoIcons.arrowshape_turn_up_right, + CupertinoIcons.arrowshape_turn_up_right_circle, + CupertinoIcons.arrowshape_turn_up_right_circle_fill, + CupertinoIcons.arrowshape_turn_up_right_fill, + CupertinoIcons.arrowtriangle_down, + CupertinoIcons.arrowtriangle_down_circle, + CupertinoIcons.arrowtriangle_down_circle_fill, + CupertinoIcons.arrowtriangle_down_fill, + CupertinoIcons.arrowtriangle_down_square, + CupertinoIcons.arrowtriangle_down_square_fill, + CupertinoIcons.arrowtriangle_left, + CupertinoIcons.arrowtriangle_left_circle, + CupertinoIcons.arrowtriangle_left_circle_fill, + CupertinoIcons.arrowtriangle_left_fill, + CupertinoIcons.arrowtriangle_left_square, + CupertinoIcons.arrowtriangle_left_square_fill, + CupertinoIcons.arrowtriangle_right, + CupertinoIcons.arrowtriangle_right_circle, + CupertinoIcons.arrowtriangle_right_circle_fill, + CupertinoIcons.arrowtriangle_right_fill, + CupertinoIcons.arrowtriangle_right_square, + CupertinoIcons.arrowtriangle_right_square_fill, + CupertinoIcons.arrowtriangle_up, + CupertinoIcons.arrowtriangle_up_circle, + CupertinoIcons.arrowtriangle_up_circle_fill, + CupertinoIcons.arrowtriangle_up_fill, + CupertinoIcons.arrowtriangle_up_square, + CupertinoIcons.arrowtriangle_up_square_fill, + CupertinoIcons.asterisk_circle, + CupertinoIcons.asterisk_circle_fill, + CupertinoIcons.at, + CupertinoIcons.at_badge_minus, + CupertinoIcons.at_badge_plus, + CupertinoIcons.at_circle, + CupertinoIcons.at_circle_fill, + CupertinoIcons.back, + CupertinoIcons.backward, + CupertinoIcons.backward_end, + CupertinoIcons.backward_end_alt, + CupertinoIcons.backward_end_alt_fill, + CupertinoIcons.backward_end_fill, + CupertinoIcons.backward_fill, + CupertinoIcons.badge_plus_radiowaves_right, + CupertinoIcons.bag, + CupertinoIcons.bag_badge_minus, + CupertinoIcons.bag_badge_plus, + CupertinoIcons.bag_fill, + CupertinoIcons.bag_fill_badge_minus, + CupertinoIcons.bag_fill_badge_plus, + CupertinoIcons.bandage, + CupertinoIcons.bandage_fill, + CupertinoIcons.barcode, + CupertinoIcons.barcode_viewfinder, + CupertinoIcons.bars, + CupertinoIcons.battery_0, + CupertinoIcons.battery_100, + CupertinoIcons.battery_25, + CupertinoIcons.battery_25_percent, + CupertinoIcons.battery_75_percent, + CupertinoIcons.battery_charging, + CupertinoIcons.battery_empty, + CupertinoIcons.battery_full, + CupertinoIcons.bed_double, + CupertinoIcons.bed_double_fill, + CupertinoIcons.bell, + CupertinoIcons.bell_circle, + CupertinoIcons.bell_circle_fill, + CupertinoIcons.bell_fill, + CupertinoIcons.bell_slash, + CupertinoIcons.bell_slash_fill, + CupertinoIcons.bell_solid, + CupertinoIcons.bin_xmark, + CupertinoIcons.bin_xmark_fill, + CupertinoIcons.bitcoin, + CupertinoIcons.bitcoin_circle, + CupertinoIcons.bitcoin_circle_fill, + CupertinoIcons.bluetooth, + CupertinoIcons.bold, + CupertinoIcons.bold_italic_underline, + CupertinoIcons.bold_underline, + CupertinoIcons.bolt, + CupertinoIcons.bolt_badge_a, + CupertinoIcons.bolt_badge_a_fill, + CupertinoIcons.bolt_circle, + CupertinoIcons.bolt_circle_fill, + CupertinoIcons.bolt_fill, + CupertinoIcons.bolt_horizontal, + CupertinoIcons.bolt_horizontal_circle, + CupertinoIcons.bolt_horizontal_circle_fill, + CupertinoIcons.bolt_horizontal_fill, + CupertinoIcons.bolt_slash, + CupertinoIcons.bolt_slash_fill, + CupertinoIcons.book, + CupertinoIcons.book_circle, + CupertinoIcons.book_circle_fill, + CupertinoIcons.book_fill, + CupertinoIcons.book_solid, + CupertinoIcons.bookmark, + CupertinoIcons.bookmark_fill, + CupertinoIcons.bookmark_solid, + CupertinoIcons.briefcase, + CupertinoIcons.briefcase_fill, + CupertinoIcons.brightness, + CupertinoIcons.brightness_solid, + CupertinoIcons.bubble_left, + CupertinoIcons.bubble_left_bubble_right, + CupertinoIcons.bubble_left_bubble_right_fill, + CupertinoIcons.bubble_left_fill, + CupertinoIcons.bubble_middle_bottom, + CupertinoIcons.bubble_middle_bottom_fill, + CupertinoIcons.bubble_middle_top, + CupertinoIcons.bubble_middle_top_fill, + CupertinoIcons.bubble_right, + CupertinoIcons.bubble_right_fill, + CupertinoIcons.building_2_fill, + CupertinoIcons.burn, + CupertinoIcons.burst, + CupertinoIcons.burst_fill, + CupertinoIcons.bus, + CupertinoIcons.calendar, + CupertinoIcons.calendar_badge_minus, + CupertinoIcons.calendar_badge_plus, + CupertinoIcons.calendar_circle, + CupertinoIcons.calendar_circle_fill, + CupertinoIcons.calendar_today, + CupertinoIcons.camera, + CupertinoIcons.camera_circle, + CupertinoIcons.camera_circle_fill, + CupertinoIcons.camera_fill, + CupertinoIcons.camera_on_rectangle, + CupertinoIcons.camera_on_rectangle_fill, + CupertinoIcons.camera_rotate, + CupertinoIcons.camera_rotate_fill, + CupertinoIcons.camera_viewfinder, + CupertinoIcons.capslock, + CupertinoIcons.capslock_fill, + CupertinoIcons.capsule, + CupertinoIcons.capsule_fill, + CupertinoIcons.captions_bubble, + CupertinoIcons.captions_bubble_fill, + CupertinoIcons.car, + CupertinoIcons.car_detailed, + CupertinoIcons.car_fill, + CupertinoIcons.cart, + CupertinoIcons.cart_badge_minus, + CupertinoIcons.cart_badge_plus, + CupertinoIcons.cart_fill, + CupertinoIcons.cart_fill_badge_minus, + CupertinoIcons.cart_fill_badge_plus, + CupertinoIcons.chart_bar, + CupertinoIcons.chart_bar_alt_fill, + CupertinoIcons.chart_bar_circle, + CupertinoIcons.chart_bar_circle_fill, + CupertinoIcons.chart_bar_fill, + CupertinoIcons.chart_bar_square, + CupertinoIcons.chart_bar_square_fill, + CupertinoIcons.chart_pie, + CupertinoIcons.chart_pie_fill, + CupertinoIcons.chat_bubble, + CupertinoIcons.chat_bubble_2, + CupertinoIcons.chat_bubble_2_fill, + CupertinoIcons.chat_bubble_fill, + CupertinoIcons.chat_bubble_text, + CupertinoIcons.chat_bubble_text_fill, + CupertinoIcons.check_mark, + CupertinoIcons.check_mark_circled, + CupertinoIcons.check_mark_circled_solid, + CupertinoIcons.checkmark, + CupertinoIcons.checkmark_alt, + CupertinoIcons.checkmark_alt_circle, + CupertinoIcons.checkmark_alt_circle_fill, + CupertinoIcons.checkmark_circle, + CupertinoIcons.checkmark_circle_fill, + CupertinoIcons.checkmark_rectangle, + CupertinoIcons.checkmark_rectangle_fill, + CupertinoIcons.checkmark_seal, + CupertinoIcons.checkmark_seal_fill, + CupertinoIcons.checkmark_shield, + CupertinoIcons.checkmark_shield_fill, + CupertinoIcons.checkmark_square, + CupertinoIcons.checkmark_square_fill, + CupertinoIcons.chevron_back, + CupertinoIcons.chevron_compact_down, + CupertinoIcons.chevron_compact_left, + CupertinoIcons.chevron_compact_right, + CupertinoIcons.chevron_compact_up, + CupertinoIcons.chevron_down, + CupertinoIcons.chevron_down_circle, + CupertinoIcons.chevron_down_circle_fill, + CupertinoIcons.chevron_down_square, + CupertinoIcons.chevron_down_square_fill, + CupertinoIcons.chevron_forward, + CupertinoIcons.chevron_left, + CupertinoIcons.chevron_left_2, + CupertinoIcons.chevron_left_circle, + CupertinoIcons.chevron_left_circle_fill, + CupertinoIcons.chevron_left_slash_chevron_right, + CupertinoIcons.chevron_left_square, + CupertinoIcons.chevron_left_square_fill, + CupertinoIcons.chevron_right, + CupertinoIcons.chevron_right_2, + CupertinoIcons.chevron_right_circle, + CupertinoIcons.chevron_right_circle_fill, + CupertinoIcons.chevron_right_square, + CupertinoIcons.chevron_right_square_fill, + CupertinoIcons.chevron_up, + CupertinoIcons.chevron_up_chevron_down, + CupertinoIcons.chevron_up_circle, + CupertinoIcons.chevron_up_circle_fill, + CupertinoIcons.chevron_up_square, + CupertinoIcons.chevron_up_square_fill, + CupertinoIcons.circle, + CupertinoIcons.circle_bottomthird_split, + CupertinoIcons.circle_fill, + CupertinoIcons.circle_filled, + CupertinoIcons.circle_grid_3x3, + CupertinoIcons.circle_grid_3x3_fill, + CupertinoIcons.circle_grid_hex, + CupertinoIcons.circle_grid_hex_fill, + CupertinoIcons.circle_lefthalf_fill, + CupertinoIcons.circle_righthalf_fill, + CupertinoIcons.clear, + CupertinoIcons.clear_circled, + CupertinoIcons.clear_circled_solid, + CupertinoIcons.clear_fill, + CupertinoIcons.clear_thick, + CupertinoIcons.clear_thick_circled, + CupertinoIcons.clock, + CupertinoIcons.clock_fill, + CupertinoIcons.clock_solid, + CupertinoIcons.cloud, + CupertinoIcons.cloud_bolt, + CupertinoIcons.cloud_bolt_fill, + CupertinoIcons.cloud_bolt_rain, + CupertinoIcons.cloud_bolt_rain_fill, + CupertinoIcons.cloud_download, + CupertinoIcons.cloud_download_fill, + CupertinoIcons.cloud_drizzle, + CupertinoIcons.cloud_drizzle_fill, + CupertinoIcons.cloud_fill, + CupertinoIcons.cloud_fog, + CupertinoIcons.cloud_fog_fill, + CupertinoIcons.cloud_hail, + CupertinoIcons.cloud_hail_fill, + CupertinoIcons.cloud_heavyrain, + CupertinoIcons.cloud_heavyrain_fill, + CupertinoIcons.cloud_moon, + CupertinoIcons.cloud_moon_bolt, + CupertinoIcons.cloud_moon_bolt_fill, + CupertinoIcons.cloud_moon_fill, + CupertinoIcons.cloud_moon_rain, + CupertinoIcons.cloud_moon_rain_fill, + CupertinoIcons.cloud_rain, + CupertinoIcons.cloud_rain_fill, + CupertinoIcons.cloud_sleet, + CupertinoIcons.cloud_sleet_fill, + CupertinoIcons.cloud_snow, + CupertinoIcons.cloud_snow_fill, + CupertinoIcons.cloud_sun, + CupertinoIcons.cloud_sun_bolt, + CupertinoIcons.cloud_sun_bolt_fill, + CupertinoIcons.cloud_sun_fill, + CupertinoIcons.cloud_sun_rain, + CupertinoIcons.cloud_sun_rain_fill, + CupertinoIcons.cloud_upload, + CupertinoIcons.cloud_upload_fill, + CupertinoIcons.collections, + CupertinoIcons.collections_solid, + CupertinoIcons.color_filter, + CupertinoIcons.color_filter_fill, + CupertinoIcons.command, + CupertinoIcons.compass, + CupertinoIcons.compass_fill, + CupertinoIcons.control, + CupertinoIcons.conversation_bubble, + CupertinoIcons.create, + CupertinoIcons.create_solid, + CupertinoIcons.creditcard, + CupertinoIcons.creditcard_fill, + CupertinoIcons.crop, + CupertinoIcons.crop_rotate, + CupertinoIcons.cube, + CupertinoIcons.cube_box, + CupertinoIcons.cube_box_fill, + CupertinoIcons.cube_fill, + CupertinoIcons.cursor_rays, + CupertinoIcons.decrease_indent, + CupertinoIcons.decrease_quotelevel, + CupertinoIcons.delete, + CupertinoIcons.delete_left, + CupertinoIcons.delete_left_fill, + CupertinoIcons.delete_right, + CupertinoIcons.delete_right_fill, + CupertinoIcons.delete_simple, + CupertinoIcons.delete_solid, + CupertinoIcons.desktopcomputer, + CupertinoIcons.device_desktop, + CupertinoIcons.device_laptop, + CupertinoIcons.device_phone_landscape, + CupertinoIcons.device_phone_portrait, + CupertinoIcons.dial, + CupertinoIcons.dial_fill, + CupertinoIcons.divide, + CupertinoIcons.divide_circle, + CupertinoIcons.divide_circle_fill, + CupertinoIcons.divide_square, + CupertinoIcons.divide_square_fill, + CupertinoIcons.doc, + CupertinoIcons.doc_append, + CupertinoIcons.doc_chart, + CupertinoIcons.doc_chart_fill, + CupertinoIcons.doc_checkmark, + CupertinoIcons.doc_checkmark_fill, + CupertinoIcons.doc_circle, + CupertinoIcons.doc_circle_fill, + CupertinoIcons.doc_fill, + CupertinoIcons.doc_on_clipboard, + CupertinoIcons.doc_on_clipboard_fill, + CupertinoIcons.doc_on_doc, + CupertinoIcons.doc_on_doc_fill, + CupertinoIcons.doc_person, + CupertinoIcons.doc_person_fill, + CupertinoIcons.doc_plaintext, + CupertinoIcons.doc_richtext, + CupertinoIcons.doc_text, + CupertinoIcons.doc_text_fill, + CupertinoIcons.doc_text_search, + CupertinoIcons.doc_text_viewfinder, + CupertinoIcons.dot_radiowaves_left_right, + CupertinoIcons.dot_radiowaves_right, + CupertinoIcons.dot_square, + CupertinoIcons.dot_square_fill, + CupertinoIcons.double_music_note, + CupertinoIcons.down_arrow, + CupertinoIcons.download_circle, + CupertinoIcons.download_circle_fill, + CupertinoIcons.drop, + CupertinoIcons.drop_fill, + CupertinoIcons.drop_triangle, + CupertinoIcons.drop_triangle_fill, + CupertinoIcons.ear, + CupertinoIcons.eject, + CupertinoIcons.eject_fill, + CupertinoIcons.ellipses_bubble, + CupertinoIcons.ellipses_bubble_fill, + CupertinoIcons.ellipsis, + CupertinoIcons.ellipsis_circle, + CupertinoIcons.ellipsis_circle_fill, + CupertinoIcons.ellipsis_vertical, + CupertinoIcons.ellipsis_vertical_circle, + CupertinoIcons.ellipsis_vertical_circle_fill, + CupertinoIcons.envelope, + CupertinoIcons.envelope_badge, + CupertinoIcons.envelope_badge_fill, + CupertinoIcons.envelope_circle, + CupertinoIcons.envelope_circle_fill, + CupertinoIcons.envelope_fill, + CupertinoIcons.envelope_open, + CupertinoIcons.envelope_open_fill, + CupertinoIcons.equal, + CupertinoIcons.equal_circle, + CupertinoIcons.equal_circle_fill, + CupertinoIcons.equal_square, + CupertinoIcons.equal_square_fill, + CupertinoIcons.escape, + CupertinoIcons.exclamationmark, + CupertinoIcons.exclamationmark_bubble, + CupertinoIcons.exclamationmark_bubble_fill, + CupertinoIcons.exclamationmark_circle, + CupertinoIcons.exclamationmark_circle_fill, + CupertinoIcons.exclamationmark_octagon, + CupertinoIcons.exclamationmark_octagon_fill, + CupertinoIcons.exclamationmark_shield, + CupertinoIcons.exclamationmark_shield_fill, + CupertinoIcons.exclamationmark_square, + CupertinoIcons.exclamationmark_square_fill, + CupertinoIcons.exclamationmark_triangle, + CupertinoIcons.exclamationmark_triangle_fill, + CupertinoIcons.eye, + CupertinoIcons.eye_fill, + CupertinoIcons.eye_slash, + CupertinoIcons.eye_slash_fill, + CupertinoIcons.eye_solid, + CupertinoIcons.eyedropper, + CupertinoIcons.eyedropper_full, + CupertinoIcons.eyedropper_halffull, + CupertinoIcons.eyeglasses, + CupertinoIcons.f_cursive, + CupertinoIcons.f_cursive_circle, + CupertinoIcons.f_cursive_circle_fill, + CupertinoIcons.film, + CupertinoIcons.film_fill, + CupertinoIcons.flag, + CupertinoIcons.flag_circle, + CupertinoIcons.flag_circle_fill, + CupertinoIcons.flag_fill, + CupertinoIcons.flag_slash, + CupertinoIcons.flag_slash_fill, + CupertinoIcons.flame, + CupertinoIcons.flame_fill, + CupertinoIcons.floppy_disk, + CupertinoIcons.flowchart, + CupertinoIcons.flowchart_fill, + CupertinoIcons.folder, + CupertinoIcons.folder_badge_minus, + CupertinoIcons.folder_badge_person_crop, + CupertinoIcons.folder_badge_plus, + CupertinoIcons.folder_circle, + CupertinoIcons.folder_circle_fill, + CupertinoIcons.folder_fill, + CupertinoIcons.folder_fill_badge_minus, + CupertinoIcons.folder_fill_badge_person_crop, + CupertinoIcons.folder_fill_badge_plus, + CupertinoIcons.folder_open, + CupertinoIcons.folder_solid, + CupertinoIcons.forward, + CupertinoIcons.forward_end, + CupertinoIcons.forward_end_alt, + CupertinoIcons.forward_end_alt_fill, + CupertinoIcons.forward_end_fill, + CupertinoIcons.forward_fill, + CupertinoIcons.fullscreen, + CupertinoIcons.fullscreen_exit, + CupertinoIcons.function, + CupertinoIcons.fx, + CupertinoIcons.game_controller, + CupertinoIcons.game_controller_solid, + CupertinoIcons.gamecontroller, + CupertinoIcons.gamecontroller_alt_fill, + CupertinoIcons.gamecontroller_fill, + CupertinoIcons.gauge, + CupertinoIcons.gauge_badge_minus, + CupertinoIcons.gauge_badge_plus, + CupertinoIcons.gear, + CupertinoIcons.gear_alt, + CupertinoIcons.gear_alt_fill, + CupertinoIcons.gear_big, + CupertinoIcons.gear_solid, + CupertinoIcons.gift, + CupertinoIcons.gift_alt, + CupertinoIcons.gift_alt_fill, + CupertinoIcons.gift_fill, + CupertinoIcons.globe, + CupertinoIcons.gobackward, + CupertinoIcons.gobackward_10, + CupertinoIcons.gobackward_15, + CupertinoIcons.gobackward_30, + CupertinoIcons.gobackward_45, + CupertinoIcons.gobackward_60, + CupertinoIcons.gobackward_75, + CupertinoIcons.gobackward_90, + CupertinoIcons.gobackward_minus, + CupertinoIcons.goforward, + CupertinoIcons.goforward_10, + CupertinoIcons.goforward_15, + CupertinoIcons.goforward_30, + CupertinoIcons.goforward_45, + CupertinoIcons.goforward_60, + CupertinoIcons.goforward_75, + CupertinoIcons.goforward_90, + CupertinoIcons.goforward_plus, + CupertinoIcons.graph_circle, + CupertinoIcons.graph_circle_fill, + CupertinoIcons.graph_square, + CupertinoIcons.graph_square_fill, + CupertinoIcons.greaterthan, + CupertinoIcons.greaterthan_circle, + CupertinoIcons.greaterthan_circle_fill, + CupertinoIcons.greaterthan_square, + CupertinoIcons.greaterthan_square_fill, + CupertinoIcons.grid, + CupertinoIcons.grid_circle, + CupertinoIcons.grid_circle_fill, + CupertinoIcons.group, + CupertinoIcons.group_solid, + CupertinoIcons.guitars, + CupertinoIcons.hammer, + CupertinoIcons.hammer_fill, + CupertinoIcons.hand_draw, + CupertinoIcons.hand_draw_fill, + CupertinoIcons.hand_point_left, + CupertinoIcons.hand_point_left_fill, + CupertinoIcons.hand_point_right, + CupertinoIcons.hand_point_right_fill, + CupertinoIcons.hand_raised, + CupertinoIcons.hand_raised_fill, + CupertinoIcons.hand_raised_slash, + CupertinoIcons.hand_raised_slash_fill, + CupertinoIcons.hand_thumbsdown, + CupertinoIcons.hand_thumbsdown_fill, + CupertinoIcons.hand_thumbsup, + CupertinoIcons.hand_thumbsup_fill, + CupertinoIcons.hare, + CupertinoIcons.hare_fill, + CupertinoIcons.headphones, + CupertinoIcons.heart, + CupertinoIcons.heart_circle, + CupertinoIcons.heart_circle_fill, + CupertinoIcons.heart_fill, + CupertinoIcons.heart_slash, + CupertinoIcons.heart_slash_circle, + CupertinoIcons.heart_slash_circle_fill, + CupertinoIcons.heart_slash_fill, + CupertinoIcons.heart_solid, + CupertinoIcons.helm, + CupertinoIcons.hexagon, + CupertinoIcons.hexagon_fill, + CupertinoIcons.hifispeaker, + CupertinoIcons.hifispeaker_fill, + CupertinoIcons.home, + CupertinoIcons.hourglass, + CupertinoIcons.hourglass_bottomhalf_fill, + CupertinoIcons.hourglass_tophalf_fill, + CupertinoIcons.house, + CupertinoIcons.house_alt, + CupertinoIcons.house_alt_fill, + CupertinoIcons.house_fill, + CupertinoIcons.hurricane, + CupertinoIcons.increase_indent, + CupertinoIcons.increase_quotelevel, + CupertinoIcons.infinite, + CupertinoIcons.info, + CupertinoIcons.info_circle, + CupertinoIcons.info_circle_fill, + CupertinoIcons.italic, + CupertinoIcons.keyboard, + CupertinoIcons.keyboard_chevron_compact_down, + CupertinoIcons.lab_flask, + CupertinoIcons.lab_flask_solid, + CupertinoIcons.largecircle_fill_circle, + CupertinoIcons.lasso, + CupertinoIcons.layers, + CupertinoIcons.layers_alt, + CupertinoIcons.layers_alt_fill, + CupertinoIcons.layers_fill, + CupertinoIcons.leaf_arrow_circlepath, + CupertinoIcons.left_chevron, + CupertinoIcons.lessthan, + CupertinoIcons.lessthan_circle, + CupertinoIcons.lessthan_circle_fill, + CupertinoIcons.lessthan_square, + CupertinoIcons.lessthan_square_fill, + CupertinoIcons.light_max, + CupertinoIcons.light_min, + CupertinoIcons.lightbulb, + CupertinoIcons.lightbulb_fill, + CupertinoIcons.lightbulb_slash, + CupertinoIcons.lightbulb_slash_fill, + CupertinoIcons.line_horizontal_3, + CupertinoIcons.line_horizontal_3_decrease, + CupertinoIcons.line_horizontal_3_decrease_circle, + CupertinoIcons.line_horizontal_3_decrease_circle_fill, + CupertinoIcons.link, + CupertinoIcons.link_circle, + CupertinoIcons.link_circle_fill, + CupertinoIcons.list_bullet, + CupertinoIcons.list_bullet_below_rectangle, + CupertinoIcons.list_bullet_indent, + CupertinoIcons.list_dash, + CupertinoIcons.list_number, + CupertinoIcons.list_number_rtl, + CupertinoIcons.location, + CupertinoIcons.location_circle, + CupertinoIcons.location_circle_fill, + CupertinoIcons.location_fill, + CupertinoIcons.location_north, + CupertinoIcons.location_north_fill, + CupertinoIcons.location_north_line, + CupertinoIcons.location_north_line_fill, + CupertinoIcons.location_slash, + CupertinoIcons.location_slash_fill, + CupertinoIcons.location_solid, + CupertinoIcons.lock, + CupertinoIcons.lock_circle, + CupertinoIcons.lock_circle_fill, + CupertinoIcons.lock_fill, + CupertinoIcons.lock_open, + CupertinoIcons.lock_open_fill, + CupertinoIcons.lock_rotation, + CupertinoIcons.lock_rotation_open, + CupertinoIcons.lock_shield, + CupertinoIcons.lock_shield_fill, + CupertinoIcons.lock_slash, + CupertinoIcons.lock_slash_fill, + CupertinoIcons.loop, + CupertinoIcons.loop_thick, + CupertinoIcons.macwindow, + CupertinoIcons.mail, + CupertinoIcons.mail_solid, + CupertinoIcons.map, + CupertinoIcons.map_fill, + CupertinoIcons.map_pin, + CupertinoIcons.map_pin_ellipse, + CupertinoIcons.map_pin_slash, + CupertinoIcons.memories, + CupertinoIcons.memories_badge_minus, + CupertinoIcons.memories_badge_plus, + CupertinoIcons.metronome, + CupertinoIcons.mic, + CupertinoIcons.mic_circle, + CupertinoIcons.mic_circle_fill, + CupertinoIcons.mic_fill, + CupertinoIcons.mic_off, + CupertinoIcons.mic_slash, + CupertinoIcons.mic_slash_fill, + CupertinoIcons.mic_solid, + CupertinoIcons.minus, + CupertinoIcons.minus_circle, + CupertinoIcons.minus_circle_fill, + CupertinoIcons.minus_circled, + CupertinoIcons.minus_rectangle, + CupertinoIcons.minus_rectangle_fill, + CupertinoIcons.minus_slash_plus, + CupertinoIcons.minus_square, + CupertinoIcons.minus_square_fill, + CupertinoIcons.money_dollar, + CupertinoIcons.money_dollar_circle, + CupertinoIcons.money_dollar_circle_fill, + CupertinoIcons.money_euro, + CupertinoIcons.money_euro_circle, + CupertinoIcons.money_euro_circle_fill, + CupertinoIcons.money_pound, + CupertinoIcons.money_pound_circle, + CupertinoIcons.money_pound_circle_fill, + CupertinoIcons.money_rubl, + CupertinoIcons.money_rubl_circle, + CupertinoIcons.money_rubl_circle_fill, + CupertinoIcons.money_yen, + CupertinoIcons.money_yen_circle, + CupertinoIcons.money_yen_circle_fill, + CupertinoIcons.moon, + CupertinoIcons.moon_circle, + CupertinoIcons.moon_circle_fill, + CupertinoIcons.moon_fill, + CupertinoIcons.moon_stars, + CupertinoIcons.moon_stars_fill, + CupertinoIcons.moon_zzz, + CupertinoIcons.moon_zzz_fill, + CupertinoIcons.move, + CupertinoIcons.multiply, + CupertinoIcons.multiply_circle, + CupertinoIcons.multiply_circle_fill, + CupertinoIcons.multiply_square, + CupertinoIcons.multiply_square_fill, + CupertinoIcons.music_albums, + CupertinoIcons.music_albums_fill, + CupertinoIcons.music_house, + CupertinoIcons.music_house_fill, + CupertinoIcons.music_mic, + CupertinoIcons.music_note, + CupertinoIcons.music_note_2, + CupertinoIcons.music_note_list, + CupertinoIcons.news, + CupertinoIcons.news_solid, + CupertinoIcons.nosign, + CupertinoIcons.number, + CupertinoIcons.number_circle, + CupertinoIcons.number_circle_fill, + CupertinoIcons.number_square, + CupertinoIcons.number_square_fill, + CupertinoIcons.option, + CupertinoIcons.padlock, + CupertinoIcons.padlock_solid, + CupertinoIcons.paintbrush, + CupertinoIcons.paintbrush_fill, + CupertinoIcons.pano, + CupertinoIcons.pano_fill, + CupertinoIcons.paperclip, + CupertinoIcons.paperplane, + CupertinoIcons.paperplane_fill, + CupertinoIcons.paragraph, + CupertinoIcons.pause, + CupertinoIcons.pause_circle, + CupertinoIcons.pause_circle_fill, + CupertinoIcons.pause_fill, + CupertinoIcons.pause_rectangle, + CupertinoIcons.pause_rectangle_fill, + CupertinoIcons.pause_solid, + CupertinoIcons.paw, + CupertinoIcons.paw_solid, + CupertinoIcons.pen, + CupertinoIcons.pencil, + CupertinoIcons.pencil_circle, + CupertinoIcons.pencil_circle_fill, + CupertinoIcons.pencil_ellipsis_rectangle, + CupertinoIcons.pencil_outline, + CupertinoIcons.pencil_slash, + CupertinoIcons.percent, + CupertinoIcons.person, + CupertinoIcons.person_2, + CupertinoIcons.person_2_alt, + CupertinoIcons.person_2_fill, + CupertinoIcons.person_2_square_stack, + CupertinoIcons.person_2_square_stack_fill, + CupertinoIcons.person_3, + CupertinoIcons.person_3_fill, + CupertinoIcons.person_add, + CupertinoIcons.person_add_solid, + CupertinoIcons.person_alt, + CupertinoIcons.person_alt_circle, + CupertinoIcons.person_alt_circle_fill, + CupertinoIcons.person_badge_minus, + CupertinoIcons.person_badge_minus_fill, + CupertinoIcons.person_badge_plus, + CupertinoIcons.person_badge_plus_fill, + CupertinoIcons.person_circle, + CupertinoIcons.person_circle_fill, + CupertinoIcons.person_crop_circle, + CupertinoIcons.person_crop_circle_badge_checkmark, + CupertinoIcons.person_crop_circle_badge_exclam, + CupertinoIcons.person_crop_circle_badge_minus, + CupertinoIcons.person_crop_circle_badge_plus, + CupertinoIcons.person_crop_circle_badge_xmark, + CupertinoIcons.person_crop_circle_fill, + CupertinoIcons.person_crop_circle_fill_badge_checkmark, + CupertinoIcons.person_crop_circle_fill_badge_exclam, + CupertinoIcons.person_crop_circle_fill_badge_minus, + CupertinoIcons.person_crop_circle_fill_badge_plus, + CupertinoIcons.person_crop_circle_fill_badge_xmark, + CupertinoIcons.person_crop_rectangle, + CupertinoIcons.person_crop_rectangle_fill, + CupertinoIcons.person_crop_square, + CupertinoIcons.person_crop_square_fill, + CupertinoIcons.person_fill, + CupertinoIcons.person_solid, + CupertinoIcons.personalhotspot, + CupertinoIcons.perspective, + CupertinoIcons.phone, + CupertinoIcons.phone_arrow_down_left, + CupertinoIcons.phone_arrow_right, + CupertinoIcons.phone_arrow_up_right, + CupertinoIcons.phone_badge_plus, + CupertinoIcons.phone_circle, + CupertinoIcons.phone_circle_fill, + CupertinoIcons.phone_down, + CupertinoIcons.phone_down_circle, + CupertinoIcons.phone_down_circle_fill, + CupertinoIcons.phone_down_fill, + CupertinoIcons.phone_fill, + CupertinoIcons.phone_fill_arrow_down_left, + CupertinoIcons.phone_fill_arrow_right, + CupertinoIcons.phone_fill_arrow_up_right, + CupertinoIcons.phone_fill_badge_plus, + CupertinoIcons.phone_solid, + CupertinoIcons.photo, + CupertinoIcons.photo_camera, + CupertinoIcons.photo_camera_solid, + CupertinoIcons.photo_fill, + CupertinoIcons.photo_fill_on_rectangle_fill, + CupertinoIcons.photo_on_rectangle, + CupertinoIcons.piano, + CupertinoIcons.pin, + CupertinoIcons.pin_fill, + CupertinoIcons.pin_slash, + CupertinoIcons.pin_slash_fill, + CupertinoIcons.placemark, + CupertinoIcons.placemark_fill, + CupertinoIcons.play, + CupertinoIcons.play_arrow, + CupertinoIcons.play_arrow_solid, + CupertinoIcons.play_circle, + CupertinoIcons.play_circle_fill, + CupertinoIcons.play_fill, + CupertinoIcons.play_rectangle, + CupertinoIcons.play_rectangle_fill, + CupertinoIcons.playpause, + CupertinoIcons.playpause_fill, + CupertinoIcons.plus, + CupertinoIcons.plus_app, + CupertinoIcons.plus_app_fill, + CupertinoIcons.plus_bubble, + CupertinoIcons.plus_bubble_fill, + CupertinoIcons.plus_circle, + CupertinoIcons.plus_circle_fill, + CupertinoIcons.plus_circled, + CupertinoIcons.plus_rectangle, + CupertinoIcons.plus_rectangle_fill, + CupertinoIcons.plus_rectangle_fill_on_rectangle_fill, + CupertinoIcons.plus_rectangle_on_rectangle, + CupertinoIcons.plus_slash_minus, + CupertinoIcons.plus_square, + CupertinoIcons.plus_square_fill, + CupertinoIcons.plus_square_fill_on_square_fill, + CupertinoIcons.plus_square_on_square, + CupertinoIcons.plusminus, + CupertinoIcons.plusminus_circle, + CupertinoIcons.plusminus_circle_fill, + CupertinoIcons.power, + CupertinoIcons.printer, + CupertinoIcons.printer_fill, + CupertinoIcons.profile_circled, + CupertinoIcons.projective, + CupertinoIcons.purchased, + CupertinoIcons.purchased_circle, + CupertinoIcons.purchased_circle_fill, + CupertinoIcons.qrcode, + CupertinoIcons.qrcode_viewfinder, + CupertinoIcons.question, + CupertinoIcons.question_circle, + CupertinoIcons.question_circle_fill, + CupertinoIcons.question_diamond, + CupertinoIcons.question_diamond_fill, + CupertinoIcons.question_square, + CupertinoIcons.question_square_fill, + CupertinoIcons.quote_bubble, + CupertinoIcons.quote_bubble_fill, + CupertinoIcons.radiowaves_left, + CupertinoIcons.radiowaves_right, + CupertinoIcons.rays, + CupertinoIcons.recordingtape, + CupertinoIcons.rectangle, + CupertinoIcons.rectangle_3_offgrid, + CupertinoIcons.rectangle_3_offgrid_fill, + CupertinoIcons.rectangle_arrow_up_right_arrow_down_left, + CupertinoIcons.rectangle_arrow_up_right_arrow_down_left_slash, + CupertinoIcons.rectangle_badge_checkmark, + CupertinoIcons.rectangle_badge_xmark, + CupertinoIcons.rectangle_compress_vertical, + CupertinoIcons.rectangle_dock, + CupertinoIcons.rectangle_expand_vertical, + CupertinoIcons.rectangle_fill, + CupertinoIcons.rectangle_fill_badge_checkmark, + CupertinoIcons.rectangle_fill_badge_xmark, + CupertinoIcons.rectangle_fill_on_rectangle_angled_fill, + CupertinoIcons.rectangle_fill_on_rectangle_fill, + CupertinoIcons.rectangle_grid_1x2, + CupertinoIcons.rectangle_grid_1x2_fill, + CupertinoIcons.rectangle_grid_2x2, + CupertinoIcons.rectangle_grid_2x2_fill, + CupertinoIcons.rectangle_grid_3x2, + CupertinoIcons.rectangle_grid_3x2_fill, + CupertinoIcons.rectangle_on_rectangle, + CupertinoIcons.rectangle_on_rectangle_angled, + CupertinoIcons.rectangle_paperclip, + CupertinoIcons.rectangle_split_3x1, + CupertinoIcons.rectangle_split_3x1_fill, + CupertinoIcons.rectangle_split_3x3, + CupertinoIcons.rectangle_split_3x3_fill, + CupertinoIcons.rectangle_stack, + CupertinoIcons.rectangle_stack_badge_minus, + CupertinoIcons.rectangle_stack_badge_person_crop, + CupertinoIcons.rectangle_stack_badge_plus, + CupertinoIcons.rectangle_stack_fill, + CupertinoIcons.rectangle_stack_fill_badge_minus, + CupertinoIcons.rectangle_stack_fill_badge_person_crop, + CupertinoIcons.rectangle_stack_fill_badge_plus, + CupertinoIcons.rectangle_stack_person_crop, + CupertinoIcons.rectangle_stack_person_crop_fill, + CupertinoIcons.refresh, + CupertinoIcons.refresh_bold, + CupertinoIcons.refresh_circled, + CupertinoIcons.refresh_circled_solid, + CupertinoIcons.refresh_thick, + CupertinoIcons.refresh_thin, + CupertinoIcons.repeat, + CupertinoIcons.repeat_1, + CupertinoIcons.reply, + CupertinoIcons.reply_all, + CupertinoIcons.reply_thick_solid, + CupertinoIcons.resize, + CupertinoIcons.resize_h, + CupertinoIcons.resize_v, + CupertinoIcons.restart, + CupertinoIcons.return_icon, + CupertinoIcons.rhombus, + CupertinoIcons.rhombus_fill, + CupertinoIcons.right_chevron, + CupertinoIcons.rocket, + CupertinoIcons.rocket_fill, + CupertinoIcons.rosette, + CupertinoIcons.rotate_left, + CupertinoIcons.rotate_left_fill, + CupertinoIcons.rotate_right, + CupertinoIcons.rotate_right_fill, + CupertinoIcons.scissors, + CupertinoIcons.scissors_alt, + CupertinoIcons.scope, + CupertinoIcons.scribble, + CupertinoIcons.search, + CupertinoIcons.search_circle, + CupertinoIcons.search_circle_fill, + CupertinoIcons.selection_pin_in_out, + CupertinoIcons.settings, + CupertinoIcons.settings_solid, + CupertinoIcons.share, + CupertinoIcons.share_solid, + CupertinoIcons.share_up, + CupertinoIcons.shield, + CupertinoIcons.shield_fill, + CupertinoIcons.shield_lefthalf_fill, + CupertinoIcons.shield_slash, + CupertinoIcons.shield_slash_fill, + CupertinoIcons.shift, + CupertinoIcons.shift_fill, + CupertinoIcons.shopping_cart, + CupertinoIcons.shuffle, + CupertinoIcons.shuffle_medium, + CupertinoIcons.shuffle_thick, + CupertinoIcons.sidebar_left, + CupertinoIcons.sidebar_right, + CupertinoIcons.signature, + CupertinoIcons.skew, + CupertinoIcons.slash_circle, + CupertinoIcons.slash_circle_fill, + CupertinoIcons.slider_horizontal_3, + CupertinoIcons.slider_horizontal_below_rectangle, + CupertinoIcons.slowmo, + CupertinoIcons.smallcircle_circle, + CupertinoIcons.smallcircle_circle_fill, + CupertinoIcons.smallcircle_fill_circle, + CupertinoIcons.smallcircle_fill_circle_fill, + CupertinoIcons.smiley, + CupertinoIcons.smiley_fill, + CupertinoIcons.smoke, + CupertinoIcons.smoke_fill, + CupertinoIcons.snow, + CupertinoIcons.sort_down, + CupertinoIcons.sort_down_circle, + CupertinoIcons.sort_down_circle_fill, + CupertinoIcons.sort_up, + CupertinoIcons.sort_up_circle, + CupertinoIcons.sort_up_circle_fill, + CupertinoIcons.sparkles, + CupertinoIcons.speaker, + CupertinoIcons.speaker_1, + CupertinoIcons.speaker_1_fill, + CupertinoIcons.speaker_2, + CupertinoIcons.speaker_2_fill, + CupertinoIcons.speaker_3, + CupertinoIcons.speaker_3_fill, + CupertinoIcons.speaker_fill, + CupertinoIcons.speaker_slash, + CupertinoIcons.speaker_slash_fill, + CupertinoIcons.speaker_slash_fill_rtl, + CupertinoIcons.speaker_slash_rtl, + CupertinoIcons.speaker_zzz, + CupertinoIcons.speaker_zzz_fill, + CupertinoIcons.speaker_zzz_fill_rtl, + CupertinoIcons.speaker_zzz_rtl, + CupertinoIcons.speedometer, + CupertinoIcons.sportscourt, + CupertinoIcons.sportscourt_fill, + CupertinoIcons.square, + CupertinoIcons.square_arrow_down, + CupertinoIcons.square_arrow_down_fill, + CupertinoIcons.square_arrow_down_on_square, + CupertinoIcons.square_arrow_down_on_square_fill, + CupertinoIcons.square_arrow_left, + CupertinoIcons.square_arrow_left_fill, + CupertinoIcons.square_arrow_right, + CupertinoIcons.square_arrow_right_fill, + CupertinoIcons.square_arrow_up, + CupertinoIcons.square_arrow_up_fill, + CupertinoIcons.square_arrow_up_on_square, + CupertinoIcons.square_arrow_up_on_square_fill, + CupertinoIcons.square_favorites, + CupertinoIcons.square_favorites_alt, + CupertinoIcons.square_favorites_alt_fill, + CupertinoIcons.square_favorites_fill, + CupertinoIcons.square_fill, + CupertinoIcons.square_fill_line_vertical_square, + CupertinoIcons.square_fill_line_vertical_square_fill, + CupertinoIcons.square_fill_on_circle_fill, + CupertinoIcons.square_fill_on_square_fill, + CupertinoIcons.square_grid_2x2, + CupertinoIcons.square_grid_2x2_fill, + CupertinoIcons.square_grid_3x2, + CupertinoIcons.square_grid_3x2_fill, + CupertinoIcons.square_grid_4x3_fill, + CupertinoIcons.square_lefthalf_fill, + CupertinoIcons.square_line_vertical_square, + CupertinoIcons.square_line_vertical_square_fill, + CupertinoIcons.square_list, + CupertinoIcons.square_list_fill, + CupertinoIcons.square_on_circle, + CupertinoIcons.square_on_square, + CupertinoIcons.square_pencil, + CupertinoIcons.square_pencil_fill, + CupertinoIcons.square_righthalf_fill, + CupertinoIcons.square_split_1x2, + CupertinoIcons.square_split_1x2_fill, + CupertinoIcons.square_split_2x1, + CupertinoIcons.square_split_2x1_fill, + CupertinoIcons.square_split_2x2, + CupertinoIcons.square_split_2x2_fill, + CupertinoIcons.square_stack, + CupertinoIcons.square_stack_3d_down_dottedline, + CupertinoIcons.square_stack_3d_down_right, + CupertinoIcons.square_stack_3d_down_right_fill, + CupertinoIcons.square_stack_3d_up, + CupertinoIcons.square_stack_3d_up_fill, + CupertinoIcons.square_stack_3d_up_slash, + CupertinoIcons.square_stack_3d_up_slash_fill, + CupertinoIcons.square_stack_fill, + CupertinoIcons.squares_below_rectangle, + CupertinoIcons.star, + CupertinoIcons.star_circle, + CupertinoIcons.star_circle_fill, + CupertinoIcons.star_fill, + CupertinoIcons.star_lefthalf_fill, + CupertinoIcons.star_slash, + CupertinoIcons.star_slash_fill, + CupertinoIcons.staroflife, + CupertinoIcons.staroflife_fill, + CupertinoIcons.stop, + CupertinoIcons.stop_circle, + CupertinoIcons.stop_circle_fill, + CupertinoIcons.stop_fill, + CupertinoIcons.stopwatch, + CupertinoIcons.stopwatch_fill, + CupertinoIcons.strikethrough, + CupertinoIcons.suit_club, + CupertinoIcons.suit_club_fill, + CupertinoIcons.suit_diamond, + CupertinoIcons.suit_diamond_fill, + CupertinoIcons.suit_heart, + CupertinoIcons.suit_heart_fill, + CupertinoIcons.suit_spade, + CupertinoIcons.suit_spade_fill, + CupertinoIcons.sum, + CupertinoIcons.sun_dust, + CupertinoIcons.sun_dust_fill, + CupertinoIcons.sun_haze, + CupertinoIcons.sun_haze_fill, + CupertinoIcons.sun_max, + CupertinoIcons.sun_max_fill, + CupertinoIcons.sun_min, + CupertinoIcons.sun_min_fill, + CupertinoIcons.sunrise, + CupertinoIcons.sunrise_fill, + CupertinoIcons.sunset, + CupertinoIcons.sunset_fill, + CupertinoIcons.switch_camera, + CupertinoIcons.switch_camera_solid, + CupertinoIcons.t_bubble, + CupertinoIcons.t_bubble_fill, + CupertinoIcons.table, + CupertinoIcons.table_badge_more, + CupertinoIcons.table_badge_more_fill, + CupertinoIcons.table_fill, + CupertinoIcons.tag, + CupertinoIcons.tag_circle, + CupertinoIcons.tag_circle_fill, + CupertinoIcons.tag_fill, + CupertinoIcons.tag_solid, + CupertinoIcons.tags, + CupertinoIcons.tags_solid, + CupertinoIcons.text_aligncenter, + CupertinoIcons.text_alignleft, + CupertinoIcons.text_alignright, + CupertinoIcons.text_append, + CupertinoIcons.text_badge_checkmark, + CupertinoIcons.text_badge_minus, + CupertinoIcons.text_badge_plus, + CupertinoIcons.text_badge_star, + CupertinoIcons.text_badge_xmark, + CupertinoIcons.text_bubble, + CupertinoIcons.text_bubble_fill, + CupertinoIcons.text_cursor, + CupertinoIcons.text_insert, + CupertinoIcons.text_justify, + CupertinoIcons.text_justifyleft, + CupertinoIcons.text_justifyright, + CupertinoIcons.text_quote, + CupertinoIcons.textbox, + CupertinoIcons.textformat, + CupertinoIcons.textformat_123, + CupertinoIcons.textformat_abc, + CupertinoIcons.textformat_abc_dottedunderline, + CupertinoIcons.textformat_alt, + CupertinoIcons.textformat_size, + CupertinoIcons.textformat_subscript, + CupertinoIcons.textformat_superscript, + CupertinoIcons.thermometer, + CupertinoIcons.thermometer_snowflake, + CupertinoIcons.thermometer_sun, + CupertinoIcons.ticket, + CupertinoIcons.ticket_fill, + CupertinoIcons.tickets, + CupertinoIcons.tickets_fill, + CupertinoIcons.time, + CupertinoIcons.time_solid, + CupertinoIcons.timelapse, + CupertinoIcons.timer, + CupertinoIcons.timer_fill, + CupertinoIcons.today, + CupertinoIcons.today_fill, + CupertinoIcons.tornado, + CupertinoIcons.tortoise, + CupertinoIcons.tortoise_fill, + CupertinoIcons.train_style_one, + CupertinoIcons.train_style_two, + CupertinoIcons.tram_fill, + CupertinoIcons.trash, + CupertinoIcons.trash_circle, + CupertinoIcons.trash_circle_fill, + CupertinoIcons.trash_fill, + CupertinoIcons.trash_slash, + CupertinoIcons.trash_slash_fill, + CupertinoIcons.tray, + CupertinoIcons.tray_2, + CupertinoIcons.tray_2_fill, + CupertinoIcons.tray_arrow_down, + CupertinoIcons.tray_arrow_down_fill, + CupertinoIcons.tray_arrow_up, + CupertinoIcons.tray_arrow_up_fill, + CupertinoIcons.tray_fill, + CupertinoIcons.tray_full, + CupertinoIcons.tray_full_fill, + CupertinoIcons.tree, + CupertinoIcons.triangle, + CupertinoIcons.triangle_fill, + CupertinoIcons.triangle_lefthalf_fill, + CupertinoIcons.triangle_righthalf_fill, + CupertinoIcons.tropicalstorm, + CupertinoIcons.tuningfork, + CupertinoIcons.tv, + CupertinoIcons.tv_circle, + CupertinoIcons.tv_circle_fill, + CupertinoIcons.tv_fill, + CupertinoIcons.tv_music_note, + CupertinoIcons.tv_music_note_fill, + CupertinoIcons.uiwindow_split_2x1, + CupertinoIcons.umbrella, + CupertinoIcons.umbrella_fill, + CupertinoIcons.underline, + CupertinoIcons.up_arrow, + CupertinoIcons.upload_circle, + CupertinoIcons.upload_circle_fill, + CupertinoIcons.video_camera, + CupertinoIcons.video_camera_solid, + CupertinoIcons.videocam, + CupertinoIcons.videocam_circle, + CupertinoIcons.videocam_circle_fill, + CupertinoIcons.videocam_fill, + CupertinoIcons.view_2d, + CupertinoIcons.view_3d, + CupertinoIcons.viewfinder, + CupertinoIcons.viewfinder_circle, + CupertinoIcons.viewfinder_circle_fill, + CupertinoIcons.volume_down, + CupertinoIcons.volume_mute, + CupertinoIcons.volume_off, + CupertinoIcons.volume_up, + CupertinoIcons.wand_rays, + CupertinoIcons.wand_rays_inverse, + CupertinoIcons.wand_stars, + CupertinoIcons.wand_stars_inverse, + CupertinoIcons.waveform, + CupertinoIcons.waveform_circle, + CupertinoIcons.waveform_circle_fill, + CupertinoIcons.waveform_path, + CupertinoIcons.waveform_path_badge_minus, + CupertinoIcons.waveform_path_badge_plus, + CupertinoIcons.waveform_path_ecg, + CupertinoIcons.wifi, + CupertinoIcons.wifi_exclamationmark, + CupertinoIcons.wifi_slash, + CupertinoIcons.wind, + CupertinoIcons.wind_snow, + CupertinoIcons.wrench, + CupertinoIcons.wrench_fill, + CupertinoIcons.xmark, + CupertinoIcons.xmark_circle, + CupertinoIcons.xmark_circle_fill, + CupertinoIcons.xmark_octagon, + CupertinoIcons.xmark_octagon_fill, + CupertinoIcons.xmark_rectangle, + CupertinoIcons.xmark_rectangle_fill, + CupertinoIcons.xmark_seal, + CupertinoIcons.xmark_seal_fill, + CupertinoIcons.xmark_shield, + CupertinoIcons.xmark_shield_fill, + CupertinoIcons.xmark_square, + CupertinoIcons.xmark_square_fill, + CupertinoIcons.zoom_in, + CupertinoIcons.zoom_out, + CupertinoIcons.zzz, + ]; diff --git a/packages/flet/lib/src/utils/icons.dart b/packages/flet/lib/src/utils/icons.dart index 5b1643fb4c..041934d07e 100644 --- a/packages/flet/lib/src/utils/icons.dart +++ b/packages/flet/lib/src/utils/icons.dart @@ -1,35 +1,44 @@ import 'package:flutter/material.dart'; +import '../flet_backend.dart'; import '../models/control.dart'; -import 'cupertino_icons.dart'; -import 'material_icons.dart'; import 'material_state.dart'; -IconData? parseIcon(String? value, [IconData? defaultValue]) { +IconData? parseIconData(int? value, FletBackend backend, + [IconData? defaultValue]) { if (value == null) return defaultValue; - return materialIcons[value.toLowerCase()] ?? - cupertinoIcons[value.toLowerCase()]; + + for (var extension in backend.extensions) { + var iconData = extension.createIconData(value); + if (iconData != null) { + return iconData; + } + } + + return defaultValue; } -WidgetStateProperty? parseWidgetStateIcon(dynamic value, - ThemeData theme, { - Icon? defaultIcon, - WidgetStateProperty? defaultValue, - }) { +WidgetStateProperty? parseWidgetStateIcon( + dynamic value, + FletBackend backend, + ThemeData theme, { + Icon? defaultIcon, + WidgetStateProperty? defaultValue, +}) { if (value == null) return defaultValue; return getWidgetStateProperty( - value, (jv) => Icon(parseIcon(jv as String)), defaultIcon); + value, (jv) => Icon(parseIconData(jv as int, backend)), defaultIcon); } extension IconParsers on Control { - IconData? getIcon(String propertyName, [IconData? defaultValue]) { - return parseIcon(get(propertyName), defaultValue); + IconData? getIconData(String propertyName, [IconData? defaultValue]) { + return parseIconData(get(propertyName), backend, defaultValue); } WidgetStateProperty? getWidgetStateIcon( String propertyName, ThemeData theme, {Icon? defaultIcon, WidgetStateProperty? defaultValue}) { - return parseWidgetStateIcon(get(propertyName), theme, + return parseWidgetStateIcon(get(propertyName), backend, theme, defaultIcon: defaultIcon, defaultValue: defaultValue); } } diff --git a/packages/flet/lib/src/utils/material_icons.dart b/packages/flet/lib/src/utils/material_icons.dart index eb5e9e9104..61148f24e0 100644 --- a/packages/flet/lib/src/utils/material_icons.dart +++ b/packages/flet/lib/src/utils/material_icons.dart @@ -1,8913 +1,8829 @@ import 'package:flutter/material.dart'; -/* - -To generate update the list run: - -sh ci/generate_material_icons_dart.sh - -*/ - -Map materialIcons = { - "ten_k": Icons.ten_k, - "ten_k_sharp": Icons.ten_k_sharp, - "ten_k_rounded": Icons.ten_k_rounded, - "ten_k_outlined": Icons.ten_k_outlined, - "ten_mp": Icons.ten_mp, - "ten_mp_sharp": Icons.ten_mp_sharp, - "ten_mp_rounded": Icons.ten_mp_rounded, - "ten_mp_outlined": Icons.ten_mp_outlined, - "eleven_mp": Icons.eleven_mp, - "eleven_mp_sharp": Icons.eleven_mp_sharp, - "eleven_mp_rounded": Icons.eleven_mp_rounded, - "eleven_mp_outlined": Icons.eleven_mp_outlined, - "onetwothree": Icons.onetwothree, - "onetwothree_sharp": Icons.onetwothree_sharp, - "onetwothree_rounded": Icons.onetwothree_rounded, - "onetwothree_outlined": Icons.onetwothree_outlined, - "twelve_mp": Icons.twelve_mp, - "twelve_mp_sharp": Icons.twelve_mp_sharp, - "twelve_mp_rounded": Icons.twelve_mp_rounded, - "twelve_mp_outlined": Icons.twelve_mp_outlined, - "thirteen_mp": Icons.thirteen_mp, - "thirteen_mp_sharp": Icons.thirteen_mp_sharp, - "thirteen_mp_rounded": Icons.thirteen_mp_rounded, - "thirteen_mp_outlined": Icons.thirteen_mp_outlined, - "fourteen_mp": Icons.fourteen_mp, - "fourteen_mp_sharp": Icons.fourteen_mp_sharp, - "fourteen_mp_rounded": Icons.fourteen_mp_rounded, - "fourteen_mp_outlined": Icons.fourteen_mp_outlined, - "fifteen_mp": Icons.fifteen_mp, - "fifteen_mp_sharp": Icons.fifteen_mp_sharp, - "fifteen_mp_rounded": Icons.fifteen_mp_rounded, - "fifteen_mp_outlined": Icons.fifteen_mp_outlined, - "sixteen_mp": Icons.sixteen_mp, - "sixteen_mp_sharp": Icons.sixteen_mp_sharp, - "sixteen_mp_rounded": Icons.sixteen_mp_rounded, - "sixteen_mp_outlined": Icons.sixteen_mp_outlined, - "seventeen_mp": Icons.seventeen_mp, - "seventeen_mp_sharp": Icons.seventeen_mp_sharp, - "seventeen_mp_rounded": Icons.seventeen_mp_rounded, - "seventeen_mp_outlined": Icons.seventeen_mp_outlined, - "eighteen_up_rating": Icons.eighteen_up_rating, - "eighteen_up_rating_sharp": Icons.eighteen_up_rating_sharp, - "eighteen_up_rating_rounded": Icons.eighteen_up_rating_rounded, - "eighteen_up_rating_outlined": Icons.eighteen_up_rating_outlined, - "eighteen_mp": Icons.eighteen_mp, - "eighteen_mp_sharp": Icons.eighteen_mp_sharp, - "eighteen_mp_rounded": Icons.eighteen_mp_rounded, - "eighteen_mp_outlined": Icons.eighteen_mp_outlined, - "nineteen_mp": Icons.nineteen_mp, - "nineteen_mp_sharp": Icons.nineteen_mp_sharp, - "nineteen_mp_rounded": Icons.nineteen_mp_rounded, - "nineteen_mp_outlined": Icons.nineteen_mp_outlined, - "one_k": Icons.one_k, - "one_k_sharp": Icons.one_k_sharp, - "one_k_rounded": Icons.one_k_rounded, - "one_k_outlined": Icons.one_k_outlined, - "one_k_plus": Icons.one_k_plus, - "one_k_plus_sharp": Icons.one_k_plus_sharp, - "one_k_plus_rounded": Icons.one_k_plus_rounded, - "one_k_plus_outlined": Icons.one_k_plus_outlined, - "one_x_mobiledata": Icons.one_x_mobiledata, - "one_x_mobiledata_sharp": Icons.one_x_mobiledata_sharp, - "one_x_mobiledata_rounded": Icons.one_x_mobiledata_rounded, - "one_x_mobiledata_outlined": Icons.one_x_mobiledata_outlined, - "twenty_mp": Icons.twenty_mp, - "twenty_mp_sharp": Icons.twenty_mp_sharp, - "twenty_mp_rounded": Icons.twenty_mp_rounded, - "twenty_mp_outlined": Icons.twenty_mp_outlined, - "twenty_one_mp": Icons.twenty_one_mp, - "twenty_one_mp_sharp": Icons.twenty_one_mp_sharp, - "twenty_one_mp_rounded": Icons.twenty_one_mp_rounded, - "twenty_one_mp_outlined": Icons.twenty_one_mp_outlined, - "twenty_two_mp": Icons.twenty_two_mp, - "twenty_two_mp_sharp": Icons.twenty_two_mp_sharp, - "twenty_two_mp_rounded": Icons.twenty_two_mp_rounded, - "twenty_two_mp_outlined": Icons.twenty_two_mp_outlined, - "twenty_three_mp": Icons.twenty_three_mp, - "twenty_three_mp_sharp": Icons.twenty_three_mp_sharp, - "twenty_three_mp_rounded": Icons.twenty_three_mp_rounded, - "twenty_three_mp_outlined": Icons.twenty_three_mp_outlined, - "twenty_four_mp": Icons.twenty_four_mp, - "twenty_four_mp_sharp": Icons.twenty_four_mp_sharp, - "twenty_four_mp_rounded": Icons.twenty_four_mp_rounded, - "twenty_four_mp_outlined": Icons.twenty_four_mp_outlined, - "two_k": Icons.two_k, - "two_k_sharp": Icons.two_k_sharp, - "two_k_rounded": Icons.two_k_rounded, - "two_k_outlined": Icons.two_k_outlined, - "two_k_plus": Icons.two_k_plus, - "two_k_plus_sharp": Icons.two_k_plus_sharp, - "two_k_plus_rounded": Icons.two_k_plus_rounded, - "two_k_plus_outlined": Icons.two_k_plus_outlined, - "two_mp": Icons.two_mp, - "two_mp_sharp": Icons.two_mp_sharp, - "two_mp_rounded": Icons.two_mp_rounded, - "two_mp_outlined": Icons.two_mp_outlined, - "thirty_fps": Icons.thirty_fps, - "thirty_fps_sharp": Icons.thirty_fps_sharp, - "thirty_fps_rounded": Icons.thirty_fps_rounded, - "thirty_fps_outlined": Icons.thirty_fps_outlined, - "thirty_fps_select": Icons.thirty_fps_select, - "thirty_fps_select_sharp": Icons.thirty_fps_select_sharp, - "thirty_fps_select_rounded": Icons.thirty_fps_select_rounded, - "thirty_fps_select_outlined": Icons.thirty_fps_select_outlined, - "threesixty": Icons.threesixty, - "threesixty_sharp": Icons.threesixty_sharp, - "threesixty_rounded": Icons.threesixty_rounded, - "threesixty_outlined": Icons.threesixty_outlined, - "threed_rotation": Icons.threed_rotation, - "threed_rotation_sharp": Icons.threed_rotation_sharp, - "threed_rotation_rounded": Icons.threed_rotation_rounded, - "threed_rotation_outlined": Icons.threed_rotation_outlined, - "three_g_mobiledata": Icons.three_g_mobiledata, - "three_g_mobiledata_sharp": Icons.three_g_mobiledata_sharp, - "three_g_mobiledata_rounded": Icons.three_g_mobiledata_rounded, - "three_g_mobiledata_outlined": Icons.three_g_mobiledata_outlined, - "three_k": Icons.three_k, - "three_k_sharp": Icons.three_k_sharp, - "three_k_rounded": Icons.three_k_rounded, - "three_k_outlined": Icons.three_k_outlined, - "three_k_plus": Icons.three_k_plus, - "three_k_plus_sharp": Icons.three_k_plus_sharp, - "three_k_plus_rounded": Icons.three_k_plus_rounded, - "three_k_plus_outlined": Icons.three_k_plus_outlined, - "three_mp": Icons.three_mp, - "three_mp_sharp": Icons.three_mp_sharp, - "three_mp_rounded": Icons.three_mp_rounded, - "three_mp_outlined": Icons.three_mp_outlined, - "three_p": Icons.three_p, - "three_p_sharp": Icons.three_p_sharp, - "three_p_rounded": Icons.three_p_rounded, - "three_p_outlined": Icons.three_p_outlined, - "four_g_mobiledata": Icons.four_g_mobiledata, - "four_g_mobiledata_sharp": Icons.four_g_mobiledata_sharp, - "four_g_mobiledata_rounded": Icons.four_g_mobiledata_rounded, - "four_g_mobiledata_outlined": Icons.four_g_mobiledata_outlined, - "four_g_plus_mobiledata": Icons.four_g_plus_mobiledata, - "four_g_plus_mobiledata_sharp": Icons.four_g_plus_mobiledata_sharp, - "four_g_plus_mobiledata_rounded": Icons.four_g_plus_mobiledata_rounded, - "four_g_plus_mobiledata_outlined": Icons.four_g_plus_mobiledata_outlined, - "four_k": Icons.four_k, - "four_k_sharp": Icons.four_k_sharp, - "four_k_rounded": Icons.four_k_rounded, - "four_k_outlined": Icons.four_k_outlined, - "four_k_plus": Icons.four_k_plus, - "four_k_plus_sharp": Icons.four_k_plus_sharp, - "four_k_plus_rounded": Icons.four_k_plus_rounded, - "four_k_plus_outlined": Icons.four_k_plus_outlined, - "four_mp": Icons.four_mp, - "four_mp_sharp": Icons.four_mp_sharp, - "four_mp_rounded": Icons.four_mp_rounded, - "four_mp_outlined": Icons.four_mp_outlined, - "five_g": Icons.five_g, - "five_g_sharp": Icons.five_g_sharp, - "five_g_rounded": Icons.five_g_rounded, - "five_g_outlined": Icons.five_g_outlined, - "five_k": Icons.five_k, - "five_k_sharp": Icons.five_k_sharp, - "five_k_rounded": Icons.five_k_rounded, - "five_k_outlined": Icons.five_k_outlined, - "five_k_plus": Icons.five_k_plus, - "five_k_plus_sharp": Icons.five_k_plus_sharp, - "five_k_plus_rounded": Icons.five_k_plus_rounded, - "five_k_plus_outlined": Icons.five_k_plus_outlined, - "five_mp": Icons.five_mp, - "five_mp_sharp": Icons.five_mp_sharp, - "five_mp_rounded": Icons.five_mp_rounded, - "five_mp_outlined": Icons.five_mp_outlined, - "sixty_fps": Icons.sixty_fps, - "sixty_fps_sharp": Icons.sixty_fps_sharp, - "sixty_fps_rounded": Icons.sixty_fps_rounded, - "sixty_fps_outlined": Icons.sixty_fps_outlined, - "sixty_fps_select": Icons.sixty_fps_select, - "sixty_fps_select_sharp": Icons.sixty_fps_select_sharp, - "sixty_fps_select_rounded": Icons.sixty_fps_select_rounded, - "sixty_fps_select_outlined": Icons.sixty_fps_select_outlined, - "six_ft_apart": Icons.six_ft_apart, - "six_ft_apart_sharp": Icons.six_ft_apart_sharp, - "six_ft_apart_rounded": Icons.six_ft_apart_rounded, - "six_ft_apart_outlined": Icons.six_ft_apart_outlined, - "six_k": Icons.six_k, - "six_k_sharp": Icons.six_k_sharp, - "six_k_rounded": Icons.six_k_rounded, - "six_k_outlined": Icons.six_k_outlined, - "six_k_plus": Icons.six_k_plus, - "six_k_plus_sharp": Icons.six_k_plus_sharp, - "six_k_plus_rounded": Icons.six_k_plus_rounded, - "six_k_plus_outlined": Icons.six_k_plus_outlined, - "six_mp": Icons.six_mp, - "six_mp_sharp": Icons.six_mp_sharp, - "six_mp_rounded": Icons.six_mp_rounded, - "six_mp_outlined": Icons.six_mp_outlined, - "seven_k": Icons.seven_k, - "seven_k_sharp": Icons.seven_k_sharp, - "seven_k_rounded": Icons.seven_k_rounded, - "seven_k_outlined": Icons.seven_k_outlined, - "seven_k_plus": Icons.seven_k_plus, - "seven_k_plus_sharp": Icons.seven_k_plus_sharp, - "seven_k_plus_rounded": Icons.seven_k_plus_rounded, - "seven_k_plus_outlined": Icons.seven_k_plus_outlined, - "seven_mp": Icons.seven_mp, - "seven_mp_sharp": Icons.seven_mp_sharp, - "seven_mp_rounded": Icons.seven_mp_rounded, - "seven_mp_outlined": Icons.seven_mp_outlined, - "eight_k": Icons.eight_k, - "eight_k_sharp": Icons.eight_k_sharp, - "eight_k_rounded": Icons.eight_k_rounded, - "eight_k_outlined": Icons.eight_k_outlined, - "eight_k_plus": Icons.eight_k_plus, - "eight_k_plus_sharp": Icons.eight_k_plus_sharp, - "eight_k_plus_rounded": Icons.eight_k_plus_rounded, - "eight_k_plus_outlined": Icons.eight_k_plus_outlined, - "eight_mp": Icons.eight_mp, - "eight_mp_sharp": Icons.eight_mp_sharp, - "eight_mp_rounded": Icons.eight_mp_rounded, - "eight_mp_outlined": Icons.eight_mp_outlined, - "nine_k": Icons.nine_k, - "nine_k_sharp": Icons.nine_k_sharp, - "nine_k_rounded": Icons.nine_k_rounded, - "nine_k_outlined": Icons.nine_k_outlined, - "nine_k_plus": Icons.nine_k_plus, - "nine_k_plus_sharp": Icons.nine_k_plus_sharp, - "nine_k_plus_rounded": Icons.nine_k_plus_rounded, - "nine_k_plus_outlined": Icons.nine_k_plus_outlined, - "nine_mp": Icons.nine_mp, - "nine_mp_sharp": Icons.nine_mp_sharp, - "nine_mp_rounded": Icons.nine_mp_rounded, - "nine_mp_outlined": Icons.nine_mp_outlined, - "abc": Icons.abc, - "abc_sharp": Icons.abc_sharp, - "abc_rounded": Icons.abc_rounded, - "abc_outlined": Icons.abc_outlined, - "ac_unit": Icons.ac_unit, - "ac_unit_sharp": Icons.ac_unit_sharp, - "ac_unit_rounded": Icons.ac_unit_rounded, - "ac_unit_outlined": Icons.ac_unit_outlined, - "access_alarm": Icons.access_alarm, - "access_alarm_sharp": Icons.access_alarm_sharp, - "access_alarm_rounded": Icons.access_alarm_rounded, - "access_alarm_outlined": Icons.access_alarm_outlined, - "access_alarms": Icons.access_alarms, - "access_alarms_sharp": Icons.access_alarms_sharp, - "access_alarms_rounded": Icons.access_alarms_rounded, - "access_alarms_outlined": Icons.access_alarms_outlined, - "access_time": Icons.access_time, - "access_time_sharp": Icons.access_time_sharp, - "access_time_rounded": Icons.access_time_rounded, - "access_time_outlined": Icons.access_time_outlined, - "access_time_filled": Icons.access_time_filled, - "access_time_filled_sharp": Icons.access_time_filled_sharp, - "access_time_filled_rounded": Icons.access_time_filled_rounded, - "access_time_filled_outlined": Icons.access_time_filled_outlined, - "accessibility": Icons.accessibility, - "accessibility_sharp": Icons.accessibility_sharp, - "accessibility_rounded": Icons.accessibility_rounded, - "accessibility_outlined": Icons.accessibility_outlined, - "accessibility_new": Icons.accessibility_new, - "accessibility_new_sharp": Icons.accessibility_new_sharp, - "accessibility_new_rounded": Icons.accessibility_new_rounded, - "accessibility_new_outlined": Icons.accessibility_new_outlined, - "accessible": Icons.accessible, - "accessible_sharp": Icons.accessible_sharp, - "accessible_rounded": Icons.accessible_rounded, - "accessible_outlined": Icons.accessible_outlined, - "accessible_forward": Icons.accessible_forward, - "accessible_forward_sharp": Icons.accessible_forward_sharp, - "accessible_forward_rounded": Icons.accessible_forward_rounded, - "accessible_forward_outlined": Icons.accessible_forward_outlined, - "account_balance": Icons.account_balance, - "account_balance_sharp": Icons.account_balance_sharp, - "account_balance_rounded": Icons.account_balance_rounded, - "account_balance_outlined": Icons.account_balance_outlined, - "account_balance_wallet": Icons.account_balance_wallet, - "account_balance_wallet_sharp": Icons.account_balance_wallet_sharp, - "account_balance_wallet_rounded": Icons.account_balance_wallet_rounded, - "account_balance_wallet_outlined": Icons.account_balance_wallet_outlined, - "account_box": Icons.account_box, - "account_box_sharp": Icons.account_box_sharp, - "account_box_rounded": Icons.account_box_rounded, - "account_box_outlined": Icons.account_box_outlined, - "account_circle": Icons.account_circle, - "account_circle_sharp": Icons.account_circle_sharp, - "account_circle_rounded": Icons.account_circle_rounded, - "account_circle_outlined": Icons.account_circle_outlined, - "account_tree": Icons.account_tree, - "account_tree_sharp": Icons.account_tree_sharp, - "account_tree_rounded": Icons.account_tree_rounded, - "account_tree_outlined": Icons.account_tree_outlined, - "ad_units": Icons.ad_units, - "ad_units_sharp": Icons.ad_units_sharp, - "ad_units_rounded": Icons.ad_units_rounded, - "ad_units_outlined": Icons.ad_units_outlined, - "adb": Icons.adb, - "adb_sharp": Icons.adb_sharp, - "adb_rounded": Icons.adb_rounded, - "adb_outlined": Icons.adb_outlined, - "add": Icons.add, - "add_sharp": Icons.add_sharp, - "add_rounded": Icons.add_rounded, - "add_outlined": Icons.add_outlined, - "add_a_photo": Icons.add_a_photo, - "add_a_photo_sharp": Icons.add_a_photo_sharp, - "add_a_photo_rounded": Icons.add_a_photo_rounded, - "add_a_photo_outlined": Icons.add_a_photo_outlined, - "add_alarm": Icons.add_alarm, - "add_alarm_sharp": Icons.add_alarm_sharp, - "add_alarm_rounded": Icons.add_alarm_rounded, - "add_alarm_outlined": Icons.add_alarm_outlined, - "add_alert": Icons.add_alert, - "add_alert_sharp": Icons.add_alert_sharp, - "add_alert_rounded": Icons.add_alert_rounded, - "add_alert_outlined": Icons.add_alert_outlined, - "add_box": Icons.add_box, - "add_box_sharp": Icons.add_box_sharp, - "add_box_rounded": Icons.add_box_rounded, - "add_box_outlined": Icons.add_box_outlined, - "add_business": Icons.add_business, - "add_business_sharp": Icons.add_business_sharp, - "add_business_rounded": Icons.add_business_rounded, - "add_business_outlined": Icons.add_business_outlined, - "add_call": Icons.add_call, - "add_card": Icons.add_card, - "add_card_sharp": Icons.add_card_sharp, - "add_card_rounded": Icons.add_card_rounded, - "add_card_outlined": Icons.add_card_outlined, - "add_chart": Icons.add_chart, - "add_chart_sharp": Icons.add_chart_sharp, - "add_chart_rounded": Icons.add_chart_rounded, - "add_chart_outlined": Icons.add_chart_outlined, - "add_circle": Icons.add_circle, - "add_circle_sharp": Icons.add_circle_sharp, - "add_circle_rounded": Icons.add_circle_rounded, - "add_circle_outlined": Icons.add_circle_outlined, - "add_circle_outline": Icons.add_circle_outline, - "add_circle_outline_sharp": Icons.add_circle_outline_sharp, - "add_circle_outline_rounded": Icons.add_circle_outline_rounded, - "add_circle_outline_outlined": Icons.add_circle_outline_outlined, - "add_comment": Icons.add_comment, - "add_comment_sharp": Icons.add_comment_sharp, - "add_comment_rounded": Icons.add_comment_rounded, - "add_comment_outlined": Icons.add_comment_outlined, - "add_home": Icons.add_home, - "add_home_sharp": Icons.add_home_sharp, - "add_home_rounded": Icons.add_home_rounded, - "add_home_outlined": Icons.add_home_outlined, - "add_home_work": Icons.add_home_work, - "add_home_work_sharp": Icons.add_home_work_sharp, - "add_home_work_rounded": Icons.add_home_work_rounded, - "add_home_work_outlined": Icons.add_home_work_outlined, - "add_ic_call": Icons.add_ic_call, - "add_ic_call_sharp": Icons.add_ic_call_sharp, - "add_ic_call_rounded": Icons.add_ic_call_rounded, - "add_ic_call_outlined": Icons.add_ic_call_outlined, - "add_link": Icons.add_link, - "add_link_sharp": Icons.add_link_sharp, - "add_link_rounded": Icons.add_link_rounded, - "add_link_outlined": Icons.add_link_outlined, - "add_location": Icons.add_location, - "add_location_sharp": Icons.add_location_sharp, - "add_location_rounded": Icons.add_location_rounded, - "add_location_outlined": Icons.add_location_outlined, - "add_location_alt": Icons.add_location_alt, - "add_location_alt_sharp": Icons.add_location_alt_sharp, - "add_location_alt_rounded": Icons.add_location_alt_rounded, - "add_location_alt_outlined": Icons.add_location_alt_outlined, - "add_moderator": Icons.add_moderator, - "add_moderator_sharp": Icons.add_moderator_sharp, - "add_moderator_rounded": Icons.add_moderator_rounded, - "add_moderator_outlined": Icons.add_moderator_outlined, - "add_photo_alternate": Icons.add_photo_alternate, - "add_photo_alternate_sharp": Icons.add_photo_alternate_sharp, - "add_photo_alternate_rounded": Icons.add_photo_alternate_rounded, - "add_photo_alternate_outlined": Icons.add_photo_alternate_outlined, - "add_reaction": Icons.add_reaction, - "add_reaction_sharp": Icons.add_reaction_sharp, - "add_reaction_rounded": Icons.add_reaction_rounded, - "add_reaction_outlined": Icons.add_reaction_outlined, - "add_road": Icons.add_road, - "add_road_sharp": Icons.add_road_sharp, - "add_road_rounded": Icons.add_road_rounded, - "add_road_outlined": Icons.add_road_outlined, - "add_shopping_cart": Icons.add_shopping_cart, - "add_shopping_cart_sharp": Icons.add_shopping_cart_sharp, - "add_shopping_cart_rounded": Icons.add_shopping_cart_rounded, - "add_shopping_cart_outlined": Icons.add_shopping_cart_outlined, - "add_task": Icons.add_task, - "add_task_sharp": Icons.add_task_sharp, - "add_task_rounded": Icons.add_task_rounded, - "add_task_outlined": Icons.add_task_outlined, - "add_to_drive": Icons.add_to_drive, - "add_to_drive_sharp": Icons.add_to_drive_sharp, - "add_to_drive_rounded": Icons.add_to_drive_rounded, - "add_to_drive_outlined": Icons.add_to_drive_outlined, - "add_to_home_screen": Icons.add_to_home_screen, - "add_to_home_screen_sharp": Icons.add_to_home_screen_sharp, - "add_to_home_screen_rounded": Icons.add_to_home_screen_rounded, - "add_to_home_screen_outlined": Icons.add_to_home_screen_outlined, - "add_to_photos": Icons.add_to_photos, - "add_to_photos_sharp": Icons.add_to_photos_sharp, - "add_to_photos_rounded": Icons.add_to_photos_rounded, - "add_to_photos_outlined": Icons.add_to_photos_outlined, - "add_to_queue": Icons.add_to_queue, - "add_to_queue_sharp": Icons.add_to_queue_sharp, - "add_to_queue_rounded": Icons.add_to_queue_rounded, - "add_to_queue_outlined": Icons.add_to_queue_outlined, - "addchart": Icons.addchart, - "addchart_sharp": Icons.addchart_sharp, - "addchart_rounded": Icons.addchart_rounded, - "addchart_outlined": Icons.addchart_outlined, - "adf_scanner": Icons.adf_scanner, - "adf_scanner_sharp": Icons.adf_scanner_sharp, - "adf_scanner_rounded": Icons.adf_scanner_rounded, - "adf_scanner_outlined": Icons.adf_scanner_outlined, - "adjust": Icons.adjust, - "adjust_sharp": Icons.adjust_sharp, - "adjust_rounded": Icons.adjust_rounded, - "adjust_outlined": Icons.adjust_outlined, - "admin_panel_settings": Icons.admin_panel_settings, - "admin_panel_settings_sharp": Icons.admin_panel_settings_sharp, - "admin_panel_settings_rounded": Icons.admin_panel_settings_rounded, - "admin_panel_settings_outlined": Icons.admin_panel_settings_outlined, - "adobe": Icons.adobe, - "adobe_sharp": Icons.adobe_sharp, - "adobe_rounded": Icons.adobe_rounded, - "adobe_outlined": Icons.adobe_outlined, - "ads_click": Icons.ads_click, - "ads_click_sharp": Icons.ads_click_sharp, - "ads_click_rounded": Icons.ads_click_rounded, - "ads_click_outlined": Icons.ads_click_outlined, - "agriculture": Icons.agriculture, - "agriculture_sharp": Icons.agriculture_sharp, - "agriculture_rounded": Icons.agriculture_rounded, - "agriculture_outlined": Icons.agriculture_outlined, - "air": Icons.air, - "air_sharp": Icons.air_sharp, - "air_rounded": Icons.air_rounded, - "air_outlined": Icons.air_outlined, - "airline_seat_flat": Icons.airline_seat_flat, - "airline_seat_flat_sharp": Icons.airline_seat_flat_sharp, - "airline_seat_flat_rounded": Icons.airline_seat_flat_rounded, - "airline_seat_flat_outlined": Icons.airline_seat_flat_outlined, - "airline_seat_flat_angled": Icons.airline_seat_flat_angled, - "airline_seat_flat_angled_sharp": Icons.airline_seat_flat_angled_sharp, - "airline_seat_flat_angled_rounded": Icons.airline_seat_flat_angled_rounded, - "airline_seat_flat_angled_outlined": Icons.airline_seat_flat_angled_outlined, - "airline_seat_individual_suite": Icons.airline_seat_individual_suite, - "airline_seat_individual_suite_sharp": - Icons.airline_seat_individual_suite_sharp, - "airline_seat_individual_suite_rounded": - Icons.airline_seat_individual_suite_rounded, - "airline_seat_individual_suite_outlined": - Icons.airline_seat_individual_suite_outlined, - "airline_seat_legroom_extra": Icons.airline_seat_legroom_extra, - "airline_seat_legroom_extra_sharp": Icons.airline_seat_legroom_extra_sharp, - "airline_seat_legroom_extra_rounded": - Icons.airline_seat_legroom_extra_rounded, - "airline_seat_legroom_extra_outlined": - Icons.airline_seat_legroom_extra_outlined, - "airline_seat_legroom_normal": Icons.airline_seat_legroom_normal, - "airline_seat_legroom_normal_sharp": Icons.airline_seat_legroom_normal_sharp, - "airline_seat_legroom_normal_rounded": - Icons.airline_seat_legroom_normal_rounded, - "airline_seat_legroom_normal_outlined": - Icons.airline_seat_legroom_normal_outlined, - "airline_seat_legroom_reduced": Icons.airline_seat_legroom_reduced, - "airline_seat_legroom_reduced_sharp": - Icons.airline_seat_legroom_reduced_sharp, - "airline_seat_legroom_reduced_rounded": - Icons.airline_seat_legroom_reduced_rounded, - "airline_seat_legroom_reduced_outlined": - Icons.airline_seat_legroom_reduced_outlined, - "airline_seat_recline_extra": Icons.airline_seat_recline_extra, - "airline_seat_recline_extra_sharp": Icons.airline_seat_recline_extra_sharp, - "airline_seat_recline_extra_rounded": - Icons.airline_seat_recline_extra_rounded, - "airline_seat_recline_extra_outlined": - Icons.airline_seat_recline_extra_outlined, - "airline_seat_recline_normal": Icons.airline_seat_recline_normal, - "airline_seat_recline_normal_sharp": Icons.airline_seat_recline_normal_sharp, - "airline_seat_recline_normal_rounded": - Icons.airline_seat_recline_normal_rounded, - "airline_seat_recline_normal_outlined": - Icons.airline_seat_recline_normal_outlined, - "airline_stops": Icons.airline_stops, - "airline_stops_sharp": Icons.airline_stops_sharp, - "airline_stops_rounded": Icons.airline_stops_rounded, - "airline_stops_outlined": Icons.airline_stops_outlined, - "airlines": Icons.airlines, - "airlines_sharp": Icons.airlines_sharp, - "airlines_rounded": Icons.airlines_rounded, - "airlines_outlined": Icons.airlines_outlined, - "airplane_ticket": Icons.airplane_ticket, - "airplane_ticket_sharp": Icons.airplane_ticket_sharp, - "airplane_ticket_rounded": Icons.airplane_ticket_rounded, - "airplane_ticket_outlined": Icons.airplane_ticket_outlined, - "airplanemode_active": Icons.airplanemode_active, - "airplanemode_active_sharp": Icons.airplanemode_active_sharp, - "airplanemode_active_rounded": Icons.airplanemode_active_rounded, - "airplanemode_active_outlined": Icons.airplanemode_active_outlined, - "airplanemode_inactive": Icons.airplanemode_inactive, - "airplanemode_inactive_sharp": Icons.airplanemode_inactive_sharp, - "airplanemode_inactive_rounded": Icons.airplanemode_inactive_rounded, - "airplanemode_inactive_outlined": Icons.airplanemode_inactive_outlined, - "airplanemode_off": Icons.airplanemode_off, - "airplanemode_off_sharp": Icons.airplanemode_off_sharp, - "airplanemode_off_rounded": Icons.airplanemode_off_rounded, - "airplanemode_off_outlined": Icons.airplanemode_off_outlined, - "airplanemode_on": Icons.airplanemode_on, - "airplanemode_on_sharp": Icons.airplanemode_on_sharp, - "airplanemode_on_rounded": Icons.airplanemode_on_rounded, - "airplanemode_on_outlined": Icons.airplanemode_on_outlined, - "airplay": Icons.airplay, - "airplay_sharp": Icons.airplay_sharp, - "airplay_rounded": Icons.airplay_rounded, - "airplay_outlined": Icons.airplay_outlined, - "airport_shuttle": Icons.airport_shuttle, - "airport_shuttle_sharp": Icons.airport_shuttle_sharp, - "airport_shuttle_rounded": Icons.airport_shuttle_rounded, - "airport_shuttle_outlined": Icons.airport_shuttle_outlined, - "alarm": Icons.alarm, - "alarm_sharp": Icons.alarm_sharp, - "alarm_rounded": Icons.alarm_rounded, - "alarm_outlined": Icons.alarm_outlined, - "alarm_add": Icons.alarm_add, - "alarm_add_sharp": Icons.alarm_add_sharp, - "alarm_add_rounded": Icons.alarm_add_rounded, - "alarm_add_outlined": Icons.alarm_add_outlined, - "alarm_off": Icons.alarm_off, - "alarm_off_sharp": Icons.alarm_off_sharp, - "alarm_off_rounded": Icons.alarm_off_rounded, - "alarm_off_outlined": Icons.alarm_off_outlined, - "alarm_on": Icons.alarm_on, - "alarm_on_sharp": Icons.alarm_on_sharp, - "alarm_on_rounded": Icons.alarm_on_rounded, - "alarm_on_outlined": Icons.alarm_on_outlined, - "album": Icons.album, - "album_sharp": Icons.album_sharp, - "album_rounded": Icons.album_rounded, - "album_outlined": Icons.album_outlined, - "align_horizontal_center": Icons.align_horizontal_center, - "align_horizontal_center_sharp": Icons.align_horizontal_center_sharp, - "align_horizontal_center_rounded": Icons.align_horizontal_center_rounded, - "align_horizontal_center_outlined": Icons.align_horizontal_center_outlined, - "align_horizontal_left": Icons.align_horizontal_left, - "align_horizontal_left_sharp": Icons.align_horizontal_left_sharp, - "align_horizontal_left_rounded": Icons.align_horizontal_left_rounded, - "align_horizontal_left_outlined": Icons.align_horizontal_left_outlined, - "align_horizontal_right": Icons.align_horizontal_right, - "align_horizontal_right_sharp": Icons.align_horizontal_right_sharp, - "align_horizontal_right_rounded": Icons.align_horizontal_right_rounded, - "align_horizontal_right_outlined": Icons.align_horizontal_right_outlined, - "align_vertical_bottom": Icons.align_vertical_bottom, - "align_vertical_bottom_sharp": Icons.align_vertical_bottom_sharp, - "align_vertical_bottom_rounded": Icons.align_vertical_bottom_rounded, - "align_vertical_bottom_outlined": Icons.align_vertical_bottom_outlined, - "align_vertical_center": Icons.align_vertical_center, - "align_vertical_center_sharp": Icons.align_vertical_center_sharp, - "align_vertical_center_rounded": Icons.align_vertical_center_rounded, - "align_vertical_center_outlined": Icons.align_vertical_center_outlined, - "align_vertical_top": Icons.align_vertical_top, - "align_vertical_top_sharp": Icons.align_vertical_top_sharp, - "align_vertical_top_rounded": Icons.align_vertical_top_rounded, - "align_vertical_top_outlined": Icons.align_vertical_top_outlined, - "all_inbox": Icons.all_inbox, - "all_inbox_sharp": Icons.all_inbox_sharp, - "all_inbox_rounded": Icons.all_inbox_rounded, - "all_inbox_outlined": Icons.all_inbox_outlined, - "all_inclusive": Icons.all_inclusive, - "all_inclusive_sharp": Icons.all_inclusive_sharp, - "all_inclusive_rounded": Icons.all_inclusive_rounded, - "all_inclusive_outlined": Icons.all_inclusive_outlined, - "all_out": Icons.all_out, - "all_out_sharp": Icons.all_out_sharp, - "all_out_rounded": Icons.all_out_rounded, - "all_out_outlined": Icons.all_out_outlined, - "alt_route": Icons.alt_route, - "alt_route_sharp": Icons.alt_route_sharp, - "alt_route_rounded": Icons.alt_route_rounded, - "alt_route_outlined": Icons.alt_route_outlined, - "alternate_email": Icons.alternate_email, - "alternate_email_sharp": Icons.alternate_email_sharp, - "alternate_email_rounded": Icons.alternate_email_rounded, - "alternate_email_outlined": Icons.alternate_email_outlined, - "amp_stories": Icons.amp_stories, - "amp_stories_sharp": Icons.amp_stories_sharp, - "amp_stories_rounded": Icons.amp_stories_rounded, - "amp_stories_outlined": Icons.amp_stories_outlined, - "analytics": Icons.analytics, - "analytics_sharp": Icons.analytics_sharp, - "analytics_rounded": Icons.analytics_rounded, - "analytics_outlined": Icons.analytics_outlined, - "anchor": Icons.anchor, - "anchor_sharp": Icons.anchor_sharp, - "anchor_rounded": Icons.anchor_rounded, - "anchor_outlined": Icons.anchor_outlined, - "android": Icons.android, - "android_sharp": Icons.android_sharp, - "android_rounded": Icons.android_rounded, - "android_outlined": Icons.android_outlined, - "animation": Icons.animation, - "animation_sharp": Icons.animation_sharp, - "animation_rounded": Icons.animation_rounded, - "animation_outlined": Icons.animation_outlined, - "announcement": Icons.announcement, - "announcement_sharp": Icons.announcement_sharp, - "announcement_rounded": Icons.announcement_rounded, - "announcement_outlined": Icons.announcement_outlined, - "aod": Icons.aod, - "aod_sharp": Icons.aod_sharp, - "aod_rounded": Icons.aod_rounded, - "aod_outlined": Icons.aod_outlined, - "apartment": Icons.apartment, - "apartment_sharp": Icons.apartment_sharp, - "apartment_rounded": Icons.apartment_rounded, - "apartment_outlined": Icons.apartment_outlined, - "api": Icons.api, - "api_sharp": Icons.api_sharp, - "api_rounded": Icons.api_rounded, - "api_outlined": Icons.api_outlined, - "app_blocking": Icons.app_blocking, - "app_blocking_sharp": Icons.app_blocking_sharp, - "app_blocking_rounded": Icons.app_blocking_rounded, - "app_blocking_outlined": Icons.app_blocking_outlined, - "app_registration": Icons.app_registration, - "app_registration_sharp": Icons.app_registration_sharp, - "app_registration_rounded": Icons.app_registration_rounded, - "app_registration_outlined": Icons.app_registration_outlined, - "app_settings_alt": Icons.app_settings_alt, - "app_settings_alt_sharp": Icons.app_settings_alt_sharp, - "app_settings_alt_rounded": Icons.app_settings_alt_rounded, - "app_settings_alt_outlined": Icons.app_settings_alt_outlined, - "app_shortcut": Icons.app_shortcut, - "app_shortcut_sharp": Icons.app_shortcut_sharp, - "app_shortcut_rounded": Icons.app_shortcut_rounded, - "app_shortcut_outlined": Icons.app_shortcut_outlined, - "apple": Icons.apple, - "apple_sharp": Icons.apple_sharp, - "apple_rounded": Icons.apple_rounded, - "apple_outlined": Icons.apple_outlined, - "approval": Icons.approval, - "approval_sharp": Icons.approval_sharp, - "approval_rounded": Icons.approval_rounded, - "approval_outlined": Icons.approval_outlined, - "apps": Icons.apps, - "apps_sharp": Icons.apps_sharp, - "apps_rounded": Icons.apps_rounded, - "apps_outlined": Icons.apps_outlined, - "apps_outage": Icons.apps_outage, - "apps_outage_sharp": Icons.apps_outage_sharp, - "apps_outage_rounded": Icons.apps_outage_rounded, - "apps_outage_outlined": Icons.apps_outage_outlined, - "architecture": Icons.architecture, - "architecture_sharp": Icons.architecture_sharp, - "architecture_rounded": Icons.architecture_rounded, - "architecture_outlined": Icons.architecture_outlined, - "archive": Icons.archive, - "archive_sharp": Icons.archive_sharp, - "archive_rounded": Icons.archive_rounded, - "archive_outlined": Icons.archive_outlined, - "area_chart": Icons.area_chart, - "area_chart_sharp": Icons.area_chart_sharp, - "area_chart_rounded": Icons.area_chart_rounded, - "area_chart_outlined": Icons.area_chart_outlined, - "arrow_back": Icons.arrow_back, - "arrow_back_sharp": Icons.arrow_back_sharp, - "arrow_back_rounded": Icons.arrow_back_rounded, - "arrow_back_outlined": Icons.arrow_back_outlined, - "arrow_back_ios": Icons.arrow_back_ios, - "arrow_back_ios_sharp": Icons.arrow_back_ios_sharp, - "arrow_back_ios_rounded": Icons.arrow_back_ios_rounded, - "arrow_back_ios_outlined": Icons.arrow_back_ios_outlined, - "arrow_back_ios_new": Icons.arrow_back_ios_new, - "arrow_back_ios_new_sharp": Icons.arrow_back_ios_new_sharp, - "arrow_back_ios_new_rounded": Icons.arrow_back_ios_new_rounded, - "arrow_back_ios_new_outlined": Icons.arrow_back_ios_new_outlined, - "arrow_circle_down": Icons.arrow_circle_down, - "arrow_circle_down_sharp": Icons.arrow_circle_down_sharp, - "arrow_circle_down_rounded": Icons.arrow_circle_down_rounded, - "arrow_circle_down_outlined": Icons.arrow_circle_down_outlined, - "arrow_circle_left": Icons.arrow_circle_left, - "arrow_circle_left_sharp": Icons.arrow_circle_left_sharp, - "arrow_circle_left_rounded": Icons.arrow_circle_left_rounded, - "arrow_circle_left_outlined": Icons.arrow_circle_left_outlined, - "arrow_circle_right": Icons.arrow_circle_right, - "arrow_circle_right_sharp": Icons.arrow_circle_right_sharp, - "arrow_circle_right_rounded": Icons.arrow_circle_right_rounded, - "arrow_circle_right_outlined": Icons.arrow_circle_right_outlined, - "arrow_circle_up": Icons.arrow_circle_up, - "arrow_circle_up_sharp": Icons.arrow_circle_up_sharp, - "arrow_circle_up_rounded": Icons.arrow_circle_up_rounded, - "arrow_circle_up_outlined": Icons.arrow_circle_up_outlined, - "arrow_downward": Icons.arrow_downward, - "arrow_downward_sharp": Icons.arrow_downward_sharp, - "arrow_downward_rounded": Icons.arrow_downward_rounded, - "arrow_downward_outlined": Icons.arrow_downward_outlined, - "arrow_drop_down": Icons.arrow_drop_down, - "arrow_drop_down_sharp": Icons.arrow_drop_down_sharp, - "arrow_drop_down_rounded": Icons.arrow_drop_down_rounded, - "arrow_drop_down_outlined": Icons.arrow_drop_down_outlined, - "arrow_drop_down_circle": Icons.arrow_drop_down_circle, - "arrow_drop_down_circle_sharp": Icons.arrow_drop_down_circle_sharp, - "arrow_drop_down_circle_rounded": Icons.arrow_drop_down_circle_rounded, - "arrow_drop_down_circle_outlined": Icons.arrow_drop_down_circle_outlined, - "arrow_drop_up": Icons.arrow_drop_up, - "arrow_drop_up_sharp": Icons.arrow_drop_up_sharp, - "arrow_drop_up_rounded": Icons.arrow_drop_up_rounded, - "arrow_drop_up_outlined": Icons.arrow_drop_up_outlined, - "arrow_forward": Icons.arrow_forward, - "arrow_forward_sharp": Icons.arrow_forward_sharp, - "arrow_forward_rounded": Icons.arrow_forward_rounded, - "arrow_forward_outlined": Icons.arrow_forward_outlined, - "arrow_forward_ios": Icons.arrow_forward_ios, - "arrow_forward_ios_sharp": Icons.arrow_forward_ios_sharp, - "arrow_forward_ios_rounded": Icons.arrow_forward_ios_rounded, - "arrow_forward_ios_outlined": Icons.arrow_forward_ios_outlined, - "arrow_left": Icons.arrow_left, - "arrow_left_sharp": Icons.arrow_left_sharp, - "arrow_left_rounded": Icons.arrow_left_rounded, - "arrow_left_outlined": Icons.arrow_left_outlined, - "arrow_outward": Icons.arrow_outward, - "arrow_outward_sharp": Icons.arrow_outward_sharp, - "arrow_outward_rounded": Icons.arrow_outward_rounded, - "arrow_outward_outlined": Icons.arrow_outward_outlined, - "arrow_right": Icons.arrow_right, - "arrow_right_sharp": Icons.arrow_right_sharp, - "arrow_right_rounded": Icons.arrow_right_rounded, - "arrow_right_outlined": Icons.arrow_right_outlined, - "arrow_right_alt": Icons.arrow_right_alt, - "arrow_right_alt_sharp": Icons.arrow_right_alt_sharp, - "arrow_right_alt_rounded": Icons.arrow_right_alt_rounded, - "arrow_right_alt_outlined": Icons.arrow_right_alt_outlined, - "arrow_upward": Icons.arrow_upward, - "arrow_upward_sharp": Icons.arrow_upward_sharp, - "arrow_upward_rounded": Icons.arrow_upward_rounded, - "arrow_upward_outlined": Icons.arrow_upward_outlined, - "art_track": Icons.art_track, - "art_track_sharp": Icons.art_track_sharp, - "art_track_rounded": Icons.art_track_rounded, - "art_track_outlined": Icons.art_track_outlined, - "article": Icons.article, - "article_sharp": Icons.article_sharp, - "article_rounded": Icons.article_rounded, - "article_outlined": Icons.article_outlined, - "aspect_ratio": Icons.aspect_ratio, - "aspect_ratio_sharp": Icons.aspect_ratio_sharp, - "aspect_ratio_rounded": Icons.aspect_ratio_rounded, - "aspect_ratio_outlined": Icons.aspect_ratio_outlined, - "assessment": Icons.assessment, - "assessment_sharp": Icons.assessment_sharp, - "assessment_rounded": Icons.assessment_rounded, - "assessment_outlined": Icons.assessment_outlined, - "assignment": Icons.assignment, - "assignment_sharp": Icons.assignment_sharp, - "assignment_rounded": Icons.assignment_rounded, - "assignment_outlined": Icons.assignment_outlined, - "assignment_add": Icons.assignment_add, - "assignment_ind": Icons.assignment_ind, - "assignment_ind_sharp": Icons.assignment_ind_sharp, - "assignment_ind_rounded": Icons.assignment_ind_rounded, - "assignment_ind_outlined": Icons.assignment_ind_outlined, - "assignment_late": Icons.assignment_late, - "assignment_late_sharp": Icons.assignment_late_sharp, - "assignment_late_rounded": Icons.assignment_late_rounded, - "assignment_late_outlined": Icons.assignment_late_outlined, - "assignment_return": Icons.assignment_return, - "assignment_return_sharp": Icons.assignment_return_sharp, - "assignment_return_rounded": Icons.assignment_return_rounded, - "assignment_return_outlined": Icons.assignment_return_outlined, - "assignment_returned": Icons.assignment_returned, - "assignment_returned_sharp": Icons.assignment_returned_sharp, - "assignment_returned_rounded": Icons.assignment_returned_rounded, - "assignment_returned_outlined": Icons.assignment_returned_outlined, - "assignment_turned_in": Icons.assignment_turned_in, - "assignment_turned_in_sharp": Icons.assignment_turned_in_sharp, - "assignment_turned_in_rounded": Icons.assignment_turned_in_rounded, - "assignment_turned_in_outlined": Icons.assignment_turned_in_outlined, - "assist_walker": Icons.assist_walker, - "assist_walker_sharp": Icons.assist_walker_sharp, - "assist_walker_rounded": Icons.assist_walker_rounded, - "assist_walker_outlined": Icons.assist_walker_outlined, - "assistant": Icons.assistant, - "assistant_sharp": Icons.assistant_sharp, - "assistant_rounded": Icons.assistant_rounded, - "assistant_outlined": Icons.assistant_outlined, - "assistant_direction": Icons.assistant_direction, - "assistant_direction_sharp": Icons.assistant_direction_sharp, - "assistant_direction_rounded": Icons.assistant_direction_rounded, - "assistant_direction_outlined": Icons.assistant_direction_outlined, - "assistant_navigation": Icons.assistant_navigation, - "assistant_photo": Icons.assistant_photo, - "assistant_photo_sharp": Icons.assistant_photo_sharp, - "assistant_photo_rounded": Icons.assistant_photo_rounded, - "assistant_photo_outlined": Icons.assistant_photo_outlined, - "assured_workload": Icons.assured_workload, - "assured_workload_sharp": Icons.assured_workload_sharp, - "assured_workload_rounded": Icons.assured_workload_rounded, - "assured_workload_outlined": Icons.assured_workload_outlined, - "atm": Icons.atm, - "atm_sharp": Icons.atm_sharp, - "atm_rounded": Icons.atm_rounded, - "atm_outlined": Icons.atm_outlined, - "attach_email": Icons.attach_email, - "attach_email_sharp": Icons.attach_email_sharp, - "attach_email_rounded": Icons.attach_email_rounded, - "attach_email_outlined": Icons.attach_email_outlined, - "attach_file": Icons.attach_file, - "attach_file_sharp": Icons.attach_file_sharp, - "attach_file_rounded": Icons.attach_file_rounded, - "attach_file_outlined": Icons.attach_file_outlined, - "attach_money": Icons.attach_money, - "attach_money_sharp": Icons.attach_money_sharp, - "attach_money_rounded": Icons.attach_money_rounded, - "attach_money_outlined": Icons.attach_money_outlined, - "attachment": Icons.attachment, - "attachment_sharp": Icons.attachment_sharp, - "attachment_rounded": Icons.attachment_rounded, - "attachment_outlined": Icons.attachment_outlined, - "attractions": Icons.attractions, - "attractions_sharp": Icons.attractions_sharp, - "attractions_rounded": Icons.attractions_rounded, - "attractions_outlined": Icons.attractions_outlined, - "attribution": Icons.attribution, - "attribution_sharp": Icons.attribution_sharp, - "attribution_rounded": Icons.attribution_rounded, - "attribution_outlined": Icons.attribution_outlined, - "audio_file": Icons.audio_file, - "audio_file_sharp": Icons.audio_file_sharp, - "audio_file_rounded": Icons.audio_file_rounded, - "audio_file_outlined": Icons.audio_file_outlined, - "audiotrack": Icons.audiotrack, - "audiotrack_sharp": Icons.audiotrack_sharp, - "audiotrack_rounded": Icons.audiotrack_rounded, - "audiotrack_outlined": Icons.audiotrack_outlined, - "auto_awesome": Icons.auto_awesome, - "auto_awesome_sharp": Icons.auto_awesome_sharp, - "auto_awesome_rounded": Icons.auto_awesome_rounded, - "auto_awesome_outlined": Icons.auto_awesome_outlined, - "auto_awesome_mosaic": Icons.auto_awesome_mosaic, - "auto_awesome_mosaic_sharp": Icons.auto_awesome_mosaic_sharp, - "auto_awesome_mosaic_rounded": Icons.auto_awesome_mosaic_rounded, - "auto_awesome_mosaic_outlined": Icons.auto_awesome_mosaic_outlined, - "auto_awesome_motion": Icons.auto_awesome_motion, - "auto_awesome_motion_sharp": Icons.auto_awesome_motion_sharp, - "auto_awesome_motion_rounded": Icons.auto_awesome_motion_rounded, - "auto_awesome_motion_outlined": Icons.auto_awesome_motion_outlined, - "auto_delete": Icons.auto_delete, - "auto_delete_sharp": Icons.auto_delete_sharp, - "auto_delete_rounded": Icons.auto_delete_rounded, - "auto_delete_outlined": Icons.auto_delete_outlined, - "auto_fix_high": Icons.auto_fix_high, - "auto_fix_high_sharp": Icons.auto_fix_high_sharp, - "auto_fix_high_rounded": Icons.auto_fix_high_rounded, - "auto_fix_high_outlined": Icons.auto_fix_high_outlined, - "auto_fix_normal": Icons.auto_fix_normal, - "auto_fix_normal_sharp": Icons.auto_fix_normal_sharp, - "auto_fix_normal_rounded": Icons.auto_fix_normal_rounded, - "auto_fix_normal_outlined": Icons.auto_fix_normal_outlined, - "auto_fix_off": Icons.auto_fix_off, - "auto_fix_off_sharp": Icons.auto_fix_off_sharp, - "auto_fix_off_rounded": Icons.auto_fix_off_rounded, - "auto_fix_off_outlined": Icons.auto_fix_off_outlined, - "auto_graph": Icons.auto_graph, - "auto_graph_sharp": Icons.auto_graph_sharp, - "auto_graph_rounded": Icons.auto_graph_rounded, - "auto_graph_outlined": Icons.auto_graph_outlined, - "auto_mode": Icons.auto_mode, - "auto_mode_sharp": Icons.auto_mode_sharp, - "auto_mode_rounded": Icons.auto_mode_rounded, - "auto_mode_outlined": Icons.auto_mode_outlined, - "auto_stories": Icons.auto_stories, - "auto_stories_sharp": Icons.auto_stories_sharp, - "auto_stories_rounded": Icons.auto_stories_rounded, - "auto_stories_outlined": Icons.auto_stories_outlined, - "autofps_select": Icons.autofps_select, - "autofps_select_sharp": Icons.autofps_select_sharp, - "autofps_select_rounded": Icons.autofps_select_rounded, - "autofps_select_outlined": Icons.autofps_select_outlined, - "autorenew": Icons.autorenew, - "autorenew_sharp": Icons.autorenew_sharp, - "autorenew_rounded": Icons.autorenew_rounded, - "autorenew_outlined": Icons.autorenew_outlined, - "av_timer": Icons.av_timer, - "av_timer_sharp": Icons.av_timer_sharp, - "av_timer_rounded": Icons.av_timer_rounded, - "av_timer_outlined": Icons.av_timer_outlined, - "baby_changing_station": Icons.baby_changing_station, - "baby_changing_station_sharp": Icons.baby_changing_station_sharp, - "baby_changing_station_rounded": Icons.baby_changing_station_rounded, - "baby_changing_station_outlined": Icons.baby_changing_station_outlined, - "back_hand": Icons.back_hand, - "back_hand_sharp": Icons.back_hand_sharp, - "back_hand_rounded": Icons.back_hand_rounded, - "back_hand_outlined": Icons.back_hand_outlined, - "backpack": Icons.backpack, - "backpack_sharp": Icons.backpack_sharp, - "backpack_rounded": Icons.backpack_rounded, - "backpack_outlined": Icons.backpack_outlined, - "backspace": Icons.backspace, - "backspace_sharp": Icons.backspace_sharp, - "backspace_rounded": Icons.backspace_rounded, - "backspace_outlined": Icons.backspace_outlined, - "backup": Icons.backup, - "backup_sharp": Icons.backup_sharp, - "backup_rounded": Icons.backup_rounded, - "backup_outlined": Icons.backup_outlined, - "backup_table": Icons.backup_table, - "backup_table_sharp": Icons.backup_table_sharp, - "backup_table_rounded": Icons.backup_table_rounded, - "backup_table_outlined": Icons.backup_table_outlined, - "badge": Icons.badge, - "badge_sharp": Icons.badge_sharp, - "badge_rounded": Icons.badge_rounded, - "badge_outlined": Icons.badge_outlined, - "bakery_dining": Icons.bakery_dining, - "bakery_dining_sharp": Icons.bakery_dining_sharp, - "bakery_dining_rounded": Icons.bakery_dining_rounded, - "bakery_dining_outlined": Icons.bakery_dining_outlined, - "balance": Icons.balance, - "balance_sharp": Icons.balance_sharp, - "balance_rounded": Icons.balance_rounded, - "balance_outlined": Icons.balance_outlined, - "balcony": Icons.balcony, - "balcony_sharp": Icons.balcony_sharp, - "balcony_rounded": Icons.balcony_rounded, - "balcony_outlined": Icons.balcony_outlined, - "ballot": Icons.ballot, - "ballot_sharp": Icons.ballot_sharp, - "ballot_rounded": Icons.ballot_rounded, - "ballot_outlined": Icons.ballot_outlined, - "bar_chart": Icons.bar_chart, - "bar_chart_sharp": Icons.bar_chart_sharp, - "bar_chart_rounded": Icons.bar_chart_rounded, - "bar_chart_outlined": Icons.bar_chart_outlined, - "barcode_reader": Icons.barcode_reader, - "batch_prediction": Icons.batch_prediction, - "batch_prediction_sharp": Icons.batch_prediction_sharp, - "batch_prediction_rounded": Icons.batch_prediction_rounded, - "batch_prediction_outlined": Icons.batch_prediction_outlined, - "bathroom": Icons.bathroom, - "bathroom_sharp": Icons.bathroom_sharp, - "bathroom_rounded": Icons.bathroom_rounded, - "bathroom_outlined": Icons.bathroom_outlined, - "bathtub": Icons.bathtub, - "bathtub_sharp": Icons.bathtub_sharp, - "bathtub_rounded": Icons.bathtub_rounded, - "bathtub_outlined": Icons.bathtub_outlined, - "battery_0_bar": Icons.battery_0_bar, - "battery_0_bar_sharp": Icons.battery_0_bar_sharp, - "battery_0_bar_rounded": Icons.battery_0_bar_rounded, - "battery_0_bar_outlined": Icons.battery_0_bar_outlined, - "battery_1_bar": Icons.battery_1_bar, - "battery_1_bar_sharp": Icons.battery_1_bar_sharp, - "battery_1_bar_rounded": Icons.battery_1_bar_rounded, - "battery_1_bar_outlined": Icons.battery_1_bar_outlined, - "battery_2_bar": Icons.battery_2_bar, - "battery_2_bar_sharp": Icons.battery_2_bar_sharp, - "battery_2_bar_rounded": Icons.battery_2_bar_rounded, - "battery_2_bar_outlined": Icons.battery_2_bar_outlined, - "battery_3_bar": Icons.battery_3_bar, - "battery_3_bar_sharp": Icons.battery_3_bar_sharp, - "battery_3_bar_rounded": Icons.battery_3_bar_rounded, - "battery_3_bar_outlined": Icons.battery_3_bar_outlined, - "battery_4_bar": Icons.battery_4_bar, - "battery_4_bar_sharp": Icons.battery_4_bar_sharp, - "battery_4_bar_rounded": Icons.battery_4_bar_rounded, - "battery_4_bar_outlined": Icons.battery_4_bar_outlined, - "battery_5_bar": Icons.battery_5_bar, - "battery_5_bar_sharp": Icons.battery_5_bar_sharp, - "battery_5_bar_rounded": Icons.battery_5_bar_rounded, - "battery_5_bar_outlined": Icons.battery_5_bar_outlined, - "battery_6_bar": Icons.battery_6_bar, - "battery_6_bar_sharp": Icons.battery_6_bar_sharp, - "battery_6_bar_rounded": Icons.battery_6_bar_rounded, - "battery_6_bar_outlined": Icons.battery_6_bar_outlined, - "battery_alert": Icons.battery_alert, - "battery_alert_sharp": Icons.battery_alert_sharp, - "battery_alert_rounded": Icons.battery_alert_rounded, - "battery_alert_outlined": Icons.battery_alert_outlined, - "battery_charging_full": Icons.battery_charging_full, - "battery_charging_full_sharp": Icons.battery_charging_full_sharp, - "battery_charging_full_rounded": Icons.battery_charging_full_rounded, - "battery_charging_full_outlined": Icons.battery_charging_full_outlined, - "battery_full": Icons.battery_full, - "battery_full_sharp": Icons.battery_full_sharp, - "battery_full_rounded": Icons.battery_full_rounded, - "battery_full_outlined": Icons.battery_full_outlined, - "battery_saver": Icons.battery_saver, - "battery_saver_sharp": Icons.battery_saver_sharp, - "battery_saver_rounded": Icons.battery_saver_rounded, - "battery_saver_outlined": Icons.battery_saver_outlined, - "battery_std": Icons.battery_std, - "battery_std_sharp": Icons.battery_std_sharp, - "battery_std_rounded": Icons.battery_std_rounded, - "battery_std_outlined": Icons.battery_std_outlined, - "battery_unknown": Icons.battery_unknown, - "battery_unknown_sharp": Icons.battery_unknown_sharp, - "battery_unknown_rounded": Icons.battery_unknown_rounded, - "battery_unknown_outlined": Icons.battery_unknown_outlined, - "beach_access": Icons.beach_access, - "beach_access_sharp": Icons.beach_access_sharp, - "beach_access_rounded": Icons.beach_access_rounded, - "beach_access_outlined": Icons.beach_access_outlined, - "bed": Icons.bed, - "bed_sharp": Icons.bed_sharp, - "bed_rounded": Icons.bed_rounded, - "bed_outlined": Icons.bed_outlined, - "bedroom_baby": Icons.bedroom_baby, - "bedroom_baby_sharp": Icons.bedroom_baby_sharp, - "bedroom_baby_rounded": Icons.bedroom_baby_rounded, - "bedroom_baby_outlined": Icons.bedroom_baby_outlined, - "bedroom_child": Icons.bedroom_child, - "bedroom_child_sharp": Icons.bedroom_child_sharp, - "bedroom_child_rounded": Icons.bedroom_child_rounded, - "bedroom_child_outlined": Icons.bedroom_child_outlined, - "bedroom_parent": Icons.bedroom_parent, - "bedroom_parent_sharp": Icons.bedroom_parent_sharp, - "bedroom_parent_rounded": Icons.bedroom_parent_rounded, - "bedroom_parent_outlined": Icons.bedroom_parent_outlined, - "bedtime": Icons.bedtime, - "bedtime_sharp": Icons.bedtime_sharp, - "bedtime_rounded": Icons.bedtime_rounded, - "bedtime_outlined": Icons.bedtime_outlined, - "bedtime_off": Icons.bedtime_off, - "bedtime_off_sharp": Icons.bedtime_off_sharp, - "bedtime_off_rounded": Icons.bedtime_off_rounded, - "bedtime_off_outlined": Icons.bedtime_off_outlined, - "beenhere": Icons.beenhere, - "beenhere_sharp": Icons.beenhere_sharp, - "beenhere_rounded": Icons.beenhere_rounded, - "beenhere_outlined": Icons.beenhere_outlined, - "bento": Icons.bento, - "bento_sharp": Icons.bento_sharp, - "bento_rounded": Icons.bento_rounded, - "bento_outlined": Icons.bento_outlined, - "bike_scooter": Icons.bike_scooter, - "bike_scooter_sharp": Icons.bike_scooter_sharp, - "bike_scooter_rounded": Icons.bike_scooter_rounded, - "bike_scooter_outlined": Icons.bike_scooter_outlined, - "biotech": Icons.biotech, - "biotech_sharp": Icons.biotech_sharp, - "biotech_rounded": Icons.biotech_rounded, - "biotech_outlined": Icons.biotech_outlined, - "blender": Icons.blender, - "blender_sharp": Icons.blender_sharp, - "blender_rounded": Icons.blender_rounded, - "blender_outlined": Icons.blender_outlined, - "blind": Icons.blind, - "blind_sharp": Icons.blind_sharp, - "blind_rounded": Icons.blind_rounded, - "blind_outlined": Icons.blind_outlined, - "blinds": Icons.blinds, - "blinds_sharp": Icons.blinds_sharp, - "blinds_rounded": Icons.blinds_rounded, - "blinds_outlined": Icons.blinds_outlined, - "blinds_closed": Icons.blinds_closed, - "blinds_closed_sharp": Icons.blinds_closed_sharp, - "blinds_closed_rounded": Icons.blinds_closed_rounded, - "blinds_closed_outlined": Icons.blinds_closed_outlined, - "block": Icons.block, - "block_sharp": Icons.block_sharp, - "block_rounded": Icons.block_rounded, - "block_outlined": Icons.block_outlined, - "block_flipped": Icons.block_flipped, - "bloodtype": Icons.bloodtype, - "bloodtype_sharp": Icons.bloodtype_sharp, - "bloodtype_rounded": Icons.bloodtype_rounded, - "bloodtype_outlined": Icons.bloodtype_outlined, - "bluetooth": Icons.bluetooth, - "bluetooth_sharp": Icons.bluetooth_sharp, - "bluetooth_rounded": Icons.bluetooth_rounded, - "bluetooth_outlined": Icons.bluetooth_outlined, - "bluetooth_audio": Icons.bluetooth_audio, - "bluetooth_audio_sharp": Icons.bluetooth_audio_sharp, - "bluetooth_audio_rounded": Icons.bluetooth_audio_rounded, - "bluetooth_audio_outlined": Icons.bluetooth_audio_outlined, - "bluetooth_connected": Icons.bluetooth_connected, - "bluetooth_connected_sharp": Icons.bluetooth_connected_sharp, - "bluetooth_connected_rounded": Icons.bluetooth_connected_rounded, - "bluetooth_connected_outlined": Icons.bluetooth_connected_outlined, - "bluetooth_disabled": Icons.bluetooth_disabled, - "bluetooth_disabled_sharp": Icons.bluetooth_disabled_sharp, - "bluetooth_disabled_rounded": Icons.bluetooth_disabled_rounded, - "bluetooth_disabled_outlined": Icons.bluetooth_disabled_outlined, - "bluetooth_drive": Icons.bluetooth_drive, - "bluetooth_drive_sharp": Icons.bluetooth_drive_sharp, - "bluetooth_drive_rounded": Icons.bluetooth_drive_rounded, - "bluetooth_drive_outlined": Icons.bluetooth_drive_outlined, - "bluetooth_searching": Icons.bluetooth_searching, - "bluetooth_searching_sharp": Icons.bluetooth_searching_sharp, - "bluetooth_searching_rounded": Icons.bluetooth_searching_rounded, - "bluetooth_searching_outlined": Icons.bluetooth_searching_outlined, - "blur_circular": Icons.blur_circular, - "blur_circular_sharp": Icons.blur_circular_sharp, - "blur_circular_rounded": Icons.blur_circular_rounded, - "blur_circular_outlined": Icons.blur_circular_outlined, - "blur_linear": Icons.blur_linear, - "blur_linear_sharp": Icons.blur_linear_sharp, - "blur_linear_rounded": Icons.blur_linear_rounded, - "blur_linear_outlined": Icons.blur_linear_outlined, - "blur_off": Icons.blur_off, - "blur_off_sharp": Icons.blur_off_sharp, - "blur_off_rounded": Icons.blur_off_rounded, - "blur_off_outlined": Icons.blur_off_outlined, - "blur_on": Icons.blur_on, - "blur_on_sharp": Icons.blur_on_sharp, - "blur_on_rounded": Icons.blur_on_rounded, - "blur_on_outlined": Icons.blur_on_outlined, - "bolt": Icons.bolt, - "bolt_sharp": Icons.bolt_sharp, - "bolt_rounded": Icons.bolt_rounded, - "bolt_outlined": Icons.bolt_outlined, - "book": Icons.book, - "book_sharp": Icons.book_sharp, - "book_rounded": Icons.book_rounded, - "book_outlined": Icons.book_outlined, - "book_online": Icons.book_online, - "book_online_sharp": Icons.book_online_sharp, - "book_online_rounded": Icons.book_online_rounded, - "book_online_outlined": Icons.book_online_outlined, - "bookmark": Icons.bookmark, - "bookmark_sharp": Icons.bookmark_sharp, - "bookmark_rounded": Icons.bookmark_rounded, - "bookmark_outlined": Icons.bookmark_outlined, - "bookmark_add": Icons.bookmark_add, - "bookmark_add_sharp": Icons.bookmark_add_sharp, - "bookmark_add_rounded": Icons.bookmark_add_rounded, - "bookmark_add_outlined": Icons.bookmark_add_outlined, - "bookmark_added": Icons.bookmark_added, - "bookmark_added_sharp": Icons.bookmark_added_sharp, - "bookmark_added_rounded": Icons.bookmark_added_rounded, - "bookmark_added_outlined": Icons.bookmark_added_outlined, - "bookmark_border": Icons.bookmark_border, - "bookmark_border_sharp": Icons.bookmark_border_sharp, - "bookmark_border_rounded": Icons.bookmark_border_rounded, - "bookmark_border_outlined": Icons.bookmark_border_outlined, - "bookmark_outline": Icons.bookmark_outline, - "bookmark_outline_sharp": Icons.bookmark_outline_sharp, - "bookmark_outline_rounded": Icons.bookmark_outline_rounded, - "bookmark_outline_outlined": Icons.bookmark_outline_outlined, - "bookmark_remove": Icons.bookmark_remove, - "bookmark_remove_sharp": Icons.bookmark_remove_sharp, - "bookmark_remove_rounded": Icons.bookmark_remove_rounded, - "bookmark_remove_outlined": Icons.bookmark_remove_outlined, - "bookmarks": Icons.bookmarks, - "bookmarks_sharp": Icons.bookmarks_sharp, - "bookmarks_rounded": Icons.bookmarks_rounded, - "bookmarks_outlined": Icons.bookmarks_outlined, - "border_all": Icons.border_all, - "border_all_sharp": Icons.border_all_sharp, - "border_all_rounded": Icons.border_all_rounded, - "border_all_outlined": Icons.border_all_outlined, - "border_bottom": Icons.border_bottom, - "border_bottom_sharp": Icons.border_bottom_sharp, - "border_bottom_rounded": Icons.border_bottom_rounded, - "border_bottom_outlined": Icons.border_bottom_outlined, - "border_clear": Icons.border_clear, - "border_clear_sharp": Icons.border_clear_sharp, - "border_clear_rounded": Icons.border_clear_rounded, - "border_clear_outlined": Icons.border_clear_outlined, - "border_color": Icons.border_color, - "border_color_sharp": Icons.border_color_sharp, - "border_color_rounded": Icons.border_color_rounded, - "border_color_outlined": Icons.border_color_outlined, - "border_horizontal": Icons.border_horizontal, - "border_horizontal_sharp": Icons.border_horizontal_sharp, - "border_horizontal_rounded": Icons.border_horizontal_rounded, - "border_horizontal_outlined": Icons.border_horizontal_outlined, - "border_inner": Icons.border_inner, - "border_inner_sharp": Icons.border_inner_sharp, - "border_inner_rounded": Icons.border_inner_rounded, - "border_inner_outlined": Icons.border_inner_outlined, - "border_left": Icons.border_left, - "border_left_sharp": Icons.border_left_sharp, - "border_left_rounded": Icons.border_left_rounded, - "border_left_outlined": Icons.border_left_outlined, - "border_outer": Icons.border_outer, - "border_outer_sharp": Icons.border_outer_sharp, - "border_outer_rounded": Icons.border_outer_rounded, - "border_outer_outlined": Icons.border_outer_outlined, - "border_right": Icons.border_right, - "border_right_sharp": Icons.border_right_sharp, - "border_right_rounded": Icons.border_right_rounded, - "border_right_outlined": Icons.border_right_outlined, - "border_style": Icons.border_style, - "border_style_sharp": Icons.border_style_sharp, - "border_style_rounded": Icons.border_style_rounded, - "border_style_outlined": Icons.border_style_outlined, - "border_top": Icons.border_top, - "border_top_sharp": Icons.border_top_sharp, - "border_top_rounded": Icons.border_top_rounded, - "border_top_outlined": Icons.border_top_outlined, - "border_vertical": Icons.border_vertical, - "border_vertical_sharp": Icons.border_vertical_sharp, - "border_vertical_rounded": Icons.border_vertical_rounded, - "border_vertical_outlined": Icons.border_vertical_outlined, - "boy": Icons.boy, - "boy_sharp": Icons.boy_sharp, - "boy_rounded": Icons.boy_rounded, - "boy_outlined": Icons.boy_outlined, - "branding_watermark": Icons.branding_watermark, - "branding_watermark_sharp": Icons.branding_watermark_sharp, - "branding_watermark_rounded": Icons.branding_watermark_rounded, - "branding_watermark_outlined": Icons.branding_watermark_outlined, - "breakfast_dining": Icons.breakfast_dining, - "breakfast_dining_sharp": Icons.breakfast_dining_sharp, - "breakfast_dining_rounded": Icons.breakfast_dining_rounded, - "breakfast_dining_outlined": Icons.breakfast_dining_outlined, - "brightness_1": Icons.brightness_1, - "brightness_1_sharp": Icons.brightness_1_sharp, - "brightness_1_rounded": Icons.brightness_1_rounded, - "brightness_1_outlined": Icons.brightness_1_outlined, - "brightness_2": Icons.brightness_2, - "brightness_2_sharp": Icons.brightness_2_sharp, - "brightness_2_rounded": Icons.brightness_2_rounded, - "brightness_2_outlined": Icons.brightness_2_outlined, - "brightness_3": Icons.brightness_3, - "brightness_3_sharp": Icons.brightness_3_sharp, - "brightness_3_rounded": Icons.brightness_3_rounded, - "brightness_3_outlined": Icons.brightness_3_outlined, - "brightness_4": Icons.brightness_4, - "brightness_4_sharp": Icons.brightness_4_sharp, - "brightness_4_rounded": Icons.brightness_4_rounded, - "brightness_4_outlined": Icons.brightness_4_outlined, - "brightness_5": Icons.brightness_5, - "brightness_5_sharp": Icons.brightness_5_sharp, - "brightness_5_rounded": Icons.brightness_5_rounded, - "brightness_5_outlined": Icons.brightness_5_outlined, - "brightness_6": Icons.brightness_6, - "brightness_6_sharp": Icons.brightness_6_sharp, - "brightness_6_rounded": Icons.brightness_6_rounded, - "brightness_6_outlined": Icons.brightness_6_outlined, - "brightness_7": Icons.brightness_7, - "brightness_7_sharp": Icons.brightness_7_sharp, - "brightness_7_rounded": Icons.brightness_7_rounded, - "brightness_7_outlined": Icons.brightness_7_outlined, - "brightness_auto": Icons.brightness_auto, - "brightness_auto_sharp": Icons.brightness_auto_sharp, - "brightness_auto_rounded": Icons.brightness_auto_rounded, - "brightness_auto_outlined": Icons.brightness_auto_outlined, - "brightness_high": Icons.brightness_high, - "brightness_high_sharp": Icons.brightness_high_sharp, - "brightness_high_rounded": Icons.brightness_high_rounded, - "brightness_high_outlined": Icons.brightness_high_outlined, - "brightness_low": Icons.brightness_low, - "brightness_low_sharp": Icons.brightness_low_sharp, - "brightness_low_rounded": Icons.brightness_low_rounded, - "brightness_low_outlined": Icons.brightness_low_outlined, - "brightness_medium": Icons.brightness_medium, - "brightness_medium_sharp": Icons.brightness_medium_sharp, - "brightness_medium_rounded": Icons.brightness_medium_rounded, - "brightness_medium_outlined": Icons.brightness_medium_outlined, - "broadcast_on_home": Icons.broadcast_on_home, - "broadcast_on_home_sharp": Icons.broadcast_on_home_sharp, - "broadcast_on_home_rounded": Icons.broadcast_on_home_rounded, - "broadcast_on_home_outlined": Icons.broadcast_on_home_outlined, - "broadcast_on_personal": Icons.broadcast_on_personal, - "broadcast_on_personal_sharp": Icons.broadcast_on_personal_sharp, - "broadcast_on_personal_rounded": Icons.broadcast_on_personal_rounded, - "broadcast_on_personal_outlined": Icons.broadcast_on_personal_outlined, - "broken_image": Icons.broken_image, - "broken_image_sharp": Icons.broken_image_sharp, - "broken_image_rounded": Icons.broken_image_rounded, - "broken_image_outlined": Icons.broken_image_outlined, - "browse_gallery": Icons.browse_gallery, - "browse_gallery_sharp": Icons.browse_gallery_sharp, - "browse_gallery_rounded": Icons.browse_gallery_rounded, - "browse_gallery_outlined": Icons.browse_gallery_outlined, - "browser_not_supported": Icons.browser_not_supported, - "browser_not_supported_sharp": Icons.browser_not_supported_sharp, - "browser_not_supported_rounded": Icons.browser_not_supported_rounded, - "browser_not_supported_outlined": Icons.browser_not_supported_outlined, - "browser_updated": Icons.browser_updated, - "browser_updated_sharp": Icons.browser_updated_sharp, - "browser_updated_rounded": Icons.browser_updated_rounded, - "browser_updated_outlined": Icons.browser_updated_outlined, - "brunch_dining": Icons.brunch_dining, - "brunch_dining_sharp": Icons.brunch_dining_sharp, - "brunch_dining_rounded": Icons.brunch_dining_rounded, - "brunch_dining_outlined": Icons.brunch_dining_outlined, - "brush": Icons.brush, - "brush_sharp": Icons.brush_sharp, - "brush_rounded": Icons.brush_rounded, - "brush_outlined": Icons.brush_outlined, - "bubble_chart": Icons.bubble_chart, - "bubble_chart_sharp": Icons.bubble_chart_sharp, - "bubble_chart_rounded": Icons.bubble_chart_rounded, - "bubble_chart_outlined": Icons.bubble_chart_outlined, - "bug_report": Icons.bug_report, - "bug_report_sharp": Icons.bug_report_sharp, - "bug_report_rounded": Icons.bug_report_rounded, - "bug_report_outlined": Icons.bug_report_outlined, - "build": Icons.build, - "build_sharp": Icons.build_sharp, - "build_rounded": Icons.build_rounded, - "build_outlined": Icons.build_outlined, - "build_circle": Icons.build_circle, - "build_circle_sharp": Icons.build_circle_sharp, - "build_circle_rounded": Icons.build_circle_rounded, - "build_circle_outlined": Icons.build_circle_outlined, - "bungalow": Icons.bungalow, - "bungalow_sharp": Icons.bungalow_sharp, - "bungalow_rounded": Icons.bungalow_rounded, - "bungalow_outlined": Icons.bungalow_outlined, - "burst_mode": Icons.burst_mode, - "burst_mode_sharp": Icons.burst_mode_sharp, - "burst_mode_rounded": Icons.burst_mode_rounded, - "burst_mode_outlined": Icons.burst_mode_outlined, - "bus_alert": Icons.bus_alert, - "bus_alert_sharp": Icons.bus_alert_sharp, - "bus_alert_rounded": Icons.bus_alert_rounded, - "bus_alert_outlined": Icons.bus_alert_outlined, - "business": Icons.business, - "business_sharp": Icons.business_sharp, - "business_rounded": Icons.business_rounded, - "business_outlined": Icons.business_outlined, - "business_center": Icons.business_center, - "business_center_sharp": Icons.business_center_sharp, - "business_center_rounded": Icons.business_center_rounded, - "business_center_outlined": Icons.business_center_outlined, - "cabin": Icons.cabin, - "cabin_sharp": Icons.cabin_sharp, - "cabin_rounded": Icons.cabin_rounded, - "cabin_outlined": Icons.cabin_outlined, - "cable": Icons.cable, - "cable_sharp": Icons.cable_sharp, - "cable_rounded": Icons.cable_rounded, - "cable_outlined": Icons.cable_outlined, - "cached": Icons.cached, - "cached_sharp": Icons.cached_sharp, - "cached_rounded": Icons.cached_rounded, - "cached_outlined": Icons.cached_outlined, - "cake": Icons.cake, - "cake_sharp": Icons.cake_sharp, - "cake_rounded": Icons.cake_rounded, - "cake_outlined": Icons.cake_outlined, - "calculate": Icons.calculate, - "calculate_sharp": Icons.calculate_sharp, - "calculate_rounded": Icons.calculate_rounded, - "calculate_outlined": Icons.calculate_outlined, - "calendar_month": Icons.calendar_month, - "calendar_month_sharp": Icons.calendar_month_sharp, - "calendar_month_rounded": Icons.calendar_month_rounded, - "calendar_month_outlined": Icons.calendar_month_outlined, - "calendar_today": Icons.calendar_today, - "calendar_today_sharp": Icons.calendar_today_sharp, - "calendar_today_rounded": Icons.calendar_today_rounded, - "calendar_today_outlined": Icons.calendar_today_outlined, - "calendar_view_day": Icons.calendar_view_day, - "calendar_view_day_sharp": Icons.calendar_view_day_sharp, - "calendar_view_day_rounded": Icons.calendar_view_day_rounded, - "calendar_view_day_outlined": Icons.calendar_view_day_outlined, - "calendar_view_month": Icons.calendar_view_month, - "calendar_view_month_sharp": Icons.calendar_view_month_sharp, - "calendar_view_month_rounded": Icons.calendar_view_month_rounded, - "calendar_view_month_outlined": Icons.calendar_view_month_outlined, - "calendar_view_week": Icons.calendar_view_week, - "calendar_view_week_sharp": Icons.calendar_view_week_sharp, - "calendar_view_week_rounded": Icons.calendar_view_week_rounded, - "calendar_view_week_outlined": Icons.calendar_view_week_outlined, - "call": Icons.call, - "call_sharp": Icons.call_sharp, - "call_rounded": Icons.call_rounded, - "call_outlined": Icons.call_outlined, - "call_end": Icons.call_end, - "call_end_sharp": Icons.call_end_sharp, - "call_end_rounded": Icons.call_end_rounded, - "call_end_outlined": Icons.call_end_outlined, - "call_made": Icons.call_made, - "call_made_sharp": Icons.call_made_sharp, - "call_made_rounded": Icons.call_made_rounded, - "call_made_outlined": Icons.call_made_outlined, - "call_merge": Icons.call_merge, - "call_merge_sharp": Icons.call_merge_sharp, - "call_merge_rounded": Icons.call_merge_rounded, - "call_merge_outlined": Icons.call_merge_outlined, - "call_missed": Icons.call_missed, - "call_missed_sharp": Icons.call_missed_sharp, - "call_missed_rounded": Icons.call_missed_rounded, - "call_missed_outlined": Icons.call_missed_outlined, - "call_missed_outgoing": Icons.call_missed_outgoing, - "call_missed_outgoing_sharp": Icons.call_missed_outgoing_sharp, - "call_missed_outgoing_rounded": Icons.call_missed_outgoing_rounded, - "call_missed_outgoing_outlined": Icons.call_missed_outgoing_outlined, - "call_received": Icons.call_received, - "call_received_sharp": Icons.call_received_sharp, - "call_received_rounded": Icons.call_received_rounded, - "call_received_outlined": Icons.call_received_outlined, - "call_split": Icons.call_split, - "call_split_sharp": Icons.call_split_sharp, - "call_split_rounded": Icons.call_split_rounded, - "call_split_outlined": Icons.call_split_outlined, - "call_to_action": Icons.call_to_action, - "call_to_action_sharp": Icons.call_to_action_sharp, - "call_to_action_rounded": Icons.call_to_action_rounded, - "call_to_action_outlined": Icons.call_to_action_outlined, - "camera": Icons.camera, - "camera_sharp": Icons.camera_sharp, - "camera_rounded": Icons.camera_rounded, - "camera_outlined": Icons.camera_outlined, - "camera_alt": Icons.camera_alt, - "camera_alt_sharp": Icons.camera_alt_sharp, - "camera_alt_rounded": Icons.camera_alt_rounded, - "camera_alt_outlined": Icons.camera_alt_outlined, - "camera_enhance": Icons.camera_enhance, - "camera_enhance_sharp": Icons.camera_enhance_sharp, - "camera_enhance_rounded": Icons.camera_enhance_rounded, - "camera_enhance_outlined": Icons.camera_enhance_outlined, - "camera_front": Icons.camera_front, - "camera_front_sharp": Icons.camera_front_sharp, - "camera_front_rounded": Icons.camera_front_rounded, - "camera_front_outlined": Icons.camera_front_outlined, - "camera_indoor": Icons.camera_indoor, - "camera_indoor_sharp": Icons.camera_indoor_sharp, - "camera_indoor_rounded": Icons.camera_indoor_rounded, - "camera_indoor_outlined": Icons.camera_indoor_outlined, - "camera_outdoor": Icons.camera_outdoor, - "camera_outdoor_sharp": Icons.camera_outdoor_sharp, - "camera_outdoor_rounded": Icons.camera_outdoor_rounded, - "camera_outdoor_outlined": Icons.camera_outdoor_outlined, - "camera_rear": Icons.camera_rear, - "camera_rear_sharp": Icons.camera_rear_sharp, - "camera_rear_rounded": Icons.camera_rear_rounded, - "camera_rear_outlined": Icons.camera_rear_outlined, - "camera_roll": Icons.camera_roll, - "camera_roll_sharp": Icons.camera_roll_sharp, - "camera_roll_rounded": Icons.camera_roll_rounded, - "camera_roll_outlined": Icons.camera_roll_outlined, - "cameraswitch": Icons.cameraswitch, - "cameraswitch_sharp": Icons.cameraswitch_sharp, - "cameraswitch_rounded": Icons.cameraswitch_rounded, - "cameraswitch_outlined": Icons.cameraswitch_outlined, - "campaign": Icons.campaign, - "campaign_sharp": Icons.campaign_sharp, - "campaign_rounded": Icons.campaign_rounded, - "campaign_outlined": Icons.campaign_outlined, - "cancel": Icons.cancel, - "cancel_sharp": Icons.cancel_sharp, - "cancel_rounded": Icons.cancel_rounded, - "cancel_outlined": Icons.cancel_outlined, - "cancel_presentation": Icons.cancel_presentation, - "cancel_presentation_sharp": Icons.cancel_presentation_sharp, - "cancel_presentation_rounded": Icons.cancel_presentation_rounded, - "cancel_presentation_outlined": Icons.cancel_presentation_outlined, - "cancel_schedule_send": Icons.cancel_schedule_send, - "cancel_schedule_send_sharp": Icons.cancel_schedule_send_sharp, - "cancel_schedule_send_rounded": Icons.cancel_schedule_send_rounded, - "cancel_schedule_send_outlined": Icons.cancel_schedule_send_outlined, - "candlestick_chart": Icons.candlestick_chart, - "candlestick_chart_sharp": Icons.candlestick_chart_sharp, - "candlestick_chart_rounded": Icons.candlestick_chart_rounded, - "candlestick_chart_outlined": Icons.candlestick_chart_outlined, - "car_crash": Icons.car_crash, - "car_crash_sharp": Icons.car_crash_sharp, - "car_crash_rounded": Icons.car_crash_rounded, - "car_crash_outlined": Icons.car_crash_outlined, - "car_rental": Icons.car_rental, - "car_rental_sharp": Icons.car_rental_sharp, - "car_rental_rounded": Icons.car_rental_rounded, - "car_rental_outlined": Icons.car_rental_outlined, - "car_repair": Icons.car_repair, - "car_repair_sharp": Icons.car_repair_sharp, - "car_repair_rounded": Icons.car_repair_rounded, - "car_repair_outlined": Icons.car_repair_outlined, - "card_giftcard": Icons.card_giftcard, - "card_giftcard_sharp": Icons.card_giftcard_sharp, - "card_giftcard_rounded": Icons.card_giftcard_rounded, - "card_giftcard_outlined": Icons.card_giftcard_outlined, - "card_membership": Icons.card_membership, - "card_membership_sharp": Icons.card_membership_sharp, - "card_membership_rounded": Icons.card_membership_rounded, - "card_membership_outlined": Icons.card_membership_outlined, - "card_travel": Icons.card_travel, - "card_travel_sharp": Icons.card_travel_sharp, - "card_travel_rounded": Icons.card_travel_rounded, - "card_travel_outlined": Icons.card_travel_outlined, - "carpenter": Icons.carpenter, - "carpenter_sharp": Icons.carpenter_sharp, - "carpenter_rounded": Icons.carpenter_rounded, - "carpenter_outlined": Icons.carpenter_outlined, - "cases": Icons.cases, - "cases_sharp": Icons.cases_sharp, - "cases_rounded": Icons.cases_rounded, - "cases_outlined": Icons.cases_outlined, - "casino": Icons.casino, - "casino_sharp": Icons.casino_sharp, - "casino_rounded": Icons.casino_rounded, - "casino_outlined": Icons.casino_outlined, - "cast": Icons.cast, - "cast_sharp": Icons.cast_sharp, - "cast_rounded": Icons.cast_rounded, - "cast_outlined": Icons.cast_outlined, - "cast_connected": Icons.cast_connected, - "cast_connected_sharp": Icons.cast_connected_sharp, - "cast_connected_rounded": Icons.cast_connected_rounded, - "cast_connected_outlined": Icons.cast_connected_outlined, - "cast_for_education": Icons.cast_for_education, - "cast_for_education_sharp": Icons.cast_for_education_sharp, - "cast_for_education_rounded": Icons.cast_for_education_rounded, - "cast_for_education_outlined": Icons.cast_for_education_outlined, - "castle": Icons.castle, - "castle_sharp": Icons.castle_sharp, - "castle_rounded": Icons.castle_rounded, - "castle_outlined": Icons.castle_outlined, - "catching_pokemon": Icons.catching_pokemon, - "catching_pokemon_sharp": Icons.catching_pokemon_sharp, - "catching_pokemon_rounded": Icons.catching_pokemon_rounded, - "catching_pokemon_outlined": Icons.catching_pokemon_outlined, - "category": Icons.category, - "category_sharp": Icons.category_sharp, - "category_rounded": Icons.category_rounded, - "category_outlined": Icons.category_outlined, - "celebration": Icons.celebration, - "celebration_sharp": Icons.celebration_sharp, - "celebration_rounded": Icons.celebration_rounded, - "celebration_outlined": Icons.celebration_outlined, - "cell_tower": Icons.cell_tower, - "cell_tower_sharp": Icons.cell_tower_sharp, - "cell_tower_rounded": Icons.cell_tower_rounded, - "cell_tower_outlined": Icons.cell_tower_outlined, - "cell_wifi": Icons.cell_wifi, - "cell_wifi_sharp": Icons.cell_wifi_sharp, - "cell_wifi_rounded": Icons.cell_wifi_rounded, - "cell_wifi_outlined": Icons.cell_wifi_outlined, - "center_focus_strong": Icons.center_focus_strong, - "center_focus_strong_sharp": Icons.center_focus_strong_sharp, - "center_focus_strong_rounded": Icons.center_focus_strong_rounded, - "center_focus_strong_outlined": Icons.center_focus_strong_outlined, - "center_focus_weak": Icons.center_focus_weak, - "center_focus_weak_sharp": Icons.center_focus_weak_sharp, - "center_focus_weak_rounded": Icons.center_focus_weak_rounded, - "center_focus_weak_outlined": Icons.center_focus_weak_outlined, - "chair": Icons.chair, - "chair_sharp": Icons.chair_sharp, - "chair_rounded": Icons.chair_rounded, - "chair_outlined": Icons.chair_outlined, - "chair_alt": Icons.chair_alt, - "chair_alt_sharp": Icons.chair_alt_sharp, - "chair_alt_rounded": Icons.chair_alt_rounded, - "chair_alt_outlined": Icons.chair_alt_outlined, - "chalet": Icons.chalet, - "chalet_sharp": Icons.chalet_sharp, - "chalet_rounded": Icons.chalet_rounded, - "chalet_outlined": Icons.chalet_outlined, - "change_circle": Icons.change_circle, - "change_circle_sharp": Icons.change_circle_sharp, - "change_circle_rounded": Icons.change_circle_rounded, - "change_circle_outlined": Icons.change_circle_outlined, - "change_history": Icons.change_history, - "change_history_sharp": Icons.change_history_sharp, - "change_history_rounded": Icons.change_history_rounded, - "change_history_outlined": Icons.change_history_outlined, - "charging_station": Icons.charging_station, - "charging_station_sharp": Icons.charging_station_sharp, - "charging_station_rounded": Icons.charging_station_rounded, - "charging_station_outlined": Icons.charging_station_outlined, - "chat": Icons.chat, - "chat_sharp": Icons.chat_sharp, - "chat_rounded": Icons.chat_rounded, - "chat_outlined": Icons.chat_outlined, - "chat_bubble": Icons.chat_bubble, - "chat_bubble_sharp": Icons.chat_bubble_sharp, - "chat_bubble_rounded": Icons.chat_bubble_rounded, - "chat_bubble_outlined": Icons.chat_bubble_outlined, - "chat_bubble_outline": Icons.chat_bubble_outline, - "chat_bubble_outline_sharp": Icons.chat_bubble_outline_sharp, - "chat_bubble_outline_rounded": Icons.chat_bubble_outline_rounded, - "chat_bubble_outline_outlined": Icons.chat_bubble_outline_outlined, - "check": Icons.check, - "check_sharp": Icons.check_sharp, - "check_rounded": Icons.check_rounded, - "check_outlined": Icons.check_outlined, - "check_box": Icons.check_box, - "check_box_sharp": Icons.check_box_sharp, - "check_box_rounded": Icons.check_box_rounded, - "check_box_outlined": Icons.check_box_outlined, - "check_box_outline_blank": Icons.check_box_outline_blank, - "check_box_outline_blank_sharp": Icons.check_box_outline_blank_sharp, - "check_box_outline_blank_rounded": Icons.check_box_outline_blank_rounded, - "check_box_outline_blank_outlined": Icons.check_box_outline_blank_outlined, - "check_circle": Icons.check_circle, - "check_circle_sharp": Icons.check_circle_sharp, - "check_circle_rounded": Icons.check_circle_rounded, - "check_circle_outlined": Icons.check_circle_outlined, - "check_circle_outline": Icons.check_circle_outline, - "check_circle_outline_sharp": Icons.check_circle_outline_sharp, - "check_circle_outline_rounded": Icons.check_circle_outline_rounded, - "check_circle_outline_outlined": Icons.check_circle_outline_outlined, - "checklist": Icons.checklist, - "checklist_sharp": Icons.checklist_sharp, - "checklist_rounded": Icons.checklist_rounded, - "checklist_outlined": Icons.checklist_outlined, - "checklist_rtl": Icons.checklist_rtl, - "checklist_rtl_sharp": Icons.checklist_rtl_sharp, - "checklist_rtl_rounded": Icons.checklist_rtl_rounded, - "checklist_rtl_outlined": Icons.checklist_rtl_outlined, - "checkroom": Icons.checkroom, - "checkroom_sharp": Icons.checkroom_sharp, - "checkroom_rounded": Icons.checkroom_rounded, - "checkroom_outlined": Icons.checkroom_outlined, - "chevron_left": Icons.chevron_left, - "chevron_left_sharp": Icons.chevron_left_sharp, - "chevron_left_rounded": Icons.chevron_left_rounded, - "chevron_left_outlined": Icons.chevron_left_outlined, - "chevron_right": Icons.chevron_right, - "chevron_right_sharp": Icons.chevron_right_sharp, - "chevron_right_rounded": Icons.chevron_right_rounded, - "chevron_right_outlined": Icons.chevron_right_outlined, - "child_care": Icons.child_care, - "child_care_sharp": Icons.child_care_sharp, - "child_care_rounded": Icons.child_care_rounded, - "child_care_outlined": Icons.child_care_outlined, - "child_friendly": Icons.child_friendly, - "child_friendly_sharp": Icons.child_friendly_sharp, - "child_friendly_rounded": Icons.child_friendly_rounded, - "child_friendly_outlined": Icons.child_friendly_outlined, - "chrome_reader_mode": Icons.chrome_reader_mode, - "chrome_reader_mode_sharp": Icons.chrome_reader_mode_sharp, - "chrome_reader_mode_rounded": Icons.chrome_reader_mode_rounded, - "chrome_reader_mode_outlined": Icons.chrome_reader_mode_outlined, - "church": Icons.church, - "church_sharp": Icons.church_sharp, - "church_rounded": Icons.church_rounded, - "church_outlined": Icons.church_outlined, - "circle": Icons.circle, - "circle_sharp": Icons.circle_sharp, - "circle_rounded": Icons.circle_rounded, - "circle_outlined": Icons.circle_outlined, - "circle_notifications": Icons.circle_notifications, - "circle_notifications_sharp": Icons.circle_notifications_sharp, - "circle_notifications_rounded": Icons.circle_notifications_rounded, - "circle_notifications_outlined": Icons.circle_notifications_outlined, - "class_": Icons.class_, - "class_sharp": Icons.class_sharp, - "class_rounded": Icons.class_rounded, - "class_outlined": Icons.class_outlined, - "clean_hands": Icons.clean_hands, - "clean_hands_sharp": Icons.clean_hands_sharp, - "clean_hands_rounded": Icons.clean_hands_rounded, - "clean_hands_outlined": Icons.clean_hands_outlined, - "cleaning_services": Icons.cleaning_services, - "cleaning_services_sharp": Icons.cleaning_services_sharp, - "cleaning_services_rounded": Icons.cleaning_services_rounded, - "cleaning_services_outlined": Icons.cleaning_services_outlined, - "clear": Icons.clear, - "clear_sharp": Icons.clear_sharp, - "clear_rounded": Icons.clear_rounded, - "clear_outlined": Icons.clear_outlined, - "clear_all": Icons.clear_all, - "clear_all_sharp": Icons.clear_all_sharp, - "clear_all_rounded": Icons.clear_all_rounded, - "clear_all_outlined": Icons.clear_all_outlined, - "close": Icons.close, - "close_sharp": Icons.close_sharp, - "close_rounded": Icons.close_rounded, - "close_outlined": Icons.close_outlined, - "close_fullscreen": Icons.close_fullscreen, - "close_fullscreen_sharp": Icons.close_fullscreen_sharp, - "close_fullscreen_rounded": Icons.close_fullscreen_rounded, - "close_fullscreen_outlined": Icons.close_fullscreen_outlined, - "closed_caption": Icons.closed_caption, - "closed_caption_sharp": Icons.closed_caption_sharp, - "closed_caption_rounded": Icons.closed_caption_rounded, - "closed_caption_outlined": Icons.closed_caption_outlined, - "closed_caption_disabled": Icons.closed_caption_disabled, - "closed_caption_disabled_sharp": Icons.closed_caption_disabled_sharp, - "closed_caption_disabled_rounded": Icons.closed_caption_disabled_rounded, - "closed_caption_disabled_outlined": Icons.closed_caption_disabled_outlined, - "closed_caption_off": Icons.closed_caption_off, - "closed_caption_off_sharp": Icons.closed_caption_off_sharp, - "closed_caption_off_rounded": Icons.closed_caption_off_rounded, - "closed_caption_off_outlined": Icons.closed_caption_off_outlined, - "cloud": Icons.cloud, - "cloud_sharp": Icons.cloud_sharp, - "cloud_rounded": Icons.cloud_rounded, - "cloud_outlined": Icons.cloud_outlined, - "cloud_circle": Icons.cloud_circle, - "cloud_circle_sharp": Icons.cloud_circle_sharp, - "cloud_circle_rounded": Icons.cloud_circle_rounded, - "cloud_circle_outlined": Icons.cloud_circle_outlined, - "cloud_done": Icons.cloud_done, - "cloud_done_sharp": Icons.cloud_done_sharp, - "cloud_done_rounded": Icons.cloud_done_rounded, - "cloud_done_outlined": Icons.cloud_done_outlined, - "cloud_download": Icons.cloud_download, - "cloud_download_sharp": Icons.cloud_download_sharp, - "cloud_download_rounded": Icons.cloud_download_rounded, - "cloud_download_outlined": Icons.cloud_download_outlined, - "cloud_off": Icons.cloud_off, - "cloud_off_sharp": Icons.cloud_off_sharp, - "cloud_off_rounded": Icons.cloud_off_rounded, - "cloud_off_outlined": Icons.cloud_off_outlined, - "cloud_queue": Icons.cloud_queue, - "cloud_queue_sharp": Icons.cloud_queue_sharp, - "cloud_queue_rounded": Icons.cloud_queue_rounded, - "cloud_queue_outlined": Icons.cloud_queue_outlined, - "cloud_sync": Icons.cloud_sync, - "cloud_sync_sharp": Icons.cloud_sync_sharp, - "cloud_sync_rounded": Icons.cloud_sync_rounded, - "cloud_sync_outlined": Icons.cloud_sync_outlined, - "cloud_upload": Icons.cloud_upload, - "cloud_upload_sharp": Icons.cloud_upload_sharp, - "cloud_upload_rounded": Icons.cloud_upload_rounded, - "cloud_upload_outlined": Icons.cloud_upload_outlined, - "cloudy_snowing": Icons.cloudy_snowing, - "co2": Icons.co2, - "co2_sharp": Icons.co2_sharp, - "co2_rounded": Icons.co2_rounded, - "co2_outlined": Icons.co2_outlined, - "co_present": Icons.co_present, - "co_present_sharp": Icons.co_present_sharp, - "co_present_rounded": Icons.co_present_rounded, - "co_present_outlined": Icons.co_present_outlined, - "code": Icons.code, - "code_sharp": Icons.code_sharp, - "code_rounded": Icons.code_rounded, - "code_outlined": Icons.code_outlined, - "code_off": Icons.code_off, - "code_off_sharp": Icons.code_off_sharp, - "code_off_rounded": Icons.code_off_rounded, - "code_off_outlined": Icons.code_off_outlined, - "coffee": Icons.coffee, - "coffee_sharp": Icons.coffee_sharp, - "coffee_rounded": Icons.coffee_rounded, - "coffee_outlined": Icons.coffee_outlined, - "coffee_maker": Icons.coffee_maker, - "coffee_maker_sharp": Icons.coffee_maker_sharp, - "coffee_maker_rounded": Icons.coffee_maker_rounded, - "coffee_maker_outlined": Icons.coffee_maker_outlined, - "collections": Icons.collections, - "collections_sharp": Icons.collections_sharp, - "collections_rounded": Icons.collections_rounded, - "collections_outlined": Icons.collections_outlined, - "collections_bookmark": Icons.collections_bookmark, - "collections_bookmark_sharp": Icons.collections_bookmark_sharp, - "collections_bookmark_rounded": Icons.collections_bookmark_rounded, - "collections_bookmark_outlined": Icons.collections_bookmark_outlined, - "color_lens": Icons.color_lens, - "color_lens_sharp": Icons.color_lens_sharp, - "color_lens_rounded": Icons.color_lens_rounded, - "color_lens_outlined": Icons.color_lens_outlined, - "colorize": Icons.colorize, - "colorize_sharp": Icons.colorize_sharp, - "colorize_rounded": Icons.colorize_rounded, - "colorize_outlined": Icons.colorize_outlined, - "comment": Icons.comment, - "comment_sharp": Icons.comment_sharp, - "comment_rounded": Icons.comment_rounded, - "comment_outlined": Icons.comment_outlined, - "comment_bank": Icons.comment_bank, - "comment_bank_sharp": Icons.comment_bank_sharp, - "comment_bank_rounded": Icons.comment_bank_rounded, - "comment_bank_outlined": Icons.comment_bank_outlined, - "comments_disabled": Icons.comments_disabled, - "comments_disabled_sharp": Icons.comments_disabled_sharp, - "comments_disabled_rounded": Icons.comments_disabled_rounded, - "comments_disabled_outlined": Icons.comments_disabled_outlined, - "commit": Icons.commit, - "commit_sharp": Icons.commit_sharp, - "commit_rounded": Icons.commit_rounded, - "commit_outlined": Icons.commit_outlined, - "commute": Icons.commute, - "commute_sharp": Icons.commute_sharp, - "commute_rounded": Icons.commute_rounded, - "commute_outlined": Icons.commute_outlined, - "compare": Icons.compare, - "compare_sharp": Icons.compare_sharp, - "compare_rounded": Icons.compare_rounded, - "compare_outlined": Icons.compare_outlined, - "compare_arrows": Icons.compare_arrows, - "compare_arrows_sharp": Icons.compare_arrows_sharp, - "compare_arrows_rounded": Icons.compare_arrows_rounded, - "compare_arrows_outlined": Icons.compare_arrows_outlined, - "compass_calibration": Icons.compass_calibration, - "compass_calibration_sharp": Icons.compass_calibration_sharp, - "compass_calibration_rounded": Icons.compass_calibration_rounded, - "compass_calibration_outlined": Icons.compass_calibration_outlined, - "compost": Icons.compost, - "compost_sharp": Icons.compost_sharp, - "compost_rounded": Icons.compost_rounded, - "compost_outlined": Icons.compost_outlined, - "compress": Icons.compress, - "compress_sharp": Icons.compress_sharp, - "compress_rounded": Icons.compress_rounded, - "compress_outlined": Icons.compress_outlined, - "computer": Icons.computer, - "computer_sharp": Icons.computer_sharp, - "computer_rounded": Icons.computer_rounded, - "computer_outlined": Icons.computer_outlined, - "confirmation_num": Icons.confirmation_num, - "confirmation_num_sharp": Icons.confirmation_num_sharp, - "confirmation_num_rounded": Icons.confirmation_num_rounded, - "confirmation_num_outlined": Icons.confirmation_num_outlined, - "confirmation_number": Icons.confirmation_number, - "confirmation_number_sharp": Icons.confirmation_number_sharp, - "confirmation_number_rounded": Icons.confirmation_number_rounded, - "confirmation_number_outlined": Icons.confirmation_number_outlined, - "connect_without_contact": Icons.connect_without_contact, - "connect_without_contact_sharp": Icons.connect_without_contact_sharp, - "connect_without_contact_rounded": Icons.connect_without_contact_rounded, - "connect_without_contact_outlined": Icons.connect_without_contact_outlined, - "connected_tv": Icons.connected_tv, - "connected_tv_sharp": Icons.connected_tv_sharp, - "connected_tv_rounded": Icons.connected_tv_rounded, - "connected_tv_outlined": Icons.connected_tv_outlined, - "connecting_airports": Icons.connecting_airports, - "connecting_airports_sharp": Icons.connecting_airports_sharp, - "connecting_airports_rounded": Icons.connecting_airports_rounded, - "connecting_airports_outlined": Icons.connecting_airports_outlined, - "construction": Icons.construction, - "construction_sharp": Icons.construction_sharp, - "construction_rounded": Icons.construction_rounded, - "construction_outlined": Icons.construction_outlined, - "contact_emergency": Icons.contact_emergency, - "contact_emergency_sharp": Icons.contact_emergency_sharp, - "contact_emergency_rounded": Icons.contact_emergency_rounded, - "contact_emergency_outlined": Icons.contact_emergency_outlined, - "contact_mail": Icons.contact_mail, - "contact_mail_sharp": Icons.contact_mail_sharp, - "contact_mail_rounded": Icons.contact_mail_rounded, - "contact_mail_outlined": Icons.contact_mail_outlined, - "contact_page": Icons.contact_page, - "contact_page_sharp": Icons.contact_page_sharp, - "contact_page_rounded": Icons.contact_page_rounded, - "contact_page_outlined": Icons.contact_page_outlined, - "contact_phone": Icons.contact_phone, - "contact_phone_sharp": Icons.contact_phone_sharp, - "contact_phone_rounded": Icons.contact_phone_rounded, - "contact_phone_outlined": Icons.contact_phone_outlined, - "contact_support": Icons.contact_support, - "contact_support_sharp": Icons.contact_support_sharp, - "contact_support_rounded": Icons.contact_support_rounded, - "contact_support_outlined": Icons.contact_support_outlined, - "contactless": Icons.contactless, - "contactless_sharp": Icons.contactless_sharp, - "contactless_rounded": Icons.contactless_rounded, - "contactless_outlined": Icons.contactless_outlined, - "contacts": Icons.contacts, - "contacts_sharp": Icons.contacts_sharp, - "contacts_rounded": Icons.contacts_rounded, - "contacts_outlined": Icons.contacts_outlined, - "content_copy": Icons.content_copy, - "content_copy_sharp": Icons.content_copy_sharp, - "content_copy_rounded": Icons.content_copy_rounded, - "content_copy_outlined": Icons.content_copy_outlined, - "content_cut": Icons.content_cut, - "content_cut_sharp": Icons.content_cut_sharp, - "content_cut_rounded": Icons.content_cut_rounded, - "content_cut_outlined": Icons.content_cut_outlined, - "content_paste": Icons.content_paste, - "content_paste_sharp": Icons.content_paste_sharp, - "content_paste_rounded": Icons.content_paste_rounded, - "content_paste_outlined": Icons.content_paste_outlined, - "content_paste_go": Icons.content_paste_go, - "content_paste_go_sharp": Icons.content_paste_go_sharp, - "content_paste_go_rounded": Icons.content_paste_go_rounded, - "content_paste_go_outlined": Icons.content_paste_go_outlined, - "content_paste_off": Icons.content_paste_off, - "content_paste_off_sharp": Icons.content_paste_off_sharp, - "content_paste_off_rounded": Icons.content_paste_off_rounded, - "content_paste_off_outlined": Icons.content_paste_off_outlined, - "content_paste_search": Icons.content_paste_search, - "content_paste_search_sharp": Icons.content_paste_search_sharp, - "content_paste_search_rounded": Icons.content_paste_search_rounded, - "content_paste_search_outlined": Icons.content_paste_search_outlined, - "contrast": Icons.contrast, - "contrast_sharp": Icons.contrast_sharp, - "contrast_rounded": Icons.contrast_rounded, - "contrast_outlined": Icons.contrast_outlined, - "control_camera": Icons.control_camera, - "control_camera_sharp": Icons.control_camera_sharp, - "control_camera_rounded": Icons.control_camera_rounded, - "control_camera_outlined": Icons.control_camera_outlined, - "control_point": Icons.control_point, - "control_point_sharp": Icons.control_point_sharp, - "control_point_rounded": Icons.control_point_rounded, - "control_point_outlined": Icons.control_point_outlined, - "control_point_duplicate": Icons.control_point_duplicate, - "control_point_duplicate_sharp": Icons.control_point_duplicate_sharp, - "control_point_duplicate_rounded": Icons.control_point_duplicate_rounded, - "control_point_duplicate_outlined": Icons.control_point_duplicate_outlined, - "conveyor_belt": Icons.conveyor_belt, - "cookie": Icons.cookie, - "cookie_sharp": Icons.cookie_sharp, - "cookie_rounded": Icons.cookie_rounded, - "cookie_outlined": Icons.cookie_outlined, - "copy": Icons.copy, - "copy_sharp": Icons.copy_sharp, - "copy_rounded": Icons.copy_rounded, - "copy_outlined": Icons.copy_outlined, - "copy_all": Icons.copy_all, - "copy_all_sharp": Icons.copy_all_sharp, - "copy_all_rounded": Icons.copy_all_rounded, - "copy_all_outlined": Icons.copy_all_outlined, - "copyright": Icons.copyright, - "copyright_sharp": Icons.copyright_sharp, - "copyright_rounded": Icons.copyright_rounded, - "copyright_outlined": Icons.copyright_outlined, - "coronavirus": Icons.coronavirus, - "coronavirus_sharp": Icons.coronavirus_sharp, - "coronavirus_rounded": Icons.coronavirus_rounded, - "coronavirus_outlined": Icons.coronavirus_outlined, - "corporate_fare": Icons.corporate_fare, - "corporate_fare_sharp": Icons.corporate_fare_sharp, - "corporate_fare_rounded": Icons.corporate_fare_rounded, - "corporate_fare_outlined": Icons.corporate_fare_outlined, - "cottage": Icons.cottage, - "cottage_sharp": Icons.cottage_sharp, - "cottage_rounded": Icons.cottage_rounded, - "cottage_outlined": Icons.cottage_outlined, - "countertops": Icons.countertops, - "countertops_sharp": Icons.countertops_sharp, - "countertops_rounded": Icons.countertops_rounded, - "countertops_outlined": Icons.countertops_outlined, - "create": Icons.create, - "create_sharp": Icons.create_sharp, - "create_rounded": Icons.create_rounded, - "create_outlined": Icons.create_outlined, - "create_new_folder": Icons.create_new_folder, - "create_new_folder_sharp": Icons.create_new_folder_sharp, - "create_new_folder_rounded": Icons.create_new_folder_rounded, - "create_new_folder_outlined": Icons.create_new_folder_outlined, - "credit_card": Icons.credit_card, - "credit_card_sharp": Icons.credit_card_sharp, - "credit_card_rounded": Icons.credit_card_rounded, - "credit_card_outlined": Icons.credit_card_outlined, - "credit_card_off": Icons.credit_card_off, - "credit_card_off_sharp": Icons.credit_card_off_sharp, - "credit_card_off_rounded": Icons.credit_card_off_rounded, - "credit_card_off_outlined": Icons.credit_card_off_outlined, - "credit_score": Icons.credit_score, - "credit_score_sharp": Icons.credit_score_sharp, - "credit_score_rounded": Icons.credit_score_rounded, - "credit_score_outlined": Icons.credit_score_outlined, - "crib": Icons.crib, - "crib_sharp": Icons.crib_sharp, - "crib_rounded": Icons.crib_rounded, - "crib_outlined": Icons.crib_outlined, - "crisis_alert": Icons.crisis_alert, - "crisis_alert_sharp": Icons.crisis_alert_sharp, - "crisis_alert_rounded": Icons.crisis_alert_rounded, - "crisis_alert_outlined": Icons.crisis_alert_outlined, - "crop": Icons.crop, - "crop_sharp": Icons.crop_sharp, - "crop_rounded": Icons.crop_rounded, - "crop_outlined": Icons.crop_outlined, - "crop_16_9": Icons.crop_16_9, - "crop_16_9_sharp": Icons.crop_16_9_sharp, - "crop_16_9_rounded": Icons.crop_16_9_rounded, - "crop_16_9_outlined": Icons.crop_16_9_outlined, - "crop_3_2": Icons.crop_3_2, - "crop_3_2_sharp": Icons.crop_3_2_sharp, - "crop_3_2_rounded": Icons.crop_3_2_rounded, - "crop_3_2_outlined": Icons.crop_3_2_outlined, - "crop_5_4": Icons.crop_5_4, - "crop_5_4_sharp": Icons.crop_5_4_sharp, - "crop_5_4_rounded": Icons.crop_5_4_rounded, - "crop_5_4_outlined": Icons.crop_5_4_outlined, - "crop_7_5": Icons.crop_7_5, - "crop_7_5_sharp": Icons.crop_7_5_sharp, - "crop_7_5_rounded": Icons.crop_7_5_rounded, - "crop_7_5_outlined": Icons.crop_7_5_outlined, - "crop_din": Icons.crop_din, - "crop_din_sharp": Icons.crop_din_sharp, - "crop_din_rounded": Icons.crop_din_rounded, - "crop_din_outlined": Icons.crop_din_outlined, - "crop_free": Icons.crop_free, - "crop_free_sharp": Icons.crop_free_sharp, - "crop_free_rounded": Icons.crop_free_rounded, - "crop_free_outlined": Icons.crop_free_outlined, - "crop_landscape": Icons.crop_landscape, - "crop_landscape_sharp": Icons.crop_landscape_sharp, - "crop_landscape_rounded": Icons.crop_landscape_rounded, - "crop_landscape_outlined": Icons.crop_landscape_outlined, - "crop_original": Icons.crop_original, - "crop_original_sharp": Icons.crop_original_sharp, - "crop_original_rounded": Icons.crop_original_rounded, - "crop_original_outlined": Icons.crop_original_outlined, - "crop_portrait": Icons.crop_portrait, - "crop_portrait_sharp": Icons.crop_portrait_sharp, - "crop_portrait_rounded": Icons.crop_portrait_rounded, - "crop_portrait_outlined": Icons.crop_portrait_outlined, - "crop_rotate": Icons.crop_rotate, - "crop_rotate_sharp": Icons.crop_rotate_sharp, - "crop_rotate_rounded": Icons.crop_rotate_rounded, - "crop_rotate_outlined": Icons.crop_rotate_outlined, - "crop_square": Icons.crop_square, - "crop_square_sharp": Icons.crop_square_sharp, - "crop_square_rounded": Icons.crop_square_rounded, - "crop_square_outlined": Icons.crop_square_outlined, - "cruelty_free": Icons.cruelty_free, - "cruelty_free_sharp": Icons.cruelty_free_sharp, - "cruelty_free_rounded": Icons.cruelty_free_rounded, - "cruelty_free_outlined": Icons.cruelty_free_outlined, - "css": Icons.css, - "css_sharp": Icons.css_sharp, - "css_rounded": Icons.css_rounded, - "css_outlined": Icons.css_outlined, - "currency_bitcoin": Icons.currency_bitcoin, - "currency_bitcoin_sharp": Icons.currency_bitcoin_sharp, - "currency_bitcoin_rounded": Icons.currency_bitcoin_rounded, - "currency_bitcoin_outlined": Icons.currency_bitcoin_outlined, - "currency_exchange": Icons.currency_exchange, - "currency_exchange_sharp": Icons.currency_exchange_sharp, - "currency_exchange_rounded": Icons.currency_exchange_rounded, - "currency_exchange_outlined": Icons.currency_exchange_outlined, - "currency_franc": Icons.currency_franc, - "currency_franc_sharp": Icons.currency_franc_sharp, - "currency_franc_rounded": Icons.currency_franc_rounded, - "currency_franc_outlined": Icons.currency_franc_outlined, - "currency_lira": Icons.currency_lira, - "currency_lira_sharp": Icons.currency_lira_sharp, - "currency_lira_rounded": Icons.currency_lira_rounded, - "currency_lira_outlined": Icons.currency_lira_outlined, - "currency_pound": Icons.currency_pound, - "currency_pound_sharp": Icons.currency_pound_sharp, - "currency_pound_rounded": Icons.currency_pound_rounded, - "currency_pound_outlined": Icons.currency_pound_outlined, - "currency_ruble": Icons.currency_ruble, - "currency_ruble_sharp": Icons.currency_ruble_sharp, - "currency_ruble_rounded": Icons.currency_ruble_rounded, - "currency_ruble_outlined": Icons.currency_ruble_outlined, - "currency_rupee": Icons.currency_rupee, - "currency_rupee_sharp": Icons.currency_rupee_sharp, - "currency_rupee_rounded": Icons.currency_rupee_rounded, - "currency_rupee_outlined": Icons.currency_rupee_outlined, - "currency_yen": Icons.currency_yen, - "currency_yen_sharp": Icons.currency_yen_sharp, - "currency_yen_rounded": Icons.currency_yen_rounded, - "currency_yen_outlined": Icons.currency_yen_outlined, - "currency_yuan": Icons.currency_yuan, - "currency_yuan_sharp": Icons.currency_yuan_sharp, - "currency_yuan_rounded": Icons.currency_yuan_rounded, - "currency_yuan_outlined": Icons.currency_yuan_outlined, - "curtains": Icons.curtains, - "curtains_sharp": Icons.curtains_sharp, - "curtains_rounded": Icons.curtains_rounded, - "curtains_outlined": Icons.curtains_outlined, - "curtains_closed": Icons.curtains_closed, - "curtains_closed_sharp": Icons.curtains_closed_sharp, - "curtains_closed_rounded": Icons.curtains_closed_rounded, - "curtains_closed_outlined": Icons.curtains_closed_outlined, - "cut": Icons.cut, - "cut_sharp": Icons.cut_sharp, - "cut_rounded": Icons.cut_rounded, - "cut_outlined": Icons.cut_outlined, - "cyclone": Icons.cyclone, - "cyclone_sharp": Icons.cyclone_sharp, - "cyclone_rounded": Icons.cyclone_rounded, - "cyclone_outlined": Icons.cyclone_outlined, - "dangerous": Icons.dangerous, - "dangerous_sharp": Icons.dangerous_sharp, - "dangerous_rounded": Icons.dangerous_rounded, - "dangerous_outlined": Icons.dangerous_outlined, - "dark_mode": Icons.dark_mode, - "dark_mode_sharp": Icons.dark_mode_sharp, - "dark_mode_rounded": Icons.dark_mode_rounded, - "dark_mode_outlined": Icons.dark_mode_outlined, - "dashboard": Icons.dashboard, - "dashboard_sharp": Icons.dashboard_sharp, - "dashboard_rounded": Icons.dashboard_rounded, - "dashboard_outlined": Icons.dashboard_outlined, - "dashboard_customize": Icons.dashboard_customize, - "dashboard_customize_sharp": Icons.dashboard_customize_sharp, - "dashboard_customize_rounded": Icons.dashboard_customize_rounded, - "dashboard_customize_outlined": Icons.dashboard_customize_outlined, - "data_array": Icons.data_array, - "data_array_sharp": Icons.data_array_sharp, - "data_array_rounded": Icons.data_array_rounded, - "data_array_outlined": Icons.data_array_outlined, - "data_exploration": Icons.data_exploration, - "data_exploration_sharp": Icons.data_exploration_sharp, - "data_exploration_rounded": Icons.data_exploration_rounded, - "data_exploration_outlined": Icons.data_exploration_outlined, - "data_object": Icons.data_object, - "data_object_sharp": Icons.data_object_sharp, - "data_object_rounded": Icons.data_object_rounded, - "data_object_outlined": Icons.data_object_outlined, - "data_saver_off": Icons.data_saver_off, - "data_saver_off_sharp": Icons.data_saver_off_sharp, - "data_saver_off_rounded": Icons.data_saver_off_rounded, - "data_saver_off_outlined": Icons.data_saver_off_outlined, - "data_saver_on": Icons.data_saver_on, - "data_saver_on_sharp": Icons.data_saver_on_sharp, - "data_saver_on_rounded": Icons.data_saver_on_rounded, - "data_saver_on_outlined": Icons.data_saver_on_outlined, - "data_thresholding": Icons.data_thresholding, - "data_thresholding_sharp": Icons.data_thresholding_sharp, - "data_thresholding_rounded": Icons.data_thresholding_rounded, - "data_thresholding_outlined": Icons.data_thresholding_outlined, - "data_usage": Icons.data_usage, - "data_usage_sharp": Icons.data_usage_sharp, - "data_usage_rounded": Icons.data_usage_rounded, - "data_usage_outlined": Icons.data_usage_outlined, - "dataset": Icons.dataset, - "dataset_sharp": Icons.dataset_sharp, - "dataset_rounded": Icons.dataset_rounded, - "dataset_outlined": Icons.dataset_outlined, - "dataset_linked": Icons.dataset_linked, - "dataset_linked_sharp": Icons.dataset_linked_sharp, - "dataset_linked_rounded": Icons.dataset_linked_rounded, - "dataset_linked_outlined": Icons.dataset_linked_outlined, - "date_range": Icons.date_range, - "date_range_sharp": Icons.date_range_sharp, - "date_range_rounded": Icons.date_range_rounded, - "date_range_outlined": Icons.date_range_outlined, - "deblur": Icons.deblur, - "deblur_sharp": Icons.deblur_sharp, - "deblur_rounded": Icons.deblur_rounded, - "deblur_outlined": Icons.deblur_outlined, - "deck": Icons.deck, - "deck_sharp": Icons.deck_sharp, - "deck_rounded": Icons.deck_rounded, - "deck_outlined": Icons.deck_outlined, - "dehaze": Icons.dehaze, - "dehaze_sharp": Icons.dehaze_sharp, - "dehaze_rounded": Icons.dehaze_rounded, - "dehaze_outlined": Icons.dehaze_outlined, - "delete": Icons.delete, - "delete_sharp": Icons.delete_sharp, - "delete_rounded": Icons.delete_rounded, - "delete_outlined": Icons.delete_outlined, - "delete_forever": Icons.delete_forever, - "delete_forever_sharp": Icons.delete_forever_sharp, - "delete_forever_rounded": Icons.delete_forever_rounded, - "delete_forever_outlined": Icons.delete_forever_outlined, - "delete_outline": Icons.delete_outline, - "delete_outline_sharp": Icons.delete_outline_sharp, - "delete_outline_rounded": Icons.delete_outline_rounded, - "delete_outline_outlined": Icons.delete_outline_outlined, - "delete_sweep": Icons.delete_sweep, - "delete_sweep_sharp": Icons.delete_sweep_sharp, - "delete_sweep_rounded": Icons.delete_sweep_rounded, - "delete_sweep_outlined": Icons.delete_sweep_outlined, - "delivery_dining": Icons.delivery_dining, - "delivery_dining_sharp": Icons.delivery_dining_sharp, - "delivery_dining_rounded": Icons.delivery_dining_rounded, - "delivery_dining_outlined": Icons.delivery_dining_outlined, - "density_large": Icons.density_large, - "density_large_sharp": Icons.density_large_sharp, - "density_large_rounded": Icons.density_large_rounded, - "density_large_outlined": Icons.density_large_outlined, - "density_medium": Icons.density_medium, - "density_medium_sharp": Icons.density_medium_sharp, - "density_medium_rounded": Icons.density_medium_rounded, - "density_medium_outlined": Icons.density_medium_outlined, - "density_small": Icons.density_small, - "density_small_sharp": Icons.density_small_sharp, - "density_small_rounded": Icons.density_small_rounded, - "density_small_outlined": Icons.density_small_outlined, - "departure_board": Icons.departure_board, - "departure_board_sharp": Icons.departure_board_sharp, - "departure_board_rounded": Icons.departure_board_rounded, - "departure_board_outlined": Icons.departure_board_outlined, - "description": Icons.description, - "description_sharp": Icons.description_sharp, - "description_rounded": Icons.description_rounded, - "description_outlined": Icons.description_outlined, - "deselect": Icons.deselect, - "deselect_sharp": Icons.deselect_sharp, - "deselect_rounded": Icons.deselect_rounded, - "deselect_outlined": Icons.deselect_outlined, - "design_services": Icons.design_services, - "design_services_sharp": Icons.design_services_sharp, - "design_services_rounded": Icons.design_services_rounded, - "design_services_outlined": Icons.design_services_outlined, - "desk": Icons.desk, - "desk_sharp": Icons.desk_sharp, - "desk_rounded": Icons.desk_rounded, - "desk_outlined": Icons.desk_outlined, - "desktop_access_disabled": Icons.desktop_access_disabled, - "desktop_access_disabled_sharp": Icons.desktop_access_disabled_sharp, - "desktop_access_disabled_rounded": Icons.desktop_access_disabled_rounded, - "desktop_access_disabled_outlined": Icons.desktop_access_disabled_outlined, - "desktop_mac": Icons.desktop_mac, - "desktop_mac_sharp": Icons.desktop_mac_sharp, - "desktop_mac_rounded": Icons.desktop_mac_rounded, - "desktop_mac_outlined": Icons.desktop_mac_outlined, - "desktop_windows": Icons.desktop_windows, - "desktop_windows_sharp": Icons.desktop_windows_sharp, - "desktop_windows_rounded": Icons.desktop_windows_rounded, - "desktop_windows_outlined": Icons.desktop_windows_outlined, - "details": Icons.details, - "details_sharp": Icons.details_sharp, - "details_rounded": Icons.details_rounded, - "details_outlined": Icons.details_outlined, - "developer_board": Icons.developer_board, - "developer_board_sharp": Icons.developer_board_sharp, - "developer_board_rounded": Icons.developer_board_rounded, - "developer_board_outlined": Icons.developer_board_outlined, - "developer_board_off": Icons.developer_board_off, - "developer_board_off_sharp": Icons.developer_board_off_sharp, - "developer_board_off_rounded": Icons.developer_board_off_rounded, - "developer_board_off_outlined": Icons.developer_board_off_outlined, - "developer_mode": Icons.developer_mode, - "developer_mode_sharp": Icons.developer_mode_sharp, - "developer_mode_rounded": Icons.developer_mode_rounded, - "developer_mode_outlined": Icons.developer_mode_outlined, - "device_hub": Icons.device_hub, - "device_hub_sharp": Icons.device_hub_sharp, - "device_hub_rounded": Icons.device_hub_rounded, - "device_hub_outlined": Icons.device_hub_outlined, - "device_thermostat": Icons.device_thermostat, - "device_thermostat_sharp": Icons.device_thermostat_sharp, - "device_thermostat_rounded": Icons.device_thermostat_rounded, - "device_thermostat_outlined": Icons.device_thermostat_outlined, - "device_unknown": Icons.device_unknown, - "device_unknown_sharp": Icons.device_unknown_sharp, - "device_unknown_rounded": Icons.device_unknown_rounded, - "device_unknown_outlined": Icons.device_unknown_outlined, - "devices": Icons.devices, - "devices_sharp": Icons.devices_sharp, - "devices_rounded": Icons.devices_rounded, - "devices_outlined": Icons.devices_outlined, - "devices_fold": Icons.devices_fold, - "devices_fold_sharp": Icons.devices_fold_sharp, - "devices_fold_rounded": Icons.devices_fold_rounded, - "devices_fold_outlined": Icons.devices_fold_outlined, - "devices_other": Icons.devices_other, - "devices_other_sharp": Icons.devices_other_sharp, - "devices_other_rounded": Icons.devices_other_rounded, - "devices_other_outlined": Icons.devices_other_outlined, - "dew_point": Icons.dew_point, - "dialer_sip": Icons.dialer_sip, - "dialer_sip_sharp": Icons.dialer_sip_sharp, - "dialer_sip_rounded": Icons.dialer_sip_rounded, - "dialer_sip_outlined": Icons.dialer_sip_outlined, - "dialpad": Icons.dialpad, - "dialpad_sharp": Icons.dialpad_sharp, - "dialpad_rounded": Icons.dialpad_rounded, - "dialpad_outlined": Icons.dialpad_outlined, - "diamond": Icons.diamond, - "diamond_sharp": Icons.diamond_sharp, - "diamond_rounded": Icons.diamond_rounded, - "diamond_outlined": Icons.diamond_outlined, - "difference": Icons.difference, - "difference_sharp": Icons.difference_sharp, - "difference_rounded": Icons.difference_rounded, - "difference_outlined": Icons.difference_outlined, - "dining": Icons.dining, - "dining_sharp": Icons.dining_sharp, - "dining_rounded": Icons.dining_rounded, - "dining_outlined": Icons.dining_outlined, - "dinner_dining": Icons.dinner_dining, - "dinner_dining_sharp": Icons.dinner_dining_sharp, - "dinner_dining_rounded": Icons.dinner_dining_rounded, - "dinner_dining_outlined": Icons.dinner_dining_outlined, - "directions": Icons.directions, - "directions_sharp": Icons.directions_sharp, - "directions_rounded": Icons.directions_rounded, - "directions_outlined": Icons.directions_outlined, - "directions_bike": Icons.directions_bike, - "directions_bike_sharp": Icons.directions_bike_sharp, - "directions_bike_rounded": Icons.directions_bike_rounded, - "directions_bike_outlined": Icons.directions_bike_outlined, - "directions_boat": Icons.directions_boat, - "directions_boat_sharp": Icons.directions_boat_sharp, - "directions_boat_rounded": Icons.directions_boat_rounded, - "directions_boat_outlined": Icons.directions_boat_outlined, - "directions_boat_filled": Icons.directions_boat_filled, - "directions_boat_filled_sharp": Icons.directions_boat_filled_sharp, - "directions_boat_filled_rounded": Icons.directions_boat_filled_rounded, - "directions_boat_filled_outlined": Icons.directions_boat_filled_outlined, - "directions_bus": Icons.directions_bus, - "directions_bus_sharp": Icons.directions_bus_sharp, - "directions_bus_rounded": Icons.directions_bus_rounded, - "directions_bus_outlined": Icons.directions_bus_outlined, - "directions_bus_filled": Icons.directions_bus_filled, - "directions_bus_filled_sharp": Icons.directions_bus_filled_sharp, - "directions_bus_filled_rounded": Icons.directions_bus_filled_rounded, - "directions_bus_filled_outlined": Icons.directions_bus_filled_outlined, - "directions_car": Icons.directions_car, - "directions_car_sharp": Icons.directions_car_sharp, - "directions_car_rounded": Icons.directions_car_rounded, - "directions_car_outlined": Icons.directions_car_outlined, - "directions_car_filled": Icons.directions_car_filled, - "directions_car_filled_sharp": Icons.directions_car_filled_sharp, - "directions_car_filled_rounded": Icons.directions_car_filled_rounded, - "directions_car_filled_outlined": Icons.directions_car_filled_outlined, - "directions_ferry": Icons.directions_ferry, - "directions_ferry_sharp": Icons.directions_ferry_sharp, - "directions_ferry_rounded": Icons.directions_ferry_rounded, - "directions_ferry_outlined": Icons.directions_ferry_outlined, - "directions_off": Icons.directions_off, - "directions_off_sharp": Icons.directions_off_sharp, - "directions_off_rounded": Icons.directions_off_rounded, - "directions_off_outlined": Icons.directions_off_outlined, - "directions_railway": Icons.directions_railway, - "directions_railway_sharp": Icons.directions_railway_sharp, - "directions_railway_rounded": Icons.directions_railway_rounded, - "directions_railway_outlined": Icons.directions_railway_outlined, - "directions_railway_filled": Icons.directions_railway_filled, - "directions_railway_filled_sharp": Icons.directions_railway_filled_sharp, - "directions_railway_filled_rounded": Icons.directions_railway_filled_rounded, - "directions_railway_filled_outlined": - Icons.directions_railway_filled_outlined, - "directions_run": Icons.directions_run, - "directions_run_sharp": Icons.directions_run_sharp, - "directions_run_rounded": Icons.directions_run_rounded, - "directions_run_outlined": Icons.directions_run_outlined, - "directions_subway": Icons.directions_subway, - "directions_subway_sharp": Icons.directions_subway_sharp, - "directions_subway_rounded": Icons.directions_subway_rounded, - "directions_subway_outlined": Icons.directions_subway_outlined, - "directions_subway_filled": Icons.directions_subway_filled, - "directions_subway_filled_sharp": Icons.directions_subway_filled_sharp, - "directions_subway_filled_rounded": Icons.directions_subway_filled_rounded, - "directions_subway_filled_outlined": Icons.directions_subway_filled_outlined, - "directions_train": Icons.directions_train, - "directions_train_sharp": Icons.directions_train_sharp, - "directions_train_rounded": Icons.directions_train_rounded, - "directions_train_outlined": Icons.directions_train_outlined, - "directions_transit": Icons.directions_transit, - "directions_transit_sharp": Icons.directions_transit_sharp, - "directions_transit_rounded": Icons.directions_transit_rounded, - "directions_transit_outlined": Icons.directions_transit_outlined, - "directions_transit_filled": Icons.directions_transit_filled, - "directions_transit_filled_sharp": Icons.directions_transit_filled_sharp, - "directions_transit_filled_rounded": Icons.directions_transit_filled_rounded, - "directions_transit_filled_outlined": - Icons.directions_transit_filled_outlined, - "directions_walk": Icons.directions_walk, - "directions_walk_sharp": Icons.directions_walk_sharp, - "directions_walk_rounded": Icons.directions_walk_rounded, - "directions_walk_outlined": Icons.directions_walk_outlined, - "dirty_lens": Icons.dirty_lens, - "dirty_lens_sharp": Icons.dirty_lens_sharp, - "dirty_lens_rounded": Icons.dirty_lens_rounded, - "dirty_lens_outlined": Icons.dirty_lens_outlined, - "disabled_by_default": Icons.disabled_by_default, - "disabled_by_default_sharp": Icons.disabled_by_default_sharp, - "disabled_by_default_rounded": Icons.disabled_by_default_rounded, - "disabled_by_default_outlined": Icons.disabled_by_default_outlined, - "disabled_visible": Icons.disabled_visible, - "disabled_visible_sharp": Icons.disabled_visible_sharp, - "disabled_visible_rounded": Icons.disabled_visible_rounded, - "disabled_visible_outlined": Icons.disabled_visible_outlined, - "disc_full": Icons.disc_full, - "disc_full_sharp": Icons.disc_full_sharp, - "disc_full_rounded": Icons.disc_full_rounded, - "disc_full_outlined": Icons.disc_full_outlined, - "discord": Icons.discord, - "discord_sharp": Icons.discord_sharp, - "discord_rounded": Icons.discord_rounded, - "discord_outlined": Icons.discord_outlined, - "discount": Icons.discount, - "discount_sharp": Icons.discount_sharp, - "discount_rounded": Icons.discount_rounded, - "discount_outlined": Icons.discount_outlined, - "display_settings": Icons.display_settings, - "display_settings_sharp": Icons.display_settings_sharp, - "display_settings_rounded": Icons.display_settings_rounded, - "display_settings_outlined": Icons.display_settings_outlined, - "diversity_1": Icons.diversity_1, - "diversity_1_sharp": Icons.diversity_1_sharp, - "diversity_1_rounded": Icons.diversity_1_rounded, - "diversity_1_outlined": Icons.diversity_1_outlined, - "diversity_2": Icons.diversity_2, - "diversity_2_sharp": Icons.diversity_2_sharp, - "diversity_2_rounded": Icons.diversity_2_rounded, - "diversity_2_outlined": Icons.diversity_2_outlined, - "diversity_3": Icons.diversity_3, - "diversity_3_sharp": Icons.diversity_3_sharp, - "diversity_3_rounded": Icons.diversity_3_rounded, - "diversity_3_outlined": Icons.diversity_3_outlined, - "dnd_forwardslash": Icons.dnd_forwardslash, - "dnd_forwardslash_sharp": Icons.dnd_forwardslash_sharp, - "dnd_forwardslash_rounded": Icons.dnd_forwardslash_rounded, - "dnd_forwardslash_outlined": Icons.dnd_forwardslash_outlined, - "dns": Icons.dns, - "dns_sharp": Icons.dns_sharp, - "dns_rounded": Icons.dns_rounded, - "dns_outlined": Icons.dns_outlined, - "do_disturb": Icons.do_disturb, - "do_disturb_sharp": Icons.do_disturb_sharp, - "do_disturb_rounded": Icons.do_disturb_rounded, - "do_disturb_outlined": Icons.do_disturb_outlined, - "do_disturb_alt": Icons.do_disturb_alt, - "do_disturb_alt_sharp": Icons.do_disturb_alt_sharp, - "do_disturb_alt_rounded": Icons.do_disturb_alt_rounded, - "do_disturb_alt_outlined": Icons.do_disturb_alt_outlined, - "do_disturb_off": Icons.do_disturb_off, - "do_disturb_off_sharp": Icons.do_disturb_off_sharp, - "do_disturb_off_rounded": Icons.do_disturb_off_rounded, - "do_disturb_off_outlined": Icons.do_disturb_off_outlined, - "do_disturb_on": Icons.do_disturb_on, - "do_disturb_on_sharp": Icons.do_disturb_on_sharp, - "do_disturb_on_rounded": Icons.do_disturb_on_rounded, - "do_disturb_on_outlined": Icons.do_disturb_on_outlined, - "do_not_disturb": Icons.do_not_disturb, - "do_not_disturb_sharp": Icons.do_not_disturb_sharp, - "do_not_disturb_rounded": Icons.do_not_disturb_rounded, - "do_not_disturb_outlined": Icons.do_not_disturb_outlined, - "do_not_disturb_alt": Icons.do_not_disturb_alt, - "do_not_disturb_alt_sharp": Icons.do_not_disturb_alt_sharp, - "do_not_disturb_alt_rounded": Icons.do_not_disturb_alt_rounded, - "do_not_disturb_alt_outlined": Icons.do_not_disturb_alt_outlined, - "do_not_disturb_off": Icons.do_not_disturb_off, - "do_not_disturb_off_sharp": Icons.do_not_disturb_off_sharp, - "do_not_disturb_off_rounded": Icons.do_not_disturb_off_rounded, - "do_not_disturb_off_outlined": Icons.do_not_disturb_off_outlined, - "do_not_disturb_on": Icons.do_not_disturb_on, - "do_not_disturb_on_sharp": Icons.do_not_disturb_on_sharp, - "do_not_disturb_on_rounded": Icons.do_not_disturb_on_rounded, - "do_not_disturb_on_outlined": Icons.do_not_disturb_on_outlined, - "do_not_disturb_on_total_silence": Icons.do_not_disturb_on_total_silence, - "do_not_disturb_on_total_silence_sharp": - Icons.do_not_disturb_on_total_silence_sharp, - "do_not_disturb_on_total_silence_rounded": - Icons.do_not_disturb_on_total_silence_rounded, - "do_not_disturb_on_total_silence_outlined": - Icons.do_not_disturb_on_total_silence_outlined, - "do_not_step": Icons.do_not_step, - "do_not_step_sharp": Icons.do_not_step_sharp, - "do_not_step_rounded": Icons.do_not_step_rounded, - "do_not_step_outlined": Icons.do_not_step_outlined, - "do_not_touch": Icons.do_not_touch, - "do_not_touch_sharp": Icons.do_not_touch_sharp, - "do_not_touch_rounded": Icons.do_not_touch_rounded, - "do_not_touch_outlined": Icons.do_not_touch_outlined, - "dock": Icons.dock, - "dock_sharp": Icons.dock_sharp, - "dock_rounded": Icons.dock_rounded, - "dock_outlined": Icons.dock_outlined, - "document_scanner": Icons.document_scanner, - "document_scanner_sharp": Icons.document_scanner_sharp, - "document_scanner_rounded": Icons.document_scanner_rounded, - "document_scanner_outlined": Icons.document_scanner_outlined, - "domain": Icons.domain, - "domain_sharp": Icons.domain_sharp, - "domain_rounded": Icons.domain_rounded, - "domain_outlined": Icons.domain_outlined, - "domain_add": Icons.domain_add, - "domain_add_sharp": Icons.domain_add_sharp, - "domain_add_rounded": Icons.domain_add_rounded, - "domain_add_outlined": Icons.domain_add_outlined, - "domain_disabled": Icons.domain_disabled, - "domain_disabled_sharp": Icons.domain_disabled_sharp, - "domain_disabled_rounded": Icons.domain_disabled_rounded, - "domain_disabled_outlined": Icons.domain_disabled_outlined, - "domain_verification": Icons.domain_verification, - "domain_verification_sharp": Icons.domain_verification_sharp, - "domain_verification_rounded": Icons.domain_verification_rounded, - "domain_verification_outlined": Icons.domain_verification_outlined, - "done": Icons.done, - "done_sharp": Icons.done_sharp, - "done_rounded": Icons.done_rounded, - "done_outlined": Icons.done_outlined, - "done_all": Icons.done_all, - "done_all_sharp": Icons.done_all_sharp, - "done_all_rounded": Icons.done_all_rounded, - "done_all_outlined": Icons.done_all_outlined, - "done_outline": Icons.done_outline, - "done_outline_sharp": Icons.done_outline_sharp, - "done_outline_rounded": Icons.done_outline_rounded, - "done_outline_outlined": Icons.done_outline_outlined, - "donut_large": Icons.donut_large, - "donut_large_sharp": Icons.donut_large_sharp, - "donut_large_rounded": Icons.donut_large_rounded, - "donut_large_outlined": Icons.donut_large_outlined, - "donut_small": Icons.donut_small, - "donut_small_sharp": Icons.donut_small_sharp, - "donut_small_rounded": Icons.donut_small_rounded, - "donut_small_outlined": Icons.donut_small_outlined, - "door_back_door": Icons.door_back_door, - "door_back_door_sharp": Icons.door_back_door_sharp, - "door_back_door_rounded": Icons.door_back_door_rounded, - "door_back_door_outlined": Icons.door_back_door_outlined, - "door_front_door": Icons.door_front_door, - "door_front_door_sharp": Icons.door_front_door_sharp, - "door_front_door_rounded": Icons.door_front_door_rounded, - "door_front_door_outlined": Icons.door_front_door_outlined, - "door_sliding": Icons.door_sliding, - "door_sliding_sharp": Icons.door_sliding_sharp, - "door_sliding_rounded": Icons.door_sliding_rounded, - "door_sliding_outlined": Icons.door_sliding_outlined, - "doorbell": Icons.doorbell, - "doorbell_sharp": Icons.doorbell_sharp, - "doorbell_rounded": Icons.doorbell_rounded, - "doorbell_outlined": Icons.doorbell_outlined, - "double_arrow": Icons.double_arrow, - "double_arrow_sharp": Icons.double_arrow_sharp, - "double_arrow_rounded": Icons.double_arrow_rounded, - "double_arrow_outlined": Icons.double_arrow_outlined, - "downhill_skiing": Icons.downhill_skiing, - "downhill_skiing_sharp": Icons.downhill_skiing_sharp, - "downhill_skiing_rounded": Icons.downhill_skiing_rounded, - "downhill_skiing_outlined": Icons.downhill_skiing_outlined, - "download": Icons.download, - "download_sharp": Icons.download_sharp, - "download_rounded": Icons.download_rounded, - "download_outlined": Icons.download_outlined, - "download_done": Icons.download_done, - "download_done_sharp": Icons.download_done_sharp, - "download_done_rounded": Icons.download_done_rounded, - "download_done_outlined": Icons.download_done_outlined, - "download_for_offline": Icons.download_for_offline, - "download_for_offline_sharp": Icons.download_for_offline_sharp, - "download_for_offline_rounded": Icons.download_for_offline_rounded, - "download_for_offline_outlined": Icons.download_for_offline_outlined, - "downloading": Icons.downloading, - "downloading_sharp": Icons.downloading_sharp, - "downloading_rounded": Icons.downloading_rounded, - "downloading_outlined": Icons.downloading_outlined, - "drafts": Icons.drafts, - "drafts_sharp": Icons.drafts_sharp, - "drafts_rounded": Icons.drafts_rounded, - "drafts_outlined": Icons.drafts_outlined, - "drag_handle": Icons.drag_handle, - "drag_handle_sharp": Icons.drag_handle_sharp, - "drag_handle_rounded": Icons.drag_handle_rounded, - "drag_handle_outlined": Icons.drag_handle_outlined, - "drag_indicator": Icons.drag_indicator, - "drag_indicator_sharp": Icons.drag_indicator_sharp, - "drag_indicator_rounded": Icons.drag_indicator_rounded, - "drag_indicator_outlined": Icons.drag_indicator_outlined, - "draw": Icons.draw, - "draw_sharp": Icons.draw_sharp, - "draw_rounded": Icons.draw_rounded, - "draw_outlined": Icons.draw_outlined, - "drive_eta": Icons.drive_eta, - "drive_eta_sharp": Icons.drive_eta_sharp, - "drive_eta_rounded": Icons.drive_eta_rounded, - "drive_eta_outlined": Icons.drive_eta_outlined, - "drive_file_move": Icons.drive_file_move, - "drive_file_move_sharp": Icons.drive_file_move_sharp, - "drive_file_move_rounded": Icons.drive_file_move_rounded, - "drive_file_move_outlined": Icons.drive_file_move_outlined, - "drive_file_move_outline": Icons.drive_file_move_outline, - "drive_file_move_rtl": Icons.drive_file_move_rtl, - "drive_file_move_rtl_sharp": Icons.drive_file_move_rtl_sharp, - "drive_file_move_rtl_rounded": Icons.drive_file_move_rtl_rounded, - "drive_file_move_rtl_outlined": Icons.drive_file_move_rtl_outlined, - "drive_file_rename_outline": Icons.drive_file_rename_outline, - "drive_file_rename_outline_sharp": Icons.drive_file_rename_outline_sharp, - "drive_file_rename_outline_rounded": Icons.drive_file_rename_outline_rounded, - "drive_file_rename_outline_outlined": - Icons.drive_file_rename_outline_outlined, - "drive_folder_upload": Icons.drive_folder_upload, - "drive_folder_upload_sharp": Icons.drive_folder_upload_sharp, - "drive_folder_upload_rounded": Icons.drive_folder_upload_rounded, - "drive_folder_upload_outlined": Icons.drive_folder_upload_outlined, - "dry": Icons.dry, - "dry_sharp": Icons.dry_sharp, - "dry_rounded": Icons.dry_rounded, - "dry_outlined": Icons.dry_outlined, - "dry_cleaning": Icons.dry_cleaning, - "dry_cleaning_sharp": Icons.dry_cleaning_sharp, - "dry_cleaning_rounded": Icons.dry_cleaning_rounded, - "dry_cleaning_outlined": Icons.dry_cleaning_outlined, - "duo": Icons.duo, - "duo_sharp": Icons.duo_sharp, - "duo_rounded": Icons.duo_rounded, - "duo_outlined": Icons.duo_outlined, - "dvr": Icons.dvr, - "dvr_sharp": Icons.dvr_sharp, - "dvr_rounded": Icons.dvr_rounded, - "dvr_outlined": Icons.dvr_outlined, - "dynamic_feed": Icons.dynamic_feed, - "dynamic_feed_sharp": Icons.dynamic_feed_sharp, - "dynamic_feed_rounded": Icons.dynamic_feed_rounded, - "dynamic_feed_outlined": Icons.dynamic_feed_outlined, - "dynamic_form": Icons.dynamic_form, - "dynamic_form_sharp": Icons.dynamic_form_sharp, - "dynamic_form_rounded": Icons.dynamic_form_rounded, - "dynamic_form_outlined": Icons.dynamic_form_outlined, - "e_mobiledata": Icons.e_mobiledata, - "e_mobiledata_sharp": Icons.e_mobiledata_sharp, - "e_mobiledata_rounded": Icons.e_mobiledata_rounded, - "e_mobiledata_outlined": Icons.e_mobiledata_outlined, - "earbuds": Icons.earbuds, - "earbuds_sharp": Icons.earbuds_sharp, - "earbuds_rounded": Icons.earbuds_rounded, - "earbuds_outlined": Icons.earbuds_outlined, - "earbuds_battery": Icons.earbuds_battery, - "earbuds_battery_sharp": Icons.earbuds_battery_sharp, - "earbuds_battery_rounded": Icons.earbuds_battery_rounded, - "earbuds_battery_outlined": Icons.earbuds_battery_outlined, - "east": Icons.east, - "east_sharp": Icons.east_sharp, - "east_rounded": Icons.east_rounded, - "east_outlined": Icons.east_outlined, - "eco": Icons.eco, - "eco_sharp": Icons.eco_sharp, - "eco_rounded": Icons.eco_rounded, - "eco_outlined": Icons.eco_outlined, - "edgesensor_high": Icons.edgesensor_high, - "edgesensor_high_sharp": Icons.edgesensor_high_sharp, - "edgesensor_high_rounded": Icons.edgesensor_high_rounded, - "edgesensor_high_outlined": Icons.edgesensor_high_outlined, - "edgesensor_low": Icons.edgesensor_low, - "edgesensor_low_sharp": Icons.edgesensor_low_sharp, - "edgesensor_low_rounded": Icons.edgesensor_low_rounded, - "edgesensor_low_outlined": Icons.edgesensor_low_outlined, - "edit": Icons.edit, - "edit_sharp": Icons.edit_sharp, - "edit_rounded": Icons.edit_rounded, - "edit_outlined": Icons.edit_outlined, - "edit_attributes": Icons.edit_attributes, - "edit_attributes_sharp": Icons.edit_attributes_sharp, - "edit_attributes_rounded": Icons.edit_attributes_rounded, - "edit_attributes_outlined": Icons.edit_attributes_outlined, - "edit_calendar": Icons.edit_calendar, - "edit_calendar_sharp": Icons.edit_calendar_sharp, - "edit_calendar_rounded": Icons.edit_calendar_rounded, - "edit_calendar_outlined": Icons.edit_calendar_outlined, - "edit_document": Icons.edit_document, - "edit_location": Icons.edit_location, - "edit_location_sharp": Icons.edit_location_sharp, - "edit_location_rounded": Icons.edit_location_rounded, - "edit_location_outlined": Icons.edit_location_outlined, - "edit_location_alt": Icons.edit_location_alt, - "edit_location_alt_sharp": Icons.edit_location_alt_sharp, - "edit_location_alt_rounded": Icons.edit_location_alt_rounded, - "edit_location_alt_outlined": Icons.edit_location_alt_outlined, - "edit_note": Icons.edit_note, - "edit_note_sharp": Icons.edit_note_sharp, - "edit_note_rounded": Icons.edit_note_rounded, - "edit_note_outlined": Icons.edit_note_outlined, - "edit_notifications": Icons.edit_notifications, - "edit_notifications_sharp": Icons.edit_notifications_sharp, - "edit_notifications_rounded": Icons.edit_notifications_rounded, - "edit_notifications_outlined": Icons.edit_notifications_outlined, - "edit_off": Icons.edit_off, - "edit_off_sharp": Icons.edit_off_sharp, - "edit_off_rounded": Icons.edit_off_rounded, - "edit_off_outlined": Icons.edit_off_outlined, - "edit_road": Icons.edit_road, - "edit_road_sharp": Icons.edit_road_sharp, - "edit_road_rounded": Icons.edit_road_rounded, - "edit_road_outlined": Icons.edit_road_outlined, - "edit_square": Icons.edit_square, - "egg": Icons.egg, - "egg_sharp": Icons.egg_sharp, - "egg_rounded": Icons.egg_rounded, - "egg_outlined": Icons.egg_outlined, - "egg_alt": Icons.egg_alt, - "egg_alt_sharp": Icons.egg_alt_sharp, - "egg_alt_rounded": Icons.egg_alt_rounded, - "egg_alt_outlined": Icons.egg_alt_outlined, - "eject": Icons.eject, - "eject_sharp": Icons.eject_sharp, - "eject_rounded": Icons.eject_rounded, - "eject_outlined": Icons.eject_outlined, - "elderly": Icons.elderly, - "elderly_sharp": Icons.elderly_sharp, - "elderly_rounded": Icons.elderly_rounded, - "elderly_outlined": Icons.elderly_outlined, - "elderly_woman": Icons.elderly_woman, - "elderly_woman_sharp": Icons.elderly_woman_sharp, - "elderly_woman_rounded": Icons.elderly_woman_rounded, - "elderly_woman_outlined": Icons.elderly_woman_outlined, - "electric_bike": Icons.electric_bike, - "electric_bike_sharp": Icons.electric_bike_sharp, - "electric_bike_rounded": Icons.electric_bike_rounded, - "electric_bike_outlined": Icons.electric_bike_outlined, - "electric_bolt": Icons.electric_bolt, - "electric_bolt_sharp": Icons.electric_bolt_sharp, - "electric_bolt_rounded": Icons.electric_bolt_rounded, - "electric_bolt_outlined": Icons.electric_bolt_outlined, - "electric_car": Icons.electric_car, - "electric_car_sharp": Icons.electric_car_sharp, - "electric_car_rounded": Icons.electric_car_rounded, - "electric_car_outlined": Icons.electric_car_outlined, - "electric_meter": Icons.electric_meter, - "electric_meter_sharp": Icons.electric_meter_sharp, - "electric_meter_rounded": Icons.electric_meter_rounded, - "electric_meter_outlined": Icons.electric_meter_outlined, - "electric_moped": Icons.electric_moped, - "electric_moped_sharp": Icons.electric_moped_sharp, - "electric_moped_rounded": Icons.electric_moped_rounded, - "electric_moped_outlined": Icons.electric_moped_outlined, - "electric_rickshaw": Icons.electric_rickshaw, - "electric_rickshaw_sharp": Icons.electric_rickshaw_sharp, - "electric_rickshaw_rounded": Icons.electric_rickshaw_rounded, - "electric_rickshaw_outlined": Icons.electric_rickshaw_outlined, - "electric_scooter": Icons.electric_scooter, - "electric_scooter_sharp": Icons.electric_scooter_sharp, - "electric_scooter_rounded": Icons.electric_scooter_rounded, - "electric_scooter_outlined": Icons.electric_scooter_outlined, - "electrical_services": Icons.electrical_services, - "electrical_services_sharp": Icons.electrical_services_sharp, - "electrical_services_rounded": Icons.electrical_services_rounded, - "electrical_services_outlined": Icons.electrical_services_outlined, - "elevator": Icons.elevator, - "elevator_sharp": Icons.elevator_sharp, - "elevator_rounded": Icons.elevator_rounded, - "elevator_outlined": Icons.elevator_outlined, - "email": Icons.email, - "email_sharp": Icons.email_sharp, - "email_rounded": Icons.email_rounded, - "email_outlined": Icons.email_outlined, - "emergency": Icons.emergency, - "emergency_sharp": Icons.emergency_sharp, - "emergency_rounded": Icons.emergency_rounded, - "emergency_outlined": Icons.emergency_outlined, - "emergency_recording": Icons.emergency_recording, - "emergency_recording_sharp": Icons.emergency_recording_sharp, - "emergency_recording_rounded": Icons.emergency_recording_rounded, - "emergency_recording_outlined": Icons.emergency_recording_outlined, - "emergency_share": Icons.emergency_share, - "emergency_share_sharp": Icons.emergency_share_sharp, - "emergency_share_rounded": Icons.emergency_share_rounded, - "emergency_share_outlined": Icons.emergency_share_outlined, - "emoji_emotions": Icons.emoji_emotions, - "emoji_emotions_sharp": Icons.emoji_emotions_sharp, - "emoji_emotions_rounded": Icons.emoji_emotions_rounded, - "emoji_emotions_outlined": Icons.emoji_emotions_outlined, - "emoji_events": Icons.emoji_events, - "emoji_events_sharp": Icons.emoji_events_sharp, - "emoji_events_rounded": Icons.emoji_events_rounded, - "emoji_events_outlined": Icons.emoji_events_outlined, - "emoji_flags": Icons.emoji_flags, - "emoji_flags_sharp": Icons.emoji_flags_sharp, - "emoji_flags_rounded": Icons.emoji_flags_rounded, - "emoji_flags_outlined": Icons.emoji_flags_outlined, - "emoji_food_beverage": Icons.emoji_food_beverage, - "emoji_food_beverage_sharp": Icons.emoji_food_beverage_sharp, - "emoji_food_beverage_rounded": Icons.emoji_food_beverage_rounded, - "emoji_food_beverage_outlined": Icons.emoji_food_beverage_outlined, - "emoji_nature": Icons.emoji_nature, - "emoji_nature_sharp": Icons.emoji_nature_sharp, - "emoji_nature_rounded": Icons.emoji_nature_rounded, - "emoji_nature_outlined": Icons.emoji_nature_outlined, - "emoji_objects": Icons.emoji_objects, - "emoji_objects_sharp": Icons.emoji_objects_sharp, - "emoji_objects_rounded": Icons.emoji_objects_rounded, - "emoji_objects_outlined": Icons.emoji_objects_outlined, - "emoji_people": Icons.emoji_people, - "emoji_people_sharp": Icons.emoji_people_sharp, - "emoji_people_rounded": Icons.emoji_people_rounded, - "emoji_people_outlined": Icons.emoji_people_outlined, - "emoji_symbols": Icons.emoji_symbols, - "emoji_symbols_sharp": Icons.emoji_symbols_sharp, - "emoji_symbols_rounded": Icons.emoji_symbols_rounded, - "emoji_symbols_outlined": Icons.emoji_symbols_outlined, - "emoji_transportation": Icons.emoji_transportation, - "emoji_transportation_sharp": Icons.emoji_transportation_sharp, - "emoji_transportation_rounded": Icons.emoji_transportation_rounded, - "emoji_transportation_outlined": Icons.emoji_transportation_outlined, - "energy_savings_leaf": Icons.energy_savings_leaf, - "energy_savings_leaf_sharp": Icons.energy_savings_leaf_sharp, - "energy_savings_leaf_rounded": Icons.energy_savings_leaf_rounded, - "energy_savings_leaf_outlined": Icons.energy_savings_leaf_outlined, - "engineering": Icons.engineering, - "engineering_sharp": Icons.engineering_sharp, - "engineering_rounded": Icons.engineering_rounded, - "engineering_outlined": Icons.engineering_outlined, - "enhance_photo_translate": Icons.enhance_photo_translate, - "enhance_photo_translate_sharp": Icons.enhance_photo_translate_sharp, - "enhance_photo_translate_rounded": Icons.enhance_photo_translate_rounded, - "enhance_photo_translate_outlined": Icons.enhance_photo_translate_outlined, - "enhanced_encryption": Icons.enhanced_encryption, - "enhanced_encryption_sharp": Icons.enhanced_encryption_sharp, - "enhanced_encryption_rounded": Icons.enhanced_encryption_rounded, - "enhanced_encryption_outlined": Icons.enhanced_encryption_outlined, - "equalizer": Icons.equalizer, - "equalizer_sharp": Icons.equalizer_sharp, - "equalizer_rounded": Icons.equalizer_rounded, - "equalizer_outlined": Icons.equalizer_outlined, - "error": Icons.error, - "error_sharp": Icons.error_sharp, - "error_rounded": Icons.error_rounded, - "error_outlined": Icons.error_outlined, - "error_outline": Icons.error_outline, - "error_outline_sharp": Icons.error_outline_sharp, - "error_outline_rounded": Icons.error_outline_rounded, - "error_outline_outlined": Icons.error_outline_outlined, - "escalator": Icons.escalator, - "escalator_sharp": Icons.escalator_sharp, - "escalator_rounded": Icons.escalator_rounded, - "escalator_outlined": Icons.escalator_outlined, - "escalator_warning": Icons.escalator_warning, - "escalator_warning_sharp": Icons.escalator_warning_sharp, - "escalator_warning_rounded": Icons.escalator_warning_rounded, - "escalator_warning_outlined": Icons.escalator_warning_outlined, - "euro": Icons.euro, - "euro_sharp": Icons.euro_sharp, - "euro_rounded": Icons.euro_rounded, - "euro_outlined": Icons.euro_outlined, - "euro_symbol": Icons.euro_symbol, - "euro_symbol_sharp": Icons.euro_symbol_sharp, - "euro_symbol_rounded": Icons.euro_symbol_rounded, - "euro_symbol_outlined": Icons.euro_symbol_outlined, - "ev_station": Icons.ev_station, - "ev_station_sharp": Icons.ev_station_sharp, - "ev_station_rounded": Icons.ev_station_rounded, - "ev_station_outlined": Icons.ev_station_outlined, - "event": Icons.event, - "event_sharp": Icons.event_sharp, - "event_rounded": Icons.event_rounded, - "event_outlined": Icons.event_outlined, - "event_available": Icons.event_available, - "event_available_sharp": Icons.event_available_sharp, - "event_available_rounded": Icons.event_available_rounded, - "event_available_outlined": Icons.event_available_outlined, - "event_busy": Icons.event_busy, - "event_busy_sharp": Icons.event_busy_sharp, - "event_busy_rounded": Icons.event_busy_rounded, - "event_busy_outlined": Icons.event_busy_outlined, - "event_note": Icons.event_note, - "event_note_sharp": Icons.event_note_sharp, - "event_note_rounded": Icons.event_note_rounded, - "event_note_outlined": Icons.event_note_outlined, - "event_repeat": Icons.event_repeat, - "event_repeat_sharp": Icons.event_repeat_sharp, - "event_repeat_rounded": Icons.event_repeat_rounded, - "event_repeat_outlined": Icons.event_repeat_outlined, - "event_seat": Icons.event_seat, - "event_seat_sharp": Icons.event_seat_sharp, - "event_seat_rounded": Icons.event_seat_rounded, - "event_seat_outlined": Icons.event_seat_outlined, - "exit_to_app": Icons.exit_to_app, - "exit_to_app_sharp": Icons.exit_to_app_sharp, - "exit_to_app_rounded": Icons.exit_to_app_rounded, - "exit_to_app_outlined": Icons.exit_to_app_outlined, - "expand": Icons.expand, - "expand_sharp": Icons.expand_sharp, - "expand_rounded": Icons.expand_rounded, - "expand_outlined": Icons.expand_outlined, - "expand_circle_down": Icons.expand_circle_down, - "expand_circle_down_sharp": Icons.expand_circle_down_sharp, - "expand_circle_down_rounded": Icons.expand_circle_down_rounded, - "expand_circle_down_outlined": Icons.expand_circle_down_outlined, - "expand_less": Icons.expand_less, - "expand_less_sharp": Icons.expand_less_sharp, - "expand_less_rounded": Icons.expand_less_rounded, - "expand_less_outlined": Icons.expand_less_outlined, - "expand_more": Icons.expand_more, - "expand_more_sharp": Icons.expand_more_sharp, - "expand_more_rounded": Icons.expand_more_rounded, - "expand_more_outlined": Icons.expand_more_outlined, - "explicit": Icons.explicit, - "explicit_sharp": Icons.explicit_sharp, - "explicit_rounded": Icons.explicit_rounded, - "explicit_outlined": Icons.explicit_outlined, - "explore": Icons.explore, - "explore_sharp": Icons.explore_sharp, - "explore_rounded": Icons.explore_rounded, - "explore_outlined": Icons.explore_outlined, - "explore_off": Icons.explore_off, - "explore_off_sharp": Icons.explore_off_sharp, - "explore_off_rounded": Icons.explore_off_rounded, - "explore_off_outlined": Icons.explore_off_outlined, - "exposure": Icons.exposure, - "exposure_sharp": Icons.exposure_sharp, - "exposure_rounded": Icons.exposure_rounded, - "exposure_outlined": Icons.exposure_outlined, - "exposure_minus_1": Icons.exposure_minus_1, - "exposure_minus_1_sharp": Icons.exposure_minus_1_sharp, - "exposure_minus_1_rounded": Icons.exposure_minus_1_rounded, - "exposure_minus_1_outlined": Icons.exposure_minus_1_outlined, - "exposure_minus_2": Icons.exposure_minus_2, - "exposure_minus_2_sharp": Icons.exposure_minus_2_sharp, - "exposure_minus_2_rounded": Icons.exposure_minus_2_rounded, - "exposure_minus_2_outlined": Icons.exposure_minus_2_outlined, - "exposure_neg_1": Icons.exposure_neg_1, - "exposure_neg_1_sharp": Icons.exposure_neg_1_sharp, - "exposure_neg_1_rounded": Icons.exposure_neg_1_rounded, - "exposure_neg_1_outlined": Icons.exposure_neg_1_outlined, - "exposure_neg_2": Icons.exposure_neg_2, - "exposure_neg_2_sharp": Icons.exposure_neg_2_sharp, - "exposure_neg_2_rounded": Icons.exposure_neg_2_rounded, - "exposure_neg_2_outlined": Icons.exposure_neg_2_outlined, - "exposure_plus_1": Icons.exposure_plus_1, - "exposure_plus_1_sharp": Icons.exposure_plus_1_sharp, - "exposure_plus_1_rounded": Icons.exposure_plus_1_rounded, - "exposure_plus_1_outlined": Icons.exposure_plus_1_outlined, - "exposure_plus_2": Icons.exposure_plus_2, - "exposure_plus_2_sharp": Icons.exposure_plus_2_sharp, - "exposure_plus_2_rounded": Icons.exposure_plus_2_rounded, - "exposure_plus_2_outlined": Icons.exposure_plus_2_outlined, - "exposure_zero": Icons.exposure_zero, - "exposure_zero_sharp": Icons.exposure_zero_sharp, - "exposure_zero_rounded": Icons.exposure_zero_rounded, - "exposure_zero_outlined": Icons.exposure_zero_outlined, - "extension": Icons.extension, - "extension_sharp": Icons.extension_sharp, - "extension_rounded": Icons.extension_rounded, - "extension_outlined": Icons.extension_outlined, - "extension_off": Icons.extension_off, - "extension_off_sharp": Icons.extension_off_sharp, - "extension_off_rounded": Icons.extension_off_rounded, - "extension_off_outlined": Icons.extension_off_outlined, - "face": Icons.face, - "face_sharp": Icons.face_sharp, - "face_rounded": Icons.face_rounded, - "face_outlined": Icons.face_outlined, - "face_2": Icons.face_2, - "face_2_sharp": Icons.face_2_sharp, - "face_2_rounded": Icons.face_2_rounded, - "face_2_outlined": Icons.face_2_outlined, - "face_3": Icons.face_3, - "face_3_sharp": Icons.face_3_sharp, - "face_3_rounded": Icons.face_3_rounded, - "face_3_outlined": Icons.face_3_outlined, - "face_4": Icons.face_4, - "face_4_sharp": Icons.face_4_sharp, - "face_4_rounded": Icons.face_4_rounded, - "face_4_outlined": Icons.face_4_outlined, - "face_5": Icons.face_5, - "face_5_sharp": Icons.face_5_sharp, - "face_5_rounded": Icons.face_5_rounded, - "face_5_outlined": Icons.face_5_outlined, - "face_6": Icons.face_6, - "face_6_sharp": Icons.face_6_sharp, - "face_6_rounded": Icons.face_6_rounded, - "face_6_outlined": Icons.face_6_outlined, - "face_retouching_natural": Icons.face_retouching_natural, - "face_retouching_natural_sharp": Icons.face_retouching_natural_sharp, - "face_retouching_natural_rounded": Icons.face_retouching_natural_rounded, - "face_retouching_natural_outlined": Icons.face_retouching_natural_outlined, - "face_retouching_off": Icons.face_retouching_off, - "face_retouching_off_sharp": Icons.face_retouching_off_sharp, - "face_retouching_off_rounded": Icons.face_retouching_off_rounded, - "face_retouching_off_outlined": Icons.face_retouching_off_outlined, - "face_unlock_sharp": Icons.face_unlock_sharp, - "face_unlock_rounded": Icons.face_unlock_rounded, - "face_unlock_outlined": Icons.face_unlock_outlined, - "facebook": Icons.facebook, - "facebook_sharp": Icons.facebook_sharp, - "facebook_rounded": Icons.facebook_rounded, - "facebook_outlined": Icons.facebook_outlined, - "fact_check": Icons.fact_check, - "fact_check_sharp": Icons.fact_check_sharp, - "fact_check_rounded": Icons.fact_check_rounded, - "fact_check_outlined": Icons.fact_check_outlined, - "factory": Icons.factory, - "factory_sharp": Icons.factory_sharp, - "factory_rounded": Icons.factory_rounded, - "factory_outlined": Icons.factory_outlined, - "family_restroom": Icons.family_restroom, - "family_restroom_sharp": Icons.family_restroom_sharp, - "family_restroom_rounded": Icons.family_restroom_rounded, - "family_restroom_outlined": Icons.family_restroom_outlined, - "fast_forward": Icons.fast_forward, - "fast_forward_sharp": Icons.fast_forward_sharp, - "fast_forward_rounded": Icons.fast_forward_rounded, - "fast_forward_outlined": Icons.fast_forward_outlined, - "fast_rewind": Icons.fast_rewind, - "fast_rewind_sharp": Icons.fast_rewind_sharp, - "fast_rewind_rounded": Icons.fast_rewind_rounded, - "fast_rewind_outlined": Icons.fast_rewind_outlined, - "fastfood": Icons.fastfood, - "fastfood_sharp": Icons.fastfood_sharp, - "fastfood_rounded": Icons.fastfood_rounded, - "fastfood_outlined": Icons.fastfood_outlined, - "favorite": Icons.favorite, - "favorite_sharp": Icons.favorite_sharp, - "favorite_rounded": Icons.favorite_rounded, - "favorite_outlined": Icons.favorite_outlined, - "favorite_border": Icons.favorite_border, - "favorite_border_sharp": Icons.favorite_border_sharp, - "favorite_border_rounded": Icons.favorite_border_rounded, - "favorite_border_outlined": Icons.favorite_border_outlined, - "favorite_outline": Icons.favorite_outline, - "favorite_outline_sharp": Icons.favorite_outline_sharp, - "favorite_outline_rounded": Icons.favorite_outline_rounded, - "favorite_outline_outlined": Icons.favorite_outline_outlined, - "fax": Icons.fax, - "fax_sharp": Icons.fax_sharp, - "fax_rounded": Icons.fax_rounded, - "fax_outlined": Icons.fax_outlined, - "featured_play_list": Icons.featured_play_list, - "featured_play_list_sharp": Icons.featured_play_list_sharp, - "featured_play_list_rounded": Icons.featured_play_list_rounded, - "featured_play_list_outlined": Icons.featured_play_list_outlined, - "featured_video": Icons.featured_video, - "featured_video_sharp": Icons.featured_video_sharp, - "featured_video_rounded": Icons.featured_video_rounded, - "featured_video_outlined": Icons.featured_video_outlined, - "feed": Icons.feed, - "feed_sharp": Icons.feed_sharp, - "feed_rounded": Icons.feed_rounded, - "feed_outlined": Icons.feed_outlined, - "feedback": Icons.feedback, - "feedback_sharp": Icons.feedback_sharp, - "feedback_rounded": Icons.feedback_rounded, - "feedback_outlined": Icons.feedback_outlined, - "female": Icons.female, - "female_sharp": Icons.female_sharp, - "female_rounded": Icons.female_rounded, - "female_outlined": Icons.female_outlined, - "fence": Icons.fence, - "fence_sharp": Icons.fence_sharp, - "fence_rounded": Icons.fence_rounded, - "fence_outlined": Icons.fence_outlined, - "festival": Icons.festival, - "festival_sharp": Icons.festival_sharp, - "festival_rounded": Icons.festival_rounded, - "festival_outlined": Icons.festival_outlined, - "fiber_dvr": Icons.fiber_dvr, - "fiber_dvr_sharp": Icons.fiber_dvr_sharp, - "fiber_dvr_rounded": Icons.fiber_dvr_rounded, - "fiber_dvr_outlined": Icons.fiber_dvr_outlined, - "fiber_manual_record": Icons.fiber_manual_record, - "fiber_manual_record_sharp": Icons.fiber_manual_record_sharp, - "fiber_manual_record_rounded": Icons.fiber_manual_record_rounded, - "fiber_manual_record_outlined": Icons.fiber_manual_record_outlined, - "fiber_new": Icons.fiber_new, - "fiber_new_sharp": Icons.fiber_new_sharp, - "fiber_new_rounded": Icons.fiber_new_rounded, - "fiber_new_outlined": Icons.fiber_new_outlined, - "fiber_pin": Icons.fiber_pin, - "fiber_pin_sharp": Icons.fiber_pin_sharp, - "fiber_pin_rounded": Icons.fiber_pin_rounded, - "fiber_pin_outlined": Icons.fiber_pin_outlined, - "fiber_smart_record": Icons.fiber_smart_record, - "fiber_smart_record_sharp": Icons.fiber_smart_record_sharp, - "fiber_smart_record_rounded": Icons.fiber_smart_record_rounded, - "fiber_smart_record_outlined": Icons.fiber_smart_record_outlined, - "file_copy": Icons.file_copy, - "file_copy_sharp": Icons.file_copy_sharp, - "file_copy_rounded": Icons.file_copy_rounded, - "file_copy_outlined": Icons.file_copy_outlined, - "file_download": Icons.file_download, - "file_download_sharp": Icons.file_download_sharp, - "file_download_rounded": Icons.file_download_rounded, - "file_download_outlined": Icons.file_download_outlined, - "file_download_done": Icons.file_download_done, - "file_download_done_sharp": Icons.file_download_done_sharp, - "file_download_done_rounded": Icons.file_download_done_rounded, - "file_download_done_outlined": Icons.file_download_done_outlined, - "file_download_off": Icons.file_download_off, - "file_download_off_sharp": Icons.file_download_off_sharp, - "file_download_off_rounded": Icons.file_download_off_rounded, - "file_download_off_outlined": Icons.file_download_off_outlined, - "file_open": Icons.file_open, - "file_open_sharp": Icons.file_open_sharp, - "file_open_rounded": Icons.file_open_rounded, - "file_open_outlined": Icons.file_open_outlined, - "file_present": Icons.file_present, - "file_present_sharp": Icons.file_present_sharp, - "file_present_rounded": Icons.file_present_rounded, - "file_present_outlined": Icons.file_present_outlined, - "file_upload": Icons.file_upload, - "file_upload_sharp": Icons.file_upload_sharp, - "file_upload_rounded": Icons.file_upload_rounded, - "file_upload_outlined": Icons.file_upload_outlined, - "file_upload_off": Icons.file_upload_off, - "filter": Icons.filter, - "filter_sharp": Icons.filter_sharp, - "filter_rounded": Icons.filter_rounded, - "filter_outlined": Icons.filter_outlined, - "filter_1": Icons.filter_1, - "filter_1_sharp": Icons.filter_1_sharp, - "filter_1_rounded": Icons.filter_1_rounded, - "filter_1_outlined": Icons.filter_1_outlined, - "filter_2": Icons.filter_2, - "filter_2_sharp": Icons.filter_2_sharp, - "filter_2_rounded": Icons.filter_2_rounded, - "filter_2_outlined": Icons.filter_2_outlined, - "filter_3": Icons.filter_3, - "filter_3_sharp": Icons.filter_3_sharp, - "filter_3_rounded": Icons.filter_3_rounded, - "filter_3_outlined": Icons.filter_3_outlined, - "filter_4": Icons.filter_4, - "filter_4_sharp": Icons.filter_4_sharp, - "filter_4_rounded": Icons.filter_4_rounded, - "filter_4_outlined": Icons.filter_4_outlined, - "filter_5": Icons.filter_5, - "filter_5_sharp": Icons.filter_5_sharp, - "filter_5_rounded": Icons.filter_5_rounded, - "filter_5_outlined": Icons.filter_5_outlined, - "filter_6": Icons.filter_6, - "filter_6_sharp": Icons.filter_6_sharp, - "filter_6_rounded": Icons.filter_6_rounded, - "filter_6_outlined": Icons.filter_6_outlined, - "filter_7": Icons.filter_7, - "filter_7_sharp": Icons.filter_7_sharp, - "filter_7_rounded": Icons.filter_7_rounded, - "filter_7_outlined": Icons.filter_7_outlined, - "filter_8": Icons.filter_8, - "filter_8_sharp": Icons.filter_8_sharp, - "filter_8_rounded": Icons.filter_8_rounded, - "filter_8_outlined": Icons.filter_8_outlined, - "filter_9": Icons.filter_9, - "filter_9_sharp": Icons.filter_9_sharp, - "filter_9_rounded": Icons.filter_9_rounded, - "filter_9_outlined": Icons.filter_9_outlined, - "filter_9_plus": Icons.filter_9_plus, - "filter_9_plus_sharp": Icons.filter_9_plus_sharp, - "filter_9_plus_rounded": Icons.filter_9_plus_rounded, - "filter_9_plus_outlined": Icons.filter_9_plus_outlined, - "filter_alt": Icons.filter_alt, - "filter_alt_sharp": Icons.filter_alt_sharp, - "filter_alt_rounded": Icons.filter_alt_rounded, - "filter_alt_outlined": Icons.filter_alt_outlined, - "filter_alt_off": Icons.filter_alt_off, - "filter_alt_off_sharp": Icons.filter_alt_off_sharp, - "filter_alt_off_rounded": Icons.filter_alt_off_rounded, - "filter_alt_off_outlined": Icons.filter_alt_off_outlined, - "filter_b_and_w": Icons.filter_b_and_w, - "filter_b_and_w_sharp": Icons.filter_b_and_w_sharp, - "filter_b_and_w_rounded": Icons.filter_b_and_w_rounded, - "filter_b_and_w_outlined": Icons.filter_b_and_w_outlined, - "filter_center_focus": Icons.filter_center_focus, - "filter_center_focus_sharp": Icons.filter_center_focus_sharp, - "filter_center_focus_rounded": Icons.filter_center_focus_rounded, - "filter_center_focus_outlined": Icons.filter_center_focus_outlined, - "filter_drama": Icons.filter_drama, - "filter_drama_sharp": Icons.filter_drama_sharp, - "filter_drama_rounded": Icons.filter_drama_rounded, - "filter_drama_outlined": Icons.filter_drama_outlined, - "filter_frames": Icons.filter_frames, - "filter_frames_sharp": Icons.filter_frames_sharp, - "filter_frames_rounded": Icons.filter_frames_rounded, - "filter_frames_outlined": Icons.filter_frames_outlined, - "filter_hdr": Icons.filter_hdr, - "filter_hdr_sharp": Icons.filter_hdr_sharp, - "filter_hdr_rounded": Icons.filter_hdr_rounded, - "filter_hdr_outlined": Icons.filter_hdr_outlined, - "filter_list": Icons.filter_list, - "filter_list_sharp": Icons.filter_list_sharp, - "filter_list_rounded": Icons.filter_list_rounded, - "filter_list_outlined": Icons.filter_list_outlined, - "filter_list_alt": Icons.filter_list_alt, - "filter_list_off": Icons.filter_list_off, - "filter_list_off_sharp": Icons.filter_list_off_sharp, - "filter_list_off_rounded": Icons.filter_list_off_rounded, - "filter_list_off_outlined": Icons.filter_list_off_outlined, - "filter_none": Icons.filter_none, - "filter_none_sharp": Icons.filter_none_sharp, - "filter_none_rounded": Icons.filter_none_rounded, - "filter_none_outlined": Icons.filter_none_outlined, - "filter_tilt_shift": Icons.filter_tilt_shift, - "filter_tilt_shift_sharp": Icons.filter_tilt_shift_sharp, - "filter_tilt_shift_rounded": Icons.filter_tilt_shift_rounded, - "filter_tilt_shift_outlined": Icons.filter_tilt_shift_outlined, - "filter_vintage": Icons.filter_vintage, - "filter_vintage_sharp": Icons.filter_vintage_sharp, - "filter_vintage_rounded": Icons.filter_vintage_rounded, - "filter_vintage_outlined": Icons.filter_vintage_outlined, - "find_in_page": Icons.find_in_page, - "find_in_page_sharp": Icons.find_in_page_sharp, - "find_in_page_rounded": Icons.find_in_page_rounded, - "find_in_page_outlined": Icons.find_in_page_outlined, - "find_replace": Icons.find_replace, - "find_replace_sharp": Icons.find_replace_sharp, - "find_replace_rounded": Icons.find_replace_rounded, - "find_replace_outlined": Icons.find_replace_outlined, - "fingerprint": Icons.fingerprint, - "fingerprint_sharp": Icons.fingerprint_sharp, - "fingerprint_rounded": Icons.fingerprint_rounded, - "fingerprint_outlined": Icons.fingerprint_outlined, - "fire_extinguisher": Icons.fire_extinguisher, - "fire_extinguisher_sharp": Icons.fire_extinguisher_sharp, - "fire_extinguisher_rounded": Icons.fire_extinguisher_rounded, - "fire_extinguisher_outlined": Icons.fire_extinguisher_outlined, - "fire_hydrant": Icons.fire_hydrant, - "fire_hydrant_alt": Icons.fire_hydrant_alt, - "fire_hydrant_alt_sharp": Icons.fire_hydrant_alt_sharp, - "fire_hydrant_alt_rounded": Icons.fire_hydrant_alt_rounded, - "fire_hydrant_alt_outlined": Icons.fire_hydrant_alt_outlined, - "fire_truck": Icons.fire_truck, - "fire_truck_sharp": Icons.fire_truck_sharp, - "fire_truck_rounded": Icons.fire_truck_rounded, - "fire_truck_outlined": Icons.fire_truck_outlined, - "fireplace": Icons.fireplace, - "fireplace_sharp": Icons.fireplace_sharp, - "fireplace_rounded": Icons.fireplace_rounded, - "fireplace_outlined": Icons.fireplace_outlined, - "first_page": Icons.first_page, - "first_page_sharp": Icons.first_page_sharp, - "first_page_rounded": Icons.first_page_rounded, - "first_page_outlined": Icons.first_page_outlined, - "fit_screen": Icons.fit_screen, - "fit_screen_sharp": Icons.fit_screen_sharp, - "fit_screen_rounded": Icons.fit_screen_rounded, - "fit_screen_outlined": Icons.fit_screen_outlined, - "fitbit": Icons.fitbit, - "fitbit_sharp": Icons.fitbit_sharp, - "fitbit_rounded": Icons.fitbit_rounded, - "fitbit_outlined": Icons.fitbit_outlined, - "fitness_center": Icons.fitness_center, - "fitness_center_sharp": Icons.fitness_center_sharp, - "fitness_center_rounded": Icons.fitness_center_rounded, - "fitness_center_outlined": Icons.fitness_center_outlined, - "flag": Icons.flag, - "flag_sharp": Icons.flag_sharp, - "flag_rounded": Icons.flag_rounded, - "flag_outlined": Icons.flag_outlined, - "flag_circle": Icons.flag_circle, - "flag_circle_sharp": Icons.flag_circle_sharp, - "flag_circle_rounded": Icons.flag_circle_rounded, - "flag_circle_outlined": Icons.flag_circle_outlined, - "flaky": Icons.flaky, - "flaky_sharp": Icons.flaky_sharp, - "flaky_rounded": Icons.flaky_rounded, - "flaky_outlined": Icons.flaky_outlined, - "flare": Icons.flare, - "flare_sharp": Icons.flare_sharp, - "flare_rounded": Icons.flare_rounded, - "flare_outlined": Icons.flare_outlined, - "flash_auto": Icons.flash_auto, - "flash_auto_sharp": Icons.flash_auto_sharp, - "flash_auto_rounded": Icons.flash_auto_rounded, - "flash_auto_outlined": Icons.flash_auto_outlined, - "flash_off": Icons.flash_off, - "flash_off_sharp": Icons.flash_off_sharp, - "flash_off_rounded": Icons.flash_off_rounded, - "flash_off_outlined": Icons.flash_off_outlined, - "flash_on": Icons.flash_on, - "flash_on_sharp": Icons.flash_on_sharp, - "flash_on_rounded": Icons.flash_on_rounded, - "flash_on_outlined": Icons.flash_on_outlined, - "flashlight_off": Icons.flashlight_off, - "flashlight_off_sharp": Icons.flashlight_off_sharp, - "flashlight_off_rounded": Icons.flashlight_off_rounded, - "flashlight_off_outlined": Icons.flashlight_off_outlined, - "flashlight_on": Icons.flashlight_on, - "flashlight_on_sharp": Icons.flashlight_on_sharp, - "flashlight_on_rounded": Icons.flashlight_on_rounded, - "flashlight_on_outlined": Icons.flashlight_on_outlined, - "flatware": Icons.flatware, - "flatware_sharp": Icons.flatware_sharp, - "flatware_rounded": Icons.flatware_rounded, - "flatware_outlined": Icons.flatware_outlined, - "flight": Icons.flight, - "flight_sharp": Icons.flight_sharp, - "flight_rounded": Icons.flight_rounded, - "flight_outlined": Icons.flight_outlined, - "flight_class": Icons.flight_class, - "flight_class_sharp": Icons.flight_class_sharp, - "flight_class_rounded": Icons.flight_class_rounded, - "flight_class_outlined": Icons.flight_class_outlined, - "flight_land": Icons.flight_land, - "flight_land_sharp": Icons.flight_land_sharp, - "flight_land_rounded": Icons.flight_land_rounded, - "flight_land_outlined": Icons.flight_land_outlined, - "flight_takeoff": Icons.flight_takeoff, - "flight_takeoff_sharp": Icons.flight_takeoff_sharp, - "flight_takeoff_rounded": Icons.flight_takeoff_rounded, - "flight_takeoff_outlined": Icons.flight_takeoff_outlined, - "flip": Icons.flip, - "flip_sharp": Icons.flip_sharp, - "flip_rounded": Icons.flip_rounded, - "flip_outlined": Icons.flip_outlined, - "flip_camera_android": Icons.flip_camera_android, - "flip_camera_android_sharp": Icons.flip_camera_android_sharp, - "flip_camera_android_rounded": Icons.flip_camera_android_rounded, - "flip_camera_android_outlined": Icons.flip_camera_android_outlined, - "flip_camera_ios": Icons.flip_camera_ios, - "flip_camera_ios_sharp": Icons.flip_camera_ios_sharp, - "flip_camera_ios_rounded": Icons.flip_camera_ios_rounded, - "flip_camera_ios_outlined": Icons.flip_camera_ios_outlined, - "flip_to_back": Icons.flip_to_back, - "flip_to_back_sharp": Icons.flip_to_back_sharp, - "flip_to_back_rounded": Icons.flip_to_back_rounded, - "flip_to_back_outlined": Icons.flip_to_back_outlined, - "flip_to_front": Icons.flip_to_front, - "flip_to_front_sharp": Icons.flip_to_front_sharp, - "flip_to_front_rounded": Icons.flip_to_front_rounded, - "flip_to_front_outlined": Icons.flip_to_front_outlined, - "flood": Icons.flood, - "flood_sharp": Icons.flood_sharp, - "flood_rounded": Icons.flood_rounded, - "flood_outlined": Icons.flood_outlined, - "flourescent": Icons.flourescent, - "flourescent_sharp": Icons.flourescent_sharp, - "flourescent_rounded": Icons.flourescent_rounded, - "flourescent_outlined": Icons.flourescent_outlined, - "fluorescent": Icons.fluorescent, - "fluorescent_sharp": Icons.fluorescent_sharp, - "fluorescent_rounded": Icons.fluorescent_rounded, - "fluorescent_outlined": Icons.fluorescent_outlined, - "flutter_dash": Icons.flutter_dash, - "flutter_dash_sharp": Icons.flutter_dash_sharp, - "flutter_dash_rounded": Icons.flutter_dash_rounded, - "flutter_dash_outlined": Icons.flutter_dash_outlined, - "fmd_bad": Icons.fmd_bad, - "fmd_bad_sharp": Icons.fmd_bad_sharp, - "fmd_bad_rounded": Icons.fmd_bad_rounded, - "fmd_bad_outlined": Icons.fmd_bad_outlined, - "fmd_good": Icons.fmd_good, - "fmd_good_sharp": Icons.fmd_good_sharp, - "fmd_good_rounded": Icons.fmd_good_rounded, - "fmd_good_outlined": Icons.fmd_good_outlined, - "foggy": Icons.foggy, - "folder": Icons.folder, - "folder_sharp": Icons.folder_sharp, - "folder_rounded": Icons.folder_rounded, - "folder_outlined": Icons.folder_outlined, - "folder_copy": Icons.folder_copy, - "folder_copy_sharp": Icons.folder_copy_sharp, - "folder_copy_rounded": Icons.folder_copy_rounded, - "folder_copy_outlined": Icons.folder_copy_outlined, - "folder_delete": Icons.folder_delete, - "folder_delete_sharp": Icons.folder_delete_sharp, - "folder_delete_rounded": Icons.folder_delete_rounded, - "folder_delete_outlined": Icons.folder_delete_outlined, - "folder_off": Icons.folder_off, - "folder_off_sharp": Icons.folder_off_sharp, - "folder_off_rounded": Icons.folder_off_rounded, - "folder_off_outlined": Icons.folder_off_outlined, - "folder_open": Icons.folder_open, - "folder_open_sharp": Icons.folder_open_sharp, - "folder_open_rounded": Icons.folder_open_rounded, - "folder_open_outlined": Icons.folder_open_outlined, - "folder_shared": Icons.folder_shared, - "folder_shared_sharp": Icons.folder_shared_sharp, - "folder_shared_rounded": Icons.folder_shared_rounded, - "folder_shared_outlined": Icons.folder_shared_outlined, - "folder_special": Icons.folder_special, - "folder_special_sharp": Icons.folder_special_sharp, - "folder_special_rounded": Icons.folder_special_rounded, - "folder_special_outlined": Icons.folder_special_outlined, - "folder_zip": Icons.folder_zip, - "folder_zip_sharp": Icons.folder_zip_sharp, - "folder_zip_rounded": Icons.folder_zip_rounded, - "folder_zip_outlined": Icons.folder_zip_outlined, - "follow_the_signs": Icons.follow_the_signs, - "follow_the_signs_sharp": Icons.follow_the_signs_sharp, - "follow_the_signs_rounded": Icons.follow_the_signs_rounded, - "follow_the_signs_outlined": Icons.follow_the_signs_outlined, - "font_download": Icons.font_download, - "font_download_sharp": Icons.font_download_sharp, - "font_download_rounded": Icons.font_download_rounded, - "font_download_outlined": Icons.font_download_outlined, - "font_download_off": Icons.font_download_off, - "font_download_off_sharp": Icons.font_download_off_sharp, - "font_download_off_rounded": Icons.font_download_off_rounded, - "font_download_off_outlined": Icons.font_download_off_outlined, - "food_bank": Icons.food_bank, - "food_bank_sharp": Icons.food_bank_sharp, - "food_bank_rounded": Icons.food_bank_rounded, - "food_bank_outlined": Icons.food_bank_outlined, - "forest": Icons.forest, - "forest_sharp": Icons.forest_sharp, - "forest_rounded": Icons.forest_rounded, - "forest_outlined": Icons.forest_outlined, - "fork_left": Icons.fork_left, - "fork_left_sharp": Icons.fork_left_sharp, - "fork_left_rounded": Icons.fork_left_rounded, - "fork_left_outlined": Icons.fork_left_outlined, - "fork_right": Icons.fork_right, - "fork_right_sharp": Icons.fork_right_sharp, - "fork_right_rounded": Icons.fork_right_rounded, - "fork_right_outlined": Icons.fork_right_outlined, - "forklift": Icons.forklift, - "format_align_center": Icons.format_align_center, - "format_align_center_sharp": Icons.format_align_center_sharp, - "format_align_center_rounded": Icons.format_align_center_rounded, - "format_align_center_outlined": Icons.format_align_center_outlined, - "format_align_justify": Icons.format_align_justify, - "format_align_justify_sharp": Icons.format_align_justify_sharp, - "format_align_justify_rounded": Icons.format_align_justify_rounded, - "format_align_justify_outlined": Icons.format_align_justify_outlined, - "format_align_left": Icons.format_align_left, - "format_align_left_sharp": Icons.format_align_left_sharp, - "format_align_left_rounded": Icons.format_align_left_rounded, - "format_align_left_outlined": Icons.format_align_left_outlined, - "format_align_right": Icons.format_align_right, - "format_align_right_sharp": Icons.format_align_right_sharp, - "format_align_right_rounded": Icons.format_align_right_rounded, - "format_align_right_outlined": Icons.format_align_right_outlined, - "format_bold": Icons.format_bold, - "format_bold_sharp": Icons.format_bold_sharp, - "format_bold_rounded": Icons.format_bold_rounded, - "format_bold_outlined": Icons.format_bold_outlined, - "format_clear": Icons.format_clear, - "format_clear_sharp": Icons.format_clear_sharp, - "format_clear_rounded": Icons.format_clear_rounded, - "format_clear_outlined": Icons.format_clear_outlined, - "format_color_fill": Icons.format_color_fill, - "format_color_fill_sharp": Icons.format_color_fill_sharp, - "format_color_fill_rounded": Icons.format_color_fill_rounded, - "format_color_fill_outlined": Icons.format_color_fill_outlined, - "format_color_reset": Icons.format_color_reset, - "format_color_reset_sharp": Icons.format_color_reset_sharp, - "format_color_reset_rounded": Icons.format_color_reset_rounded, - "format_color_reset_outlined": Icons.format_color_reset_outlined, - "format_color_text": Icons.format_color_text, - "format_color_text_sharp": Icons.format_color_text_sharp, - "format_color_text_rounded": Icons.format_color_text_rounded, - "format_color_text_outlined": Icons.format_color_text_outlined, - "format_indent_decrease": Icons.format_indent_decrease, - "format_indent_decrease_sharp": Icons.format_indent_decrease_sharp, - "format_indent_decrease_rounded": Icons.format_indent_decrease_rounded, - "format_indent_decrease_outlined": Icons.format_indent_decrease_outlined, - "format_indent_increase": Icons.format_indent_increase, - "format_indent_increase_sharp": Icons.format_indent_increase_sharp, - "format_indent_increase_rounded": Icons.format_indent_increase_rounded, - "format_indent_increase_outlined": Icons.format_indent_increase_outlined, - "format_italic": Icons.format_italic, - "format_italic_sharp": Icons.format_italic_sharp, - "format_italic_rounded": Icons.format_italic_rounded, - "format_italic_outlined": Icons.format_italic_outlined, - "format_line_spacing": Icons.format_line_spacing, - "format_line_spacing_sharp": Icons.format_line_spacing_sharp, - "format_line_spacing_rounded": Icons.format_line_spacing_rounded, - "format_line_spacing_outlined": Icons.format_line_spacing_outlined, - "format_list_bulleted": Icons.format_list_bulleted, - "format_list_bulleted_sharp": Icons.format_list_bulleted_sharp, - "format_list_bulleted_rounded": Icons.format_list_bulleted_rounded, - "format_list_bulleted_outlined": Icons.format_list_bulleted_outlined, - "format_list_bulleted_add": Icons.format_list_bulleted_add, - "format_list_numbered": Icons.format_list_numbered, - "format_list_numbered_sharp": Icons.format_list_numbered_sharp, - "format_list_numbered_rounded": Icons.format_list_numbered_rounded, - "format_list_numbered_outlined": Icons.format_list_numbered_outlined, - "format_list_numbered_rtl": Icons.format_list_numbered_rtl, - "format_list_numbered_rtl_sharp": Icons.format_list_numbered_rtl_sharp, - "format_list_numbered_rtl_rounded": Icons.format_list_numbered_rtl_rounded, - "format_list_numbered_rtl_outlined": Icons.format_list_numbered_rtl_outlined, - "format_overline": Icons.format_overline, - "format_overline_sharp": Icons.format_overline_sharp, - "format_overline_rounded": Icons.format_overline_rounded, - "format_overline_outlined": Icons.format_overline_outlined, - "format_paint": Icons.format_paint, - "format_paint_sharp": Icons.format_paint_sharp, - "format_paint_rounded": Icons.format_paint_rounded, - "format_paint_outlined": Icons.format_paint_outlined, - "format_quote": Icons.format_quote, - "format_quote_sharp": Icons.format_quote_sharp, - "format_quote_rounded": Icons.format_quote_rounded, - "format_quote_outlined": Icons.format_quote_outlined, - "format_shapes": Icons.format_shapes, - "format_shapes_sharp": Icons.format_shapes_sharp, - "format_shapes_rounded": Icons.format_shapes_rounded, - "format_shapes_outlined": Icons.format_shapes_outlined, - "format_size": Icons.format_size, - "format_size_sharp": Icons.format_size_sharp, - "format_size_rounded": Icons.format_size_rounded, - "format_size_outlined": Icons.format_size_outlined, - "format_strikethrough": Icons.format_strikethrough, - "format_strikethrough_sharp": Icons.format_strikethrough_sharp, - "format_strikethrough_rounded": Icons.format_strikethrough_rounded, - "format_strikethrough_outlined": Icons.format_strikethrough_outlined, - "format_textdirection_l_to_r": Icons.format_textdirection_l_to_r, - "format_textdirection_l_to_r_sharp": Icons.format_textdirection_l_to_r_sharp, - "format_textdirection_l_to_r_rounded": - Icons.format_textdirection_l_to_r_rounded, - "format_textdirection_l_to_r_outlined": - Icons.format_textdirection_l_to_r_outlined, - "format_textdirection_r_to_l": Icons.format_textdirection_r_to_l, - "format_textdirection_r_to_l_sharp": Icons.format_textdirection_r_to_l_sharp, - "format_textdirection_r_to_l_rounded": - Icons.format_textdirection_r_to_l_rounded, - "format_textdirection_r_to_l_outlined": - Icons.format_textdirection_r_to_l_outlined, - "format_underline": Icons.format_underline, - "format_underline_sharp": Icons.format_underline_sharp, - "format_underline_rounded": Icons.format_underline_rounded, - "format_underline_outlined": Icons.format_underline_outlined, - "format_underlined": Icons.format_underlined, - "format_underlined_sharp": Icons.format_underlined_sharp, - "format_underlined_rounded": Icons.format_underlined_rounded, - "format_underlined_outlined": Icons.format_underlined_outlined, - "fort": Icons.fort, - "fort_sharp": Icons.fort_sharp, - "fort_rounded": Icons.fort_rounded, - "fort_outlined": Icons.fort_outlined, - "forum": Icons.forum, - "forum_sharp": Icons.forum_sharp, - "forum_rounded": Icons.forum_rounded, - "forum_outlined": Icons.forum_outlined, - "forward": Icons.forward, - "forward_sharp": Icons.forward_sharp, - "forward_rounded": Icons.forward_rounded, - "forward_outlined": Icons.forward_outlined, - "forward_10": Icons.forward_10, - "forward_10_sharp": Icons.forward_10_sharp, - "forward_10_rounded": Icons.forward_10_rounded, - "forward_10_outlined": Icons.forward_10_outlined, - "forward_30": Icons.forward_30, - "forward_30_sharp": Icons.forward_30_sharp, - "forward_30_rounded": Icons.forward_30_rounded, - "forward_30_outlined": Icons.forward_30_outlined, - "forward_5": Icons.forward_5, - "forward_5_sharp": Icons.forward_5_sharp, - "forward_5_rounded": Icons.forward_5_rounded, - "forward_5_outlined": Icons.forward_5_outlined, - "forward_to_inbox": Icons.forward_to_inbox, - "forward_to_inbox_sharp": Icons.forward_to_inbox_sharp, - "forward_to_inbox_rounded": Icons.forward_to_inbox_rounded, - "forward_to_inbox_outlined": Icons.forward_to_inbox_outlined, - "foundation": Icons.foundation, - "foundation_sharp": Icons.foundation_sharp, - "foundation_rounded": Icons.foundation_rounded, - "foundation_outlined": Icons.foundation_outlined, - "free_breakfast": Icons.free_breakfast, - "free_breakfast_sharp": Icons.free_breakfast_sharp, - "free_breakfast_rounded": Icons.free_breakfast_rounded, - "free_breakfast_outlined": Icons.free_breakfast_outlined, - "free_cancellation": Icons.free_cancellation, - "free_cancellation_sharp": Icons.free_cancellation_sharp, - "free_cancellation_rounded": Icons.free_cancellation_rounded, - "free_cancellation_outlined": Icons.free_cancellation_outlined, - "front_hand": Icons.front_hand, - "front_hand_sharp": Icons.front_hand_sharp, - "front_hand_rounded": Icons.front_hand_rounded, - "front_hand_outlined": Icons.front_hand_outlined, - "front_loader": Icons.front_loader, - "fullscreen": Icons.fullscreen, - "fullscreen_sharp": Icons.fullscreen_sharp, - "fullscreen_rounded": Icons.fullscreen_rounded, - "fullscreen_outlined": Icons.fullscreen_outlined, - "fullscreen_exit": Icons.fullscreen_exit, - "fullscreen_exit_sharp": Icons.fullscreen_exit_sharp, - "fullscreen_exit_rounded": Icons.fullscreen_exit_rounded, - "fullscreen_exit_outlined": Icons.fullscreen_exit_outlined, - "functions": Icons.functions, - "functions_sharp": Icons.functions_sharp, - "functions_rounded": Icons.functions_rounded, - "functions_outlined": Icons.functions_outlined, - "g_mobiledata": Icons.g_mobiledata, - "g_mobiledata_sharp": Icons.g_mobiledata_sharp, - "g_mobiledata_rounded": Icons.g_mobiledata_rounded, - "g_mobiledata_outlined": Icons.g_mobiledata_outlined, - "g_translate": Icons.g_translate, - "g_translate_sharp": Icons.g_translate_sharp, - "g_translate_rounded": Icons.g_translate_rounded, - "g_translate_outlined": Icons.g_translate_outlined, - "gamepad": Icons.gamepad, - "gamepad_sharp": Icons.gamepad_sharp, - "gamepad_rounded": Icons.gamepad_rounded, - "gamepad_outlined": Icons.gamepad_outlined, - "games": Icons.games, - "games_sharp": Icons.games_sharp, - "games_rounded": Icons.games_rounded, - "games_outlined": Icons.games_outlined, - "garage": Icons.garage, - "garage_sharp": Icons.garage_sharp, - "garage_rounded": Icons.garage_rounded, - "garage_outlined": Icons.garage_outlined, - "gas_meter": Icons.gas_meter, - "gas_meter_sharp": Icons.gas_meter_sharp, - "gas_meter_rounded": Icons.gas_meter_rounded, - "gas_meter_outlined": Icons.gas_meter_outlined, - "gavel": Icons.gavel, - "gavel_sharp": Icons.gavel_sharp, - "gavel_rounded": Icons.gavel_rounded, - "gavel_outlined": Icons.gavel_outlined, - "generating_tokens": Icons.generating_tokens, - "generating_tokens_sharp": Icons.generating_tokens_sharp, - "generating_tokens_rounded": Icons.generating_tokens_rounded, - "generating_tokens_outlined": Icons.generating_tokens_outlined, - "gesture": Icons.gesture, - "gesture_sharp": Icons.gesture_sharp, - "gesture_rounded": Icons.gesture_rounded, - "gesture_outlined": Icons.gesture_outlined, - "get_app": Icons.get_app, - "get_app_sharp": Icons.get_app_sharp, - "get_app_rounded": Icons.get_app_rounded, - "get_app_outlined": Icons.get_app_outlined, - "gif": Icons.gif, - "gif_sharp": Icons.gif_sharp, - "gif_rounded": Icons.gif_rounded, - "gif_outlined": Icons.gif_outlined, - "gif_box": Icons.gif_box, - "gif_box_sharp": Icons.gif_box_sharp, - "gif_box_rounded": Icons.gif_box_rounded, - "gif_box_outlined": Icons.gif_box_outlined, - "girl": Icons.girl, - "girl_sharp": Icons.girl_sharp, - "girl_rounded": Icons.girl_rounded, - "girl_outlined": Icons.girl_outlined, - "gite": Icons.gite, - "gite_sharp": Icons.gite_sharp, - "gite_rounded": Icons.gite_rounded, - "gite_outlined": Icons.gite_outlined, - "golf_course": Icons.golf_course, - "golf_course_sharp": Icons.golf_course_sharp, - "golf_course_rounded": Icons.golf_course_rounded, - "golf_course_outlined": Icons.golf_course_outlined, - "gpp_bad": Icons.gpp_bad, - "gpp_bad_sharp": Icons.gpp_bad_sharp, - "gpp_bad_rounded": Icons.gpp_bad_rounded, - "gpp_bad_outlined": Icons.gpp_bad_outlined, - "gpp_good": Icons.gpp_good, - "gpp_good_sharp": Icons.gpp_good_sharp, - "gpp_good_rounded": Icons.gpp_good_rounded, - "gpp_good_outlined": Icons.gpp_good_outlined, - "gpp_maybe": Icons.gpp_maybe, - "gpp_maybe_sharp": Icons.gpp_maybe_sharp, - "gpp_maybe_rounded": Icons.gpp_maybe_rounded, - "gpp_maybe_outlined": Icons.gpp_maybe_outlined, - "gps_fixed": Icons.gps_fixed, - "gps_fixed_sharp": Icons.gps_fixed_sharp, - "gps_fixed_rounded": Icons.gps_fixed_rounded, - "gps_fixed_outlined": Icons.gps_fixed_outlined, - "gps_not_fixed": Icons.gps_not_fixed, - "gps_not_fixed_sharp": Icons.gps_not_fixed_sharp, - "gps_not_fixed_rounded": Icons.gps_not_fixed_rounded, - "gps_not_fixed_outlined": Icons.gps_not_fixed_outlined, - "gps_off": Icons.gps_off, - "gps_off_sharp": Icons.gps_off_sharp, - "gps_off_rounded": Icons.gps_off_rounded, - "gps_off_outlined": Icons.gps_off_outlined, - "grade": Icons.grade, - "grade_sharp": Icons.grade_sharp, - "grade_rounded": Icons.grade_rounded, - "grade_outlined": Icons.grade_outlined, - "gradient": Icons.gradient, - "gradient_sharp": Icons.gradient_sharp, - "gradient_rounded": Icons.gradient_rounded, - "gradient_outlined": Icons.gradient_outlined, - "grading": Icons.grading, - "grading_sharp": Icons.grading_sharp, - "grading_rounded": Icons.grading_rounded, - "grading_outlined": Icons.grading_outlined, - "grain": Icons.grain, - "grain_sharp": Icons.grain_sharp, - "grain_rounded": Icons.grain_rounded, - "grain_outlined": Icons.grain_outlined, - "graphic_eq": Icons.graphic_eq, - "graphic_eq_sharp": Icons.graphic_eq_sharp, - "graphic_eq_rounded": Icons.graphic_eq_rounded, - "graphic_eq_outlined": Icons.graphic_eq_outlined, - "grass": Icons.grass, - "grass_sharp": Icons.grass_sharp, - "grass_rounded": Icons.grass_rounded, - "grass_outlined": Icons.grass_outlined, - "grid_3x3": Icons.grid_3x3, - "grid_3x3_sharp": Icons.grid_3x3_sharp, - "grid_3x3_rounded": Icons.grid_3x3_rounded, - "grid_3x3_outlined": Icons.grid_3x3_outlined, - "grid_4x4": Icons.grid_4x4, - "grid_4x4_sharp": Icons.grid_4x4_sharp, - "grid_4x4_rounded": Icons.grid_4x4_rounded, - "grid_4x4_outlined": Icons.grid_4x4_outlined, - "grid_goldenratio": Icons.grid_goldenratio, - "grid_goldenratio_sharp": Icons.grid_goldenratio_sharp, - "grid_goldenratio_rounded": Icons.grid_goldenratio_rounded, - "grid_goldenratio_outlined": Icons.grid_goldenratio_outlined, - "grid_off": Icons.grid_off, - "grid_off_sharp": Icons.grid_off_sharp, - "grid_off_rounded": Icons.grid_off_rounded, - "grid_off_outlined": Icons.grid_off_outlined, - "grid_on": Icons.grid_on, - "grid_on_sharp": Icons.grid_on_sharp, - "grid_on_rounded": Icons.grid_on_rounded, - "grid_on_outlined": Icons.grid_on_outlined, - "grid_view": Icons.grid_view, - "grid_view_sharp": Icons.grid_view_sharp, - "grid_view_rounded": Icons.grid_view_rounded, - "grid_view_outlined": Icons.grid_view_outlined, - "group": Icons.group, - "group_sharp": Icons.group_sharp, - "group_rounded": Icons.group_rounded, - "group_outlined": Icons.group_outlined, - "group_add": Icons.group_add, - "group_add_sharp": Icons.group_add_sharp, - "group_add_rounded": Icons.group_add_rounded, - "group_add_outlined": Icons.group_add_outlined, - "group_off": Icons.group_off, - "group_off_sharp": Icons.group_off_sharp, - "group_off_rounded": Icons.group_off_rounded, - "group_off_outlined": Icons.group_off_outlined, - "group_remove": Icons.group_remove, - "group_remove_sharp": Icons.group_remove_sharp, - "group_remove_rounded": Icons.group_remove_rounded, - "group_remove_outlined": Icons.group_remove_outlined, - "group_work": Icons.group_work, - "group_work_sharp": Icons.group_work_sharp, - "group_work_rounded": Icons.group_work_rounded, - "group_work_outlined": Icons.group_work_outlined, - "groups": Icons.groups, - "groups_sharp": Icons.groups_sharp, - "groups_rounded": Icons.groups_rounded, - "groups_outlined": Icons.groups_outlined, - "groups_2": Icons.groups_2, - "groups_2_sharp": Icons.groups_2_sharp, - "groups_2_rounded": Icons.groups_2_rounded, - "groups_2_outlined": Icons.groups_2_outlined, - "groups_3": Icons.groups_3, - "groups_3_sharp": Icons.groups_3_sharp, - "groups_3_rounded": Icons.groups_3_rounded, - "groups_3_outlined": Icons.groups_3_outlined, - "h_mobiledata": Icons.h_mobiledata, - "h_mobiledata_sharp": Icons.h_mobiledata_sharp, - "h_mobiledata_rounded": Icons.h_mobiledata_rounded, - "h_mobiledata_outlined": Icons.h_mobiledata_outlined, - "h_plus_mobiledata": Icons.h_plus_mobiledata, - "h_plus_mobiledata_sharp": Icons.h_plus_mobiledata_sharp, - "h_plus_mobiledata_rounded": Icons.h_plus_mobiledata_rounded, - "h_plus_mobiledata_outlined": Icons.h_plus_mobiledata_outlined, - "hail": Icons.hail, - "hail_sharp": Icons.hail_sharp, - "hail_rounded": Icons.hail_rounded, - "hail_outlined": Icons.hail_outlined, - "handshake": Icons.handshake, - "handshake_sharp": Icons.handshake_sharp, - "handshake_rounded": Icons.handshake_rounded, - "handshake_outlined": Icons.handshake_outlined, - "handyman": Icons.handyman, - "handyman_sharp": Icons.handyman_sharp, - "handyman_rounded": Icons.handyman_rounded, - "handyman_outlined": Icons.handyman_outlined, - "hardware": Icons.hardware, - "hardware_sharp": Icons.hardware_sharp, - "hardware_rounded": Icons.hardware_rounded, - "hardware_outlined": Icons.hardware_outlined, - "hd": Icons.hd, - "hd_sharp": Icons.hd_sharp, - "hd_rounded": Icons.hd_rounded, - "hd_outlined": Icons.hd_outlined, - "hdr_auto": Icons.hdr_auto, - "hdr_auto_sharp": Icons.hdr_auto_sharp, - "hdr_auto_rounded": Icons.hdr_auto_rounded, - "hdr_auto_outlined": Icons.hdr_auto_outlined, - "hdr_auto_select": Icons.hdr_auto_select, - "hdr_auto_select_sharp": Icons.hdr_auto_select_sharp, - "hdr_auto_select_rounded": Icons.hdr_auto_select_rounded, - "hdr_auto_select_outlined": Icons.hdr_auto_select_outlined, - "hdr_enhanced_select": Icons.hdr_enhanced_select, - "hdr_enhanced_select_sharp": Icons.hdr_enhanced_select_sharp, - "hdr_enhanced_select_rounded": Icons.hdr_enhanced_select_rounded, - "hdr_enhanced_select_outlined": Icons.hdr_enhanced_select_outlined, - "hdr_off": Icons.hdr_off, - "hdr_off_sharp": Icons.hdr_off_sharp, - "hdr_off_rounded": Icons.hdr_off_rounded, - "hdr_off_outlined": Icons.hdr_off_outlined, - "hdr_off_select": Icons.hdr_off_select, - "hdr_off_select_sharp": Icons.hdr_off_select_sharp, - "hdr_off_select_rounded": Icons.hdr_off_select_rounded, - "hdr_off_select_outlined": Icons.hdr_off_select_outlined, - "hdr_on": Icons.hdr_on, - "hdr_on_sharp": Icons.hdr_on_sharp, - "hdr_on_rounded": Icons.hdr_on_rounded, - "hdr_on_outlined": Icons.hdr_on_outlined, - "hdr_on_select": Icons.hdr_on_select, - "hdr_on_select_sharp": Icons.hdr_on_select_sharp, - "hdr_on_select_rounded": Icons.hdr_on_select_rounded, - "hdr_on_select_outlined": Icons.hdr_on_select_outlined, - "hdr_plus": Icons.hdr_plus, - "hdr_plus_sharp": Icons.hdr_plus_sharp, - "hdr_plus_rounded": Icons.hdr_plus_rounded, - "hdr_plus_outlined": Icons.hdr_plus_outlined, - "hdr_strong": Icons.hdr_strong, - "hdr_strong_sharp": Icons.hdr_strong_sharp, - "hdr_strong_rounded": Icons.hdr_strong_rounded, - "hdr_strong_outlined": Icons.hdr_strong_outlined, - "hdr_weak": Icons.hdr_weak, - "hdr_weak_sharp": Icons.hdr_weak_sharp, - "hdr_weak_rounded": Icons.hdr_weak_rounded, - "hdr_weak_outlined": Icons.hdr_weak_outlined, - "headphones": Icons.headphones, - "headphones_sharp": Icons.headphones_sharp, - "headphones_rounded": Icons.headphones_rounded, - "headphones_outlined": Icons.headphones_outlined, - "headphones_battery": Icons.headphones_battery, - "headphones_battery_sharp": Icons.headphones_battery_sharp, - "headphones_battery_rounded": Icons.headphones_battery_rounded, - "headphones_battery_outlined": Icons.headphones_battery_outlined, - "headset": Icons.headset, - "headset_sharp": Icons.headset_sharp, - "headset_rounded": Icons.headset_rounded, - "headset_outlined": Icons.headset_outlined, - "headset_mic": Icons.headset_mic, - "headset_mic_sharp": Icons.headset_mic_sharp, - "headset_mic_rounded": Icons.headset_mic_rounded, - "headset_mic_outlined": Icons.headset_mic_outlined, - "headset_off": Icons.headset_off, - "headset_off_sharp": Icons.headset_off_sharp, - "headset_off_rounded": Icons.headset_off_rounded, - "headset_off_outlined": Icons.headset_off_outlined, - "healing": Icons.healing, - "healing_sharp": Icons.healing_sharp, - "healing_rounded": Icons.healing_rounded, - "healing_outlined": Icons.healing_outlined, - "health_and_safety": Icons.health_and_safety, - "health_and_safety_sharp": Icons.health_and_safety_sharp, - "health_and_safety_rounded": Icons.health_and_safety_rounded, - "health_and_safety_outlined": Icons.health_and_safety_outlined, - "hearing": Icons.hearing, - "hearing_sharp": Icons.hearing_sharp, - "hearing_rounded": Icons.hearing_rounded, - "hearing_outlined": Icons.hearing_outlined, - "hearing_disabled": Icons.hearing_disabled, - "hearing_disabled_sharp": Icons.hearing_disabled_sharp, - "hearing_disabled_rounded": Icons.hearing_disabled_rounded, - "hearing_disabled_outlined": Icons.hearing_disabled_outlined, - "heart_broken": Icons.heart_broken, - "heart_broken_sharp": Icons.heart_broken_sharp, - "heart_broken_rounded": Icons.heart_broken_rounded, - "heart_broken_outlined": Icons.heart_broken_outlined, - "heat_pump": Icons.heat_pump, - "heat_pump_sharp": Icons.heat_pump_sharp, - "heat_pump_rounded": Icons.heat_pump_rounded, - "heat_pump_outlined": Icons.heat_pump_outlined, - "height": Icons.height, - "height_sharp": Icons.height_sharp, - "height_rounded": Icons.height_rounded, - "height_outlined": Icons.height_outlined, - "help": Icons.help, - "help_sharp": Icons.help_sharp, - "help_rounded": Icons.help_rounded, - "help_outlined": Icons.help_outlined, - "help_center": Icons.help_center, - "help_center_sharp": Icons.help_center_sharp, - "help_center_rounded": Icons.help_center_rounded, - "help_center_outlined": Icons.help_center_outlined, - "help_outline": Icons.help_outline, - "help_outline_sharp": Icons.help_outline_sharp, - "help_outline_rounded": Icons.help_outline_rounded, - "help_outline_outlined": Icons.help_outline_outlined, - "hevc": Icons.hevc, - "hevc_sharp": Icons.hevc_sharp, - "hevc_rounded": Icons.hevc_rounded, - "hevc_outlined": Icons.hevc_outlined, - "hexagon": Icons.hexagon, - "hexagon_sharp": Icons.hexagon_sharp, - "hexagon_rounded": Icons.hexagon_rounded, - "hexagon_outlined": Icons.hexagon_outlined, - "hide_image": Icons.hide_image, - "hide_image_sharp": Icons.hide_image_sharp, - "hide_image_rounded": Icons.hide_image_rounded, - "hide_image_outlined": Icons.hide_image_outlined, - "hide_source": Icons.hide_source, - "hide_source_sharp": Icons.hide_source_sharp, - "hide_source_rounded": Icons.hide_source_rounded, - "hide_source_outlined": Icons.hide_source_outlined, - "high_quality": Icons.high_quality, - "high_quality_sharp": Icons.high_quality_sharp, - "high_quality_rounded": Icons.high_quality_rounded, - "high_quality_outlined": Icons.high_quality_outlined, - "highlight": Icons.highlight, - "highlight_sharp": Icons.highlight_sharp, - "highlight_rounded": Icons.highlight_rounded, - "highlight_outlined": Icons.highlight_outlined, - "highlight_alt": Icons.highlight_alt, - "highlight_alt_sharp": Icons.highlight_alt_sharp, - "highlight_alt_rounded": Icons.highlight_alt_rounded, - "highlight_alt_outlined": Icons.highlight_alt_outlined, - "highlight_off": Icons.highlight_off, - "highlight_off_sharp": Icons.highlight_off_sharp, - "highlight_off_rounded": Icons.highlight_off_rounded, - "highlight_off_outlined": Icons.highlight_off_outlined, - "highlight_remove": Icons.highlight_remove, - "highlight_remove_sharp": Icons.highlight_remove_sharp, - "highlight_remove_rounded": Icons.highlight_remove_rounded, - "highlight_remove_outlined": Icons.highlight_remove_outlined, - "hiking": Icons.hiking, - "hiking_sharp": Icons.hiking_sharp, - "hiking_rounded": Icons.hiking_rounded, - "hiking_outlined": Icons.hiking_outlined, - "history": Icons.history, - "history_sharp": Icons.history_sharp, - "history_rounded": Icons.history_rounded, - "history_outlined": Icons.history_outlined, - "history_edu": Icons.history_edu, - "history_edu_sharp": Icons.history_edu_sharp, - "history_edu_rounded": Icons.history_edu_rounded, - "history_edu_outlined": Icons.history_edu_outlined, - "history_toggle_off": Icons.history_toggle_off, - "history_toggle_off_sharp": Icons.history_toggle_off_sharp, - "history_toggle_off_rounded": Icons.history_toggle_off_rounded, - "history_toggle_off_outlined": Icons.history_toggle_off_outlined, - "hive": Icons.hive, - "hive_sharp": Icons.hive_sharp, - "hive_rounded": Icons.hive_rounded, - "hive_outlined": Icons.hive_outlined, - "hls": Icons.hls, - "hls_sharp": Icons.hls_sharp, - "hls_rounded": Icons.hls_rounded, - "hls_outlined": Icons.hls_outlined, - "hls_off": Icons.hls_off, - "hls_off_sharp": Icons.hls_off_sharp, - "hls_off_rounded": Icons.hls_off_rounded, - "hls_off_outlined": Icons.hls_off_outlined, - "holiday_village": Icons.holiday_village, - "holiday_village_sharp": Icons.holiday_village_sharp, - "holiday_village_rounded": Icons.holiday_village_rounded, - "holiday_village_outlined": Icons.holiday_village_outlined, - "home": Icons.home, - "home_sharp": Icons.home_sharp, - "home_rounded": Icons.home_rounded, - "home_outlined": Icons.home_outlined, - "home_filled": Icons.home_filled, - "home_max": Icons.home_max, - "home_max_sharp": Icons.home_max_sharp, - "home_max_rounded": Icons.home_max_rounded, - "home_max_outlined": Icons.home_max_outlined, - "home_mini": Icons.home_mini, - "home_mini_sharp": Icons.home_mini_sharp, - "home_mini_rounded": Icons.home_mini_rounded, - "home_mini_outlined": Icons.home_mini_outlined, - "home_repair_service": Icons.home_repair_service, - "home_repair_service_sharp": Icons.home_repair_service_sharp, - "home_repair_service_rounded": Icons.home_repair_service_rounded, - "home_repair_service_outlined": Icons.home_repair_service_outlined, - "home_work": Icons.home_work, - "home_work_sharp": Icons.home_work_sharp, - "home_work_rounded": Icons.home_work_rounded, - "home_work_outlined": Icons.home_work_outlined, - "horizontal_distribute": Icons.horizontal_distribute, - "horizontal_distribute_sharp": Icons.horizontal_distribute_sharp, - "horizontal_distribute_rounded": Icons.horizontal_distribute_rounded, - "horizontal_distribute_outlined": Icons.horizontal_distribute_outlined, - "horizontal_rule": Icons.horizontal_rule, - "horizontal_rule_sharp": Icons.horizontal_rule_sharp, - "horizontal_rule_rounded": Icons.horizontal_rule_rounded, - "horizontal_rule_outlined": Icons.horizontal_rule_outlined, - "horizontal_split": Icons.horizontal_split, - "horizontal_split_sharp": Icons.horizontal_split_sharp, - "horizontal_split_rounded": Icons.horizontal_split_rounded, - "horizontal_split_outlined": Icons.horizontal_split_outlined, - "hot_tub": Icons.hot_tub, - "hot_tub_sharp": Icons.hot_tub_sharp, - "hot_tub_rounded": Icons.hot_tub_rounded, - "hot_tub_outlined": Icons.hot_tub_outlined, - "hotel": Icons.hotel, - "hotel_sharp": Icons.hotel_sharp, - "hotel_rounded": Icons.hotel_rounded, - "hotel_outlined": Icons.hotel_outlined, - "hotel_class": Icons.hotel_class, - "hotel_class_sharp": Icons.hotel_class_sharp, - "hotel_class_rounded": Icons.hotel_class_rounded, - "hotel_class_outlined": Icons.hotel_class_outlined, - "hourglass_bottom": Icons.hourglass_bottom, - "hourglass_bottom_sharp": Icons.hourglass_bottom_sharp, - "hourglass_bottom_rounded": Icons.hourglass_bottom_rounded, - "hourglass_bottom_outlined": Icons.hourglass_bottom_outlined, - "hourglass_disabled": Icons.hourglass_disabled, - "hourglass_disabled_sharp": Icons.hourglass_disabled_sharp, - "hourglass_disabled_rounded": Icons.hourglass_disabled_rounded, - "hourglass_disabled_outlined": Icons.hourglass_disabled_outlined, - "hourglass_empty": Icons.hourglass_empty, - "hourglass_empty_sharp": Icons.hourglass_empty_sharp, - "hourglass_empty_rounded": Icons.hourglass_empty_rounded, - "hourglass_empty_outlined": Icons.hourglass_empty_outlined, - "hourglass_full": Icons.hourglass_full, - "hourglass_full_sharp": Icons.hourglass_full_sharp, - "hourglass_full_rounded": Icons.hourglass_full_rounded, - "hourglass_full_outlined": Icons.hourglass_full_outlined, - "hourglass_top": Icons.hourglass_top, - "hourglass_top_sharp": Icons.hourglass_top_sharp, - "hourglass_top_rounded": Icons.hourglass_top_rounded, - "hourglass_top_outlined": Icons.hourglass_top_outlined, - "house": Icons.house, - "house_sharp": Icons.house_sharp, - "house_rounded": Icons.house_rounded, - "house_outlined": Icons.house_outlined, - "house_siding": Icons.house_siding, - "house_siding_sharp": Icons.house_siding_sharp, - "house_siding_rounded": Icons.house_siding_rounded, - "house_siding_outlined": Icons.house_siding_outlined, - "houseboat": Icons.houseboat, - "houseboat_sharp": Icons.houseboat_sharp, - "houseboat_rounded": Icons.houseboat_rounded, - "houseboat_outlined": Icons.houseboat_outlined, - "how_to_reg": Icons.how_to_reg, - "how_to_reg_sharp": Icons.how_to_reg_sharp, - "how_to_reg_rounded": Icons.how_to_reg_rounded, - "how_to_reg_outlined": Icons.how_to_reg_outlined, - "how_to_vote": Icons.how_to_vote, - "how_to_vote_sharp": Icons.how_to_vote_sharp, - "how_to_vote_rounded": Icons.how_to_vote_rounded, - "how_to_vote_outlined": Icons.how_to_vote_outlined, - "html": Icons.html, - "html_sharp": Icons.html_sharp, - "html_rounded": Icons.html_rounded, - "html_outlined": Icons.html_outlined, - "http": Icons.http, - "http_sharp": Icons.http_sharp, - "http_rounded": Icons.http_rounded, - "http_outlined": Icons.http_outlined, - "https": Icons.https, - "https_sharp": Icons.https_sharp, - "https_rounded": Icons.https_rounded, - "https_outlined": Icons.https_outlined, - "hub": Icons.hub, - "hub_sharp": Icons.hub_sharp, - "hub_rounded": Icons.hub_rounded, - "hub_outlined": Icons.hub_outlined, - "hvac": Icons.hvac, - "hvac_sharp": Icons.hvac_sharp, - "hvac_rounded": Icons.hvac_rounded, - "hvac_outlined": Icons.hvac_outlined, - "ice_skating": Icons.ice_skating, - "ice_skating_sharp": Icons.ice_skating_sharp, - "ice_skating_rounded": Icons.ice_skating_rounded, - "ice_skating_outlined": Icons.ice_skating_outlined, - "icecream": Icons.icecream, - "icecream_sharp": Icons.icecream_sharp, - "icecream_rounded": Icons.icecream_rounded, - "icecream_outlined": Icons.icecream_outlined, - "image": Icons.image, - "image_sharp": Icons.image_sharp, - "image_rounded": Icons.image_rounded, - "image_outlined": Icons.image_outlined, - "image_aspect_ratio": Icons.image_aspect_ratio, - "image_aspect_ratio_sharp": Icons.image_aspect_ratio_sharp, - "image_aspect_ratio_rounded": Icons.image_aspect_ratio_rounded, - "image_aspect_ratio_outlined": Icons.image_aspect_ratio_outlined, - "image_not_supported": Icons.image_not_supported, - "image_not_supported_sharp": Icons.image_not_supported_sharp, - "image_not_supported_rounded": Icons.image_not_supported_rounded, - "image_not_supported_outlined": Icons.image_not_supported_outlined, - "image_search": Icons.image_search, - "image_search_sharp": Icons.image_search_sharp, - "image_search_rounded": Icons.image_search_rounded, - "image_search_outlined": Icons.image_search_outlined, - "imagesearch_roller": Icons.imagesearch_roller, - "imagesearch_roller_sharp": Icons.imagesearch_roller_sharp, - "imagesearch_roller_rounded": Icons.imagesearch_roller_rounded, - "imagesearch_roller_outlined": Icons.imagesearch_roller_outlined, - "import_contacts": Icons.import_contacts, - "import_contacts_sharp": Icons.import_contacts_sharp, - "import_contacts_rounded": Icons.import_contacts_rounded, - "import_contacts_outlined": Icons.import_contacts_outlined, - "import_export": Icons.import_export, - "import_export_sharp": Icons.import_export_sharp, - "import_export_rounded": Icons.import_export_rounded, - "import_export_outlined": Icons.import_export_outlined, - "important_devices": Icons.important_devices, - "important_devices_sharp": Icons.important_devices_sharp, - "important_devices_rounded": Icons.important_devices_rounded, - "important_devices_outlined": Icons.important_devices_outlined, - "inbox": Icons.inbox, - "inbox_sharp": Icons.inbox_sharp, - "inbox_rounded": Icons.inbox_rounded, - "inbox_outlined": Icons.inbox_outlined, - "incomplete_circle": Icons.incomplete_circle, - "incomplete_circle_sharp": Icons.incomplete_circle_sharp, - "incomplete_circle_rounded": Icons.incomplete_circle_rounded, - "incomplete_circle_outlined": Icons.incomplete_circle_outlined, - "indeterminate_check_box": Icons.indeterminate_check_box, - "indeterminate_check_box_sharp": Icons.indeterminate_check_box_sharp, - "indeterminate_check_box_rounded": Icons.indeterminate_check_box_rounded, - "indeterminate_check_box_outlined": Icons.indeterminate_check_box_outlined, - "info": Icons.info, - "info_sharp": Icons.info_sharp, - "info_rounded": Icons.info_rounded, - "info_outlined": Icons.info_outlined, - "info_outline": Icons.info_outline, - "info_outline_sharp": Icons.info_outline_sharp, - "info_outline_rounded": Icons.info_outline_rounded, - "input": Icons.input, - "input_sharp": Icons.input_sharp, - "input_rounded": Icons.input_rounded, - "input_outlined": Icons.input_outlined, - "insert_chart": Icons.insert_chart, - "insert_chart_sharp": Icons.insert_chart_sharp, - "insert_chart_rounded": Icons.insert_chart_rounded, - "insert_chart_outlined": Icons.insert_chart_outlined, - "insert_chart_outlined_sharp": Icons.insert_chart_outlined_sharp, - "insert_chart_outlined_rounded": Icons.insert_chart_outlined_rounded, - "insert_chart_outlined_outlined": Icons.insert_chart_outlined_outlined, - "insert_comment": Icons.insert_comment, - "insert_comment_sharp": Icons.insert_comment_sharp, - "insert_comment_rounded": Icons.insert_comment_rounded, - "insert_comment_outlined": Icons.insert_comment_outlined, - "insert_drive_file": Icons.insert_drive_file, - "insert_drive_file_sharp": Icons.insert_drive_file_sharp, - "insert_drive_file_rounded": Icons.insert_drive_file_rounded, - "insert_drive_file_outlined": Icons.insert_drive_file_outlined, - "insert_emoticon": Icons.insert_emoticon, - "insert_emoticon_sharp": Icons.insert_emoticon_sharp, - "insert_emoticon_rounded": Icons.insert_emoticon_rounded, - "insert_emoticon_outlined": Icons.insert_emoticon_outlined, - "insert_invitation": Icons.insert_invitation, - "insert_invitation_sharp": Icons.insert_invitation_sharp, - "insert_invitation_rounded": Icons.insert_invitation_rounded, - "insert_invitation_outlined": Icons.insert_invitation_outlined, - "insert_link": Icons.insert_link, - "insert_link_sharp": Icons.insert_link_sharp, - "insert_link_rounded": Icons.insert_link_rounded, - "insert_link_outlined": Icons.insert_link_outlined, - "insert_page_break": Icons.insert_page_break, - "insert_page_break_sharp": Icons.insert_page_break_sharp, - "insert_page_break_rounded": Icons.insert_page_break_rounded, - "insert_page_break_outlined": Icons.insert_page_break_outlined, - "insert_photo": Icons.insert_photo, - "insert_photo_sharp": Icons.insert_photo_sharp, - "insert_photo_rounded": Icons.insert_photo_rounded, - "insert_photo_outlined": Icons.insert_photo_outlined, - "insights": Icons.insights, - "insights_sharp": Icons.insights_sharp, - "insights_rounded": Icons.insights_rounded, - "insights_outlined": Icons.insights_outlined, - "install_desktop": Icons.install_desktop, - "install_desktop_sharp": Icons.install_desktop_sharp, - "install_desktop_rounded": Icons.install_desktop_rounded, - "install_desktop_outlined": Icons.install_desktop_outlined, - "install_mobile": Icons.install_mobile, - "install_mobile_sharp": Icons.install_mobile_sharp, - "install_mobile_rounded": Icons.install_mobile_rounded, - "install_mobile_outlined": Icons.install_mobile_outlined, - "integration_instructions": Icons.integration_instructions, - "integration_instructions_sharp": Icons.integration_instructions_sharp, - "integration_instructions_rounded": Icons.integration_instructions_rounded, - "integration_instructions_outlined": Icons.integration_instructions_outlined, - "interests": Icons.interests, - "interests_sharp": Icons.interests_sharp, - "interests_rounded": Icons.interests_rounded, - "interests_outlined": Icons.interests_outlined, - "interpreter_mode": Icons.interpreter_mode, - "interpreter_mode_sharp": Icons.interpreter_mode_sharp, - "interpreter_mode_rounded": Icons.interpreter_mode_rounded, - "interpreter_mode_outlined": Icons.interpreter_mode_outlined, - "inventory": Icons.inventory, - "inventory_sharp": Icons.inventory_sharp, - "inventory_rounded": Icons.inventory_rounded, - "inventory_outlined": Icons.inventory_outlined, - "inventory_2": Icons.inventory_2, - "inventory_2_sharp": Icons.inventory_2_sharp, - "inventory_2_rounded": Icons.inventory_2_rounded, - "inventory_2_outlined": Icons.inventory_2_outlined, - "invert_colors": Icons.invert_colors, - "invert_colors_sharp": Icons.invert_colors_sharp, - "invert_colors_rounded": Icons.invert_colors_rounded, - "invert_colors_outlined": Icons.invert_colors_outlined, - "invert_colors_off": Icons.invert_colors_off, - "invert_colors_off_sharp": Icons.invert_colors_off_sharp, - "invert_colors_off_rounded": Icons.invert_colors_off_rounded, - "invert_colors_off_outlined": Icons.invert_colors_off_outlined, - "invert_colors_on": Icons.invert_colors_on, - "invert_colors_on_sharp": Icons.invert_colors_on_sharp, - "invert_colors_on_rounded": Icons.invert_colors_on_rounded, - "invert_colors_on_outlined": Icons.invert_colors_on_outlined, - "ios_share": Icons.ios_share, - "ios_share_sharp": Icons.ios_share_sharp, - "ios_share_rounded": Icons.ios_share_rounded, - "ios_share_outlined": Icons.ios_share_outlined, - "iron": Icons.iron, - "iron_sharp": Icons.iron_sharp, - "iron_rounded": Icons.iron_rounded, - "iron_outlined": Icons.iron_outlined, - "iso": Icons.iso, - "iso_sharp": Icons.iso_sharp, - "iso_rounded": Icons.iso_rounded, - "iso_outlined": Icons.iso_outlined, - "javascript": Icons.javascript, - "javascript_sharp": Icons.javascript_sharp, - "javascript_rounded": Icons.javascript_rounded, - "javascript_outlined": Icons.javascript_outlined, - "join_full": Icons.join_full, - "join_full_sharp": Icons.join_full_sharp, - "join_full_rounded": Icons.join_full_rounded, - "join_full_outlined": Icons.join_full_outlined, - "join_inner": Icons.join_inner, - "join_inner_sharp": Icons.join_inner_sharp, - "join_inner_rounded": Icons.join_inner_rounded, - "join_inner_outlined": Icons.join_inner_outlined, - "join_left": Icons.join_left, - "join_left_sharp": Icons.join_left_sharp, - "join_left_rounded": Icons.join_left_rounded, - "join_left_outlined": Icons.join_left_outlined, - "join_right": Icons.join_right, - "join_right_sharp": Icons.join_right_sharp, - "join_right_rounded": Icons.join_right_rounded, - "join_right_outlined": Icons.join_right_outlined, - "kayaking": Icons.kayaking, - "kayaking_sharp": Icons.kayaking_sharp, - "kayaking_rounded": Icons.kayaking_rounded, - "kayaking_outlined": Icons.kayaking_outlined, - "kebab_dining": Icons.kebab_dining, - "kebab_dining_sharp": Icons.kebab_dining_sharp, - "kebab_dining_rounded": Icons.kebab_dining_rounded, - "kebab_dining_outlined": Icons.kebab_dining_outlined, - "key": Icons.key, - "key_sharp": Icons.key_sharp, - "key_rounded": Icons.key_rounded, - "key_outlined": Icons.key_outlined, - "key_off": Icons.key_off, - "key_off_sharp": Icons.key_off_sharp, - "key_off_rounded": Icons.key_off_rounded, - "key_off_outlined": Icons.key_off_outlined, - "keyboard": Icons.keyboard, - "keyboard_sharp": Icons.keyboard_sharp, - "keyboard_rounded": Icons.keyboard_rounded, - "keyboard_outlined": Icons.keyboard_outlined, - "keyboard_alt": Icons.keyboard_alt, - "keyboard_alt_sharp": Icons.keyboard_alt_sharp, - "keyboard_alt_rounded": Icons.keyboard_alt_rounded, - "keyboard_alt_outlined": Icons.keyboard_alt_outlined, - "keyboard_arrow_down": Icons.keyboard_arrow_down, - "keyboard_arrow_down_sharp": Icons.keyboard_arrow_down_sharp, - "keyboard_arrow_down_rounded": Icons.keyboard_arrow_down_rounded, - "keyboard_arrow_down_outlined": Icons.keyboard_arrow_down_outlined, - "keyboard_arrow_left": Icons.keyboard_arrow_left, - "keyboard_arrow_left_sharp": Icons.keyboard_arrow_left_sharp, - "keyboard_arrow_left_rounded": Icons.keyboard_arrow_left_rounded, - "keyboard_arrow_left_outlined": Icons.keyboard_arrow_left_outlined, - "keyboard_arrow_right": Icons.keyboard_arrow_right, - "keyboard_arrow_right_sharp": Icons.keyboard_arrow_right_sharp, - "keyboard_arrow_right_rounded": Icons.keyboard_arrow_right_rounded, - "keyboard_arrow_right_outlined": Icons.keyboard_arrow_right_outlined, - "keyboard_arrow_up": Icons.keyboard_arrow_up, - "keyboard_arrow_up_sharp": Icons.keyboard_arrow_up_sharp, - "keyboard_arrow_up_rounded": Icons.keyboard_arrow_up_rounded, - "keyboard_arrow_up_outlined": Icons.keyboard_arrow_up_outlined, - "keyboard_backspace": Icons.keyboard_backspace, - "keyboard_backspace_sharp": Icons.keyboard_backspace_sharp, - "keyboard_backspace_rounded": Icons.keyboard_backspace_rounded, - "keyboard_backspace_outlined": Icons.keyboard_backspace_outlined, - "keyboard_capslock": Icons.keyboard_capslock, - "keyboard_capslock_sharp": Icons.keyboard_capslock_sharp, - "keyboard_capslock_rounded": Icons.keyboard_capslock_rounded, - "keyboard_capslock_outlined": Icons.keyboard_capslock_outlined, - "keyboard_command_key": Icons.keyboard_command_key, - "keyboard_command_key_sharp": Icons.keyboard_command_key_sharp, - "keyboard_command_key_rounded": Icons.keyboard_command_key_rounded, - "keyboard_command_key_outlined": Icons.keyboard_command_key_outlined, - "keyboard_control": Icons.keyboard_control, - "keyboard_control_sharp": Icons.keyboard_control_sharp, - "keyboard_control_rounded": Icons.keyboard_control_rounded, - "keyboard_control_outlined": Icons.keyboard_control_outlined, - "keyboard_control_key": Icons.keyboard_control_key, - "keyboard_control_key_sharp": Icons.keyboard_control_key_sharp, - "keyboard_control_key_rounded": Icons.keyboard_control_key_rounded, - "keyboard_control_key_outlined": Icons.keyboard_control_key_outlined, - "keyboard_double_arrow_down": Icons.keyboard_double_arrow_down, - "keyboard_double_arrow_down_sharp": Icons.keyboard_double_arrow_down_sharp, - "keyboard_double_arrow_down_rounded": - Icons.keyboard_double_arrow_down_rounded, - "keyboard_double_arrow_down_outlined": - Icons.keyboard_double_arrow_down_outlined, - "keyboard_double_arrow_left": Icons.keyboard_double_arrow_left, - "keyboard_double_arrow_left_sharp": Icons.keyboard_double_arrow_left_sharp, - "keyboard_double_arrow_left_rounded": - Icons.keyboard_double_arrow_left_rounded, - "keyboard_double_arrow_left_outlined": - Icons.keyboard_double_arrow_left_outlined, - "keyboard_double_arrow_right": Icons.keyboard_double_arrow_right, - "keyboard_double_arrow_right_sharp": Icons.keyboard_double_arrow_right_sharp, - "keyboard_double_arrow_right_rounded": - Icons.keyboard_double_arrow_right_rounded, - "keyboard_double_arrow_right_outlined": - Icons.keyboard_double_arrow_right_outlined, - "keyboard_double_arrow_up": Icons.keyboard_double_arrow_up, - "keyboard_double_arrow_up_sharp": Icons.keyboard_double_arrow_up_sharp, - "keyboard_double_arrow_up_rounded": Icons.keyboard_double_arrow_up_rounded, - "keyboard_double_arrow_up_outlined": Icons.keyboard_double_arrow_up_outlined, - "keyboard_hide": Icons.keyboard_hide, - "keyboard_hide_sharp": Icons.keyboard_hide_sharp, - "keyboard_hide_rounded": Icons.keyboard_hide_rounded, - "keyboard_hide_outlined": Icons.keyboard_hide_outlined, - "keyboard_option_key": Icons.keyboard_option_key, - "keyboard_option_key_sharp": Icons.keyboard_option_key_sharp, - "keyboard_option_key_rounded": Icons.keyboard_option_key_rounded, - "keyboard_option_key_outlined": Icons.keyboard_option_key_outlined, - "keyboard_return": Icons.keyboard_return, - "keyboard_return_sharp": Icons.keyboard_return_sharp, - "keyboard_return_rounded": Icons.keyboard_return_rounded, - "keyboard_return_outlined": Icons.keyboard_return_outlined, - "keyboard_tab": Icons.keyboard_tab, - "keyboard_tab_sharp": Icons.keyboard_tab_sharp, - "keyboard_tab_rounded": Icons.keyboard_tab_rounded, - "keyboard_tab_outlined": Icons.keyboard_tab_outlined, - "keyboard_voice": Icons.keyboard_voice, - "keyboard_voice_sharp": Icons.keyboard_voice_sharp, - "keyboard_voice_rounded": Icons.keyboard_voice_rounded, - "keyboard_voice_outlined": Icons.keyboard_voice_outlined, - "king_bed": Icons.king_bed, - "king_bed_sharp": Icons.king_bed_sharp, - "king_bed_rounded": Icons.king_bed_rounded, - "king_bed_outlined": Icons.king_bed_outlined, - "kitchen": Icons.kitchen, - "kitchen_sharp": Icons.kitchen_sharp, - "kitchen_rounded": Icons.kitchen_rounded, - "kitchen_outlined": Icons.kitchen_outlined, - "kitesurfing": Icons.kitesurfing, - "kitesurfing_sharp": Icons.kitesurfing_sharp, - "kitesurfing_rounded": Icons.kitesurfing_rounded, - "kitesurfing_outlined": Icons.kitesurfing_outlined, - "label": Icons.label, - "label_sharp": Icons.label_sharp, - "label_rounded": Icons.label_rounded, - "label_outlined": Icons.label_outlined, - "label_important": Icons.label_important, - "label_important_sharp": Icons.label_important_sharp, - "label_important_rounded": Icons.label_important_rounded, - "label_important_outlined": Icons.label_important_outlined, - "label_important_outline": Icons.label_important_outline, - "label_important_outline_sharp": Icons.label_important_outline_sharp, - "label_important_outline_rounded": Icons.label_important_outline_rounded, - "label_off": Icons.label_off, - "label_off_sharp": Icons.label_off_sharp, - "label_off_rounded": Icons.label_off_rounded, - "label_off_outlined": Icons.label_off_outlined, - "label_outline": Icons.label_outline, - "label_outline_sharp": Icons.label_outline_sharp, - "label_outline_rounded": Icons.label_outline_rounded, - "lan": Icons.lan, - "lan_sharp": Icons.lan_sharp, - "lan_rounded": Icons.lan_rounded, - "lan_outlined": Icons.lan_outlined, - "landscape": Icons.landscape, - "landscape_sharp": Icons.landscape_sharp, - "landscape_rounded": Icons.landscape_rounded, - "landscape_outlined": Icons.landscape_outlined, - "landslide": Icons.landslide, - "landslide_sharp": Icons.landslide_sharp, - "landslide_rounded": Icons.landslide_rounded, - "landslide_outlined": Icons.landslide_outlined, - "language": Icons.language, - "language_sharp": Icons.language_sharp, - "language_rounded": Icons.language_rounded, - "language_outlined": Icons.language_outlined, - "laptop": Icons.laptop, - "laptop_sharp": Icons.laptop_sharp, - "laptop_rounded": Icons.laptop_rounded, - "laptop_outlined": Icons.laptop_outlined, - "laptop_chromebook": Icons.laptop_chromebook, - "laptop_chromebook_sharp": Icons.laptop_chromebook_sharp, - "laptop_chromebook_rounded": Icons.laptop_chromebook_rounded, - "laptop_chromebook_outlined": Icons.laptop_chromebook_outlined, - "laptop_mac": Icons.laptop_mac, - "laptop_mac_sharp": Icons.laptop_mac_sharp, - "laptop_mac_rounded": Icons.laptop_mac_rounded, - "laptop_mac_outlined": Icons.laptop_mac_outlined, - "laptop_windows": Icons.laptop_windows, - "laptop_windows_sharp": Icons.laptop_windows_sharp, - "laptop_windows_rounded": Icons.laptop_windows_rounded, - "laptop_windows_outlined": Icons.laptop_windows_outlined, - "last_page": Icons.last_page, - "last_page_sharp": Icons.last_page_sharp, - "last_page_rounded": Icons.last_page_rounded, - "last_page_outlined": Icons.last_page_outlined, - "launch": Icons.launch, - "launch_sharp": Icons.launch_sharp, - "launch_rounded": Icons.launch_rounded, - "launch_outlined": Icons.launch_outlined, - "layers": Icons.layers, - "layers_sharp": Icons.layers_sharp, - "layers_rounded": Icons.layers_rounded, - "layers_outlined": Icons.layers_outlined, - "layers_clear": Icons.layers_clear, - "layers_clear_sharp": Icons.layers_clear_sharp, - "layers_clear_rounded": Icons.layers_clear_rounded, - "layers_clear_outlined": Icons.layers_clear_outlined, - "leaderboard": Icons.leaderboard, - "leaderboard_sharp": Icons.leaderboard_sharp, - "leaderboard_rounded": Icons.leaderboard_rounded, - "leaderboard_outlined": Icons.leaderboard_outlined, - "leak_add": Icons.leak_add, - "leak_add_sharp": Icons.leak_add_sharp, - "leak_add_rounded": Icons.leak_add_rounded, - "leak_add_outlined": Icons.leak_add_outlined, - "leak_remove": Icons.leak_remove, - "leak_remove_sharp": Icons.leak_remove_sharp, - "leak_remove_rounded": Icons.leak_remove_rounded, - "leak_remove_outlined": Icons.leak_remove_outlined, - "leave_bags_at_home": Icons.leave_bags_at_home, - "leave_bags_at_home_sharp": Icons.leave_bags_at_home_sharp, - "leave_bags_at_home_rounded": Icons.leave_bags_at_home_rounded, - "leave_bags_at_home_outlined": Icons.leave_bags_at_home_outlined, - "legend_toggle": Icons.legend_toggle, - "legend_toggle_sharp": Icons.legend_toggle_sharp, - "legend_toggle_rounded": Icons.legend_toggle_rounded, - "legend_toggle_outlined": Icons.legend_toggle_outlined, - "lens": Icons.lens, - "lens_sharp": Icons.lens_sharp, - "lens_rounded": Icons.lens_rounded, - "lens_outlined": Icons.lens_outlined, - "lens_blur": Icons.lens_blur, - "lens_blur_sharp": Icons.lens_blur_sharp, - "lens_blur_rounded": Icons.lens_blur_rounded, - "lens_blur_outlined": Icons.lens_blur_outlined, - "library_add": Icons.library_add, - "library_add_sharp": Icons.library_add_sharp, - "library_add_rounded": Icons.library_add_rounded, - "library_add_outlined": Icons.library_add_outlined, - "library_add_check": Icons.library_add_check, - "library_add_check_sharp": Icons.library_add_check_sharp, - "library_add_check_rounded": Icons.library_add_check_rounded, - "library_add_check_outlined": Icons.library_add_check_outlined, - "library_books": Icons.library_books, - "library_books_sharp": Icons.library_books_sharp, - "library_books_rounded": Icons.library_books_rounded, - "library_books_outlined": Icons.library_books_outlined, - "library_music": Icons.library_music, - "library_music_sharp": Icons.library_music_sharp, - "library_music_rounded": Icons.library_music_rounded, - "library_music_outlined": Icons.library_music_outlined, - "light": Icons.light, - "light_sharp": Icons.light_sharp, - "light_rounded": Icons.light_rounded, - "light_outlined": Icons.light_outlined, - "light_mode": Icons.light_mode, - "light_mode_sharp": Icons.light_mode_sharp, - "light_mode_rounded": Icons.light_mode_rounded, - "light_mode_outlined": Icons.light_mode_outlined, - "lightbulb": Icons.lightbulb, - "lightbulb_sharp": Icons.lightbulb_sharp, - "lightbulb_rounded": Icons.lightbulb_rounded, - "lightbulb_outlined": Icons.lightbulb_outlined, - "lightbulb_circle": Icons.lightbulb_circle, - "lightbulb_circle_sharp": Icons.lightbulb_circle_sharp, - "lightbulb_circle_rounded": Icons.lightbulb_circle_rounded, - "lightbulb_circle_outlined": Icons.lightbulb_circle_outlined, - "lightbulb_outline": Icons.lightbulb_outline, - "lightbulb_outline_sharp": Icons.lightbulb_outline_sharp, - "lightbulb_outline_rounded": Icons.lightbulb_outline_rounded, - "line_axis": Icons.line_axis, - "line_axis_sharp": Icons.line_axis_sharp, - "line_axis_rounded": Icons.line_axis_rounded, - "line_axis_outlined": Icons.line_axis_outlined, - "line_style": Icons.line_style, - "line_style_sharp": Icons.line_style_sharp, - "line_style_rounded": Icons.line_style_rounded, - "line_style_outlined": Icons.line_style_outlined, - "line_weight": Icons.line_weight, - "line_weight_sharp": Icons.line_weight_sharp, - "line_weight_rounded": Icons.line_weight_rounded, - "line_weight_outlined": Icons.line_weight_outlined, - "linear_scale": Icons.linear_scale, - "linear_scale_sharp": Icons.linear_scale_sharp, - "linear_scale_rounded": Icons.linear_scale_rounded, - "linear_scale_outlined": Icons.linear_scale_outlined, - "link": Icons.link, - "link_sharp": Icons.link_sharp, - "link_rounded": Icons.link_rounded, - "link_outlined": Icons.link_outlined, - "link_off": Icons.link_off, - "link_off_sharp": Icons.link_off_sharp, - "link_off_rounded": Icons.link_off_rounded, - "link_off_outlined": Icons.link_off_outlined, - "linked_camera": Icons.linked_camera, - "linked_camera_sharp": Icons.linked_camera_sharp, - "linked_camera_rounded": Icons.linked_camera_rounded, - "linked_camera_outlined": Icons.linked_camera_outlined, - "liquor": Icons.liquor, - "liquor_sharp": Icons.liquor_sharp, - "liquor_rounded": Icons.liquor_rounded, - "liquor_outlined": Icons.liquor_outlined, - "list": Icons.list, - "list_sharp": Icons.list_sharp, - "list_rounded": Icons.list_rounded, - "list_outlined": Icons.list_outlined, - "list_alt": Icons.list_alt, - "list_alt_sharp": Icons.list_alt_sharp, - "list_alt_rounded": Icons.list_alt_rounded, - "list_alt_outlined": Icons.list_alt_outlined, - "live_help": Icons.live_help, - "live_help_sharp": Icons.live_help_sharp, - "live_help_rounded": Icons.live_help_rounded, - "live_help_outlined": Icons.live_help_outlined, - "live_tv": Icons.live_tv, - "live_tv_sharp": Icons.live_tv_sharp, - "live_tv_rounded": Icons.live_tv_rounded, - "live_tv_outlined": Icons.live_tv_outlined, - "living": Icons.living, - "living_sharp": Icons.living_sharp, - "living_rounded": Icons.living_rounded, - "living_outlined": Icons.living_outlined, - "local_activity": Icons.local_activity, - "local_activity_sharp": Icons.local_activity_sharp, - "local_activity_rounded": Icons.local_activity_rounded, - "local_activity_outlined": Icons.local_activity_outlined, - "local_airport": Icons.local_airport, - "local_airport_sharp": Icons.local_airport_sharp, - "local_airport_rounded": Icons.local_airport_rounded, - "local_airport_outlined": Icons.local_airport_outlined, - "local_atm": Icons.local_atm, - "local_atm_sharp": Icons.local_atm_sharp, - "local_atm_rounded": Icons.local_atm_rounded, - "local_atm_outlined": Icons.local_atm_outlined, - "local_attraction": Icons.local_attraction, - "local_attraction_sharp": Icons.local_attraction_sharp, - "local_attraction_rounded": Icons.local_attraction_rounded, - "local_attraction_outlined": Icons.local_attraction_outlined, - "local_bar": Icons.local_bar, - "local_bar_sharp": Icons.local_bar_sharp, - "local_bar_rounded": Icons.local_bar_rounded, - "local_bar_outlined": Icons.local_bar_outlined, - "local_cafe": Icons.local_cafe, - "local_cafe_sharp": Icons.local_cafe_sharp, - "local_cafe_rounded": Icons.local_cafe_rounded, - "local_cafe_outlined": Icons.local_cafe_outlined, - "local_car_wash": Icons.local_car_wash, - "local_car_wash_sharp": Icons.local_car_wash_sharp, - "local_car_wash_rounded": Icons.local_car_wash_rounded, - "local_car_wash_outlined": Icons.local_car_wash_outlined, - "local_convenience_store": Icons.local_convenience_store, - "local_convenience_store_sharp": Icons.local_convenience_store_sharp, - "local_convenience_store_rounded": Icons.local_convenience_store_rounded, - "local_convenience_store_outlined": Icons.local_convenience_store_outlined, - "local_dining": Icons.local_dining, - "local_dining_sharp": Icons.local_dining_sharp, - "local_dining_rounded": Icons.local_dining_rounded, - "local_dining_outlined": Icons.local_dining_outlined, - "local_drink": Icons.local_drink, - "local_drink_sharp": Icons.local_drink_sharp, - "local_drink_rounded": Icons.local_drink_rounded, - "local_drink_outlined": Icons.local_drink_outlined, - "local_fire_department": Icons.local_fire_department, - "local_fire_department_sharp": Icons.local_fire_department_sharp, - "local_fire_department_rounded": Icons.local_fire_department_rounded, - "local_fire_department_outlined": Icons.local_fire_department_outlined, - "local_florist": Icons.local_florist, - "local_florist_sharp": Icons.local_florist_sharp, - "local_florist_rounded": Icons.local_florist_rounded, - "local_florist_outlined": Icons.local_florist_outlined, - "local_gas_station": Icons.local_gas_station, - "local_gas_station_sharp": Icons.local_gas_station_sharp, - "local_gas_station_rounded": Icons.local_gas_station_rounded, - "local_gas_station_outlined": Icons.local_gas_station_outlined, - "local_grocery_store": Icons.local_grocery_store, - "local_grocery_store_sharp": Icons.local_grocery_store_sharp, - "local_grocery_store_rounded": Icons.local_grocery_store_rounded, - "local_grocery_store_outlined": Icons.local_grocery_store_outlined, - "local_hospital": Icons.local_hospital, - "local_hospital_sharp": Icons.local_hospital_sharp, - "local_hospital_rounded": Icons.local_hospital_rounded, - "local_hospital_outlined": Icons.local_hospital_outlined, - "local_hotel": Icons.local_hotel, - "local_hotel_sharp": Icons.local_hotel_sharp, - "local_hotel_rounded": Icons.local_hotel_rounded, - "local_hotel_outlined": Icons.local_hotel_outlined, - "local_laundry_service": Icons.local_laundry_service, - "local_laundry_service_sharp": Icons.local_laundry_service_sharp, - "local_laundry_service_rounded": Icons.local_laundry_service_rounded, - "local_laundry_service_outlined": Icons.local_laundry_service_outlined, - "local_library": Icons.local_library, - "local_library_sharp": Icons.local_library_sharp, - "local_library_rounded": Icons.local_library_rounded, - "local_library_outlined": Icons.local_library_outlined, - "local_mall": Icons.local_mall, - "local_mall_sharp": Icons.local_mall_sharp, - "local_mall_rounded": Icons.local_mall_rounded, - "local_mall_outlined": Icons.local_mall_outlined, - "local_movies": Icons.local_movies, - "local_movies_sharp": Icons.local_movies_sharp, - "local_movies_rounded": Icons.local_movies_rounded, - "local_movies_outlined": Icons.local_movies_outlined, - "local_offer": Icons.local_offer, - "local_offer_sharp": Icons.local_offer_sharp, - "local_offer_rounded": Icons.local_offer_rounded, - "local_offer_outlined": Icons.local_offer_outlined, - "local_parking": Icons.local_parking, - "local_parking_sharp": Icons.local_parking_sharp, - "local_parking_rounded": Icons.local_parking_rounded, - "local_parking_outlined": Icons.local_parking_outlined, - "local_pharmacy": Icons.local_pharmacy, - "local_pharmacy_sharp": Icons.local_pharmacy_sharp, - "local_pharmacy_rounded": Icons.local_pharmacy_rounded, - "local_pharmacy_outlined": Icons.local_pharmacy_outlined, - "local_phone": Icons.local_phone, - "local_phone_sharp": Icons.local_phone_sharp, - "local_phone_rounded": Icons.local_phone_rounded, - "local_phone_outlined": Icons.local_phone_outlined, - "local_pizza": Icons.local_pizza, - "local_pizza_sharp": Icons.local_pizza_sharp, - "local_pizza_rounded": Icons.local_pizza_rounded, - "local_pizza_outlined": Icons.local_pizza_outlined, - "local_play": Icons.local_play, - "local_play_sharp": Icons.local_play_sharp, - "local_play_rounded": Icons.local_play_rounded, - "local_play_outlined": Icons.local_play_outlined, - "local_police": Icons.local_police, - "local_police_sharp": Icons.local_police_sharp, - "local_police_rounded": Icons.local_police_rounded, - "local_police_outlined": Icons.local_police_outlined, - "local_post_office": Icons.local_post_office, - "local_post_office_sharp": Icons.local_post_office_sharp, - "local_post_office_rounded": Icons.local_post_office_rounded, - "local_post_office_outlined": Icons.local_post_office_outlined, - "local_print_shop": Icons.local_print_shop, - "local_print_shop_sharp": Icons.local_print_shop_sharp, - "local_print_shop_rounded": Icons.local_print_shop_rounded, - "local_print_shop_outlined": Icons.local_print_shop_outlined, - "local_printshop": Icons.local_printshop, - "local_printshop_sharp": Icons.local_printshop_sharp, - "local_printshop_rounded": Icons.local_printshop_rounded, - "local_printshop_outlined": Icons.local_printshop_outlined, - "local_restaurant": Icons.local_restaurant, - "local_restaurant_sharp": Icons.local_restaurant_sharp, - "local_restaurant_rounded": Icons.local_restaurant_rounded, - "local_restaurant_outlined": Icons.local_restaurant_outlined, - "local_see": Icons.local_see, - "local_see_sharp": Icons.local_see_sharp, - "local_see_rounded": Icons.local_see_rounded, - "local_see_outlined": Icons.local_see_outlined, - "local_shipping": Icons.local_shipping, - "local_shipping_sharp": Icons.local_shipping_sharp, - "local_shipping_rounded": Icons.local_shipping_rounded, - "local_shipping_outlined": Icons.local_shipping_outlined, - "local_taxi": Icons.local_taxi, - "local_taxi_sharp": Icons.local_taxi_sharp, - "local_taxi_rounded": Icons.local_taxi_rounded, - "local_taxi_outlined": Icons.local_taxi_outlined, - "location_city": Icons.location_city, - "location_city_sharp": Icons.location_city_sharp, - "location_city_rounded": Icons.location_city_rounded, - "location_city_outlined": Icons.location_city_outlined, - "location_disabled": Icons.location_disabled, - "location_disabled_sharp": Icons.location_disabled_sharp, - "location_disabled_rounded": Icons.location_disabled_rounded, - "location_disabled_outlined": Icons.location_disabled_outlined, - "location_history": Icons.location_history, - "location_history_sharp": Icons.location_history_sharp, - "location_history_rounded": Icons.location_history_rounded, - "location_history_outlined": Icons.location_history_outlined, - "location_off": Icons.location_off, - "location_off_sharp": Icons.location_off_sharp, - "location_off_rounded": Icons.location_off_rounded, - "location_off_outlined": Icons.location_off_outlined, - "location_on": Icons.location_on, - "location_on_sharp": Icons.location_on_sharp, - "location_on_rounded": Icons.location_on_rounded, - "location_on_outlined": Icons.location_on_outlined, - "location_pin": Icons.location_pin, - "location_searching": Icons.location_searching, - "location_searching_sharp": Icons.location_searching_sharp, - "location_searching_rounded": Icons.location_searching_rounded, - "location_searching_outlined": Icons.location_searching_outlined, - "lock": Icons.lock, - "lock_sharp": Icons.lock_sharp, - "lock_rounded": Icons.lock_rounded, - "lock_outlined": Icons.lock_outlined, - "lock_clock": Icons.lock_clock, - "lock_clock_sharp": Icons.lock_clock_sharp, - "lock_clock_rounded": Icons.lock_clock_rounded, - "lock_clock_outlined": Icons.lock_clock_outlined, - "lock_open": Icons.lock_open, - "lock_open_sharp": Icons.lock_open_sharp, - "lock_open_rounded": Icons.lock_open_rounded, - "lock_open_outlined": Icons.lock_open_outlined, - "lock_outline": Icons.lock_outline, - "lock_outline_sharp": Icons.lock_outline_sharp, - "lock_outline_rounded": Icons.lock_outline_rounded, - "lock_person": Icons.lock_person, - "lock_person_sharp": Icons.lock_person_sharp, - "lock_person_rounded": Icons.lock_person_rounded, - "lock_person_outlined": Icons.lock_person_outlined, - "lock_reset": Icons.lock_reset, - "lock_reset_sharp": Icons.lock_reset_sharp, - "lock_reset_rounded": Icons.lock_reset_rounded, - "lock_reset_outlined": Icons.lock_reset_outlined, - "login": Icons.login, - "login_sharp": Icons.login_sharp, - "login_rounded": Icons.login_rounded, - "login_outlined": Icons.login_outlined, - "logo_dev": Icons.logo_dev, - "logo_dev_sharp": Icons.logo_dev_sharp, - "logo_dev_rounded": Icons.logo_dev_rounded, - "logo_dev_outlined": Icons.logo_dev_outlined, - "logout": Icons.logout, - "logout_sharp": Icons.logout_sharp, - "logout_rounded": Icons.logout_rounded, - "logout_outlined": Icons.logout_outlined, - "looks": Icons.looks, - "looks_sharp": Icons.looks_sharp, - "looks_rounded": Icons.looks_rounded, - "looks_outlined": Icons.looks_outlined, - "looks_3": Icons.looks_3, - "looks_3_sharp": Icons.looks_3_sharp, - "looks_3_rounded": Icons.looks_3_rounded, - "looks_3_outlined": Icons.looks_3_outlined, - "looks_4": Icons.looks_4, - "looks_4_sharp": Icons.looks_4_sharp, - "looks_4_rounded": Icons.looks_4_rounded, - "looks_4_outlined": Icons.looks_4_outlined, - "looks_5": Icons.looks_5, - "looks_5_sharp": Icons.looks_5_sharp, - "looks_5_rounded": Icons.looks_5_rounded, - "looks_5_outlined": Icons.looks_5_outlined, - "looks_6": Icons.looks_6, - "looks_6_sharp": Icons.looks_6_sharp, - "looks_6_rounded": Icons.looks_6_rounded, - "looks_6_outlined": Icons.looks_6_outlined, - "looks_one": Icons.looks_one, - "looks_one_sharp": Icons.looks_one_sharp, - "looks_one_rounded": Icons.looks_one_rounded, - "looks_one_outlined": Icons.looks_one_outlined, - "looks_two": Icons.looks_two, - "looks_two_sharp": Icons.looks_two_sharp, - "looks_two_rounded": Icons.looks_two_rounded, - "looks_two_outlined": Icons.looks_two_outlined, - "loop": Icons.loop, - "loop_sharp": Icons.loop_sharp, - "loop_rounded": Icons.loop_rounded, - "loop_outlined": Icons.loop_outlined, - "loupe": Icons.loupe, - "loupe_sharp": Icons.loupe_sharp, - "loupe_rounded": Icons.loupe_rounded, - "loupe_outlined": Icons.loupe_outlined, - "low_priority": Icons.low_priority, - "low_priority_sharp": Icons.low_priority_sharp, - "low_priority_rounded": Icons.low_priority_rounded, - "low_priority_outlined": Icons.low_priority_outlined, - "loyalty": Icons.loyalty, - "loyalty_sharp": Icons.loyalty_sharp, - "loyalty_rounded": Icons.loyalty_rounded, - "loyalty_outlined": Icons.loyalty_outlined, - "lte_mobiledata": Icons.lte_mobiledata, - "lte_mobiledata_sharp": Icons.lte_mobiledata_sharp, - "lte_mobiledata_rounded": Icons.lte_mobiledata_rounded, - "lte_mobiledata_outlined": Icons.lte_mobiledata_outlined, - "lte_plus_mobiledata": Icons.lte_plus_mobiledata, - "lte_plus_mobiledata_sharp": Icons.lte_plus_mobiledata_sharp, - "lte_plus_mobiledata_rounded": Icons.lte_plus_mobiledata_rounded, - "lte_plus_mobiledata_outlined": Icons.lte_plus_mobiledata_outlined, - "luggage": Icons.luggage, - "luggage_sharp": Icons.luggage_sharp, - "luggage_rounded": Icons.luggage_rounded, - "luggage_outlined": Icons.luggage_outlined, - "lunch_dining": Icons.lunch_dining, - "lunch_dining_sharp": Icons.lunch_dining_sharp, - "lunch_dining_rounded": Icons.lunch_dining_rounded, - "lunch_dining_outlined": Icons.lunch_dining_outlined, - "lyrics": Icons.lyrics, - "lyrics_sharp": Icons.lyrics_sharp, - "lyrics_rounded": Icons.lyrics_rounded, - "lyrics_outlined": Icons.lyrics_outlined, - "macro_off": Icons.macro_off, - "macro_off_sharp": Icons.macro_off_sharp, - "macro_off_rounded": Icons.macro_off_rounded, - "macro_off_outlined": Icons.macro_off_outlined, - "mail": Icons.mail, - "mail_sharp": Icons.mail_sharp, - "mail_rounded": Icons.mail_rounded, - "mail_outlined": Icons.mail_outlined, - "mail_lock": Icons.mail_lock, - "mail_lock_sharp": Icons.mail_lock_sharp, - "mail_lock_rounded": Icons.mail_lock_rounded, - "mail_lock_outlined": Icons.mail_lock_outlined, - "mail_outline": Icons.mail_outline, - "mail_outline_sharp": Icons.mail_outline_sharp, - "mail_outline_rounded": Icons.mail_outline_rounded, - "mail_outline_outlined": Icons.mail_outline_outlined, - "male": Icons.male, - "male_sharp": Icons.male_sharp, - "male_rounded": Icons.male_rounded, - "male_outlined": Icons.male_outlined, - "man": Icons.man, - "man_sharp": Icons.man_sharp, - "man_rounded": Icons.man_rounded, - "man_outlined": Icons.man_outlined, - "man_2": Icons.man_2, - "man_2_sharp": Icons.man_2_sharp, - "man_2_rounded": Icons.man_2_rounded, - "man_2_outlined": Icons.man_2_outlined, - "man_3": Icons.man_3, - "man_3_sharp": Icons.man_3_sharp, - "man_3_rounded": Icons.man_3_rounded, - "man_3_outlined": Icons.man_3_outlined, - "man_4": Icons.man_4, - "man_4_sharp": Icons.man_4_sharp, - "man_4_rounded": Icons.man_4_rounded, - "man_4_outlined": Icons.man_4_outlined, - "manage_accounts": Icons.manage_accounts, - "manage_accounts_sharp": Icons.manage_accounts_sharp, - "manage_accounts_rounded": Icons.manage_accounts_rounded, - "manage_accounts_outlined": Icons.manage_accounts_outlined, - "manage_history": Icons.manage_history, - "manage_history_sharp": Icons.manage_history_sharp, - "manage_history_rounded": Icons.manage_history_rounded, - "manage_history_outlined": Icons.manage_history_outlined, - "manage_search": Icons.manage_search, - "manage_search_sharp": Icons.manage_search_sharp, - "manage_search_rounded": Icons.manage_search_rounded, - "manage_search_outlined": Icons.manage_search_outlined, - "map": Icons.map, - "map_sharp": Icons.map_sharp, - "map_rounded": Icons.map_rounded, - "map_outlined": Icons.map_outlined, - "maps_home_work": Icons.maps_home_work, - "maps_home_work_sharp": Icons.maps_home_work_sharp, - "maps_home_work_rounded": Icons.maps_home_work_rounded, - "maps_home_work_outlined": Icons.maps_home_work_outlined, - "maps_ugc": Icons.maps_ugc, - "maps_ugc_sharp": Icons.maps_ugc_sharp, - "maps_ugc_rounded": Icons.maps_ugc_rounded, - "maps_ugc_outlined": Icons.maps_ugc_outlined, - "margin": Icons.margin, - "margin_sharp": Icons.margin_sharp, - "margin_rounded": Icons.margin_rounded, - "margin_outlined": Icons.margin_outlined, - "mark_as_unread": Icons.mark_as_unread, - "mark_as_unread_sharp": Icons.mark_as_unread_sharp, - "mark_as_unread_rounded": Icons.mark_as_unread_rounded, - "mark_as_unread_outlined": Icons.mark_as_unread_outlined, - "mark_chat_read": Icons.mark_chat_read, - "mark_chat_read_sharp": Icons.mark_chat_read_sharp, - "mark_chat_read_rounded": Icons.mark_chat_read_rounded, - "mark_chat_read_outlined": Icons.mark_chat_read_outlined, - "mark_chat_unread": Icons.mark_chat_unread, - "mark_chat_unread_sharp": Icons.mark_chat_unread_sharp, - "mark_chat_unread_rounded": Icons.mark_chat_unread_rounded, - "mark_chat_unread_outlined": Icons.mark_chat_unread_outlined, - "mark_email_read": Icons.mark_email_read, - "mark_email_read_sharp": Icons.mark_email_read_sharp, - "mark_email_read_rounded": Icons.mark_email_read_rounded, - "mark_email_read_outlined": Icons.mark_email_read_outlined, - "mark_email_unread": Icons.mark_email_unread, - "mark_email_unread_sharp": Icons.mark_email_unread_sharp, - "mark_email_unread_rounded": Icons.mark_email_unread_rounded, - "mark_email_unread_outlined": Icons.mark_email_unread_outlined, - "mark_unread_chat_alt": Icons.mark_unread_chat_alt, - "mark_unread_chat_alt_sharp": Icons.mark_unread_chat_alt_sharp, - "mark_unread_chat_alt_rounded": Icons.mark_unread_chat_alt_rounded, - "mark_unread_chat_alt_outlined": Icons.mark_unread_chat_alt_outlined, - "markunread": Icons.markunread, - "markunread_sharp": Icons.markunread_sharp, - "markunread_rounded": Icons.markunread_rounded, - "markunread_outlined": Icons.markunread_outlined, - "markunread_mailbox": Icons.markunread_mailbox, - "markunread_mailbox_sharp": Icons.markunread_mailbox_sharp, - "markunread_mailbox_rounded": Icons.markunread_mailbox_rounded, - "markunread_mailbox_outlined": Icons.markunread_mailbox_outlined, - "masks": Icons.masks, - "masks_sharp": Icons.masks_sharp, - "masks_rounded": Icons.masks_rounded, - "masks_outlined": Icons.masks_outlined, - "maximize": Icons.maximize, - "maximize_sharp": Icons.maximize_sharp, - "maximize_rounded": Icons.maximize_rounded, - "maximize_outlined": Icons.maximize_outlined, - "media_bluetooth_off": Icons.media_bluetooth_off, - "media_bluetooth_off_sharp": Icons.media_bluetooth_off_sharp, - "media_bluetooth_off_rounded": Icons.media_bluetooth_off_rounded, - "media_bluetooth_off_outlined": Icons.media_bluetooth_off_outlined, - "media_bluetooth_on": Icons.media_bluetooth_on, - "media_bluetooth_on_sharp": Icons.media_bluetooth_on_sharp, - "media_bluetooth_on_rounded": Icons.media_bluetooth_on_rounded, - "media_bluetooth_on_outlined": Icons.media_bluetooth_on_outlined, - "mediation": Icons.mediation, - "mediation_sharp": Icons.mediation_sharp, - "mediation_rounded": Icons.mediation_rounded, - "mediation_outlined": Icons.mediation_outlined, - "medical_information": Icons.medical_information, - "medical_information_sharp": Icons.medical_information_sharp, - "medical_information_rounded": Icons.medical_information_rounded, - "medical_information_outlined": Icons.medical_information_outlined, - "medical_services": Icons.medical_services, - "medical_services_sharp": Icons.medical_services_sharp, - "medical_services_rounded": Icons.medical_services_rounded, - "medical_services_outlined": Icons.medical_services_outlined, - "medication": Icons.medication, - "medication_sharp": Icons.medication_sharp, - "medication_rounded": Icons.medication_rounded, - "medication_outlined": Icons.medication_outlined, - "medication_liquid": Icons.medication_liquid, - "medication_liquid_sharp": Icons.medication_liquid_sharp, - "medication_liquid_rounded": Icons.medication_liquid_rounded, - "medication_liquid_outlined": Icons.medication_liquid_outlined, - "meeting_room": Icons.meeting_room, - "meeting_room_sharp": Icons.meeting_room_sharp, - "meeting_room_rounded": Icons.meeting_room_rounded, - "meeting_room_outlined": Icons.meeting_room_outlined, - "memory": Icons.memory, - "memory_sharp": Icons.memory_sharp, - "memory_rounded": Icons.memory_rounded, - "memory_outlined": Icons.memory_outlined, - "menu": Icons.menu, - "menu_sharp": Icons.menu_sharp, - "menu_rounded": Icons.menu_rounded, - "menu_outlined": Icons.menu_outlined, - "menu_book": Icons.menu_book, - "menu_book_sharp": Icons.menu_book_sharp, - "menu_book_rounded": Icons.menu_book_rounded, - "menu_book_outlined": Icons.menu_book_outlined, - "menu_open": Icons.menu_open, - "menu_open_sharp": Icons.menu_open_sharp, - "menu_open_rounded": Icons.menu_open_rounded, - "menu_open_outlined": Icons.menu_open_outlined, - "merge": Icons.merge, - "merge_sharp": Icons.merge_sharp, - "merge_rounded": Icons.merge_rounded, - "merge_outlined": Icons.merge_outlined, - "merge_type": Icons.merge_type, - "merge_type_sharp": Icons.merge_type_sharp, - "merge_type_rounded": Icons.merge_type_rounded, - "merge_type_outlined": Icons.merge_type_outlined, - "message": Icons.message, - "message_sharp": Icons.message_sharp, - "message_rounded": Icons.message_rounded, - "message_outlined": Icons.message_outlined, - "messenger": Icons.messenger, - "messenger_sharp": Icons.messenger_sharp, - "messenger_rounded": Icons.messenger_rounded, - "messenger_outlined": Icons.messenger_outlined, - "messenger_outline": Icons.messenger_outline, - "messenger_outline_sharp": Icons.messenger_outline_sharp, - "messenger_outline_rounded": Icons.messenger_outline_rounded, - "messenger_outline_outlined": Icons.messenger_outline_outlined, - "mic": Icons.mic, - "mic_sharp": Icons.mic_sharp, - "mic_rounded": Icons.mic_rounded, - "mic_outlined": Icons.mic_outlined, - "mic_external_off": Icons.mic_external_off, - "mic_external_off_sharp": Icons.mic_external_off_sharp, - "mic_external_off_rounded": Icons.mic_external_off_rounded, - "mic_external_off_outlined": Icons.mic_external_off_outlined, - "mic_external_on": Icons.mic_external_on, - "mic_external_on_sharp": Icons.mic_external_on_sharp, - "mic_external_on_rounded": Icons.mic_external_on_rounded, - "mic_external_on_outlined": Icons.mic_external_on_outlined, - "mic_none": Icons.mic_none, - "mic_none_sharp": Icons.mic_none_sharp, - "mic_none_rounded": Icons.mic_none_rounded, - "mic_none_outlined": Icons.mic_none_outlined, - "mic_off": Icons.mic_off, - "mic_off_sharp": Icons.mic_off_sharp, - "mic_off_rounded": Icons.mic_off_rounded, - "mic_off_outlined": Icons.mic_off_outlined, - "microwave": Icons.microwave, - "microwave_sharp": Icons.microwave_sharp, - "microwave_rounded": Icons.microwave_rounded, - "microwave_outlined": Icons.microwave_outlined, - "military_tech": Icons.military_tech, - "military_tech_sharp": Icons.military_tech_sharp, - "military_tech_rounded": Icons.military_tech_rounded, - "military_tech_outlined": Icons.military_tech_outlined, - "minimize": Icons.minimize, - "minimize_sharp": Icons.minimize_sharp, - "minimize_rounded": Icons.minimize_rounded, - "minimize_outlined": Icons.minimize_outlined, - "minor_crash": Icons.minor_crash, - "minor_crash_sharp": Icons.minor_crash_sharp, - "minor_crash_rounded": Icons.minor_crash_rounded, - "minor_crash_outlined": Icons.minor_crash_outlined, - "miscellaneous_services": Icons.miscellaneous_services, - "miscellaneous_services_sharp": Icons.miscellaneous_services_sharp, - "miscellaneous_services_rounded": Icons.miscellaneous_services_rounded, - "miscellaneous_services_outlined": Icons.miscellaneous_services_outlined, - "missed_video_call": Icons.missed_video_call, - "missed_video_call_sharp": Icons.missed_video_call_sharp, - "missed_video_call_rounded": Icons.missed_video_call_rounded, - "missed_video_call_outlined": Icons.missed_video_call_outlined, - "mms": Icons.mms, - "mms_sharp": Icons.mms_sharp, - "mms_rounded": Icons.mms_rounded, - "mms_outlined": Icons.mms_outlined, - "mobile_friendly": Icons.mobile_friendly, - "mobile_friendly_sharp": Icons.mobile_friendly_sharp, - "mobile_friendly_rounded": Icons.mobile_friendly_rounded, - "mobile_friendly_outlined": Icons.mobile_friendly_outlined, - "mobile_off": Icons.mobile_off, - "mobile_off_sharp": Icons.mobile_off_sharp, - "mobile_off_rounded": Icons.mobile_off_rounded, - "mobile_off_outlined": Icons.mobile_off_outlined, - "mobile_screen_share": Icons.mobile_screen_share, - "mobile_screen_share_sharp": Icons.mobile_screen_share_sharp, - "mobile_screen_share_rounded": Icons.mobile_screen_share_rounded, - "mobile_screen_share_outlined": Icons.mobile_screen_share_outlined, - "mobiledata_off": Icons.mobiledata_off, - "mobiledata_off_sharp": Icons.mobiledata_off_sharp, - "mobiledata_off_rounded": Icons.mobiledata_off_rounded, - "mobiledata_off_outlined": Icons.mobiledata_off_outlined, - "mode": Icons.mode, - "mode_sharp": Icons.mode_sharp, - "mode_rounded": Icons.mode_rounded, - "mode_outlined": Icons.mode_outlined, - "mode_comment": Icons.mode_comment, - "mode_comment_sharp": Icons.mode_comment_sharp, - "mode_comment_rounded": Icons.mode_comment_rounded, - "mode_comment_outlined": Icons.mode_comment_outlined, - "mode_edit": Icons.mode_edit, - "mode_edit_sharp": Icons.mode_edit_sharp, - "mode_edit_rounded": Icons.mode_edit_rounded, - "mode_edit_outlined": Icons.mode_edit_outlined, - "mode_edit_outline": Icons.mode_edit_outline, - "mode_edit_outline_sharp": Icons.mode_edit_outline_sharp, - "mode_edit_outline_rounded": Icons.mode_edit_outline_rounded, - "mode_edit_outline_outlined": Icons.mode_edit_outline_outlined, - "mode_fan_off": Icons.mode_fan_off, - "mode_fan_off_sharp": Icons.mode_fan_off_sharp, - "mode_fan_off_rounded": Icons.mode_fan_off_rounded, - "mode_fan_off_outlined": Icons.mode_fan_off_outlined, - "mode_night": Icons.mode_night, - "mode_night_sharp": Icons.mode_night_sharp, - "mode_night_rounded": Icons.mode_night_rounded, - "mode_night_outlined": Icons.mode_night_outlined, - "mode_of_travel": Icons.mode_of_travel, - "mode_of_travel_sharp": Icons.mode_of_travel_sharp, - "mode_of_travel_rounded": Icons.mode_of_travel_rounded, - "mode_of_travel_outlined": Icons.mode_of_travel_outlined, - "mode_standby": Icons.mode_standby, - "mode_standby_sharp": Icons.mode_standby_sharp, - "mode_standby_rounded": Icons.mode_standby_rounded, - "mode_standby_outlined": Icons.mode_standby_outlined, - "model_training": Icons.model_training, - "model_training_sharp": Icons.model_training_sharp, - "model_training_rounded": Icons.model_training_rounded, - "model_training_outlined": Icons.model_training_outlined, - "monetization_on": Icons.monetization_on, - "monetization_on_sharp": Icons.monetization_on_sharp, - "monetization_on_rounded": Icons.monetization_on_rounded, - "monetization_on_outlined": Icons.monetization_on_outlined, - "money": Icons.money, - "money_sharp": Icons.money_sharp, - "money_rounded": Icons.money_rounded, - "money_outlined": Icons.money_outlined, - "money_off": Icons.money_off, - "money_off_sharp": Icons.money_off_sharp, - "money_off_rounded": Icons.money_off_rounded, - "money_off_outlined": Icons.money_off_outlined, - "money_off_csred": Icons.money_off_csred, - "money_off_csred_sharp": Icons.money_off_csred_sharp, - "money_off_csred_rounded": Icons.money_off_csred_rounded, - "money_off_csred_outlined": Icons.money_off_csred_outlined, - "monitor": Icons.monitor, - "monitor_sharp": Icons.monitor_sharp, - "monitor_rounded": Icons.monitor_rounded, - "monitor_outlined": Icons.monitor_outlined, - "monitor_heart": Icons.monitor_heart, - "monitor_heart_sharp": Icons.monitor_heart_sharp, - "monitor_heart_rounded": Icons.monitor_heart_rounded, - "monitor_heart_outlined": Icons.monitor_heart_outlined, - "monitor_weight": Icons.monitor_weight, - "monitor_weight_sharp": Icons.monitor_weight_sharp, - "monitor_weight_rounded": Icons.monitor_weight_rounded, - "monitor_weight_outlined": Icons.monitor_weight_outlined, - "monochrome_photos": Icons.monochrome_photos, - "monochrome_photos_sharp": Icons.monochrome_photos_sharp, - "monochrome_photos_rounded": Icons.monochrome_photos_rounded, - "monochrome_photos_outlined": Icons.monochrome_photos_outlined, - "mood": Icons.mood, - "mood_sharp": Icons.mood_sharp, - "mood_rounded": Icons.mood_rounded, - "mood_outlined": Icons.mood_outlined, - "mood_bad": Icons.mood_bad, - "mood_bad_sharp": Icons.mood_bad_sharp, - "mood_bad_rounded": Icons.mood_bad_rounded, - "mood_bad_outlined": Icons.mood_bad_outlined, - "moped": Icons.moped, - "moped_sharp": Icons.moped_sharp, - "moped_rounded": Icons.moped_rounded, - "moped_outlined": Icons.moped_outlined, - "more": Icons.more, - "more_sharp": Icons.more_sharp, - "more_rounded": Icons.more_rounded, - "more_outlined": Icons.more_outlined, - "more_horiz": Icons.more_horiz, - "more_horiz_sharp": Icons.more_horiz_sharp, - "more_horiz_rounded": Icons.more_horiz_rounded, - "more_horiz_outlined": Icons.more_horiz_outlined, - "more_time": Icons.more_time, - "more_time_sharp": Icons.more_time_sharp, - "more_time_rounded": Icons.more_time_rounded, - "more_time_outlined": Icons.more_time_outlined, - "more_vert": Icons.more_vert, - "more_vert_sharp": Icons.more_vert_sharp, - "more_vert_rounded": Icons.more_vert_rounded, - "more_vert_outlined": Icons.more_vert_outlined, - "mosque": Icons.mosque, - "mosque_sharp": Icons.mosque_sharp, - "mosque_rounded": Icons.mosque_rounded, - "mosque_outlined": Icons.mosque_outlined, - "motion_photos_auto": Icons.motion_photos_auto, - "motion_photos_auto_sharp": Icons.motion_photos_auto_sharp, - "motion_photos_auto_rounded": Icons.motion_photos_auto_rounded, - "motion_photos_auto_outlined": Icons.motion_photos_auto_outlined, - "motion_photos_off": Icons.motion_photos_off, - "motion_photos_off_sharp": Icons.motion_photos_off_sharp, - "motion_photos_off_rounded": Icons.motion_photos_off_rounded, - "motion_photos_off_outlined": Icons.motion_photos_off_outlined, - "motion_photos_on": Icons.motion_photos_on, - "motion_photos_on_sharp": Icons.motion_photos_on_sharp, - "motion_photos_on_rounded": Icons.motion_photos_on_rounded, - "motion_photos_on_outlined": Icons.motion_photos_on_outlined, - "motion_photos_pause": Icons.motion_photos_pause, - "motion_photos_pause_sharp": Icons.motion_photos_pause_sharp, - "motion_photos_pause_rounded": Icons.motion_photos_pause_rounded, - "motion_photos_pause_outlined": Icons.motion_photos_pause_outlined, - "motion_photos_paused": Icons.motion_photos_paused, - "motion_photos_paused_sharp": Icons.motion_photos_paused_sharp, - "motion_photos_paused_rounded": Icons.motion_photos_paused_rounded, - "motion_photos_paused_outlined": Icons.motion_photos_paused_outlined, - "motorcycle": Icons.motorcycle, - "motorcycle_sharp": Icons.motorcycle_sharp, - "motorcycle_rounded": Icons.motorcycle_rounded, - "motorcycle_outlined": Icons.motorcycle_outlined, - "mouse": Icons.mouse, - "mouse_sharp": Icons.mouse_sharp, - "mouse_rounded": Icons.mouse_rounded, - "mouse_outlined": Icons.mouse_outlined, - "move_down": Icons.move_down, - "move_down_sharp": Icons.move_down_sharp, - "move_down_rounded": Icons.move_down_rounded, - "move_down_outlined": Icons.move_down_outlined, - "move_to_inbox": Icons.move_to_inbox, - "move_to_inbox_sharp": Icons.move_to_inbox_sharp, - "move_to_inbox_rounded": Icons.move_to_inbox_rounded, - "move_to_inbox_outlined": Icons.move_to_inbox_outlined, - "move_up": Icons.move_up, - "move_up_sharp": Icons.move_up_sharp, - "move_up_rounded": Icons.move_up_rounded, - "move_up_outlined": Icons.move_up_outlined, - "movie": Icons.movie, - "movie_sharp": Icons.movie_sharp, - "movie_rounded": Icons.movie_rounded, - "movie_outlined": Icons.movie_outlined, - "movie_creation": Icons.movie_creation, - "movie_creation_sharp": Icons.movie_creation_sharp, - "movie_creation_rounded": Icons.movie_creation_rounded, - "movie_creation_outlined": Icons.movie_creation_outlined, - "movie_edit": Icons.movie_edit, - "movie_filter": Icons.movie_filter, - "movie_filter_sharp": Icons.movie_filter_sharp, - "movie_filter_rounded": Icons.movie_filter_rounded, - "movie_filter_outlined": Icons.movie_filter_outlined, - "moving": Icons.moving, - "moving_sharp": Icons.moving_sharp, - "moving_rounded": Icons.moving_rounded, - "moving_outlined": Icons.moving_outlined, - "mp": Icons.mp, - "mp_sharp": Icons.mp_sharp, - "mp_rounded": Icons.mp_rounded, - "mp_outlined": Icons.mp_outlined, - "multiline_chart": Icons.multiline_chart, - "multiline_chart_sharp": Icons.multiline_chart_sharp, - "multiline_chart_rounded": Icons.multiline_chart_rounded, - "multiline_chart_outlined": Icons.multiline_chart_outlined, - "multiple_stop": Icons.multiple_stop, - "multiple_stop_sharp": Icons.multiple_stop_sharp, - "multiple_stop_rounded": Icons.multiple_stop_rounded, - "multiple_stop_outlined": Icons.multiple_stop_outlined, - "multitrack_audio": Icons.multitrack_audio, - "multitrack_audio_sharp": Icons.multitrack_audio_sharp, - "multitrack_audio_rounded": Icons.multitrack_audio_rounded, - "multitrack_audio_outlined": Icons.multitrack_audio_outlined, - "museum": Icons.museum, - "museum_sharp": Icons.museum_sharp, - "museum_rounded": Icons.museum_rounded, - "museum_outlined": Icons.museum_outlined, - "music_note": Icons.music_note, - "music_note_sharp": Icons.music_note_sharp, - "music_note_rounded": Icons.music_note_rounded, - "music_note_outlined": Icons.music_note_outlined, - "music_off": Icons.music_off, - "music_off_sharp": Icons.music_off_sharp, - "music_off_rounded": Icons.music_off_rounded, - "music_off_outlined": Icons.music_off_outlined, - "music_video": Icons.music_video, - "music_video_sharp": Icons.music_video_sharp, - "music_video_rounded": Icons.music_video_rounded, - "music_video_outlined": Icons.music_video_outlined, - "my_library_add": Icons.my_library_add, - "my_library_add_sharp": Icons.my_library_add_sharp, - "my_library_add_rounded": Icons.my_library_add_rounded, - "my_library_add_outlined": Icons.my_library_add_outlined, - "my_library_books": Icons.my_library_books, - "my_library_books_sharp": Icons.my_library_books_sharp, - "my_library_books_rounded": Icons.my_library_books_rounded, - "my_library_books_outlined": Icons.my_library_books_outlined, - "my_library_music": Icons.my_library_music, - "my_library_music_sharp": Icons.my_library_music_sharp, - "my_library_music_rounded": Icons.my_library_music_rounded, - "my_library_music_outlined": Icons.my_library_music_outlined, - "my_location": Icons.my_location, - "my_location_sharp": Icons.my_location_sharp, - "my_location_rounded": Icons.my_location_rounded, - "my_location_outlined": Icons.my_location_outlined, - "nat": Icons.nat, - "nat_sharp": Icons.nat_sharp, - "nat_rounded": Icons.nat_rounded, - "nat_outlined": Icons.nat_outlined, - "nature": Icons.nature, - "nature_sharp": Icons.nature_sharp, - "nature_rounded": Icons.nature_rounded, - "nature_outlined": Icons.nature_outlined, - "nature_people": Icons.nature_people, - "nature_people_sharp": Icons.nature_people_sharp, - "nature_people_rounded": Icons.nature_people_rounded, - "nature_people_outlined": Icons.nature_people_outlined, - "navigate_before": Icons.navigate_before, - "navigate_before_sharp": Icons.navigate_before_sharp, - "navigate_before_rounded": Icons.navigate_before_rounded, - "navigate_before_outlined": Icons.navigate_before_outlined, - "navigate_next": Icons.navigate_next, - "navigate_next_sharp": Icons.navigate_next_sharp, - "navigate_next_rounded": Icons.navigate_next_rounded, - "navigate_next_outlined": Icons.navigate_next_outlined, - "navigation": Icons.navigation, - "navigation_sharp": Icons.navigation_sharp, - "navigation_rounded": Icons.navigation_rounded, - "navigation_outlined": Icons.navigation_outlined, - "near_me": Icons.near_me, - "near_me_sharp": Icons.near_me_sharp, - "near_me_rounded": Icons.near_me_rounded, - "near_me_outlined": Icons.near_me_outlined, - "near_me_disabled": Icons.near_me_disabled, - "near_me_disabled_sharp": Icons.near_me_disabled_sharp, - "near_me_disabled_rounded": Icons.near_me_disabled_rounded, - "near_me_disabled_outlined": Icons.near_me_disabled_outlined, - "nearby_error": Icons.nearby_error, - "nearby_error_sharp": Icons.nearby_error_sharp, - "nearby_error_rounded": Icons.nearby_error_rounded, - "nearby_error_outlined": Icons.nearby_error_outlined, - "nearby_off": Icons.nearby_off, - "nearby_off_sharp": Icons.nearby_off_sharp, - "nearby_off_rounded": Icons.nearby_off_rounded, - "nearby_off_outlined": Icons.nearby_off_outlined, - "nest_cam_wired_stand": Icons.nest_cam_wired_stand, - "nest_cam_wired_stand_sharp": Icons.nest_cam_wired_stand_sharp, - "nest_cam_wired_stand_rounded": Icons.nest_cam_wired_stand_rounded, - "nest_cam_wired_stand_outlined": Icons.nest_cam_wired_stand_outlined, - "network_cell": Icons.network_cell, - "network_cell_sharp": Icons.network_cell_sharp, - "network_cell_rounded": Icons.network_cell_rounded, - "network_cell_outlined": Icons.network_cell_outlined, - "network_check": Icons.network_check, - "network_check_sharp": Icons.network_check_sharp, - "network_check_rounded": Icons.network_check_rounded, - "network_check_outlined": Icons.network_check_outlined, - "network_locked": Icons.network_locked, - "network_locked_sharp": Icons.network_locked_sharp, - "network_locked_rounded": Icons.network_locked_rounded, - "network_locked_outlined": Icons.network_locked_outlined, - "network_ping": Icons.network_ping, - "network_ping_sharp": Icons.network_ping_sharp, - "network_ping_rounded": Icons.network_ping_rounded, - "network_ping_outlined": Icons.network_ping_outlined, - "network_wifi": Icons.network_wifi, - "network_wifi_sharp": Icons.network_wifi_sharp, - "network_wifi_rounded": Icons.network_wifi_rounded, - "network_wifi_outlined": Icons.network_wifi_outlined, - "network_wifi_1_bar": Icons.network_wifi_1_bar, - "network_wifi_1_bar_sharp": Icons.network_wifi_1_bar_sharp, - "network_wifi_1_bar_rounded": Icons.network_wifi_1_bar_rounded, - "network_wifi_1_bar_outlined": Icons.network_wifi_1_bar_outlined, - "network_wifi_2_bar": Icons.network_wifi_2_bar, - "network_wifi_2_bar_sharp": Icons.network_wifi_2_bar_sharp, - "network_wifi_2_bar_rounded": Icons.network_wifi_2_bar_rounded, - "network_wifi_2_bar_outlined": Icons.network_wifi_2_bar_outlined, - "network_wifi_3_bar": Icons.network_wifi_3_bar, - "network_wifi_3_bar_sharp": Icons.network_wifi_3_bar_sharp, - "network_wifi_3_bar_rounded": Icons.network_wifi_3_bar_rounded, - "network_wifi_3_bar_outlined": Icons.network_wifi_3_bar_outlined, - "new_label": Icons.new_label, - "new_label_sharp": Icons.new_label_sharp, - "new_label_rounded": Icons.new_label_rounded, - "new_label_outlined": Icons.new_label_outlined, - "new_releases": Icons.new_releases, - "new_releases_sharp": Icons.new_releases_sharp, - "new_releases_rounded": Icons.new_releases_rounded, - "new_releases_outlined": Icons.new_releases_outlined, - "newspaper": Icons.newspaper, - "newspaper_sharp": Icons.newspaper_sharp, - "newspaper_rounded": Icons.newspaper_rounded, - "newspaper_outlined": Icons.newspaper_outlined, - "next_plan": Icons.next_plan, - "next_plan_sharp": Icons.next_plan_sharp, - "next_plan_rounded": Icons.next_plan_rounded, - "next_plan_outlined": Icons.next_plan_outlined, - "next_week": Icons.next_week, - "next_week_sharp": Icons.next_week_sharp, - "next_week_rounded": Icons.next_week_rounded, - "next_week_outlined": Icons.next_week_outlined, - "nfc": Icons.nfc, - "nfc_sharp": Icons.nfc_sharp, - "nfc_rounded": Icons.nfc_rounded, - "nfc_outlined": Icons.nfc_outlined, - "night_shelter": Icons.night_shelter, - "night_shelter_sharp": Icons.night_shelter_sharp, - "night_shelter_rounded": Icons.night_shelter_rounded, - "night_shelter_outlined": Icons.night_shelter_outlined, - "nightlife": Icons.nightlife, - "nightlife_sharp": Icons.nightlife_sharp, - "nightlife_rounded": Icons.nightlife_rounded, - "nightlife_outlined": Icons.nightlife_outlined, - "nightlight": Icons.nightlight, - "nightlight_sharp": Icons.nightlight_sharp, - "nightlight_rounded": Icons.nightlight_rounded, - "nightlight_outlined": Icons.nightlight_outlined, - "nightlight_round": Icons.nightlight_round, - "nightlight_round_sharp": Icons.nightlight_round_sharp, - "nightlight_round_rounded": Icons.nightlight_round_rounded, - "nightlight_round_outlined": Icons.nightlight_round_outlined, - "nights_stay": Icons.nights_stay, - "nights_stay_sharp": Icons.nights_stay_sharp, - "nights_stay_rounded": Icons.nights_stay_rounded, - "nights_stay_outlined": Icons.nights_stay_outlined, - "no_accounts": Icons.no_accounts, - "no_accounts_sharp": Icons.no_accounts_sharp, - "no_accounts_rounded": Icons.no_accounts_rounded, - "no_accounts_outlined": Icons.no_accounts_outlined, - "no_adult_content": Icons.no_adult_content, - "no_adult_content_sharp": Icons.no_adult_content_sharp, - "no_adult_content_rounded": Icons.no_adult_content_rounded, - "no_adult_content_outlined": Icons.no_adult_content_outlined, - "no_backpack": Icons.no_backpack, - "no_backpack_sharp": Icons.no_backpack_sharp, - "no_backpack_rounded": Icons.no_backpack_rounded, - "no_backpack_outlined": Icons.no_backpack_outlined, - "no_cell": Icons.no_cell, - "no_cell_sharp": Icons.no_cell_sharp, - "no_cell_rounded": Icons.no_cell_rounded, - "no_cell_outlined": Icons.no_cell_outlined, - "no_crash": Icons.no_crash, - "no_crash_sharp": Icons.no_crash_sharp, - "no_crash_rounded": Icons.no_crash_rounded, - "no_crash_outlined": Icons.no_crash_outlined, - "no_drinks": Icons.no_drinks, - "no_drinks_sharp": Icons.no_drinks_sharp, - "no_drinks_rounded": Icons.no_drinks_rounded, - "no_drinks_outlined": Icons.no_drinks_outlined, - "no_encryption": Icons.no_encryption, - "no_encryption_sharp": Icons.no_encryption_sharp, - "no_encryption_rounded": Icons.no_encryption_rounded, - "no_encryption_outlined": Icons.no_encryption_outlined, - "no_encryption_gmailerrorred": Icons.no_encryption_gmailerrorred, - "no_encryption_gmailerrorred_sharp": Icons.no_encryption_gmailerrorred_sharp, - "no_encryption_gmailerrorred_rounded": - Icons.no_encryption_gmailerrorred_rounded, - "no_encryption_gmailerrorred_outlined": - Icons.no_encryption_gmailerrorred_outlined, - "no_flash": Icons.no_flash, - "no_flash_sharp": Icons.no_flash_sharp, - "no_flash_rounded": Icons.no_flash_rounded, - "no_flash_outlined": Icons.no_flash_outlined, - "no_food": Icons.no_food, - "no_food_sharp": Icons.no_food_sharp, - "no_food_rounded": Icons.no_food_rounded, - "no_food_outlined": Icons.no_food_outlined, - "no_luggage": Icons.no_luggage, - "no_luggage_sharp": Icons.no_luggage_sharp, - "no_luggage_rounded": Icons.no_luggage_rounded, - "no_luggage_outlined": Icons.no_luggage_outlined, - "no_meals": Icons.no_meals, - "no_meals_sharp": Icons.no_meals_sharp, - "no_meals_rounded": Icons.no_meals_rounded, - "no_meals_outlined": Icons.no_meals_outlined, - "no_meals_ouline": Icons.no_meals_ouline, - "no_meeting_room": Icons.no_meeting_room, - "no_meeting_room_sharp": Icons.no_meeting_room_sharp, - "no_meeting_room_rounded": Icons.no_meeting_room_rounded, - "no_meeting_room_outlined": Icons.no_meeting_room_outlined, - "no_photography": Icons.no_photography, - "no_photography_sharp": Icons.no_photography_sharp, - "no_photography_rounded": Icons.no_photography_rounded, - "no_photography_outlined": Icons.no_photography_outlined, - "no_sim": Icons.no_sim, - "no_sim_sharp": Icons.no_sim_sharp, - "no_sim_rounded": Icons.no_sim_rounded, - "no_sim_outlined": Icons.no_sim_outlined, - "no_stroller": Icons.no_stroller, - "no_stroller_sharp": Icons.no_stroller_sharp, - "no_stroller_rounded": Icons.no_stroller_rounded, - "no_stroller_outlined": Icons.no_stroller_outlined, - "no_transfer": Icons.no_transfer, - "no_transfer_sharp": Icons.no_transfer_sharp, - "no_transfer_rounded": Icons.no_transfer_rounded, - "no_transfer_outlined": Icons.no_transfer_outlined, - "noise_aware": Icons.noise_aware, - "noise_aware_sharp": Icons.noise_aware_sharp, - "noise_aware_rounded": Icons.noise_aware_rounded, - "noise_aware_outlined": Icons.noise_aware_outlined, - "noise_control_off": Icons.noise_control_off, - "noise_control_off_sharp": Icons.noise_control_off_sharp, - "noise_control_off_rounded": Icons.noise_control_off_rounded, - "noise_control_off_outlined": Icons.noise_control_off_outlined, - "nordic_walking": Icons.nordic_walking, - "nordic_walking_sharp": Icons.nordic_walking_sharp, - "nordic_walking_rounded": Icons.nordic_walking_rounded, - "nordic_walking_outlined": Icons.nordic_walking_outlined, - "north": Icons.north, - "north_sharp": Icons.north_sharp, - "north_rounded": Icons.north_rounded, - "north_outlined": Icons.north_outlined, - "north_east": Icons.north_east, - "north_east_sharp": Icons.north_east_sharp, - "north_east_rounded": Icons.north_east_rounded, - "north_east_outlined": Icons.north_east_outlined, - "north_west": Icons.north_west, - "north_west_sharp": Icons.north_west_sharp, - "north_west_rounded": Icons.north_west_rounded, - "north_west_outlined": Icons.north_west_outlined, - "not_accessible": Icons.not_accessible, - "not_accessible_sharp": Icons.not_accessible_sharp, - "not_accessible_rounded": Icons.not_accessible_rounded, - "not_accessible_outlined": Icons.not_accessible_outlined, - "not_interested": Icons.not_interested, - "not_interested_sharp": Icons.not_interested_sharp, - "not_interested_rounded": Icons.not_interested_rounded, - "not_interested_outlined": Icons.not_interested_outlined, - "not_listed_location": Icons.not_listed_location, - "not_listed_location_sharp": Icons.not_listed_location_sharp, - "not_listed_location_rounded": Icons.not_listed_location_rounded, - "not_listed_location_outlined": Icons.not_listed_location_outlined, - "not_started": Icons.not_started, - "not_started_sharp": Icons.not_started_sharp, - "not_started_rounded": Icons.not_started_rounded, - "not_started_outlined": Icons.not_started_outlined, - "note": Icons.note, - "note_sharp": Icons.note_sharp, - "note_rounded": Icons.note_rounded, - "note_outlined": Icons.note_outlined, - "note_add": Icons.note_add, - "note_add_sharp": Icons.note_add_sharp, - "note_add_rounded": Icons.note_add_rounded, - "note_add_outlined": Icons.note_add_outlined, - "note_alt": Icons.note_alt, - "note_alt_sharp": Icons.note_alt_sharp, - "note_alt_rounded": Icons.note_alt_rounded, - "note_alt_outlined": Icons.note_alt_outlined, - "notes": Icons.notes, - "notes_sharp": Icons.notes_sharp, - "notes_rounded": Icons.notes_rounded, - "notes_outlined": Icons.notes_outlined, - "notification_add": Icons.notification_add, - "notification_add_sharp": Icons.notification_add_sharp, - "notification_add_rounded": Icons.notification_add_rounded, - "notification_add_outlined": Icons.notification_add_outlined, - "notification_important": Icons.notification_important, - "notification_important_sharp": Icons.notification_important_sharp, - "notification_important_rounded": Icons.notification_important_rounded, - "notification_important_outlined": Icons.notification_important_outlined, - "notifications": Icons.notifications, - "notifications_sharp": Icons.notifications_sharp, - "notifications_rounded": Icons.notifications_rounded, - "notifications_outlined": Icons.notifications_outlined, - "notifications_active": Icons.notifications_active, - "notifications_active_sharp": Icons.notifications_active_sharp, - "notifications_active_rounded": Icons.notifications_active_rounded, - "notifications_active_outlined": Icons.notifications_active_outlined, - "notifications_none": Icons.notifications_none, - "notifications_none_sharp": Icons.notifications_none_sharp, - "notifications_none_rounded": Icons.notifications_none_rounded, - "notifications_none_outlined": Icons.notifications_none_outlined, - "notifications_off": Icons.notifications_off, - "notifications_off_sharp": Icons.notifications_off_sharp, - "notifications_off_rounded": Icons.notifications_off_rounded, - "notifications_off_outlined": Icons.notifications_off_outlined, - "notifications_on": Icons.notifications_on, - "notifications_on_sharp": Icons.notifications_on_sharp, - "notifications_on_rounded": Icons.notifications_on_rounded, - "notifications_on_outlined": Icons.notifications_on_outlined, - "notifications_paused": Icons.notifications_paused, - "notifications_paused_sharp": Icons.notifications_paused_sharp, - "notifications_paused_rounded": Icons.notifications_paused_rounded, - "notifications_paused_outlined": Icons.notifications_paused_outlined, - "now_wallpaper": Icons.now_wallpaper, - "now_wallpaper_sharp": Icons.now_wallpaper_sharp, - "now_wallpaper_rounded": Icons.now_wallpaper_rounded, - "now_wallpaper_outlined": Icons.now_wallpaper_outlined, - "now_widgets": Icons.now_widgets, - "now_widgets_sharp": Icons.now_widgets_sharp, - "now_widgets_rounded": Icons.now_widgets_rounded, - "now_widgets_outlined": Icons.now_widgets_outlined, - "numbers": Icons.numbers, - "numbers_sharp": Icons.numbers_sharp, - "numbers_rounded": Icons.numbers_rounded, - "numbers_outlined": Icons.numbers_outlined, - "offline_bolt": Icons.offline_bolt, - "offline_bolt_sharp": Icons.offline_bolt_sharp, - "offline_bolt_rounded": Icons.offline_bolt_rounded, - "offline_bolt_outlined": Icons.offline_bolt_outlined, - "offline_pin": Icons.offline_pin, - "offline_pin_sharp": Icons.offline_pin_sharp, - "offline_pin_rounded": Icons.offline_pin_rounded, - "offline_pin_outlined": Icons.offline_pin_outlined, - "offline_share": Icons.offline_share, - "offline_share_sharp": Icons.offline_share_sharp, - "offline_share_rounded": Icons.offline_share_rounded, - "offline_share_outlined": Icons.offline_share_outlined, - "oil_barrel": Icons.oil_barrel, - "oil_barrel_sharp": Icons.oil_barrel_sharp, - "oil_barrel_rounded": Icons.oil_barrel_rounded, - "oil_barrel_outlined": Icons.oil_barrel_outlined, - "on_device_training": Icons.on_device_training, - "on_device_training_sharp": Icons.on_device_training_sharp, - "on_device_training_rounded": Icons.on_device_training_rounded, - "on_device_training_outlined": Icons.on_device_training_outlined, - "ondemand_video": Icons.ondemand_video, - "ondemand_video_sharp": Icons.ondemand_video_sharp, - "ondemand_video_rounded": Icons.ondemand_video_rounded, - "ondemand_video_outlined": Icons.ondemand_video_outlined, - "online_prediction": Icons.online_prediction, - "online_prediction_sharp": Icons.online_prediction_sharp, - "online_prediction_rounded": Icons.online_prediction_rounded, - "online_prediction_outlined": Icons.online_prediction_outlined, - "opacity": Icons.opacity, - "opacity_sharp": Icons.opacity_sharp, - "opacity_rounded": Icons.opacity_rounded, - "opacity_outlined": Icons.opacity_outlined, - "open_in_browser": Icons.open_in_browser, - "open_in_browser_sharp": Icons.open_in_browser_sharp, - "open_in_browser_rounded": Icons.open_in_browser_rounded, - "open_in_browser_outlined": Icons.open_in_browser_outlined, - "open_in_full": Icons.open_in_full, - "open_in_full_sharp": Icons.open_in_full_sharp, - "open_in_full_rounded": Icons.open_in_full_rounded, - "open_in_full_outlined": Icons.open_in_full_outlined, - "open_in_new": Icons.open_in_new, - "open_in_new_sharp": Icons.open_in_new_sharp, - "open_in_new_rounded": Icons.open_in_new_rounded, - "open_in_new_outlined": Icons.open_in_new_outlined, - "open_in_new_off": Icons.open_in_new_off, - "open_in_new_off_sharp": Icons.open_in_new_off_sharp, - "open_in_new_off_rounded": Icons.open_in_new_off_rounded, - "open_in_new_off_outlined": Icons.open_in_new_off_outlined, - "open_with": Icons.open_with, - "open_with_sharp": Icons.open_with_sharp, - "open_with_rounded": Icons.open_with_rounded, - "open_with_outlined": Icons.open_with_outlined, - "other_houses": Icons.other_houses, - "other_houses_sharp": Icons.other_houses_sharp, - "other_houses_rounded": Icons.other_houses_rounded, - "other_houses_outlined": Icons.other_houses_outlined, - "outbond": Icons.outbond, - "outbond_sharp": Icons.outbond_sharp, - "outbond_rounded": Icons.outbond_rounded, - "outbond_outlined": Icons.outbond_outlined, - "outbound": Icons.outbound, - "outbound_sharp": Icons.outbound_sharp, - "outbound_rounded": Icons.outbound_rounded, - "outbound_outlined": Icons.outbound_outlined, - "outbox": Icons.outbox, - "outbox_sharp": Icons.outbox_sharp, - "outbox_rounded": Icons.outbox_rounded, - "outbox_outlined": Icons.outbox_outlined, - "outdoor_grill": Icons.outdoor_grill, - "outdoor_grill_sharp": Icons.outdoor_grill_sharp, - "outdoor_grill_rounded": Icons.outdoor_grill_rounded, - "outdoor_grill_outlined": Icons.outdoor_grill_outlined, - "outgoing_mail": Icons.outgoing_mail, - "outlet": Icons.outlet, - "outlet_sharp": Icons.outlet_sharp, - "outlet_rounded": Icons.outlet_rounded, - "outlet_outlined": Icons.outlet_outlined, - "outlined_flag": Icons.outlined_flag, - "outlined_flag_sharp": Icons.outlined_flag_sharp, - "outlined_flag_rounded": Icons.outlined_flag_rounded, - "outlined_flag_outlined": Icons.outlined_flag_outlined, - "output": Icons.output, - "output_sharp": Icons.output_sharp, - "output_rounded": Icons.output_rounded, - "output_outlined": Icons.output_outlined, - "padding": Icons.padding, - "padding_sharp": Icons.padding_sharp, - "padding_rounded": Icons.padding_rounded, - "padding_outlined": Icons.padding_outlined, - "pages": Icons.pages, - "pages_sharp": Icons.pages_sharp, - "pages_rounded": Icons.pages_rounded, - "pages_outlined": Icons.pages_outlined, - "pageview": Icons.pageview, - "pageview_sharp": Icons.pageview_sharp, - "pageview_rounded": Icons.pageview_rounded, - "pageview_outlined": Icons.pageview_outlined, - "paid": Icons.paid, - "paid_sharp": Icons.paid_sharp, - "paid_rounded": Icons.paid_rounded, - "paid_outlined": Icons.paid_outlined, - "palette": Icons.palette, - "palette_sharp": Icons.palette_sharp, - "palette_rounded": Icons.palette_rounded, - "palette_outlined": Icons.palette_outlined, - "pallet": Icons.pallet, - "pan_tool": Icons.pan_tool, - "pan_tool_sharp": Icons.pan_tool_sharp, - "pan_tool_rounded": Icons.pan_tool_rounded, - "pan_tool_outlined": Icons.pan_tool_outlined, - "pan_tool_alt": Icons.pan_tool_alt, - "pan_tool_alt_sharp": Icons.pan_tool_alt_sharp, - "pan_tool_alt_rounded": Icons.pan_tool_alt_rounded, - "pan_tool_alt_outlined": Icons.pan_tool_alt_outlined, - "panorama": Icons.panorama, - "panorama_sharp": Icons.panorama_sharp, - "panorama_rounded": Icons.panorama_rounded, - "panorama_outlined": Icons.panorama_outlined, - "panorama_fish_eye": Icons.panorama_fish_eye, - "panorama_fish_eye_sharp": Icons.panorama_fish_eye_sharp, - "panorama_fish_eye_rounded": Icons.panorama_fish_eye_rounded, - "panorama_fish_eye_outlined": Icons.panorama_fish_eye_outlined, - "panorama_fisheye": Icons.panorama_fisheye, - "panorama_fisheye_sharp": Icons.panorama_fisheye_sharp, - "panorama_fisheye_rounded": Icons.panorama_fisheye_rounded, - "panorama_fisheye_outlined": Icons.panorama_fisheye_outlined, - "panorama_horizontal": Icons.panorama_horizontal, - "panorama_horizontal_sharp": Icons.panorama_horizontal_sharp, - "panorama_horizontal_rounded": Icons.panorama_horizontal_rounded, - "panorama_horizontal_outlined": Icons.panorama_horizontal_outlined, - "panorama_horizontal_select": Icons.panorama_horizontal_select, - "panorama_horizontal_select_sharp": Icons.panorama_horizontal_select_sharp, - "panorama_horizontal_select_rounded": - Icons.panorama_horizontal_select_rounded, - "panorama_horizontal_select_outlined": - Icons.panorama_horizontal_select_outlined, - "panorama_photosphere": Icons.panorama_photosphere, - "panorama_photosphere_sharp": Icons.panorama_photosphere_sharp, - "panorama_photosphere_rounded": Icons.panorama_photosphere_rounded, - "panorama_photosphere_outlined": Icons.panorama_photosphere_outlined, - "panorama_photosphere_select": Icons.panorama_photosphere_select, - "panorama_photosphere_select_sharp": Icons.panorama_photosphere_select_sharp, - "panorama_photosphere_select_rounded": - Icons.panorama_photosphere_select_rounded, - "panorama_photosphere_select_outlined": - Icons.panorama_photosphere_select_outlined, - "panorama_vertical": Icons.panorama_vertical, - "panorama_vertical_sharp": Icons.panorama_vertical_sharp, - "panorama_vertical_rounded": Icons.panorama_vertical_rounded, - "panorama_vertical_outlined": Icons.panorama_vertical_outlined, - "panorama_vertical_select": Icons.panorama_vertical_select, - "panorama_vertical_select_sharp": Icons.panorama_vertical_select_sharp, - "panorama_vertical_select_rounded": Icons.panorama_vertical_select_rounded, - "panorama_vertical_select_outlined": Icons.panorama_vertical_select_outlined, - "panorama_wide_angle": Icons.panorama_wide_angle, - "panorama_wide_angle_sharp": Icons.panorama_wide_angle_sharp, - "panorama_wide_angle_rounded": Icons.panorama_wide_angle_rounded, - "panorama_wide_angle_outlined": Icons.panorama_wide_angle_outlined, - "panorama_wide_angle_select": Icons.panorama_wide_angle_select, - "panorama_wide_angle_select_sharp": Icons.panorama_wide_angle_select_sharp, - "panorama_wide_angle_select_rounded": - Icons.panorama_wide_angle_select_rounded, - "panorama_wide_angle_select_outlined": - Icons.panorama_wide_angle_select_outlined, - "paragliding": Icons.paragliding, - "paragliding_sharp": Icons.paragliding_sharp, - "paragliding_rounded": Icons.paragliding_rounded, - "paragliding_outlined": Icons.paragliding_outlined, - "park": Icons.park, - "park_sharp": Icons.park_sharp, - "park_rounded": Icons.park_rounded, - "park_outlined": Icons.park_outlined, - "party_mode": Icons.party_mode, - "party_mode_sharp": Icons.party_mode_sharp, - "party_mode_rounded": Icons.party_mode_rounded, - "party_mode_outlined": Icons.party_mode_outlined, - "password": Icons.password, - "password_sharp": Icons.password_sharp, - "password_rounded": Icons.password_rounded, - "password_outlined": Icons.password_outlined, - "paste": Icons.paste, - "paste_sharp": Icons.paste_sharp, - "paste_rounded": Icons.paste_rounded, - "paste_outlined": Icons.paste_outlined, - "pattern": Icons.pattern, - "pattern_sharp": Icons.pattern_sharp, - "pattern_rounded": Icons.pattern_rounded, - "pattern_outlined": Icons.pattern_outlined, - "pause": Icons.pause, - "pause_sharp": Icons.pause_sharp, - "pause_rounded": Icons.pause_rounded, - "pause_outlined": Icons.pause_outlined, - "pause_circle": Icons.pause_circle, - "pause_circle_sharp": Icons.pause_circle_sharp, - "pause_circle_rounded": Icons.pause_circle_rounded, - "pause_circle_outlined": Icons.pause_circle_outlined, - "pause_circle_filled": Icons.pause_circle_filled, - "pause_circle_filled_sharp": Icons.pause_circle_filled_sharp, - "pause_circle_filled_rounded": Icons.pause_circle_filled_rounded, - "pause_circle_filled_outlined": Icons.pause_circle_filled_outlined, - "pause_circle_outline": Icons.pause_circle_outline, - "pause_circle_outline_sharp": Icons.pause_circle_outline_sharp, - "pause_circle_outline_rounded": Icons.pause_circle_outline_rounded, - "pause_circle_outline_outlined": Icons.pause_circle_outline_outlined, - "pause_presentation": Icons.pause_presentation, - "pause_presentation_sharp": Icons.pause_presentation_sharp, - "pause_presentation_rounded": Icons.pause_presentation_rounded, - "pause_presentation_outlined": Icons.pause_presentation_outlined, - "payment": Icons.payment, - "payment_sharp": Icons.payment_sharp, - "payment_rounded": Icons.payment_rounded, - "payment_outlined": Icons.payment_outlined, - "payments": Icons.payments, - "payments_sharp": Icons.payments_sharp, - "payments_rounded": Icons.payments_rounded, - "payments_outlined": Icons.payments_outlined, - "paypal": Icons.paypal, - "paypal_sharp": Icons.paypal_sharp, - "paypal_rounded": Icons.paypal_rounded, - "paypal_outlined": Icons.paypal_outlined, - "pedal_bike": Icons.pedal_bike, - "pedal_bike_sharp": Icons.pedal_bike_sharp, - "pedal_bike_rounded": Icons.pedal_bike_rounded, - "pedal_bike_outlined": Icons.pedal_bike_outlined, - "pending": Icons.pending, - "pending_sharp": Icons.pending_sharp, - "pending_rounded": Icons.pending_rounded, - "pending_outlined": Icons.pending_outlined, - "pending_actions": Icons.pending_actions, - "pending_actions_sharp": Icons.pending_actions_sharp, - "pending_actions_rounded": Icons.pending_actions_rounded, - "pending_actions_outlined": Icons.pending_actions_outlined, - "pentagon": Icons.pentagon, - "pentagon_sharp": Icons.pentagon_sharp, - "pentagon_rounded": Icons.pentagon_rounded, - "pentagon_outlined": Icons.pentagon_outlined, - "people": Icons.people, - "people_sharp": Icons.people_sharp, - "people_rounded": Icons.people_rounded, - "people_outlined": Icons.people_outlined, - "people_alt": Icons.people_alt, - "people_alt_sharp": Icons.people_alt_sharp, - "people_alt_rounded": Icons.people_alt_rounded, - "people_alt_outlined": Icons.people_alt_outlined, - "people_outline": Icons.people_outline, - "people_outline_sharp": Icons.people_outline_sharp, - "people_outline_rounded": Icons.people_outline_rounded, - "people_outline_outlined": Icons.people_outline_outlined, - "percent": Icons.percent, - "percent_sharp": Icons.percent_sharp, - "percent_rounded": Icons.percent_rounded, - "percent_outlined": Icons.percent_outlined, - "perm_camera_mic": Icons.perm_camera_mic, - "perm_camera_mic_sharp": Icons.perm_camera_mic_sharp, - "perm_camera_mic_rounded": Icons.perm_camera_mic_rounded, - "perm_camera_mic_outlined": Icons.perm_camera_mic_outlined, - "perm_contact_cal": Icons.perm_contact_cal, - "perm_contact_cal_sharp": Icons.perm_contact_cal_sharp, - "perm_contact_cal_rounded": Icons.perm_contact_cal_rounded, - "perm_contact_cal_outlined": Icons.perm_contact_cal_outlined, - "perm_contact_calendar": Icons.perm_contact_calendar, - "perm_contact_calendar_sharp": Icons.perm_contact_calendar_sharp, - "perm_contact_calendar_rounded": Icons.perm_contact_calendar_rounded, - "perm_contact_calendar_outlined": Icons.perm_contact_calendar_outlined, - "perm_data_setting": Icons.perm_data_setting, - "perm_data_setting_sharp": Icons.perm_data_setting_sharp, - "perm_data_setting_rounded": Icons.perm_data_setting_rounded, - "perm_data_setting_outlined": Icons.perm_data_setting_outlined, - "perm_device_info": Icons.perm_device_info, - "perm_device_info_sharp": Icons.perm_device_info_sharp, - "perm_device_info_rounded": Icons.perm_device_info_rounded, - "perm_device_info_outlined": Icons.perm_device_info_outlined, - "perm_device_information": Icons.perm_device_information, - "perm_device_information_sharp": Icons.perm_device_information_sharp, - "perm_device_information_rounded": Icons.perm_device_information_rounded, - "perm_device_information_outlined": Icons.perm_device_information_outlined, - "perm_identity": Icons.perm_identity, - "perm_identity_sharp": Icons.perm_identity_sharp, - "perm_identity_rounded": Icons.perm_identity_rounded, - "perm_identity_outlined": Icons.perm_identity_outlined, - "perm_media": Icons.perm_media, - "perm_media_sharp": Icons.perm_media_sharp, - "perm_media_rounded": Icons.perm_media_rounded, - "perm_media_outlined": Icons.perm_media_outlined, - "perm_phone_msg": Icons.perm_phone_msg, - "perm_phone_msg_sharp": Icons.perm_phone_msg_sharp, - "perm_phone_msg_rounded": Icons.perm_phone_msg_rounded, - "perm_phone_msg_outlined": Icons.perm_phone_msg_outlined, - "perm_scan_wifi": Icons.perm_scan_wifi, - "perm_scan_wifi_sharp": Icons.perm_scan_wifi_sharp, - "perm_scan_wifi_rounded": Icons.perm_scan_wifi_rounded, - "perm_scan_wifi_outlined": Icons.perm_scan_wifi_outlined, - "person": Icons.person, - "person_sharp": Icons.person_sharp, - "person_rounded": Icons.person_rounded, - "person_outlined": Icons.person_outlined, - "person_2": Icons.person_2, - "person_2_sharp": Icons.person_2_sharp, - "person_2_rounded": Icons.person_2_rounded, - "person_2_outlined": Icons.person_2_outlined, - "person_3": Icons.person_3, - "person_3_sharp": Icons.person_3_sharp, - "person_3_rounded": Icons.person_3_rounded, - "person_3_outlined": Icons.person_3_outlined, - "person_4": Icons.person_4, - "person_4_sharp": Icons.person_4_sharp, - "person_4_rounded": Icons.person_4_rounded, - "person_4_outlined": Icons.person_4_outlined, - "person_add": Icons.person_add, - "person_add_sharp": Icons.person_add_sharp, - "person_add_rounded": Icons.person_add_rounded, - "person_add_outlined": Icons.person_add_outlined, - "person_add_alt": Icons.person_add_alt, - "person_add_alt_sharp": Icons.person_add_alt_sharp, - "person_add_alt_rounded": Icons.person_add_alt_rounded, - "person_add_alt_outlined": Icons.person_add_alt_outlined, - "person_add_alt_1": Icons.person_add_alt_1, - "person_add_alt_1_sharp": Icons.person_add_alt_1_sharp, - "person_add_alt_1_rounded": Icons.person_add_alt_1_rounded, - "person_add_alt_1_outlined": Icons.person_add_alt_1_outlined, - "person_add_disabled": Icons.person_add_disabled, - "person_add_disabled_sharp": Icons.person_add_disabled_sharp, - "person_add_disabled_rounded": Icons.person_add_disabled_rounded, - "person_add_disabled_outlined": Icons.person_add_disabled_outlined, - "person_off": Icons.person_off, - "person_off_sharp": Icons.person_off_sharp, - "person_off_rounded": Icons.person_off_rounded, - "person_off_outlined": Icons.person_off_outlined, - "person_outline": Icons.person_outline, - "person_outline_sharp": Icons.person_outline_sharp, - "person_outline_rounded": Icons.person_outline_rounded, - "person_outline_outlined": Icons.person_outline_outlined, - "person_pin": Icons.person_pin, - "person_pin_sharp": Icons.person_pin_sharp, - "person_pin_rounded": Icons.person_pin_rounded, - "person_pin_outlined": Icons.person_pin_outlined, - "person_pin_circle": Icons.person_pin_circle, - "person_pin_circle_sharp": Icons.person_pin_circle_sharp, - "person_pin_circle_rounded": Icons.person_pin_circle_rounded, - "person_pin_circle_outlined": Icons.person_pin_circle_outlined, - "person_remove": Icons.person_remove, - "person_remove_sharp": Icons.person_remove_sharp, - "person_remove_rounded": Icons.person_remove_rounded, - "person_remove_outlined": Icons.person_remove_outlined, - "person_remove_alt_1": Icons.person_remove_alt_1, - "person_remove_alt_1_sharp": Icons.person_remove_alt_1_sharp, - "person_remove_alt_1_rounded": Icons.person_remove_alt_1_rounded, - "person_remove_alt_1_outlined": Icons.person_remove_alt_1_outlined, - "person_search": Icons.person_search, - "person_search_sharp": Icons.person_search_sharp, - "person_search_rounded": Icons.person_search_rounded, - "person_search_outlined": Icons.person_search_outlined, - "personal_injury": Icons.personal_injury, - "personal_injury_sharp": Icons.personal_injury_sharp, - "personal_injury_rounded": Icons.personal_injury_rounded, - "personal_injury_outlined": Icons.personal_injury_outlined, - "personal_video": Icons.personal_video, - "personal_video_sharp": Icons.personal_video_sharp, - "personal_video_rounded": Icons.personal_video_rounded, - "personal_video_outlined": Icons.personal_video_outlined, - "pest_control": Icons.pest_control, - "pest_control_sharp": Icons.pest_control_sharp, - "pest_control_rounded": Icons.pest_control_rounded, - "pest_control_outlined": Icons.pest_control_outlined, - "pest_control_rodent": Icons.pest_control_rodent, - "pest_control_rodent_sharp": Icons.pest_control_rodent_sharp, - "pest_control_rodent_rounded": Icons.pest_control_rodent_rounded, - "pest_control_rodent_outlined": Icons.pest_control_rodent_outlined, - "pets": Icons.pets, - "pets_sharp": Icons.pets_sharp, - "pets_rounded": Icons.pets_rounded, - "pets_outlined": Icons.pets_outlined, - "phishing": Icons.phishing, - "phishing_sharp": Icons.phishing_sharp, - "phishing_rounded": Icons.phishing_rounded, - "phishing_outlined": Icons.phishing_outlined, - "phone": Icons.phone, - "phone_sharp": Icons.phone_sharp, - "phone_rounded": Icons.phone_rounded, - "phone_outlined": Icons.phone_outlined, - "phone_android": Icons.phone_android, - "phone_android_sharp": Icons.phone_android_sharp, - "phone_android_rounded": Icons.phone_android_rounded, - "phone_android_outlined": Icons.phone_android_outlined, - "phone_bluetooth_speaker": Icons.phone_bluetooth_speaker, - "phone_bluetooth_speaker_sharp": Icons.phone_bluetooth_speaker_sharp, - "phone_bluetooth_speaker_rounded": Icons.phone_bluetooth_speaker_rounded, - "phone_bluetooth_speaker_outlined": Icons.phone_bluetooth_speaker_outlined, - "phone_callback": Icons.phone_callback, - "phone_callback_sharp": Icons.phone_callback_sharp, - "phone_callback_rounded": Icons.phone_callback_rounded, - "phone_callback_outlined": Icons.phone_callback_outlined, - "phone_disabled": Icons.phone_disabled, - "phone_disabled_sharp": Icons.phone_disabled_sharp, - "phone_disabled_rounded": Icons.phone_disabled_rounded, - "phone_disabled_outlined": Icons.phone_disabled_outlined, - "phone_enabled": Icons.phone_enabled, - "phone_enabled_sharp": Icons.phone_enabled_sharp, - "phone_enabled_rounded": Icons.phone_enabled_rounded, - "phone_enabled_outlined": Icons.phone_enabled_outlined, - "phone_forwarded": Icons.phone_forwarded, - "phone_forwarded_sharp": Icons.phone_forwarded_sharp, - "phone_forwarded_rounded": Icons.phone_forwarded_rounded, - "phone_forwarded_outlined": Icons.phone_forwarded_outlined, - "phone_in_talk": Icons.phone_in_talk, - "phone_in_talk_sharp": Icons.phone_in_talk_sharp, - "phone_in_talk_rounded": Icons.phone_in_talk_rounded, - "phone_in_talk_outlined": Icons.phone_in_talk_outlined, - "phone_iphone": Icons.phone_iphone, - "phone_iphone_sharp": Icons.phone_iphone_sharp, - "phone_iphone_rounded": Icons.phone_iphone_rounded, - "phone_iphone_outlined": Icons.phone_iphone_outlined, - "phone_locked": Icons.phone_locked, - "phone_locked_sharp": Icons.phone_locked_sharp, - "phone_locked_rounded": Icons.phone_locked_rounded, - "phone_locked_outlined": Icons.phone_locked_outlined, - "phone_missed": Icons.phone_missed, - "phone_missed_sharp": Icons.phone_missed_sharp, - "phone_missed_rounded": Icons.phone_missed_rounded, - "phone_missed_outlined": Icons.phone_missed_outlined, - "phone_paused": Icons.phone_paused, - "phone_paused_sharp": Icons.phone_paused_sharp, - "phone_paused_rounded": Icons.phone_paused_rounded, - "phone_paused_outlined": Icons.phone_paused_outlined, - "phonelink": Icons.phonelink, - "phonelink_sharp": Icons.phonelink_sharp, - "phonelink_rounded": Icons.phonelink_rounded, - "phonelink_outlined": Icons.phonelink_outlined, - "phonelink_erase": Icons.phonelink_erase, - "phonelink_erase_sharp": Icons.phonelink_erase_sharp, - "phonelink_erase_rounded": Icons.phonelink_erase_rounded, - "phonelink_erase_outlined": Icons.phonelink_erase_outlined, - "phonelink_lock": Icons.phonelink_lock, - "phonelink_lock_sharp": Icons.phonelink_lock_sharp, - "phonelink_lock_rounded": Icons.phonelink_lock_rounded, - "phonelink_lock_outlined": Icons.phonelink_lock_outlined, - "phonelink_off": Icons.phonelink_off, - "phonelink_off_sharp": Icons.phonelink_off_sharp, - "phonelink_off_rounded": Icons.phonelink_off_rounded, - "phonelink_off_outlined": Icons.phonelink_off_outlined, - "phonelink_ring": Icons.phonelink_ring, - "phonelink_ring_sharp": Icons.phonelink_ring_sharp, - "phonelink_ring_rounded": Icons.phonelink_ring_rounded, - "phonelink_ring_outlined": Icons.phonelink_ring_outlined, - "phonelink_setup": Icons.phonelink_setup, - "phonelink_setup_sharp": Icons.phonelink_setup_sharp, - "phonelink_setup_rounded": Icons.phonelink_setup_rounded, - "phonelink_setup_outlined": Icons.phonelink_setup_outlined, - "photo": Icons.photo, - "photo_sharp": Icons.photo_sharp, - "photo_rounded": Icons.photo_rounded, - "photo_outlined": Icons.photo_outlined, - "photo_album": Icons.photo_album, - "photo_album_sharp": Icons.photo_album_sharp, - "photo_album_rounded": Icons.photo_album_rounded, - "photo_album_outlined": Icons.photo_album_outlined, - "photo_camera": Icons.photo_camera, - "photo_camera_sharp": Icons.photo_camera_sharp, - "photo_camera_rounded": Icons.photo_camera_rounded, - "photo_camera_outlined": Icons.photo_camera_outlined, - "photo_camera_back": Icons.photo_camera_back, - "photo_camera_back_sharp": Icons.photo_camera_back_sharp, - "photo_camera_back_rounded": Icons.photo_camera_back_rounded, - "photo_camera_back_outlined": Icons.photo_camera_back_outlined, - "photo_camera_front": Icons.photo_camera_front, - "photo_camera_front_sharp": Icons.photo_camera_front_sharp, - "photo_camera_front_rounded": Icons.photo_camera_front_rounded, - "photo_camera_front_outlined": Icons.photo_camera_front_outlined, - "photo_filter": Icons.photo_filter, - "photo_filter_sharp": Icons.photo_filter_sharp, - "photo_filter_rounded": Icons.photo_filter_rounded, - "photo_filter_outlined": Icons.photo_filter_outlined, - "photo_library": Icons.photo_library, - "photo_library_sharp": Icons.photo_library_sharp, - "photo_library_rounded": Icons.photo_library_rounded, - "photo_library_outlined": Icons.photo_library_outlined, - "photo_size_select_actual": Icons.photo_size_select_actual, - "photo_size_select_actual_sharp": Icons.photo_size_select_actual_sharp, - "photo_size_select_actual_rounded": Icons.photo_size_select_actual_rounded, - "photo_size_select_actual_outlined": Icons.photo_size_select_actual_outlined, - "photo_size_select_large": Icons.photo_size_select_large, - "photo_size_select_large_sharp": Icons.photo_size_select_large_sharp, - "photo_size_select_large_rounded": Icons.photo_size_select_large_rounded, - "photo_size_select_large_outlined": Icons.photo_size_select_large_outlined, - "photo_size_select_small": Icons.photo_size_select_small, - "photo_size_select_small_sharp": Icons.photo_size_select_small_sharp, - "photo_size_select_small_rounded": Icons.photo_size_select_small_rounded, - "photo_size_select_small_outlined": Icons.photo_size_select_small_outlined, - "php": Icons.php, - "php_sharp": Icons.php_sharp, - "php_rounded": Icons.php_rounded, - "php_outlined": Icons.php_outlined, - "piano": Icons.piano, - "piano_sharp": Icons.piano_sharp, - "piano_rounded": Icons.piano_rounded, - "piano_outlined": Icons.piano_outlined, - "piano_off": Icons.piano_off, - "piano_off_sharp": Icons.piano_off_sharp, - "piano_off_rounded": Icons.piano_off_rounded, - "piano_off_outlined": Icons.piano_off_outlined, - "picture_as_pdf": Icons.picture_as_pdf, - "picture_as_pdf_sharp": Icons.picture_as_pdf_sharp, - "picture_as_pdf_rounded": Icons.picture_as_pdf_rounded, - "picture_as_pdf_outlined": Icons.picture_as_pdf_outlined, - "picture_in_picture": Icons.picture_in_picture, - "picture_in_picture_sharp": Icons.picture_in_picture_sharp, - "picture_in_picture_rounded": Icons.picture_in_picture_rounded, - "picture_in_picture_outlined": Icons.picture_in_picture_outlined, - "picture_in_picture_alt": Icons.picture_in_picture_alt, - "picture_in_picture_alt_sharp": Icons.picture_in_picture_alt_sharp, - "picture_in_picture_alt_rounded": Icons.picture_in_picture_alt_rounded, - "picture_in_picture_alt_outlined": Icons.picture_in_picture_alt_outlined, - "pie_chart": Icons.pie_chart, - "pie_chart_sharp": Icons.pie_chart_sharp, - "pie_chart_rounded": Icons.pie_chart_rounded, - "pie_chart_outline": Icons.pie_chart_outline, - "pie_chart_outline_sharp": Icons.pie_chart_outline_sharp, - "pie_chart_outline_rounded": Icons.pie_chart_outline_rounded, - "pie_chart_outline_outlined": Icons.pie_chart_outline_outlined, - "pin": Icons.pin, - "pin_sharp": Icons.pin_sharp, - "pin_rounded": Icons.pin_rounded, - "pin_outlined": Icons.pin_outlined, - "pin_drop": Icons.pin_drop, - "pin_drop_sharp": Icons.pin_drop_sharp, - "pin_drop_rounded": Icons.pin_drop_rounded, - "pin_drop_outlined": Icons.pin_drop_outlined, - "pin_end": Icons.pin_end, - "pin_end_sharp": Icons.pin_end_sharp, - "pin_end_rounded": Icons.pin_end_rounded, - "pin_end_outlined": Icons.pin_end_outlined, - "pin_invoke": Icons.pin_invoke, - "pin_invoke_sharp": Icons.pin_invoke_sharp, - "pin_invoke_rounded": Icons.pin_invoke_rounded, - "pin_invoke_outlined": Icons.pin_invoke_outlined, - "pinch": Icons.pinch, - "pinch_sharp": Icons.pinch_sharp, - "pinch_rounded": Icons.pinch_rounded, - "pinch_outlined": Icons.pinch_outlined, - "pivot_table_chart": Icons.pivot_table_chart, - "pivot_table_chart_sharp": Icons.pivot_table_chart_sharp, - "pivot_table_chart_rounded": Icons.pivot_table_chart_rounded, - "pivot_table_chart_outlined": Icons.pivot_table_chart_outlined, - "pix": Icons.pix, - "pix_sharp": Icons.pix_sharp, - "pix_rounded": Icons.pix_rounded, - "pix_outlined": Icons.pix_outlined, - "place": Icons.place, - "place_sharp": Icons.place_sharp, - "place_rounded": Icons.place_rounded, - "place_outlined": Icons.place_outlined, - "plagiarism": Icons.plagiarism, - "plagiarism_sharp": Icons.plagiarism_sharp, - "plagiarism_rounded": Icons.plagiarism_rounded, - "plagiarism_outlined": Icons.plagiarism_outlined, - "play_arrow": Icons.play_arrow, - "play_arrow_sharp": Icons.play_arrow_sharp, - "play_arrow_rounded": Icons.play_arrow_rounded, - "play_arrow_outlined": Icons.play_arrow_outlined, - "play_circle": Icons.play_circle, - "play_circle_sharp": Icons.play_circle_sharp, - "play_circle_rounded": Icons.play_circle_rounded, - "play_circle_outlined": Icons.play_circle_outlined, - "play_circle_fill": Icons.play_circle_fill, - "play_circle_fill_sharp": Icons.play_circle_fill_sharp, - "play_circle_fill_rounded": Icons.play_circle_fill_rounded, - "play_circle_fill_outlined": Icons.play_circle_fill_outlined, - "play_circle_filled": Icons.play_circle_filled, - "play_circle_filled_sharp": Icons.play_circle_filled_sharp, - "play_circle_filled_rounded": Icons.play_circle_filled_rounded, - "play_circle_filled_outlined": Icons.play_circle_filled_outlined, - "play_circle_outline": Icons.play_circle_outline, - "play_circle_outline_sharp": Icons.play_circle_outline_sharp, - "play_circle_outline_rounded": Icons.play_circle_outline_rounded, - "play_circle_outline_outlined": Icons.play_circle_outline_outlined, - "play_disabled": Icons.play_disabled, - "play_disabled_sharp": Icons.play_disabled_sharp, - "play_disabled_rounded": Icons.play_disabled_rounded, - "play_disabled_outlined": Icons.play_disabled_outlined, - "play_for_work": Icons.play_for_work, - "play_for_work_sharp": Icons.play_for_work_sharp, - "play_for_work_rounded": Icons.play_for_work_rounded, - "play_for_work_outlined": Icons.play_for_work_outlined, - "play_lesson": Icons.play_lesson, - "play_lesson_sharp": Icons.play_lesson_sharp, - "play_lesson_rounded": Icons.play_lesson_rounded, - "play_lesson_outlined": Icons.play_lesson_outlined, - "playlist_add": Icons.playlist_add, - "playlist_add_sharp": Icons.playlist_add_sharp, - "playlist_add_rounded": Icons.playlist_add_rounded, - "playlist_add_outlined": Icons.playlist_add_outlined, - "playlist_add_check": Icons.playlist_add_check, - "playlist_add_check_sharp": Icons.playlist_add_check_sharp, - "playlist_add_check_rounded": Icons.playlist_add_check_rounded, - "playlist_add_check_outlined": Icons.playlist_add_check_outlined, - "playlist_add_check_circle": Icons.playlist_add_check_circle, - "playlist_add_check_circle_sharp": Icons.playlist_add_check_circle_sharp, - "playlist_add_check_circle_rounded": Icons.playlist_add_check_circle_rounded, - "playlist_add_check_circle_outlined": - Icons.playlist_add_check_circle_outlined, - "playlist_add_circle": Icons.playlist_add_circle, - "playlist_add_circle_sharp": Icons.playlist_add_circle_sharp, - "playlist_add_circle_rounded": Icons.playlist_add_circle_rounded, - "playlist_add_circle_outlined": Icons.playlist_add_circle_outlined, - "playlist_play": Icons.playlist_play, - "playlist_play_sharp": Icons.playlist_play_sharp, - "playlist_play_rounded": Icons.playlist_play_rounded, - "playlist_play_outlined": Icons.playlist_play_outlined, - "playlist_remove": Icons.playlist_remove, - "playlist_remove_sharp": Icons.playlist_remove_sharp, - "playlist_remove_rounded": Icons.playlist_remove_rounded, - "playlist_remove_outlined": Icons.playlist_remove_outlined, - "plumbing": Icons.plumbing, - "plumbing_sharp": Icons.plumbing_sharp, - "plumbing_rounded": Icons.plumbing_rounded, - "plumbing_outlined": Icons.plumbing_outlined, - "plus_one": Icons.plus_one, - "plus_one_sharp": Icons.plus_one_sharp, - "plus_one_rounded": Icons.plus_one_rounded, - "plus_one_outlined": Icons.plus_one_outlined, - "podcasts": Icons.podcasts, - "podcasts_sharp": Icons.podcasts_sharp, - "podcasts_rounded": Icons.podcasts_rounded, - "podcasts_outlined": Icons.podcasts_outlined, - "point_of_sale": Icons.point_of_sale, - "point_of_sale_sharp": Icons.point_of_sale_sharp, - "point_of_sale_rounded": Icons.point_of_sale_rounded, - "point_of_sale_outlined": Icons.point_of_sale_outlined, - "policy": Icons.policy, - "policy_sharp": Icons.policy_sharp, - "policy_rounded": Icons.policy_rounded, - "policy_outlined": Icons.policy_outlined, - "poll": Icons.poll, - "poll_sharp": Icons.poll_sharp, - "poll_rounded": Icons.poll_rounded, - "poll_outlined": Icons.poll_outlined, - "polyline": Icons.polyline, - "polyline_sharp": Icons.polyline_sharp, - "polyline_rounded": Icons.polyline_rounded, - "polyline_outlined": Icons.polyline_outlined, - "polymer": Icons.polymer, - "polymer_sharp": Icons.polymer_sharp, - "polymer_rounded": Icons.polymer_rounded, - "polymer_outlined": Icons.polymer_outlined, - "pool": Icons.pool, - "pool_sharp": Icons.pool_sharp, - "pool_rounded": Icons.pool_rounded, - "pool_outlined": Icons.pool_outlined, - "portable_wifi_off": Icons.portable_wifi_off, - "portable_wifi_off_sharp": Icons.portable_wifi_off_sharp, - "portable_wifi_off_rounded": Icons.portable_wifi_off_rounded, - "portable_wifi_off_outlined": Icons.portable_wifi_off_outlined, - "portrait": Icons.portrait, - "portrait_sharp": Icons.portrait_sharp, - "portrait_rounded": Icons.portrait_rounded, - "portrait_outlined": Icons.portrait_outlined, - "post_add": Icons.post_add, - "post_add_sharp": Icons.post_add_sharp, - "post_add_rounded": Icons.post_add_rounded, - "post_add_outlined": Icons.post_add_outlined, - "power": Icons.power, - "power_sharp": Icons.power_sharp, - "power_rounded": Icons.power_rounded, - "power_outlined": Icons.power_outlined, - "power_input": Icons.power_input, - "power_input_sharp": Icons.power_input_sharp, - "power_input_rounded": Icons.power_input_rounded, - "power_input_outlined": Icons.power_input_outlined, - "power_off": Icons.power_off, - "power_off_sharp": Icons.power_off_sharp, - "power_off_rounded": Icons.power_off_rounded, - "power_off_outlined": Icons.power_off_outlined, - "power_settings_new": Icons.power_settings_new, - "power_settings_new_sharp": Icons.power_settings_new_sharp, - "power_settings_new_rounded": Icons.power_settings_new_rounded, - "power_settings_new_outlined": Icons.power_settings_new_outlined, - "precision_manufacturing": Icons.precision_manufacturing, - "precision_manufacturing_sharp": Icons.precision_manufacturing_sharp, - "precision_manufacturing_rounded": Icons.precision_manufacturing_rounded, - "precision_manufacturing_outlined": Icons.precision_manufacturing_outlined, - "pregnant_woman": Icons.pregnant_woman, - "pregnant_woman_sharp": Icons.pregnant_woman_sharp, - "pregnant_woman_rounded": Icons.pregnant_woman_rounded, - "pregnant_woman_outlined": Icons.pregnant_woman_outlined, - "present_to_all": Icons.present_to_all, - "present_to_all_sharp": Icons.present_to_all_sharp, - "present_to_all_rounded": Icons.present_to_all_rounded, - "present_to_all_outlined": Icons.present_to_all_outlined, - "preview": Icons.preview, - "preview_sharp": Icons.preview_sharp, - "preview_rounded": Icons.preview_rounded, - "preview_outlined": Icons.preview_outlined, - "price_change": Icons.price_change, - "price_change_sharp": Icons.price_change_sharp, - "price_change_rounded": Icons.price_change_rounded, - "price_change_outlined": Icons.price_change_outlined, - "price_check": Icons.price_check, - "price_check_sharp": Icons.price_check_sharp, - "price_check_rounded": Icons.price_check_rounded, - "price_check_outlined": Icons.price_check_outlined, - "print": Icons.print, - "print_sharp": Icons.print_sharp, - "print_rounded": Icons.print_rounded, - "print_outlined": Icons.print_outlined, - "print_disabled": Icons.print_disabled, - "print_disabled_sharp": Icons.print_disabled_sharp, - "print_disabled_rounded": Icons.print_disabled_rounded, - "print_disabled_outlined": Icons.print_disabled_outlined, - "priority_high": Icons.priority_high, - "priority_high_sharp": Icons.priority_high_sharp, - "priority_high_rounded": Icons.priority_high_rounded, - "priority_high_outlined": Icons.priority_high_outlined, - "privacy_tip": Icons.privacy_tip, - "privacy_tip_sharp": Icons.privacy_tip_sharp, - "privacy_tip_rounded": Icons.privacy_tip_rounded, - "privacy_tip_outlined": Icons.privacy_tip_outlined, - "private_connectivity": Icons.private_connectivity, - "private_connectivity_sharp": Icons.private_connectivity_sharp, - "private_connectivity_rounded": Icons.private_connectivity_rounded, - "private_connectivity_outlined": Icons.private_connectivity_outlined, - "production_quantity_limits": Icons.production_quantity_limits, - "production_quantity_limits_sharp": Icons.production_quantity_limits_sharp, - "production_quantity_limits_rounded": - Icons.production_quantity_limits_rounded, - "production_quantity_limits_outlined": - Icons.production_quantity_limits_outlined, - "propane": Icons.propane, - "propane_sharp": Icons.propane_sharp, - "propane_rounded": Icons.propane_rounded, - "propane_outlined": Icons.propane_outlined, - "propane_tank": Icons.propane_tank, - "propane_tank_sharp": Icons.propane_tank_sharp, - "propane_tank_rounded": Icons.propane_tank_rounded, - "propane_tank_outlined": Icons.propane_tank_outlined, - "psychology": Icons.psychology, - "psychology_sharp": Icons.psychology_sharp, - "psychology_rounded": Icons.psychology_rounded, - "psychology_outlined": Icons.psychology_outlined, - "psychology_alt": Icons.psychology_alt, - "psychology_alt_sharp": Icons.psychology_alt_sharp, - "psychology_alt_rounded": Icons.psychology_alt_rounded, - "psychology_alt_outlined": Icons.psychology_alt_outlined, - "public": Icons.public, - "public_sharp": Icons.public_sharp, - "public_rounded": Icons.public_rounded, - "public_outlined": Icons.public_outlined, - "public_off": Icons.public_off, - "public_off_sharp": Icons.public_off_sharp, - "public_off_rounded": Icons.public_off_rounded, - "public_off_outlined": Icons.public_off_outlined, - "publish": Icons.publish, - "publish_sharp": Icons.publish_sharp, - "publish_rounded": Icons.publish_rounded, - "publish_outlined": Icons.publish_outlined, - "published_with_changes": Icons.published_with_changes, - "published_with_changes_sharp": Icons.published_with_changes_sharp, - "published_with_changes_rounded": Icons.published_with_changes_rounded, - "published_with_changes_outlined": Icons.published_with_changes_outlined, - "punch_clock": Icons.punch_clock, - "punch_clock_sharp": Icons.punch_clock_sharp, - "punch_clock_rounded": Icons.punch_clock_rounded, - "punch_clock_outlined": Icons.punch_clock_outlined, - "push_pin": Icons.push_pin, - "push_pin_sharp": Icons.push_pin_sharp, - "push_pin_rounded": Icons.push_pin_rounded, - "push_pin_outlined": Icons.push_pin_outlined, - "qr_code": Icons.qr_code, - "qr_code_sharp": Icons.qr_code_sharp, - "qr_code_rounded": Icons.qr_code_rounded, - "qr_code_outlined": Icons.qr_code_outlined, - "qr_code_2": Icons.qr_code_2, - "qr_code_2_sharp": Icons.qr_code_2_sharp, - "qr_code_2_rounded": Icons.qr_code_2_rounded, - "qr_code_2_outlined": Icons.qr_code_2_outlined, - "qr_code_scanner": Icons.qr_code_scanner, - "qr_code_scanner_sharp": Icons.qr_code_scanner_sharp, - "qr_code_scanner_rounded": Icons.qr_code_scanner_rounded, - "qr_code_scanner_outlined": Icons.qr_code_scanner_outlined, - "query_builder": Icons.query_builder, - "query_builder_sharp": Icons.query_builder_sharp, - "query_builder_rounded": Icons.query_builder_rounded, - "query_builder_outlined": Icons.query_builder_outlined, - "query_stats": Icons.query_stats, - "query_stats_sharp": Icons.query_stats_sharp, - "query_stats_rounded": Icons.query_stats_rounded, - "query_stats_outlined": Icons.query_stats_outlined, - "question_answer": Icons.question_answer, - "question_answer_sharp": Icons.question_answer_sharp, - "question_answer_rounded": Icons.question_answer_rounded, - "question_answer_outlined": Icons.question_answer_outlined, - "question_mark": Icons.question_mark, - "question_mark_sharp": Icons.question_mark_sharp, - "question_mark_rounded": Icons.question_mark_rounded, - "question_mark_outlined": Icons.question_mark_outlined, - "queue": Icons.queue, - "queue_sharp": Icons.queue_sharp, - "queue_rounded": Icons.queue_rounded, - "queue_outlined": Icons.queue_outlined, - "queue_music": Icons.queue_music, - "queue_music_sharp": Icons.queue_music_sharp, - "queue_music_rounded": Icons.queue_music_rounded, - "queue_music_outlined": Icons.queue_music_outlined, - "queue_play_next": Icons.queue_play_next, - "queue_play_next_sharp": Icons.queue_play_next_sharp, - "queue_play_next_rounded": Icons.queue_play_next_rounded, - "queue_play_next_outlined": Icons.queue_play_next_outlined, - "quick_contacts_dialer": Icons.quick_contacts_dialer, - "quick_contacts_dialer_sharp": Icons.quick_contacts_dialer_sharp, - "quick_contacts_dialer_rounded": Icons.quick_contacts_dialer_rounded, - "quick_contacts_dialer_outlined": Icons.quick_contacts_dialer_outlined, - "quick_contacts_mail": Icons.quick_contacts_mail, - "quick_contacts_mail_sharp": Icons.quick_contacts_mail_sharp, - "quick_contacts_mail_rounded": Icons.quick_contacts_mail_rounded, - "quick_contacts_mail_outlined": Icons.quick_contacts_mail_outlined, - "quickreply": Icons.quickreply, - "quickreply_sharp": Icons.quickreply_sharp, - "quickreply_rounded": Icons.quickreply_rounded, - "quickreply_outlined": Icons.quickreply_outlined, - "quiz": Icons.quiz, - "quiz_sharp": Icons.quiz_sharp, - "quiz_rounded": Icons.quiz_rounded, - "quiz_outlined": Icons.quiz_outlined, - "quora": Icons.quora, - "quora_sharp": Icons.quora_sharp, - "quora_rounded": Icons.quora_rounded, - "quora_outlined": Icons.quora_outlined, - "r_mobiledata": Icons.r_mobiledata, - "r_mobiledata_sharp": Icons.r_mobiledata_sharp, - "r_mobiledata_rounded": Icons.r_mobiledata_rounded, - "r_mobiledata_outlined": Icons.r_mobiledata_outlined, - "radar": Icons.radar, - "radar_sharp": Icons.radar_sharp, - "radar_rounded": Icons.radar_rounded, - "radar_outlined": Icons.radar_outlined, - "radio": Icons.radio, - "radio_sharp": Icons.radio_sharp, - "radio_rounded": Icons.radio_rounded, - "radio_outlined": Icons.radio_outlined, - "radio_button_checked": Icons.radio_button_checked, - "radio_button_checked_sharp": Icons.radio_button_checked_sharp, - "radio_button_checked_rounded": Icons.radio_button_checked_rounded, - "radio_button_checked_outlined": Icons.radio_button_checked_outlined, - "radio_button_off": Icons.radio_button_off, - "radio_button_off_sharp": Icons.radio_button_off_sharp, - "radio_button_off_rounded": Icons.radio_button_off_rounded, - "radio_button_off_outlined": Icons.radio_button_off_outlined, - "radio_button_on": Icons.radio_button_on, - "radio_button_on_sharp": Icons.radio_button_on_sharp, - "radio_button_on_rounded": Icons.radio_button_on_rounded, - "radio_button_on_outlined": Icons.radio_button_on_outlined, - "radio_button_unchecked": Icons.radio_button_unchecked, - "radio_button_unchecked_sharp": Icons.radio_button_unchecked_sharp, - "radio_button_unchecked_rounded": Icons.radio_button_unchecked_rounded, - "radio_button_unchecked_outlined": Icons.radio_button_unchecked_outlined, - "railway_alert": Icons.railway_alert, - "railway_alert_sharp": Icons.railway_alert_sharp, - "railway_alert_rounded": Icons.railway_alert_rounded, - "railway_alert_outlined": Icons.railway_alert_outlined, - "ramen_dining": Icons.ramen_dining, - "ramen_dining_sharp": Icons.ramen_dining_sharp, - "ramen_dining_rounded": Icons.ramen_dining_rounded, - "ramen_dining_outlined": Icons.ramen_dining_outlined, - "ramp_left": Icons.ramp_left, - "ramp_left_sharp": Icons.ramp_left_sharp, - "ramp_left_rounded": Icons.ramp_left_rounded, - "ramp_left_outlined": Icons.ramp_left_outlined, - "ramp_right": Icons.ramp_right, - "ramp_right_sharp": Icons.ramp_right_sharp, - "ramp_right_rounded": Icons.ramp_right_rounded, - "ramp_right_outlined": Icons.ramp_right_outlined, - "rate_review": Icons.rate_review, - "rate_review_sharp": Icons.rate_review_sharp, - "rate_review_rounded": Icons.rate_review_rounded, - "rate_review_outlined": Icons.rate_review_outlined, - "raw_off": Icons.raw_off, - "raw_off_sharp": Icons.raw_off_sharp, - "raw_off_rounded": Icons.raw_off_rounded, - "raw_off_outlined": Icons.raw_off_outlined, - "raw_on": Icons.raw_on, - "raw_on_sharp": Icons.raw_on_sharp, - "raw_on_rounded": Icons.raw_on_rounded, - "raw_on_outlined": Icons.raw_on_outlined, - "read_more": Icons.read_more, - "read_more_sharp": Icons.read_more_sharp, - "read_more_rounded": Icons.read_more_rounded, - "read_more_outlined": Icons.read_more_outlined, - "real_estate_agent": Icons.real_estate_agent, - "real_estate_agent_sharp": Icons.real_estate_agent_sharp, - "real_estate_agent_rounded": Icons.real_estate_agent_rounded, - "real_estate_agent_outlined": Icons.real_estate_agent_outlined, - "rebase_edit": Icons.rebase_edit, - "receipt": Icons.receipt, - "receipt_sharp": Icons.receipt_sharp, - "receipt_rounded": Icons.receipt_rounded, - "receipt_outlined": Icons.receipt_outlined, - "receipt_long": Icons.receipt_long, - "receipt_long_sharp": Icons.receipt_long_sharp, - "receipt_long_rounded": Icons.receipt_long_rounded, - "receipt_long_outlined": Icons.receipt_long_outlined, - "recent_actors": Icons.recent_actors, - "recent_actors_sharp": Icons.recent_actors_sharp, - "recent_actors_rounded": Icons.recent_actors_rounded, - "recent_actors_outlined": Icons.recent_actors_outlined, - "recommend": Icons.recommend, - "recommend_sharp": Icons.recommend_sharp, - "recommend_rounded": Icons.recommend_rounded, - "recommend_outlined": Icons.recommend_outlined, - "record_voice_over": Icons.record_voice_over, - "record_voice_over_sharp": Icons.record_voice_over_sharp, - "record_voice_over_rounded": Icons.record_voice_over_rounded, - "record_voice_over_outlined": Icons.record_voice_over_outlined, - "rectangle": Icons.rectangle, - "rectangle_sharp": Icons.rectangle_sharp, - "rectangle_rounded": Icons.rectangle_rounded, - "rectangle_outlined": Icons.rectangle_outlined, - "recycling": Icons.recycling, - "recycling_sharp": Icons.recycling_sharp, - "recycling_rounded": Icons.recycling_rounded, - "recycling_outlined": Icons.recycling_outlined, - "reddit": Icons.reddit, - "reddit_sharp": Icons.reddit_sharp, - "reddit_rounded": Icons.reddit_rounded, - "reddit_outlined": Icons.reddit_outlined, - "redeem": Icons.redeem, - "redeem_sharp": Icons.redeem_sharp, - "redeem_rounded": Icons.redeem_rounded, - "redeem_outlined": Icons.redeem_outlined, - "redo": Icons.redo, - "redo_sharp": Icons.redo_sharp, - "redo_rounded": Icons.redo_rounded, - "redo_outlined": Icons.redo_outlined, - "reduce_capacity": Icons.reduce_capacity, - "reduce_capacity_sharp": Icons.reduce_capacity_sharp, - "reduce_capacity_rounded": Icons.reduce_capacity_rounded, - "reduce_capacity_outlined": Icons.reduce_capacity_outlined, - "refresh": Icons.refresh, - "refresh_sharp": Icons.refresh_sharp, - "refresh_rounded": Icons.refresh_rounded, - "refresh_outlined": Icons.refresh_outlined, - "remember_me": Icons.remember_me, - "remember_me_sharp": Icons.remember_me_sharp, - "remember_me_rounded": Icons.remember_me_rounded, - "remember_me_outlined": Icons.remember_me_outlined, - "remove": Icons.remove, - "remove_sharp": Icons.remove_sharp, - "remove_rounded": Icons.remove_rounded, - "remove_outlined": Icons.remove_outlined, - "remove_circle": Icons.remove_circle, - "remove_circle_sharp": Icons.remove_circle_sharp, - "remove_circle_rounded": Icons.remove_circle_rounded, - "remove_circle_outlined": Icons.remove_circle_outlined, - "remove_circle_outline": Icons.remove_circle_outline, - "remove_circle_outline_sharp": Icons.remove_circle_outline_sharp, - "remove_circle_outline_rounded": Icons.remove_circle_outline_rounded, - "remove_circle_outline_outlined": Icons.remove_circle_outline_outlined, - "remove_done": Icons.remove_done, - "remove_done_sharp": Icons.remove_done_sharp, - "remove_done_rounded": Icons.remove_done_rounded, - "remove_done_outlined": Icons.remove_done_outlined, - "remove_from_queue": Icons.remove_from_queue, - "remove_from_queue_sharp": Icons.remove_from_queue_sharp, - "remove_from_queue_rounded": Icons.remove_from_queue_rounded, - "remove_from_queue_outlined": Icons.remove_from_queue_outlined, - "remove_moderator": Icons.remove_moderator, - "remove_moderator_sharp": Icons.remove_moderator_sharp, - "remove_moderator_rounded": Icons.remove_moderator_rounded, - "remove_moderator_outlined": Icons.remove_moderator_outlined, - "remove_red_eye": Icons.remove_red_eye, - "remove_red_eye_sharp": Icons.remove_red_eye_sharp, - "remove_red_eye_rounded": Icons.remove_red_eye_rounded, - "remove_red_eye_outlined": Icons.remove_red_eye_outlined, - "remove_road": Icons.remove_road, - "remove_road_sharp": Icons.remove_road_sharp, - "remove_road_rounded": Icons.remove_road_rounded, - "remove_road_outlined": Icons.remove_road_outlined, - "remove_shopping_cart": Icons.remove_shopping_cart, - "remove_shopping_cart_sharp": Icons.remove_shopping_cart_sharp, - "remove_shopping_cart_rounded": Icons.remove_shopping_cart_rounded, - "remove_shopping_cart_outlined": Icons.remove_shopping_cart_outlined, - "reorder": Icons.reorder, - "reorder_sharp": Icons.reorder_sharp, - "reorder_rounded": Icons.reorder_rounded, - "reorder_outlined": Icons.reorder_outlined, - "repartition": Icons.repartition, - "repartition_sharp": Icons.repartition_sharp, - "repartition_rounded": Icons.repartition_rounded, - "repartition_outlined": Icons.repartition_outlined, - "repeat": Icons.repeat, - "repeat_sharp": Icons.repeat_sharp, - "repeat_rounded": Icons.repeat_rounded, - "repeat_outlined": Icons.repeat_outlined, - "repeat_on": Icons.repeat_on, - "repeat_on_sharp": Icons.repeat_on_sharp, - "repeat_on_rounded": Icons.repeat_on_rounded, - "repeat_on_outlined": Icons.repeat_on_outlined, - "repeat_one": Icons.repeat_one, - "repeat_one_sharp": Icons.repeat_one_sharp, - "repeat_one_rounded": Icons.repeat_one_rounded, - "repeat_one_outlined": Icons.repeat_one_outlined, - "repeat_one_on": Icons.repeat_one_on, - "repeat_one_on_sharp": Icons.repeat_one_on_sharp, - "repeat_one_on_rounded": Icons.repeat_one_on_rounded, - "repeat_one_on_outlined": Icons.repeat_one_on_outlined, - "replay": Icons.replay, - "replay_sharp": Icons.replay_sharp, - "replay_rounded": Icons.replay_rounded, - "replay_outlined": Icons.replay_outlined, - "replay_10": Icons.replay_10, - "replay_10_sharp": Icons.replay_10_sharp, - "replay_10_rounded": Icons.replay_10_rounded, - "replay_10_outlined": Icons.replay_10_outlined, - "replay_30": Icons.replay_30, - "replay_30_sharp": Icons.replay_30_sharp, - "replay_30_rounded": Icons.replay_30_rounded, - "replay_30_outlined": Icons.replay_30_outlined, - "replay_5": Icons.replay_5, - "replay_5_sharp": Icons.replay_5_sharp, - "replay_5_rounded": Icons.replay_5_rounded, - "replay_5_outlined": Icons.replay_5_outlined, - "replay_circle_filled": Icons.replay_circle_filled, - "replay_circle_filled_sharp": Icons.replay_circle_filled_sharp, - "replay_circle_filled_rounded": Icons.replay_circle_filled_rounded, - "replay_circle_filled_outlined": Icons.replay_circle_filled_outlined, - "reply": Icons.reply, - "reply_sharp": Icons.reply_sharp, - "reply_rounded": Icons.reply_rounded, - "reply_outlined": Icons.reply_outlined, - "reply_all": Icons.reply_all, - "reply_all_sharp": Icons.reply_all_sharp, - "reply_all_rounded": Icons.reply_all_rounded, - "reply_all_outlined": Icons.reply_all_outlined, - "report": Icons.report, - "report_sharp": Icons.report_sharp, - "report_rounded": Icons.report_rounded, - "report_outlined": Icons.report_outlined, - "report_gmailerrorred": Icons.report_gmailerrorred, - "report_gmailerrorred_sharp": Icons.report_gmailerrorred_sharp, - "report_gmailerrorred_rounded": Icons.report_gmailerrorred_rounded, - "report_gmailerrorred_outlined": Icons.report_gmailerrorred_outlined, - "report_off": Icons.report_off, - "report_off_sharp": Icons.report_off_sharp, - "report_off_rounded": Icons.report_off_rounded, - "report_off_outlined": Icons.report_off_outlined, - "report_problem": Icons.report_problem, - "report_problem_sharp": Icons.report_problem_sharp, - "report_problem_rounded": Icons.report_problem_rounded, - "report_problem_outlined": Icons.report_problem_outlined, - "request_page": Icons.request_page, - "request_page_sharp": Icons.request_page_sharp, - "request_page_rounded": Icons.request_page_rounded, - "request_page_outlined": Icons.request_page_outlined, - "request_quote": Icons.request_quote, - "request_quote_sharp": Icons.request_quote_sharp, - "request_quote_rounded": Icons.request_quote_rounded, - "request_quote_outlined": Icons.request_quote_outlined, - "reset_tv": Icons.reset_tv, - "reset_tv_sharp": Icons.reset_tv_sharp, - "reset_tv_rounded": Icons.reset_tv_rounded, - "reset_tv_outlined": Icons.reset_tv_outlined, - "restart_alt": Icons.restart_alt, - "restart_alt_sharp": Icons.restart_alt_sharp, - "restart_alt_rounded": Icons.restart_alt_rounded, - "restart_alt_outlined": Icons.restart_alt_outlined, - "restaurant": Icons.restaurant, - "restaurant_sharp": Icons.restaurant_sharp, - "restaurant_rounded": Icons.restaurant_rounded, - "restaurant_outlined": Icons.restaurant_outlined, - "restaurant_menu": Icons.restaurant_menu, - "restaurant_menu_sharp": Icons.restaurant_menu_sharp, - "restaurant_menu_rounded": Icons.restaurant_menu_rounded, - "restaurant_menu_outlined": Icons.restaurant_menu_outlined, - "restore": Icons.restore, - "restore_sharp": Icons.restore_sharp, - "restore_rounded": Icons.restore_rounded, - "restore_outlined": Icons.restore_outlined, - "restore_from_trash": Icons.restore_from_trash, - "restore_from_trash_sharp": Icons.restore_from_trash_sharp, - "restore_from_trash_rounded": Icons.restore_from_trash_rounded, - "restore_from_trash_outlined": Icons.restore_from_trash_outlined, - "restore_page": Icons.restore_page, - "restore_page_sharp": Icons.restore_page_sharp, - "restore_page_rounded": Icons.restore_page_rounded, - "restore_page_outlined": Icons.restore_page_outlined, - "reviews": Icons.reviews, - "reviews_sharp": Icons.reviews_sharp, - "reviews_rounded": Icons.reviews_rounded, - "reviews_outlined": Icons.reviews_outlined, - "rice_bowl": Icons.rice_bowl, - "rice_bowl_sharp": Icons.rice_bowl_sharp, - "rice_bowl_rounded": Icons.rice_bowl_rounded, - "rice_bowl_outlined": Icons.rice_bowl_outlined, - "ring_volume": Icons.ring_volume, - "ring_volume_sharp": Icons.ring_volume_sharp, - "ring_volume_rounded": Icons.ring_volume_rounded, - "ring_volume_outlined": Icons.ring_volume_outlined, - "rocket": Icons.rocket, - "rocket_sharp": Icons.rocket_sharp, - "rocket_rounded": Icons.rocket_rounded, - "rocket_outlined": Icons.rocket_outlined, - "rocket_launch": Icons.rocket_launch, - "rocket_launch_sharp": Icons.rocket_launch_sharp, - "rocket_launch_rounded": Icons.rocket_launch_rounded, - "rocket_launch_outlined": Icons.rocket_launch_outlined, - "roller_shades": Icons.roller_shades, - "roller_shades_sharp": Icons.roller_shades_sharp, - "roller_shades_rounded": Icons.roller_shades_rounded, - "roller_shades_outlined": Icons.roller_shades_outlined, - "roller_shades_closed": Icons.roller_shades_closed, - "roller_shades_closed_sharp": Icons.roller_shades_closed_sharp, - "roller_shades_closed_rounded": Icons.roller_shades_closed_rounded, - "roller_shades_closed_outlined": Icons.roller_shades_closed_outlined, - "roller_skating": Icons.roller_skating, - "roller_skating_sharp": Icons.roller_skating_sharp, - "roller_skating_rounded": Icons.roller_skating_rounded, - "roller_skating_outlined": Icons.roller_skating_outlined, - "roofing": Icons.roofing, - "roofing_sharp": Icons.roofing_sharp, - "roofing_rounded": Icons.roofing_rounded, - "roofing_outlined": Icons.roofing_outlined, - "room": Icons.room, - "room_sharp": Icons.room_sharp, - "room_rounded": Icons.room_rounded, - "room_outlined": Icons.room_outlined, - "room_preferences": Icons.room_preferences, - "room_preferences_sharp": Icons.room_preferences_sharp, - "room_preferences_rounded": Icons.room_preferences_rounded, - "room_preferences_outlined": Icons.room_preferences_outlined, - "room_service": Icons.room_service, - "room_service_sharp": Icons.room_service_sharp, - "room_service_rounded": Icons.room_service_rounded, - "room_service_outlined": Icons.room_service_outlined, - "rotate_90_degrees_ccw": Icons.rotate_90_degrees_ccw, - "rotate_90_degrees_ccw_sharp": Icons.rotate_90_degrees_ccw_sharp, - "rotate_90_degrees_ccw_rounded": Icons.rotate_90_degrees_ccw_rounded, - "rotate_90_degrees_ccw_outlined": Icons.rotate_90_degrees_ccw_outlined, - "rotate_90_degrees_cw": Icons.rotate_90_degrees_cw, - "rotate_90_degrees_cw_sharp": Icons.rotate_90_degrees_cw_sharp, - "rotate_90_degrees_cw_rounded": Icons.rotate_90_degrees_cw_rounded, - "rotate_90_degrees_cw_outlined": Icons.rotate_90_degrees_cw_outlined, - "rotate_left": Icons.rotate_left, - "rotate_left_sharp": Icons.rotate_left_sharp, - "rotate_left_rounded": Icons.rotate_left_rounded, - "rotate_left_outlined": Icons.rotate_left_outlined, - "rotate_right": Icons.rotate_right, - "rotate_right_sharp": Icons.rotate_right_sharp, - "rotate_right_rounded": Icons.rotate_right_rounded, - "rotate_right_outlined": Icons.rotate_right_outlined, - "roundabout_left": Icons.roundabout_left, - "roundabout_left_sharp": Icons.roundabout_left_sharp, - "roundabout_left_rounded": Icons.roundabout_left_rounded, - "roundabout_left_outlined": Icons.roundabout_left_outlined, - "roundabout_right": Icons.roundabout_right, - "roundabout_right_sharp": Icons.roundabout_right_sharp, - "roundabout_right_rounded": Icons.roundabout_right_rounded, - "roundabout_right_outlined": Icons.roundabout_right_outlined, - "rounded_corner": Icons.rounded_corner, - "rounded_corner_sharp": Icons.rounded_corner_sharp, - "rounded_corner_rounded": Icons.rounded_corner_rounded, - "rounded_corner_outlined": Icons.rounded_corner_outlined, - "route": Icons.route, - "route_sharp": Icons.route_sharp, - "route_rounded": Icons.route_rounded, - "route_outlined": Icons.route_outlined, - "router": Icons.router, - "router_sharp": Icons.router_sharp, - "router_rounded": Icons.router_rounded, - "router_outlined": Icons.router_outlined, - "rowing": Icons.rowing, - "rowing_sharp": Icons.rowing_sharp, - "rowing_rounded": Icons.rowing_rounded, - "rowing_outlined": Icons.rowing_outlined, - "rss_feed": Icons.rss_feed, - "rss_feed_sharp": Icons.rss_feed_sharp, - "rss_feed_rounded": Icons.rss_feed_rounded, - "rss_feed_outlined": Icons.rss_feed_outlined, - "rsvp": Icons.rsvp, - "rsvp_sharp": Icons.rsvp_sharp, - "rsvp_rounded": Icons.rsvp_rounded, - "rsvp_outlined": Icons.rsvp_outlined, - "rtt": Icons.rtt, - "rtt_sharp": Icons.rtt_sharp, - "rtt_rounded": Icons.rtt_rounded, - "rtt_outlined": Icons.rtt_outlined, - "rule": Icons.rule, - "rule_sharp": Icons.rule_sharp, - "rule_rounded": Icons.rule_rounded, - "rule_outlined": Icons.rule_outlined, - "rule_folder": Icons.rule_folder, - "rule_folder_sharp": Icons.rule_folder_sharp, - "rule_folder_rounded": Icons.rule_folder_rounded, - "rule_folder_outlined": Icons.rule_folder_outlined, - "run_circle": Icons.run_circle, - "run_circle_sharp": Icons.run_circle_sharp, - "run_circle_rounded": Icons.run_circle_rounded, - "run_circle_outlined": Icons.run_circle_outlined, - "running_with_errors": Icons.running_with_errors, - "running_with_errors_sharp": Icons.running_with_errors_sharp, - "running_with_errors_rounded": Icons.running_with_errors_rounded, - "running_with_errors_outlined": Icons.running_with_errors_outlined, - "rv_hookup": Icons.rv_hookup, - "rv_hookup_sharp": Icons.rv_hookup_sharp, - "rv_hookup_rounded": Icons.rv_hookup_rounded, - "rv_hookup_outlined": Icons.rv_hookup_outlined, - "safety_check": Icons.safety_check, - "safety_check_sharp": Icons.safety_check_sharp, - "safety_check_rounded": Icons.safety_check_rounded, - "safety_check_outlined": Icons.safety_check_outlined, - "safety_divider": Icons.safety_divider, - "safety_divider_sharp": Icons.safety_divider_sharp, - "safety_divider_rounded": Icons.safety_divider_rounded, - "safety_divider_outlined": Icons.safety_divider_outlined, - "sailing": Icons.sailing, - "sailing_sharp": Icons.sailing_sharp, - "sailing_rounded": Icons.sailing_rounded, - "sailing_outlined": Icons.sailing_outlined, - "sanitizer": Icons.sanitizer, - "sanitizer_sharp": Icons.sanitizer_sharp, - "sanitizer_rounded": Icons.sanitizer_rounded, - "sanitizer_outlined": Icons.sanitizer_outlined, - "satellite": Icons.satellite, - "satellite_sharp": Icons.satellite_sharp, - "satellite_rounded": Icons.satellite_rounded, - "satellite_outlined": Icons.satellite_outlined, - "satellite_alt": Icons.satellite_alt, - "satellite_alt_sharp": Icons.satellite_alt_sharp, - "satellite_alt_rounded": Icons.satellite_alt_rounded, - "satellite_alt_outlined": Icons.satellite_alt_outlined, - "save": Icons.save, - "save_sharp": Icons.save_sharp, - "save_rounded": Icons.save_rounded, - "save_outlined": Icons.save_outlined, - "save_alt": Icons.save_alt, - "save_alt_sharp": Icons.save_alt_sharp, - "save_alt_rounded": Icons.save_alt_rounded, - "save_alt_outlined": Icons.save_alt_outlined, - "save_as": Icons.save_as, - "save_as_sharp": Icons.save_as_sharp, - "save_as_rounded": Icons.save_as_rounded, - "save_as_outlined": Icons.save_as_outlined, - "saved_search": Icons.saved_search, - "saved_search_sharp": Icons.saved_search_sharp, - "saved_search_rounded": Icons.saved_search_rounded, - "saved_search_outlined": Icons.saved_search_outlined, - "savings": Icons.savings, - "savings_sharp": Icons.savings_sharp, - "savings_rounded": Icons.savings_rounded, - "savings_outlined": Icons.savings_outlined, - "scale": Icons.scale, - "scale_sharp": Icons.scale_sharp, - "scale_rounded": Icons.scale_rounded, - "scale_outlined": Icons.scale_outlined, - "scanner": Icons.scanner, - "scanner_sharp": Icons.scanner_sharp, - "scanner_rounded": Icons.scanner_rounded, - "scanner_outlined": Icons.scanner_outlined, - "scatter_plot": Icons.scatter_plot, - "scatter_plot_sharp": Icons.scatter_plot_sharp, - "scatter_plot_rounded": Icons.scatter_plot_rounded, - "scatter_plot_outlined": Icons.scatter_plot_outlined, - "schedule": Icons.schedule, - "schedule_sharp": Icons.schedule_sharp, - "schedule_rounded": Icons.schedule_rounded, - "schedule_outlined": Icons.schedule_outlined, - "schedule_send": Icons.schedule_send, - "schedule_send_sharp": Icons.schedule_send_sharp, - "schedule_send_rounded": Icons.schedule_send_rounded, - "schedule_send_outlined": Icons.schedule_send_outlined, - "schema": Icons.schema, - "schema_sharp": Icons.schema_sharp, - "schema_rounded": Icons.schema_rounded, - "schema_outlined": Icons.schema_outlined, - "school": Icons.school, - "school_sharp": Icons.school_sharp, - "school_rounded": Icons.school_rounded, - "school_outlined": Icons.school_outlined, - "science": Icons.science, - "science_sharp": Icons.science_sharp, - "science_rounded": Icons.science_rounded, - "science_outlined": Icons.science_outlined, - "score": Icons.score, - "score_sharp": Icons.score_sharp, - "score_rounded": Icons.score_rounded, - "score_outlined": Icons.score_outlined, - "scoreboard": Icons.scoreboard, - "scoreboard_sharp": Icons.scoreboard_sharp, - "scoreboard_rounded": Icons.scoreboard_rounded, - "scoreboard_outlined": Icons.scoreboard_outlined, - "screen_lock_landscape": Icons.screen_lock_landscape, - "screen_lock_landscape_sharp": Icons.screen_lock_landscape_sharp, - "screen_lock_landscape_rounded": Icons.screen_lock_landscape_rounded, - "screen_lock_landscape_outlined": Icons.screen_lock_landscape_outlined, - "screen_lock_portrait": Icons.screen_lock_portrait, - "screen_lock_portrait_sharp": Icons.screen_lock_portrait_sharp, - "screen_lock_portrait_rounded": Icons.screen_lock_portrait_rounded, - "screen_lock_portrait_outlined": Icons.screen_lock_portrait_outlined, - "screen_lock_rotation": Icons.screen_lock_rotation, - "screen_lock_rotation_sharp": Icons.screen_lock_rotation_sharp, - "screen_lock_rotation_rounded": Icons.screen_lock_rotation_rounded, - "screen_lock_rotation_outlined": Icons.screen_lock_rotation_outlined, - "screen_rotation": Icons.screen_rotation, - "screen_rotation_sharp": Icons.screen_rotation_sharp, - "screen_rotation_rounded": Icons.screen_rotation_rounded, - "screen_rotation_outlined": Icons.screen_rotation_outlined, - "screen_rotation_alt": Icons.screen_rotation_alt, - "screen_rotation_alt_sharp": Icons.screen_rotation_alt_sharp, - "screen_rotation_alt_rounded": Icons.screen_rotation_alt_rounded, - "screen_rotation_alt_outlined": Icons.screen_rotation_alt_outlined, - "screen_search_desktop": Icons.screen_search_desktop, - "screen_search_desktop_sharp": Icons.screen_search_desktop_sharp, - "screen_search_desktop_rounded": Icons.screen_search_desktop_rounded, - "screen_search_desktop_outlined": Icons.screen_search_desktop_outlined, - "screen_share": Icons.screen_share, - "screen_share_sharp": Icons.screen_share_sharp, - "screen_share_rounded": Icons.screen_share_rounded, - "screen_share_outlined": Icons.screen_share_outlined, - "screenshot": Icons.screenshot, - "screenshot_sharp": Icons.screenshot_sharp, - "screenshot_rounded": Icons.screenshot_rounded, - "screenshot_outlined": Icons.screenshot_outlined, - "screenshot_monitor": Icons.screenshot_monitor, - "screenshot_monitor_sharp": Icons.screenshot_monitor_sharp, - "screenshot_monitor_rounded": Icons.screenshot_monitor_rounded, - "screenshot_monitor_outlined": Icons.screenshot_monitor_outlined, - "scuba_diving": Icons.scuba_diving, - "scuba_diving_sharp": Icons.scuba_diving_sharp, - "scuba_diving_rounded": Icons.scuba_diving_rounded, - "scuba_diving_outlined": Icons.scuba_diving_outlined, - "sd": Icons.sd, - "sd_sharp": Icons.sd_sharp, - "sd_rounded": Icons.sd_rounded, - "sd_outlined": Icons.sd_outlined, - "sd_card": Icons.sd_card, - "sd_card_sharp": Icons.sd_card_sharp, - "sd_card_rounded": Icons.sd_card_rounded, - "sd_card_outlined": Icons.sd_card_outlined, - "sd_card_alert": Icons.sd_card_alert, - "sd_card_alert_sharp": Icons.sd_card_alert_sharp, - "sd_card_alert_rounded": Icons.sd_card_alert_rounded, - "sd_card_alert_outlined": Icons.sd_card_alert_outlined, - "sd_storage": Icons.sd_storage, - "sd_storage_sharp": Icons.sd_storage_sharp, - "sd_storage_rounded": Icons.sd_storage_rounded, - "sd_storage_outlined": Icons.sd_storage_outlined, - "search": Icons.search, - "search_sharp": Icons.search_sharp, - "search_rounded": Icons.search_rounded, - "search_outlined": Icons.search_outlined, - "search_off": Icons.search_off, - "search_off_sharp": Icons.search_off_sharp, - "search_off_rounded": Icons.search_off_rounded, - "search_off_outlined": Icons.search_off_outlined, - "security": Icons.security, - "security_sharp": Icons.security_sharp, - "security_rounded": Icons.security_rounded, - "security_outlined": Icons.security_outlined, - "security_update": Icons.security_update, - "security_update_sharp": Icons.security_update_sharp, - "security_update_rounded": Icons.security_update_rounded, - "security_update_outlined": Icons.security_update_outlined, - "security_update_good": Icons.security_update_good, - "security_update_good_sharp": Icons.security_update_good_sharp, - "security_update_good_rounded": Icons.security_update_good_rounded, - "security_update_good_outlined": Icons.security_update_good_outlined, - "security_update_warning": Icons.security_update_warning, - "security_update_warning_sharp": Icons.security_update_warning_sharp, - "security_update_warning_rounded": Icons.security_update_warning_rounded, - "security_update_warning_outlined": Icons.security_update_warning_outlined, - "segment": Icons.segment, - "segment_sharp": Icons.segment_sharp, - "segment_rounded": Icons.segment_rounded, - "segment_outlined": Icons.segment_outlined, - "select_all": Icons.select_all, - "select_all_sharp": Icons.select_all_sharp, - "select_all_rounded": Icons.select_all_rounded, - "select_all_outlined": Icons.select_all_outlined, - "self_improvement": Icons.self_improvement, - "self_improvement_sharp": Icons.self_improvement_sharp, - "self_improvement_rounded": Icons.self_improvement_rounded, - "self_improvement_outlined": Icons.self_improvement_outlined, - "sell": Icons.sell, - "sell_sharp": Icons.sell_sharp, - "sell_rounded": Icons.sell_rounded, - "sell_outlined": Icons.sell_outlined, - "send": Icons.send, - "send_sharp": Icons.send_sharp, - "send_rounded": Icons.send_rounded, - "send_outlined": Icons.send_outlined, - "send_and_archive": Icons.send_and_archive, - "send_and_archive_sharp": Icons.send_and_archive_sharp, - "send_and_archive_rounded": Icons.send_and_archive_rounded, - "send_and_archive_outlined": Icons.send_and_archive_outlined, - "send_time_extension": Icons.send_time_extension, - "send_time_extension_sharp": Icons.send_time_extension_sharp, - "send_time_extension_rounded": Icons.send_time_extension_rounded, - "send_time_extension_outlined": Icons.send_time_extension_outlined, - "send_to_mobile": Icons.send_to_mobile, - "send_to_mobile_sharp": Icons.send_to_mobile_sharp, - "send_to_mobile_rounded": Icons.send_to_mobile_rounded, - "send_to_mobile_outlined": Icons.send_to_mobile_outlined, - "sensor_door": Icons.sensor_door, - "sensor_door_sharp": Icons.sensor_door_sharp, - "sensor_door_rounded": Icons.sensor_door_rounded, - "sensor_door_outlined": Icons.sensor_door_outlined, - "sensor_occupied": Icons.sensor_occupied, - "sensor_occupied_sharp": Icons.sensor_occupied_sharp, - "sensor_occupied_rounded": Icons.sensor_occupied_rounded, - "sensor_occupied_outlined": Icons.sensor_occupied_outlined, - "sensor_window": Icons.sensor_window, - "sensor_window_sharp": Icons.sensor_window_sharp, - "sensor_window_rounded": Icons.sensor_window_rounded, - "sensor_window_outlined": Icons.sensor_window_outlined, - "sensors": Icons.sensors, - "sensors_sharp": Icons.sensors_sharp, - "sensors_rounded": Icons.sensors_rounded, - "sensors_outlined": Icons.sensors_outlined, - "sensors_off": Icons.sensors_off, - "sensors_off_sharp": Icons.sensors_off_sharp, - "sensors_off_rounded": Icons.sensors_off_rounded, - "sensors_off_outlined": Icons.sensors_off_outlined, - "sentiment_dissatisfied": Icons.sentiment_dissatisfied, - "sentiment_dissatisfied_sharp": Icons.sentiment_dissatisfied_sharp, - "sentiment_dissatisfied_rounded": Icons.sentiment_dissatisfied_rounded, - "sentiment_dissatisfied_outlined": Icons.sentiment_dissatisfied_outlined, - "sentiment_neutral": Icons.sentiment_neutral, - "sentiment_neutral_sharp": Icons.sentiment_neutral_sharp, - "sentiment_neutral_rounded": Icons.sentiment_neutral_rounded, - "sentiment_neutral_outlined": Icons.sentiment_neutral_outlined, - "sentiment_satisfied": Icons.sentiment_satisfied, - "sentiment_satisfied_sharp": Icons.sentiment_satisfied_sharp, - "sentiment_satisfied_rounded": Icons.sentiment_satisfied_rounded, - "sentiment_satisfied_outlined": Icons.sentiment_satisfied_outlined, - "sentiment_satisfied_alt": Icons.sentiment_satisfied_alt, - "sentiment_satisfied_alt_sharp": Icons.sentiment_satisfied_alt_sharp, - "sentiment_satisfied_alt_rounded": Icons.sentiment_satisfied_alt_rounded, - "sentiment_satisfied_alt_outlined": Icons.sentiment_satisfied_alt_outlined, - "sentiment_very_dissatisfied": Icons.sentiment_very_dissatisfied, - "sentiment_very_dissatisfied_sharp": Icons.sentiment_very_dissatisfied_sharp, - "sentiment_very_dissatisfied_rounded": - Icons.sentiment_very_dissatisfied_rounded, - "sentiment_very_dissatisfied_outlined": - Icons.sentiment_very_dissatisfied_outlined, - "sentiment_very_satisfied": Icons.sentiment_very_satisfied, - "sentiment_very_satisfied_sharp": Icons.sentiment_very_satisfied_sharp, - "sentiment_very_satisfied_rounded": Icons.sentiment_very_satisfied_rounded, - "sentiment_very_satisfied_outlined": Icons.sentiment_very_satisfied_outlined, - "set_meal": Icons.set_meal, - "set_meal_sharp": Icons.set_meal_sharp, - "set_meal_rounded": Icons.set_meal_rounded, - "set_meal_outlined": Icons.set_meal_outlined, - "settings": Icons.settings, - "settings_sharp": Icons.settings_sharp, - "settings_rounded": Icons.settings_rounded, - "settings_outlined": Icons.settings_outlined, - "settings_accessibility": Icons.settings_accessibility, - "settings_accessibility_sharp": Icons.settings_accessibility_sharp, - "settings_accessibility_rounded": Icons.settings_accessibility_rounded, - "settings_accessibility_outlined": Icons.settings_accessibility_outlined, - "settings_applications": Icons.settings_applications, - "settings_applications_sharp": Icons.settings_applications_sharp, - "settings_applications_rounded": Icons.settings_applications_rounded, - "settings_applications_outlined": Icons.settings_applications_outlined, - "settings_backup_restore": Icons.settings_backup_restore, - "settings_backup_restore_sharp": Icons.settings_backup_restore_sharp, - "settings_backup_restore_rounded": Icons.settings_backup_restore_rounded, - "settings_backup_restore_outlined": Icons.settings_backup_restore_outlined, - "settings_bluetooth": Icons.settings_bluetooth, - "settings_bluetooth_sharp": Icons.settings_bluetooth_sharp, - "settings_bluetooth_rounded": Icons.settings_bluetooth_rounded, - "settings_bluetooth_outlined": Icons.settings_bluetooth_outlined, - "settings_brightness": Icons.settings_brightness, - "settings_brightness_sharp": Icons.settings_brightness_sharp, - "settings_brightness_rounded": Icons.settings_brightness_rounded, - "settings_brightness_outlined": Icons.settings_brightness_outlined, - "settings_cell": Icons.settings_cell, - "settings_cell_sharp": Icons.settings_cell_sharp, - "settings_cell_rounded": Icons.settings_cell_rounded, - "settings_cell_outlined": Icons.settings_cell_outlined, - "settings_display": Icons.settings_display, - "settings_display_sharp": Icons.settings_display_sharp, - "settings_display_rounded": Icons.settings_display_rounded, - "settings_display_outlined": Icons.settings_display_outlined, - "settings_ethernet": Icons.settings_ethernet, - "settings_ethernet_sharp": Icons.settings_ethernet_sharp, - "settings_ethernet_rounded": Icons.settings_ethernet_rounded, - "settings_ethernet_outlined": Icons.settings_ethernet_outlined, - "settings_input_antenna": Icons.settings_input_antenna, - "settings_input_antenna_sharp": Icons.settings_input_antenna_sharp, - "settings_input_antenna_rounded": Icons.settings_input_antenna_rounded, - "settings_input_antenna_outlined": Icons.settings_input_antenna_outlined, - "settings_input_component": Icons.settings_input_component, - "settings_input_component_sharp": Icons.settings_input_component_sharp, - "settings_input_component_rounded": Icons.settings_input_component_rounded, - "settings_input_component_outlined": Icons.settings_input_component_outlined, - "settings_input_composite": Icons.settings_input_composite, - "settings_input_composite_sharp": Icons.settings_input_composite_sharp, - "settings_input_composite_rounded": Icons.settings_input_composite_rounded, - "settings_input_composite_outlined": Icons.settings_input_composite_outlined, - "settings_input_hdmi": Icons.settings_input_hdmi, - "settings_input_hdmi_sharp": Icons.settings_input_hdmi_sharp, - "settings_input_hdmi_rounded": Icons.settings_input_hdmi_rounded, - "settings_input_hdmi_outlined": Icons.settings_input_hdmi_outlined, - "settings_input_svideo": Icons.settings_input_svideo, - "settings_input_svideo_sharp": Icons.settings_input_svideo_sharp, - "settings_input_svideo_rounded": Icons.settings_input_svideo_rounded, - "settings_input_svideo_outlined": Icons.settings_input_svideo_outlined, - "settings_overscan": Icons.settings_overscan, - "settings_overscan_sharp": Icons.settings_overscan_sharp, - "settings_overscan_rounded": Icons.settings_overscan_rounded, - "settings_overscan_outlined": Icons.settings_overscan_outlined, - "settings_phone": Icons.settings_phone, - "settings_phone_sharp": Icons.settings_phone_sharp, - "settings_phone_rounded": Icons.settings_phone_rounded, - "settings_phone_outlined": Icons.settings_phone_outlined, - "settings_power": Icons.settings_power, - "settings_power_sharp": Icons.settings_power_sharp, - "settings_power_rounded": Icons.settings_power_rounded, - "settings_power_outlined": Icons.settings_power_outlined, - "settings_remote": Icons.settings_remote, - "settings_remote_sharp": Icons.settings_remote_sharp, - "settings_remote_rounded": Icons.settings_remote_rounded, - "settings_remote_outlined": Icons.settings_remote_outlined, - "settings_suggest": Icons.settings_suggest, - "settings_suggest_sharp": Icons.settings_suggest_sharp, - "settings_suggest_rounded": Icons.settings_suggest_rounded, - "settings_suggest_outlined": Icons.settings_suggest_outlined, - "settings_system_daydream": Icons.settings_system_daydream, - "settings_system_daydream_sharp": Icons.settings_system_daydream_sharp, - "settings_system_daydream_rounded": Icons.settings_system_daydream_rounded, - "settings_system_daydream_outlined": Icons.settings_system_daydream_outlined, - "settings_voice": Icons.settings_voice, - "settings_voice_sharp": Icons.settings_voice_sharp, - "settings_voice_rounded": Icons.settings_voice_rounded, - "settings_voice_outlined": Icons.settings_voice_outlined, - "severe_cold": Icons.severe_cold, - "severe_cold_sharp": Icons.severe_cold_sharp, - "severe_cold_rounded": Icons.severe_cold_rounded, - "severe_cold_outlined": Icons.severe_cold_outlined, - "shape_line": Icons.shape_line, - "shape_line_sharp": Icons.shape_line_sharp, - "shape_line_rounded": Icons.shape_line_rounded, - "shape_line_outlined": Icons.shape_line_outlined, - "share": Icons.share, - "share_sharp": Icons.share_sharp, - "share_rounded": Icons.share_rounded, - "share_outlined": Icons.share_outlined, - "share_arrival_time": Icons.share_arrival_time, - "share_arrival_time_sharp": Icons.share_arrival_time_sharp, - "share_arrival_time_rounded": Icons.share_arrival_time_rounded, - "share_arrival_time_outlined": Icons.share_arrival_time_outlined, - "share_location": Icons.share_location, - "share_location_sharp": Icons.share_location_sharp, - "share_location_rounded": Icons.share_location_rounded, - "share_location_outlined": Icons.share_location_outlined, - "shelves": Icons.shelves, - "shield": Icons.shield, - "shield_sharp": Icons.shield_sharp, - "shield_rounded": Icons.shield_rounded, - "shield_outlined": Icons.shield_outlined, - "shield_moon": Icons.shield_moon, - "shield_moon_sharp": Icons.shield_moon_sharp, - "shield_moon_rounded": Icons.shield_moon_rounded, - "shield_moon_outlined": Icons.shield_moon_outlined, - "shop": Icons.shop, - "shop_sharp": Icons.shop_sharp, - "shop_rounded": Icons.shop_rounded, - "shop_outlined": Icons.shop_outlined, - "shop_2": Icons.shop_2, - "shop_2_sharp": Icons.shop_2_sharp, - "shop_2_rounded": Icons.shop_2_rounded, - "shop_2_outlined": Icons.shop_2_outlined, - "shop_two": Icons.shop_two, - "shop_two_sharp": Icons.shop_two_sharp, - "shop_two_rounded": Icons.shop_two_rounded, - "shop_two_outlined": Icons.shop_two_outlined, - "shopify": Icons.shopify, - "shopify_sharp": Icons.shopify_sharp, - "shopify_rounded": Icons.shopify_rounded, - "shopify_outlined": Icons.shopify_outlined, - "shopping_bag": Icons.shopping_bag, - "shopping_bag_sharp": Icons.shopping_bag_sharp, - "shopping_bag_rounded": Icons.shopping_bag_rounded, - "shopping_bag_outlined": Icons.shopping_bag_outlined, - "shopping_basket": Icons.shopping_basket, - "shopping_basket_sharp": Icons.shopping_basket_sharp, - "shopping_basket_rounded": Icons.shopping_basket_rounded, - "shopping_basket_outlined": Icons.shopping_basket_outlined, - "shopping_cart": Icons.shopping_cart, - "shopping_cart_sharp": Icons.shopping_cart_sharp, - "shopping_cart_rounded": Icons.shopping_cart_rounded, - "shopping_cart_outlined": Icons.shopping_cart_outlined, - "shopping_cart_checkout": Icons.shopping_cart_checkout, - "shopping_cart_checkout_sharp": Icons.shopping_cart_checkout_sharp, - "shopping_cart_checkout_rounded": Icons.shopping_cart_checkout_rounded, - "shopping_cart_checkout_outlined": Icons.shopping_cart_checkout_outlined, - "short_text": Icons.short_text, - "short_text_sharp": Icons.short_text_sharp, - "short_text_rounded": Icons.short_text_rounded, - "short_text_outlined": Icons.short_text_outlined, - "shortcut": Icons.shortcut, - "shortcut_sharp": Icons.shortcut_sharp, - "shortcut_rounded": Icons.shortcut_rounded, - "shortcut_outlined": Icons.shortcut_outlined, - "show_chart": Icons.show_chart, - "show_chart_sharp": Icons.show_chart_sharp, - "show_chart_rounded": Icons.show_chart_rounded, - "show_chart_outlined": Icons.show_chart_outlined, - "shower": Icons.shower, - "shower_sharp": Icons.shower_sharp, - "shower_rounded": Icons.shower_rounded, - "shower_outlined": Icons.shower_outlined, - "shuffle": Icons.shuffle, - "shuffle_sharp": Icons.shuffle_sharp, - "shuffle_rounded": Icons.shuffle_rounded, - "shuffle_outlined": Icons.shuffle_outlined, - "shuffle_on": Icons.shuffle_on, - "shuffle_on_sharp": Icons.shuffle_on_sharp, - "shuffle_on_rounded": Icons.shuffle_on_rounded, - "shuffle_on_outlined": Icons.shuffle_on_outlined, - "shutter_speed": Icons.shutter_speed, - "shutter_speed_sharp": Icons.shutter_speed_sharp, - "shutter_speed_rounded": Icons.shutter_speed_rounded, - "shutter_speed_outlined": Icons.shutter_speed_outlined, - "sick": Icons.sick, - "sick_sharp": Icons.sick_sharp, - "sick_rounded": Icons.sick_rounded, - "sick_outlined": Icons.sick_outlined, - "sign_language": Icons.sign_language, - "sign_language_sharp": Icons.sign_language_sharp, - "sign_language_rounded": Icons.sign_language_rounded, - "sign_language_outlined": Icons.sign_language_outlined, - "signal_cellular_0_bar": Icons.signal_cellular_0_bar, - "signal_cellular_0_bar_sharp": Icons.signal_cellular_0_bar_sharp, - "signal_cellular_0_bar_rounded": Icons.signal_cellular_0_bar_rounded, - "signal_cellular_0_bar_outlined": Icons.signal_cellular_0_bar_outlined, - "signal_cellular_4_bar": Icons.signal_cellular_4_bar, - "signal_cellular_4_bar_sharp": Icons.signal_cellular_4_bar_sharp, - "signal_cellular_4_bar_rounded": Icons.signal_cellular_4_bar_rounded, - "signal_cellular_4_bar_outlined": Icons.signal_cellular_4_bar_outlined, - "signal_cellular_alt": Icons.signal_cellular_alt, - "signal_cellular_alt_sharp": Icons.signal_cellular_alt_sharp, - "signal_cellular_alt_rounded": Icons.signal_cellular_alt_rounded, - "signal_cellular_alt_outlined": Icons.signal_cellular_alt_outlined, - "signal_cellular_alt_1_bar": Icons.signal_cellular_alt_1_bar, - "signal_cellular_alt_1_bar_sharp": Icons.signal_cellular_alt_1_bar_sharp, - "signal_cellular_alt_1_bar_rounded": Icons.signal_cellular_alt_1_bar_rounded, - "signal_cellular_alt_1_bar_outlined": - Icons.signal_cellular_alt_1_bar_outlined, - "signal_cellular_alt_2_bar": Icons.signal_cellular_alt_2_bar, - "signal_cellular_alt_2_bar_sharp": Icons.signal_cellular_alt_2_bar_sharp, - "signal_cellular_alt_2_bar_rounded": Icons.signal_cellular_alt_2_bar_rounded, - "signal_cellular_alt_2_bar_outlined": - Icons.signal_cellular_alt_2_bar_outlined, - "signal_cellular_connected_no_internet_0_bar": - Icons.signal_cellular_connected_no_internet_0_bar, - "signal_cellular_connected_no_internet_0_bar_sharp": - Icons.signal_cellular_connected_no_internet_0_bar_sharp, - "signal_cellular_connected_no_internet_0_bar_rounded": - Icons.signal_cellular_connected_no_internet_0_bar_rounded, - "signal_cellular_connected_no_internet_0_bar_outlined": - Icons.signal_cellular_connected_no_internet_0_bar_outlined, - "signal_cellular_connected_no_internet_4_bar": - Icons.signal_cellular_connected_no_internet_4_bar, - "signal_cellular_connected_no_internet_4_bar_sharp": - Icons.signal_cellular_connected_no_internet_4_bar_sharp, - "signal_cellular_connected_no_internet_4_bar_rounded": - Icons.signal_cellular_connected_no_internet_4_bar_rounded, - "signal_cellular_connected_no_internet_4_bar_outlined": - Icons.signal_cellular_connected_no_internet_4_bar_outlined, - "signal_cellular_no_sim": Icons.signal_cellular_no_sim, - "signal_cellular_no_sim_sharp": Icons.signal_cellular_no_sim_sharp, - "signal_cellular_no_sim_rounded": Icons.signal_cellular_no_sim_rounded, - "signal_cellular_no_sim_outlined": Icons.signal_cellular_no_sim_outlined, - "signal_cellular_nodata": Icons.signal_cellular_nodata, - "signal_cellular_nodata_sharp": Icons.signal_cellular_nodata_sharp, - "signal_cellular_nodata_rounded": Icons.signal_cellular_nodata_rounded, - "signal_cellular_nodata_outlined": Icons.signal_cellular_nodata_outlined, - "signal_cellular_null": Icons.signal_cellular_null, - "signal_cellular_null_sharp": Icons.signal_cellular_null_sharp, - "signal_cellular_null_rounded": Icons.signal_cellular_null_rounded, - "signal_cellular_null_outlined": Icons.signal_cellular_null_outlined, - "signal_cellular_off": Icons.signal_cellular_off, - "signal_cellular_off_sharp": Icons.signal_cellular_off_sharp, - "signal_cellular_off_rounded": Icons.signal_cellular_off_rounded, - "signal_cellular_off_outlined": Icons.signal_cellular_off_outlined, - "signal_wifi_0_bar": Icons.signal_wifi_0_bar, - "signal_wifi_0_bar_sharp": Icons.signal_wifi_0_bar_sharp, - "signal_wifi_0_bar_rounded": Icons.signal_wifi_0_bar_rounded, - "signal_wifi_0_bar_outlined": Icons.signal_wifi_0_bar_outlined, - "signal_wifi_4_bar": Icons.signal_wifi_4_bar, - "signal_wifi_4_bar_sharp": Icons.signal_wifi_4_bar_sharp, - "signal_wifi_4_bar_rounded": Icons.signal_wifi_4_bar_rounded, - "signal_wifi_4_bar_outlined": Icons.signal_wifi_4_bar_outlined, - "signal_wifi_4_bar_lock": Icons.signal_wifi_4_bar_lock, - "signal_wifi_4_bar_lock_sharp": Icons.signal_wifi_4_bar_lock_sharp, - "signal_wifi_4_bar_lock_rounded": Icons.signal_wifi_4_bar_lock_rounded, - "signal_wifi_4_bar_lock_outlined": Icons.signal_wifi_4_bar_lock_outlined, - "signal_wifi_bad": Icons.signal_wifi_bad, - "signal_wifi_bad_sharp": Icons.signal_wifi_bad_sharp, - "signal_wifi_bad_rounded": Icons.signal_wifi_bad_rounded, - "signal_wifi_bad_outlined": Icons.signal_wifi_bad_outlined, - "signal_wifi_connected_no_internet_4": - Icons.signal_wifi_connected_no_internet_4, - "signal_wifi_connected_no_internet_4_sharp": - Icons.signal_wifi_connected_no_internet_4_sharp, - "signal_wifi_connected_no_internet_4_rounded": - Icons.signal_wifi_connected_no_internet_4_rounded, - "signal_wifi_connected_no_internet_4_outlined": - Icons.signal_wifi_connected_no_internet_4_outlined, - "signal_wifi_off": Icons.signal_wifi_off, - "signal_wifi_off_sharp": Icons.signal_wifi_off_sharp, - "signal_wifi_off_rounded": Icons.signal_wifi_off_rounded, - "signal_wifi_off_outlined": Icons.signal_wifi_off_outlined, - "signal_wifi_statusbar_4_bar": Icons.signal_wifi_statusbar_4_bar, - "signal_wifi_statusbar_4_bar_sharp": Icons.signal_wifi_statusbar_4_bar_sharp, - "signal_wifi_statusbar_4_bar_rounded": - Icons.signal_wifi_statusbar_4_bar_rounded, - "signal_wifi_statusbar_4_bar_outlined": - Icons.signal_wifi_statusbar_4_bar_outlined, - "signal_wifi_statusbar_connected_no_internet_4": - Icons.signal_wifi_statusbar_connected_no_internet_4, - "signal_wifi_statusbar_connected_no_internet_4_sharp": - Icons.signal_wifi_statusbar_connected_no_internet_4_sharp, - "signal_wifi_statusbar_connected_no_internet_4_rounded": - Icons.signal_wifi_statusbar_connected_no_internet_4_rounded, - "signal_wifi_statusbar_connected_no_internet_4_outlined": - Icons.signal_wifi_statusbar_connected_no_internet_4_outlined, - "signal_wifi_statusbar_null": Icons.signal_wifi_statusbar_null, - "signal_wifi_statusbar_null_sharp": Icons.signal_wifi_statusbar_null_sharp, - "signal_wifi_statusbar_null_rounded": - Icons.signal_wifi_statusbar_null_rounded, - "signal_wifi_statusbar_null_outlined": - Icons.signal_wifi_statusbar_null_outlined, - "signpost": Icons.signpost, - "signpost_sharp": Icons.signpost_sharp, - "signpost_rounded": Icons.signpost_rounded, - "signpost_outlined": Icons.signpost_outlined, - "sim_card": Icons.sim_card, - "sim_card_sharp": Icons.sim_card_sharp, - "sim_card_rounded": Icons.sim_card_rounded, - "sim_card_outlined": Icons.sim_card_outlined, - "sim_card_alert": Icons.sim_card_alert, - "sim_card_alert_sharp": Icons.sim_card_alert_sharp, - "sim_card_alert_rounded": Icons.sim_card_alert_rounded, - "sim_card_alert_outlined": Icons.sim_card_alert_outlined, - "sim_card_download": Icons.sim_card_download, - "sim_card_download_sharp": Icons.sim_card_download_sharp, - "sim_card_download_rounded": Icons.sim_card_download_rounded, - "sim_card_download_outlined": Icons.sim_card_download_outlined, - "single_bed": Icons.single_bed, - "single_bed_sharp": Icons.single_bed_sharp, - "single_bed_rounded": Icons.single_bed_rounded, - "single_bed_outlined": Icons.single_bed_outlined, - "sip": Icons.sip, - "sip_sharp": Icons.sip_sharp, - "sip_rounded": Icons.sip_rounded, - "sip_outlined": Icons.sip_outlined, - "skateboarding": Icons.skateboarding, - "skateboarding_sharp": Icons.skateboarding_sharp, - "skateboarding_rounded": Icons.skateboarding_rounded, - "skateboarding_outlined": Icons.skateboarding_outlined, - "skip_next": Icons.skip_next, - "skip_next_sharp": Icons.skip_next_sharp, - "skip_next_rounded": Icons.skip_next_rounded, - "skip_next_outlined": Icons.skip_next_outlined, - "skip_previous": Icons.skip_previous, - "skip_previous_sharp": Icons.skip_previous_sharp, - "skip_previous_rounded": Icons.skip_previous_rounded, - "skip_previous_outlined": Icons.skip_previous_outlined, - "sledding": Icons.sledding, - "sledding_sharp": Icons.sledding_sharp, - "sledding_rounded": Icons.sledding_rounded, - "sledding_outlined": Icons.sledding_outlined, - "slideshow": Icons.slideshow, - "slideshow_sharp": Icons.slideshow_sharp, - "slideshow_rounded": Icons.slideshow_rounded, - "slideshow_outlined": Icons.slideshow_outlined, - "slow_motion_video": Icons.slow_motion_video, - "slow_motion_video_sharp": Icons.slow_motion_video_sharp, - "slow_motion_video_rounded": Icons.slow_motion_video_rounded, - "slow_motion_video_outlined": Icons.slow_motion_video_outlined, - "smart_button": Icons.smart_button, - "smart_button_sharp": Icons.smart_button_sharp, - "smart_button_rounded": Icons.smart_button_rounded, - "smart_button_outlined": Icons.smart_button_outlined, - "smart_display": Icons.smart_display, - "smart_display_sharp": Icons.smart_display_sharp, - "smart_display_rounded": Icons.smart_display_rounded, - "smart_display_outlined": Icons.smart_display_outlined, - "smart_screen": Icons.smart_screen, - "smart_screen_sharp": Icons.smart_screen_sharp, - "smart_screen_rounded": Icons.smart_screen_rounded, - "smart_screen_outlined": Icons.smart_screen_outlined, - "smart_toy": Icons.smart_toy, - "smart_toy_sharp": Icons.smart_toy_sharp, - "smart_toy_rounded": Icons.smart_toy_rounded, - "smart_toy_outlined": Icons.smart_toy_outlined, - "smartphone": Icons.smartphone, - "smartphone_sharp": Icons.smartphone_sharp, - "smartphone_rounded": Icons.smartphone_rounded, - "smartphone_outlined": Icons.smartphone_outlined, - "smoke_free": Icons.smoke_free, - "smoke_free_sharp": Icons.smoke_free_sharp, - "smoke_free_rounded": Icons.smoke_free_rounded, - "smoke_free_outlined": Icons.smoke_free_outlined, - "smoking_rooms": Icons.smoking_rooms, - "smoking_rooms_sharp": Icons.smoking_rooms_sharp, - "smoking_rooms_rounded": Icons.smoking_rooms_rounded, - "smoking_rooms_outlined": Icons.smoking_rooms_outlined, - "sms": Icons.sms, - "sms_sharp": Icons.sms_sharp, - "sms_rounded": Icons.sms_rounded, - "sms_outlined": Icons.sms_outlined, - "sms_failed": Icons.sms_failed, - "sms_failed_sharp": Icons.sms_failed_sharp, - "sms_failed_rounded": Icons.sms_failed_rounded, - "sms_failed_outlined": Icons.sms_failed_outlined, - "snapchat": Icons.snapchat, - "snapchat_sharp": Icons.snapchat_sharp, - "snapchat_rounded": Icons.snapchat_rounded, - "snapchat_outlined": Icons.snapchat_outlined, - "snippet_folder": Icons.snippet_folder, - "snippet_folder_sharp": Icons.snippet_folder_sharp, - "snippet_folder_rounded": Icons.snippet_folder_rounded, - "snippet_folder_outlined": Icons.snippet_folder_outlined, - "snooze": Icons.snooze, - "snooze_sharp": Icons.snooze_sharp, - "snooze_rounded": Icons.snooze_rounded, - "snooze_outlined": Icons.snooze_outlined, - "snowboarding": Icons.snowboarding, - "snowboarding_sharp": Icons.snowboarding_sharp, - "snowboarding_rounded": Icons.snowboarding_rounded, - "snowboarding_outlined": Icons.snowboarding_outlined, - "snowing": Icons.snowing, - "snowmobile": Icons.snowmobile, - "snowmobile_sharp": Icons.snowmobile_sharp, - "snowmobile_rounded": Icons.snowmobile_rounded, - "snowmobile_outlined": Icons.snowmobile_outlined, - "snowshoeing": Icons.snowshoeing, - "snowshoeing_sharp": Icons.snowshoeing_sharp, - "snowshoeing_rounded": Icons.snowshoeing_rounded, - "snowshoeing_outlined": Icons.snowshoeing_outlined, - "soap": Icons.soap, - "soap_sharp": Icons.soap_sharp, - "soap_rounded": Icons.soap_rounded, - "soap_outlined": Icons.soap_outlined, - "social_distance": Icons.social_distance, - "social_distance_sharp": Icons.social_distance_sharp, - "social_distance_rounded": Icons.social_distance_rounded, - "social_distance_outlined": Icons.social_distance_outlined, - "solar_power": Icons.solar_power, - "solar_power_sharp": Icons.solar_power_sharp, - "solar_power_rounded": Icons.solar_power_rounded, - "solar_power_outlined": Icons.solar_power_outlined, - "sort": Icons.sort, - "sort_sharp": Icons.sort_sharp, - "sort_rounded": Icons.sort_rounded, - "sort_outlined": Icons.sort_outlined, - "sort_by_alpha": Icons.sort_by_alpha, - "sort_by_alpha_sharp": Icons.sort_by_alpha_sharp, - "sort_by_alpha_rounded": Icons.sort_by_alpha_rounded, - "sort_by_alpha_outlined": Icons.sort_by_alpha_outlined, - "sos": Icons.sos, - "sos_sharp": Icons.sos_sharp, - "sos_rounded": Icons.sos_rounded, - "sos_outlined": Icons.sos_outlined, - "soup_kitchen": Icons.soup_kitchen, - "soup_kitchen_sharp": Icons.soup_kitchen_sharp, - "soup_kitchen_rounded": Icons.soup_kitchen_rounded, - "soup_kitchen_outlined": Icons.soup_kitchen_outlined, - "source": Icons.source, - "source_sharp": Icons.source_sharp, - "source_rounded": Icons.source_rounded, - "source_outlined": Icons.source_outlined, - "south": Icons.south, - "south_sharp": Icons.south_sharp, - "south_rounded": Icons.south_rounded, - "south_outlined": Icons.south_outlined, - "south_america": Icons.south_america, - "south_america_sharp": Icons.south_america_sharp, - "south_america_rounded": Icons.south_america_rounded, - "south_america_outlined": Icons.south_america_outlined, - "south_east": Icons.south_east, - "south_east_sharp": Icons.south_east_sharp, - "south_east_rounded": Icons.south_east_rounded, - "south_east_outlined": Icons.south_east_outlined, - "south_west": Icons.south_west, - "south_west_sharp": Icons.south_west_sharp, - "south_west_rounded": Icons.south_west_rounded, - "south_west_outlined": Icons.south_west_outlined, - "spa": Icons.spa, - "spa_sharp": Icons.spa_sharp, - "spa_rounded": Icons.spa_rounded, - "spa_outlined": Icons.spa_outlined, - "space_bar": Icons.space_bar, - "space_bar_sharp": Icons.space_bar_sharp, - "space_bar_rounded": Icons.space_bar_rounded, - "space_bar_outlined": Icons.space_bar_outlined, - "space_dashboard": Icons.space_dashboard, - "space_dashboard_sharp": Icons.space_dashboard_sharp, - "space_dashboard_rounded": Icons.space_dashboard_rounded, - "space_dashboard_outlined": Icons.space_dashboard_outlined, - "spatial_audio": Icons.spatial_audio, - "spatial_audio_sharp": Icons.spatial_audio_sharp, - "spatial_audio_rounded": Icons.spatial_audio_rounded, - "spatial_audio_outlined": Icons.spatial_audio_outlined, - "spatial_audio_off": Icons.spatial_audio_off, - "spatial_audio_off_sharp": Icons.spatial_audio_off_sharp, - "spatial_audio_off_rounded": Icons.spatial_audio_off_rounded, - "spatial_audio_off_outlined": Icons.spatial_audio_off_outlined, - "spatial_tracking": Icons.spatial_tracking, - "spatial_tracking_sharp": Icons.spatial_tracking_sharp, - "spatial_tracking_rounded": Icons.spatial_tracking_rounded, - "spatial_tracking_outlined": Icons.spatial_tracking_outlined, - "speaker": Icons.speaker, - "speaker_sharp": Icons.speaker_sharp, - "speaker_rounded": Icons.speaker_rounded, - "speaker_outlined": Icons.speaker_outlined, - "speaker_group": Icons.speaker_group, - "speaker_group_sharp": Icons.speaker_group_sharp, - "speaker_group_rounded": Icons.speaker_group_rounded, - "speaker_group_outlined": Icons.speaker_group_outlined, - "speaker_notes": Icons.speaker_notes, - "speaker_notes_sharp": Icons.speaker_notes_sharp, - "speaker_notes_rounded": Icons.speaker_notes_rounded, - "speaker_notes_outlined": Icons.speaker_notes_outlined, - "speaker_notes_off": Icons.speaker_notes_off, - "speaker_notes_off_sharp": Icons.speaker_notes_off_sharp, - "speaker_notes_off_rounded": Icons.speaker_notes_off_rounded, - "speaker_notes_off_outlined": Icons.speaker_notes_off_outlined, - "speaker_phone": Icons.speaker_phone, - "speaker_phone_sharp": Icons.speaker_phone_sharp, - "speaker_phone_rounded": Icons.speaker_phone_rounded, - "speaker_phone_outlined": Icons.speaker_phone_outlined, - "speed": Icons.speed, - "speed_sharp": Icons.speed_sharp, - "speed_rounded": Icons.speed_rounded, - "speed_outlined": Icons.speed_outlined, - "spellcheck": Icons.spellcheck, - "spellcheck_sharp": Icons.spellcheck_sharp, - "spellcheck_rounded": Icons.spellcheck_rounded, - "spellcheck_outlined": Icons.spellcheck_outlined, - "splitscreen": Icons.splitscreen, - "splitscreen_sharp": Icons.splitscreen_sharp, - "splitscreen_rounded": Icons.splitscreen_rounded, - "splitscreen_outlined": Icons.splitscreen_outlined, - "spoke": Icons.spoke, - "spoke_sharp": Icons.spoke_sharp, - "spoke_rounded": Icons.spoke_rounded, - "spoke_outlined": Icons.spoke_outlined, - "sports": Icons.sports, - "sports_sharp": Icons.sports_sharp, - "sports_rounded": Icons.sports_rounded, - "sports_outlined": Icons.sports_outlined, - "sports_bar": Icons.sports_bar, - "sports_bar_sharp": Icons.sports_bar_sharp, - "sports_bar_rounded": Icons.sports_bar_rounded, - "sports_bar_outlined": Icons.sports_bar_outlined, - "sports_baseball": Icons.sports_baseball, - "sports_baseball_sharp": Icons.sports_baseball_sharp, - "sports_baseball_rounded": Icons.sports_baseball_rounded, - "sports_baseball_outlined": Icons.sports_baseball_outlined, - "sports_basketball": Icons.sports_basketball, - "sports_basketball_sharp": Icons.sports_basketball_sharp, - "sports_basketball_rounded": Icons.sports_basketball_rounded, - "sports_basketball_outlined": Icons.sports_basketball_outlined, - "sports_cricket": Icons.sports_cricket, - "sports_cricket_sharp": Icons.sports_cricket_sharp, - "sports_cricket_rounded": Icons.sports_cricket_rounded, - "sports_cricket_outlined": Icons.sports_cricket_outlined, - "sports_esports": Icons.sports_esports, - "sports_esports_sharp": Icons.sports_esports_sharp, - "sports_esports_rounded": Icons.sports_esports_rounded, - "sports_esports_outlined": Icons.sports_esports_outlined, - "sports_football": Icons.sports_football, - "sports_football_sharp": Icons.sports_football_sharp, - "sports_football_rounded": Icons.sports_football_rounded, - "sports_football_outlined": Icons.sports_football_outlined, - "sports_golf": Icons.sports_golf, - "sports_golf_sharp": Icons.sports_golf_sharp, - "sports_golf_rounded": Icons.sports_golf_rounded, - "sports_golf_outlined": Icons.sports_golf_outlined, - "sports_gymnastics": Icons.sports_gymnastics, - "sports_gymnastics_sharp": Icons.sports_gymnastics_sharp, - "sports_gymnastics_rounded": Icons.sports_gymnastics_rounded, - "sports_gymnastics_outlined": Icons.sports_gymnastics_outlined, - "sports_handball": Icons.sports_handball, - "sports_handball_sharp": Icons.sports_handball_sharp, - "sports_handball_rounded": Icons.sports_handball_rounded, - "sports_handball_outlined": Icons.sports_handball_outlined, - "sports_hockey": Icons.sports_hockey, - "sports_hockey_sharp": Icons.sports_hockey_sharp, - "sports_hockey_rounded": Icons.sports_hockey_rounded, - "sports_hockey_outlined": Icons.sports_hockey_outlined, - "sports_kabaddi": Icons.sports_kabaddi, - "sports_kabaddi_sharp": Icons.sports_kabaddi_sharp, - "sports_kabaddi_rounded": Icons.sports_kabaddi_rounded, - "sports_kabaddi_outlined": Icons.sports_kabaddi_outlined, - "sports_martial_arts": Icons.sports_martial_arts, - "sports_martial_arts_sharp": Icons.sports_martial_arts_sharp, - "sports_martial_arts_rounded": Icons.sports_martial_arts_rounded, - "sports_martial_arts_outlined": Icons.sports_martial_arts_outlined, - "sports_mma": Icons.sports_mma, - "sports_mma_sharp": Icons.sports_mma_sharp, - "sports_mma_rounded": Icons.sports_mma_rounded, - "sports_mma_outlined": Icons.sports_mma_outlined, - "sports_motorsports": Icons.sports_motorsports, - "sports_motorsports_sharp": Icons.sports_motorsports_sharp, - "sports_motorsports_rounded": Icons.sports_motorsports_rounded, - "sports_motorsports_outlined": Icons.sports_motorsports_outlined, - "sports_rugby": Icons.sports_rugby, - "sports_rugby_sharp": Icons.sports_rugby_sharp, - "sports_rugby_rounded": Icons.sports_rugby_rounded, - "sports_rugby_outlined": Icons.sports_rugby_outlined, - "sports_score": Icons.sports_score, - "sports_score_sharp": Icons.sports_score_sharp, - "sports_score_rounded": Icons.sports_score_rounded, - "sports_score_outlined": Icons.sports_score_outlined, - "sports_soccer": Icons.sports_soccer, - "sports_soccer_sharp": Icons.sports_soccer_sharp, - "sports_soccer_rounded": Icons.sports_soccer_rounded, - "sports_soccer_outlined": Icons.sports_soccer_outlined, - "sports_tennis": Icons.sports_tennis, - "sports_tennis_sharp": Icons.sports_tennis_sharp, - "sports_tennis_rounded": Icons.sports_tennis_rounded, - "sports_tennis_outlined": Icons.sports_tennis_outlined, - "sports_volleyball": Icons.sports_volleyball, - "sports_volleyball_sharp": Icons.sports_volleyball_sharp, - "sports_volleyball_rounded": Icons.sports_volleyball_rounded, - "sports_volleyball_outlined": Icons.sports_volleyball_outlined, - "square": Icons.square, - "square_sharp": Icons.square_sharp, - "square_rounded": Icons.square_rounded, - "square_outlined": Icons.square_outlined, - "square_foot": Icons.square_foot, - "square_foot_sharp": Icons.square_foot_sharp, - "square_foot_rounded": Icons.square_foot_rounded, - "square_foot_outlined": Icons.square_foot_outlined, - "ssid_chart": Icons.ssid_chart, - "ssid_chart_sharp": Icons.ssid_chart_sharp, - "ssid_chart_rounded": Icons.ssid_chart_rounded, - "ssid_chart_outlined": Icons.ssid_chart_outlined, - "stacked_bar_chart": Icons.stacked_bar_chart, - "stacked_bar_chart_sharp": Icons.stacked_bar_chart_sharp, - "stacked_bar_chart_rounded": Icons.stacked_bar_chart_rounded, - "stacked_bar_chart_outlined": Icons.stacked_bar_chart_outlined, - "stacked_line_chart": Icons.stacked_line_chart, - "stacked_line_chart_sharp": Icons.stacked_line_chart_sharp, - "stacked_line_chart_rounded": Icons.stacked_line_chart_rounded, - "stacked_line_chart_outlined": Icons.stacked_line_chart_outlined, - "stadium": Icons.stadium, - "stadium_sharp": Icons.stadium_sharp, - "stadium_rounded": Icons.stadium_rounded, - "stadium_outlined": Icons.stadium_outlined, - "stairs": Icons.stairs, - "stairs_sharp": Icons.stairs_sharp, - "stairs_rounded": Icons.stairs_rounded, - "stairs_outlined": Icons.stairs_outlined, - "star": Icons.star, - "star_sharp": Icons.star_sharp, - "star_rounded": Icons.star_rounded, - "star_outlined": Icons.star_outlined, - "star_border": Icons.star_border, - "star_border_sharp": Icons.star_border_sharp, - "star_border_rounded": Icons.star_border_rounded, - "star_border_outlined": Icons.star_border_outlined, - "star_border_purple500": Icons.star_border_purple500, - "star_border_purple500_sharp": Icons.star_border_purple500_sharp, - "star_border_purple500_rounded": Icons.star_border_purple500_rounded, - "star_border_purple500_outlined": Icons.star_border_purple500_outlined, - "star_half": Icons.star_half, - "star_half_sharp": Icons.star_half_sharp, - "star_half_rounded": Icons.star_half_rounded, - "star_half_outlined": Icons.star_half_outlined, - "star_outline": Icons.star_outline, - "star_outline_sharp": Icons.star_outline_sharp, - "star_outline_rounded": Icons.star_outline_rounded, - "star_outline_outlined": Icons.star_outline_outlined, - "star_purple500": Icons.star_purple500, - "star_purple500_sharp": Icons.star_purple500_sharp, - "star_purple500_rounded": Icons.star_purple500_rounded, - "star_purple500_outlined": Icons.star_purple500_outlined, - "star_rate": Icons.star_rate, - "star_rate_sharp": Icons.star_rate_sharp, - "star_rate_rounded": Icons.star_rate_rounded, - "star_rate_outlined": Icons.star_rate_outlined, - "stars": Icons.stars, - "stars_sharp": Icons.stars_sharp, - "stars_rounded": Icons.stars_rounded, - "stars_outlined": Icons.stars_outlined, - "start": Icons.start, - "start_sharp": Icons.start_sharp, - "start_rounded": Icons.start_rounded, - "start_outlined": Icons.start_outlined, - "stay_current_landscape": Icons.stay_current_landscape, - "stay_current_landscape_sharp": Icons.stay_current_landscape_sharp, - "stay_current_landscape_rounded": Icons.stay_current_landscape_rounded, - "stay_current_landscape_outlined": Icons.stay_current_landscape_outlined, - "stay_current_portrait": Icons.stay_current_portrait, - "stay_current_portrait_sharp": Icons.stay_current_portrait_sharp, - "stay_current_portrait_rounded": Icons.stay_current_portrait_rounded, - "stay_current_portrait_outlined": Icons.stay_current_portrait_outlined, - "stay_primary_landscape": Icons.stay_primary_landscape, - "stay_primary_landscape_sharp": Icons.stay_primary_landscape_sharp, - "stay_primary_landscape_rounded": Icons.stay_primary_landscape_rounded, - "stay_primary_landscape_outlined": Icons.stay_primary_landscape_outlined, - "stay_primary_portrait": Icons.stay_primary_portrait, - "stay_primary_portrait_sharp": Icons.stay_primary_portrait_sharp, - "stay_primary_portrait_rounded": Icons.stay_primary_portrait_rounded, - "stay_primary_portrait_outlined": Icons.stay_primary_portrait_outlined, - "sticky_note_2": Icons.sticky_note_2, - "sticky_note_2_sharp": Icons.sticky_note_2_sharp, - "sticky_note_2_rounded": Icons.sticky_note_2_rounded, - "sticky_note_2_outlined": Icons.sticky_note_2_outlined, - "stop": Icons.stop, - "stop_sharp": Icons.stop_sharp, - "stop_rounded": Icons.stop_rounded, - "stop_outlined": Icons.stop_outlined, - "stop_circle": Icons.stop_circle, - "stop_circle_sharp": Icons.stop_circle_sharp, - "stop_circle_rounded": Icons.stop_circle_rounded, - "stop_circle_outlined": Icons.stop_circle_outlined, - "stop_screen_share": Icons.stop_screen_share, - "stop_screen_share_sharp": Icons.stop_screen_share_sharp, - "stop_screen_share_rounded": Icons.stop_screen_share_rounded, - "stop_screen_share_outlined": Icons.stop_screen_share_outlined, - "storage": Icons.storage, - "storage_sharp": Icons.storage_sharp, - "storage_rounded": Icons.storage_rounded, - "storage_outlined": Icons.storage_outlined, - "store": Icons.store, - "store_sharp": Icons.store_sharp, - "store_rounded": Icons.store_rounded, - "store_outlined": Icons.store_outlined, - "store_mall_directory": Icons.store_mall_directory, - "store_mall_directory_sharp": Icons.store_mall_directory_sharp, - "store_mall_directory_rounded": Icons.store_mall_directory_rounded, - "store_mall_directory_outlined": Icons.store_mall_directory_outlined, - "storefront": Icons.storefront, - "storefront_sharp": Icons.storefront_sharp, - "storefront_rounded": Icons.storefront_rounded, - "storefront_outlined": Icons.storefront_outlined, - "storm": Icons.storm, - "storm_sharp": Icons.storm_sharp, - "storm_rounded": Icons.storm_rounded, - "storm_outlined": Icons.storm_outlined, - "straight": Icons.straight, - "straight_sharp": Icons.straight_sharp, - "straight_rounded": Icons.straight_rounded, - "straight_outlined": Icons.straight_outlined, - "straighten": Icons.straighten, - "straighten_sharp": Icons.straighten_sharp, - "straighten_rounded": Icons.straighten_rounded, - "straighten_outlined": Icons.straighten_outlined, - "stream": Icons.stream, - "stream_sharp": Icons.stream_sharp, - "stream_rounded": Icons.stream_rounded, - "stream_outlined": Icons.stream_outlined, - "streetview": Icons.streetview, - "streetview_sharp": Icons.streetview_sharp, - "streetview_rounded": Icons.streetview_rounded, - "streetview_outlined": Icons.streetview_outlined, - "strikethrough_s": Icons.strikethrough_s, - "strikethrough_s_sharp": Icons.strikethrough_s_sharp, - "strikethrough_s_rounded": Icons.strikethrough_s_rounded, - "strikethrough_s_outlined": Icons.strikethrough_s_outlined, - "stroller": Icons.stroller, - "stroller_sharp": Icons.stroller_sharp, - "stroller_rounded": Icons.stroller_rounded, - "stroller_outlined": Icons.stroller_outlined, - "style": Icons.style, - "style_sharp": Icons.style_sharp, - "style_rounded": Icons.style_rounded, - "style_outlined": Icons.style_outlined, - "subdirectory_arrow_left": Icons.subdirectory_arrow_left, - "subdirectory_arrow_left_sharp": Icons.subdirectory_arrow_left_sharp, - "subdirectory_arrow_left_rounded": Icons.subdirectory_arrow_left_rounded, - "subdirectory_arrow_left_outlined": Icons.subdirectory_arrow_left_outlined, - "subdirectory_arrow_right": Icons.subdirectory_arrow_right, - "subdirectory_arrow_right_sharp": Icons.subdirectory_arrow_right_sharp, - "subdirectory_arrow_right_rounded": Icons.subdirectory_arrow_right_rounded, - "subdirectory_arrow_right_outlined": Icons.subdirectory_arrow_right_outlined, - "subject": Icons.subject, - "subject_sharp": Icons.subject_sharp, - "subject_rounded": Icons.subject_rounded, - "subject_outlined": Icons.subject_outlined, - "subscript": Icons.subscript, - "subscript_sharp": Icons.subscript_sharp, - "subscript_rounded": Icons.subscript_rounded, - "subscript_outlined": Icons.subscript_outlined, - "subscriptions": Icons.subscriptions, - "subscriptions_sharp": Icons.subscriptions_sharp, - "subscriptions_rounded": Icons.subscriptions_rounded, - "subscriptions_outlined": Icons.subscriptions_outlined, - "subtitles": Icons.subtitles, - "subtitles_sharp": Icons.subtitles_sharp, - "subtitles_rounded": Icons.subtitles_rounded, - "subtitles_outlined": Icons.subtitles_outlined, - "subtitles_off": Icons.subtitles_off, - "subtitles_off_sharp": Icons.subtitles_off_sharp, - "subtitles_off_rounded": Icons.subtitles_off_rounded, - "subtitles_off_outlined": Icons.subtitles_off_outlined, - "subway": Icons.subway, - "subway_sharp": Icons.subway_sharp, - "subway_rounded": Icons.subway_rounded, - "subway_outlined": Icons.subway_outlined, - "summarize": Icons.summarize, - "summarize_sharp": Icons.summarize_sharp, - "summarize_rounded": Icons.summarize_rounded, - "summarize_outlined": Icons.summarize_outlined, - "sunny": Icons.sunny, - "sunny_snowing": Icons.sunny_snowing, - "superscript": Icons.superscript, - "superscript_sharp": Icons.superscript_sharp, - "superscript_rounded": Icons.superscript_rounded, - "superscript_outlined": Icons.superscript_outlined, - "supervised_user_circle": Icons.supervised_user_circle, - "supervised_user_circle_sharp": Icons.supervised_user_circle_sharp, - "supervised_user_circle_rounded": Icons.supervised_user_circle_rounded, - "supervised_user_circle_outlined": Icons.supervised_user_circle_outlined, - "supervisor_account": Icons.supervisor_account, - "supervisor_account_sharp": Icons.supervisor_account_sharp, - "supervisor_account_rounded": Icons.supervisor_account_rounded, - "supervisor_account_outlined": Icons.supervisor_account_outlined, - "support": Icons.support, - "support_sharp": Icons.support_sharp, - "support_rounded": Icons.support_rounded, - "support_outlined": Icons.support_outlined, - "support_agent": Icons.support_agent, - "support_agent_sharp": Icons.support_agent_sharp, - "support_agent_rounded": Icons.support_agent_rounded, - "support_agent_outlined": Icons.support_agent_outlined, - "surfing": Icons.surfing, - "surfing_sharp": Icons.surfing_sharp, - "surfing_rounded": Icons.surfing_rounded, - "surfing_outlined": Icons.surfing_outlined, - "surround_sound": Icons.surround_sound, - "surround_sound_sharp": Icons.surround_sound_sharp, - "surround_sound_rounded": Icons.surround_sound_rounded, - "surround_sound_outlined": Icons.surround_sound_outlined, - "swap_calls": Icons.swap_calls, - "swap_calls_sharp": Icons.swap_calls_sharp, - "swap_calls_rounded": Icons.swap_calls_rounded, - "swap_calls_outlined": Icons.swap_calls_outlined, - "swap_horiz": Icons.swap_horiz, - "swap_horiz_sharp": Icons.swap_horiz_sharp, - "swap_horiz_rounded": Icons.swap_horiz_rounded, - "swap_horiz_outlined": Icons.swap_horiz_outlined, - "swap_horizontal_circle": Icons.swap_horizontal_circle, - "swap_horizontal_circle_sharp": Icons.swap_horizontal_circle_sharp, - "swap_horizontal_circle_rounded": Icons.swap_horizontal_circle_rounded, - "swap_horizontal_circle_outlined": Icons.swap_horizontal_circle_outlined, - "swap_vert": Icons.swap_vert, - "swap_vert_sharp": Icons.swap_vert_sharp, - "swap_vert_rounded": Icons.swap_vert_rounded, - "swap_vert_outlined": Icons.swap_vert_outlined, - "swap_vert_circle": Icons.swap_vert_circle, - "swap_vert_circle_sharp": Icons.swap_vert_circle_sharp, - "swap_vert_circle_rounded": Icons.swap_vert_circle_rounded, - "swap_vert_circle_outlined": Icons.swap_vert_circle_outlined, - "swap_vertical_circle": Icons.swap_vertical_circle, - "swap_vertical_circle_sharp": Icons.swap_vertical_circle_sharp, - "swap_vertical_circle_rounded": Icons.swap_vertical_circle_rounded, - "swap_vertical_circle_outlined": Icons.swap_vertical_circle_outlined, - "swipe": Icons.swipe, - "swipe_sharp": Icons.swipe_sharp, - "swipe_rounded": Icons.swipe_rounded, - "swipe_outlined": Icons.swipe_outlined, - "swipe_down": Icons.swipe_down, - "swipe_down_sharp": Icons.swipe_down_sharp, - "swipe_down_rounded": Icons.swipe_down_rounded, - "swipe_down_outlined": Icons.swipe_down_outlined, - "swipe_down_alt": Icons.swipe_down_alt, - "swipe_down_alt_sharp": Icons.swipe_down_alt_sharp, - "swipe_down_alt_rounded": Icons.swipe_down_alt_rounded, - "swipe_down_alt_outlined": Icons.swipe_down_alt_outlined, - "swipe_left": Icons.swipe_left, - "swipe_left_sharp": Icons.swipe_left_sharp, - "swipe_left_rounded": Icons.swipe_left_rounded, - "swipe_left_outlined": Icons.swipe_left_outlined, - "swipe_left_alt": Icons.swipe_left_alt, - "swipe_left_alt_sharp": Icons.swipe_left_alt_sharp, - "swipe_left_alt_rounded": Icons.swipe_left_alt_rounded, - "swipe_left_alt_outlined": Icons.swipe_left_alt_outlined, - "swipe_right": Icons.swipe_right, - "swipe_right_sharp": Icons.swipe_right_sharp, - "swipe_right_rounded": Icons.swipe_right_rounded, - "swipe_right_outlined": Icons.swipe_right_outlined, - "swipe_right_alt": Icons.swipe_right_alt, - "swipe_right_alt_sharp": Icons.swipe_right_alt_sharp, - "swipe_right_alt_rounded": Icons.swipe_right_alt_rounded, - "swipe_right_alt_outlined": Icons.swipe_right_alt_outlined, - "swipe_up": Icons.swipe_up, - "swipe_up_sharp": Icons.swipe_up_sharp, - "swipe_up_rounded": Icons.swipe_up_rounded, - "swipe_up_outlined": Icons.swipe_up_outlined, - "swipe_up_alt": Icons.swipe_up_alt, - "swipe_up_alt_sharp": Icons.swipe_up_alt_sharp, - "swipe_up_alt_rounded": Icons.swipe_up_alt_rounded, - "swipe_up_alt_outlined": Icons.swipe_up_alt_outlined, - "swipe_vertical": Icons.swipe_vertical, - "swipe_vertical_sharp": Icons.swipe_vertical_sharp, - "swipe_vertical_rounded": Icons.swipe_vertical_rounded, - "swipe_vertical_outlined": Icons.swipe_vertical_outlined, - "switch_access_shortcut": Icons.switch_access_shortcut, - "switch_access_shortcut_sharp": Icons.switch_access_shortcut_sharp, - "switch_access_shortcut_rounded": Icons.switch_access_shortcut_rounded, - "switch_access_shortcut_outlined": Icons.switch_access_shortcut_outlined, - "switch_access_shortcut_add": Icons.switch_access_shortcut_add, - "switch_access_shortcut_add_sharp": Icons.switch_access_shortcut_add_sharp, - "switch_access_shortcut_add_rounded": - Icons.switch_access_shortcut_add_rounded, - "switch_access_shortcut_add_outlined": - Icons.switch_access_shortcut_add_outlined, - "switch_account": Icons.switch_account, - "switch_account_sharp": Icons.switch_account_sharp, - "switch_account_rounded": Icons.switch_account_rounded, - "switch_account_outlined": Icons.switch_account_outlined, - "switch_camera": Icons.switch_camera, - "switch_camera_sharp": Icons.switch_camera_sharp, - "switch_camera_rounded": Icons.switch_camera_rounded, - "switch_camera_outlined": Icons.switch_camera_outlined, - "switch_left": Icons.switch_left, - "switch_left_sharp": Icons.switch_left_sharp, - "switch_left_rounded": Icons.switch_left_rounded, - "switch_left_outlined": Icons.switch_left_outlined, - "switch_right": Icons.switch_right, - "switch_right_sharp": Icons.switch_right_sharp, - "switch_right_rounded": Icons.switch_right_rounded, - "switch_right_outlined": Icons.switch_right_outlined, - "switch_video": Icons.switch_video, - "switch_video_sharp": Icons.switch_video_sharp, - "switch_video_rounded": Icons.switch_video_rounded, - "switch_video_outlined": Icons.switch_video_outlined, - "synagogue": Icons.synagogue, - "synagogue_sharp": Icons.synagogue_sharp, - "synagogue_rounded": Icons.synagogue_rounded, - "synagogue_outlined": Icons.synagogue_outlined, - "sync": Icons.sync, - "sync_sharp": Icons.sync_sharp, - "sync_rounded": Icons.sync_rounded, - "sync_outlined": Icons.sync_outlined, - "sync_alt": Icons.sync_alt, - "sync_alt_sharp": Icons.sync_alt_sharp, - "sync_alt_rounded": Icons.sync_alt_rounded, - "sync_alt_outlined": Icons.sync_alt_outlined, - "sync_disabled": Icons.sync_disabled, - "sync_disabled_sharp": Icons.sync_disabled_sharp, - "sync_disabled_rounded": Icons.sync_disabled_rounded, - "sync_disabled_outlined": Icons.sync_disabled_outlined, - "sync_lock": Icons.sync_lock, - "sync_lock_sharp": Icons.sync_lock_sharp, - "sync_lock_rounded": Icons.sync_lock_rounded, - "sync_lock_outlined": Icons.sync_lock_outlined, - "sync_problem": Icons.sync_problem, - "sync_problem_sharp": Icons.sync_problem_sharp, - "sync_problem_rounded": Icons.sync_problem_rounded, - "sync_problem_outlined": Icons.sync_problem_outlined, - "system_security_update": Icons.system_security_update, - "system_security_update_sharp": Icons.system_security_update_sharp, - "system_security_update_rounded": Icons.system_security_update_rounded, - "system_security_update_outlined": Icons.system_security_update_outlined, - "system_security_update_good": Icons.system_security_update_good, - "system_security_update_good_sharp": Icons.system_security_update_good_sharp, - "system_security_update_good_rounded": - Icons.system_security_update_good_rounded, - "system_security_update_good_outlined": - Icons.system_security_update_good_outlined, - "system_security_update_warning": Icons.system_security_update_warning, - "system_security_update_warning_sharp": - Icons.system_security_update_warning_sharp, - "system_security_update_warning_rounded": - Icons.system_security_update_warning_rounded, - "system_security_update_warning_outlined": - Icons.system_security_update_warning_outlined, - "system_update": Icons.system_update, - "system_update_sharp": Icons.system_update_sharp, - "system_update_rounded": Icons.system_update_rounded, - "system_update_outlined": Icons.system_update_outlined, - "system_update_alt": Icons.system_update_alt, - "system_update_alt_sharp": Icons.system_update_alt_sharp, - "system_update_alt_rounded": Icons.system_update_alt_rounded, - "system_update_alt_outlined": Icons.system_update_alt_outlined, - "system_update_tv": Icons.system_update_tv, - "system_update_tv_sharp": Icons.system_update_tv_sharp, - "system_update_tv_rounded": Icons.system_update_tv_rounded, - "system_update_tv_outlined": Icons.system_update_tv_outlined, - "tab": Icons.tab, - "tab_sharp": Icons.tab_sharp, - "tab_rounded": Icons.tab_rounded, - "tab_outlined": Icons.tab_outlined, - "tab_unselected": Icons.tab_unselected, - "tab_unselected_sharp": Icons.tab_unselected_sharp, - "tab_unselected_rounded": Icons.tab_unselected_rounded, - "tab_unselected_outlined": Icons.tab_unselected_outlined, - "table_bar": Icons.table_bar, - "table_bar_sharp": Icons.table_bar_sharp, - "table_bar_rounded": Icons.table_bar_rounded, - "table_bar_outlined": Icons.table_bar_outlined, - "table_chart": Icons.table_chart, - "table_chart_sharp": Icons.table_chart_sharp, - "table_chart_rounded": Icons.table_chart_rounded, - "table_chart_outlined": Icons.table_chart_outlined, - "table_restaurant": Icons.table_restaurant, - "table_restaurant_sharp": Icons.table_restaurant_sharp, - "table_restaurant_rounded": Icons.table_restaurant_rounded, - "table_restaurant_outlined": Icons.table_restaurant_outlined, - "table_rows": Icons.table_rows, - "table_rows_sharp": Icons.table_rows_sharp, - "table_rows_rounded": Icons.table_rows_rounded, - "table_rows_outlined": Icons.table_rows_outlined, - "table_view": Icons.table_view, - "table_view_sharp": Icons.table_view_sharp, - "table_view_rounded": Icons.table_view_rounded, - "table_view_outlined": Icons.table_view_outlined, - "tablet": Icons.tablet, - "tablet_sharp": Icons.tablet_sharp, - "tablet_rounded": Icons.tablet_rounded, - "tablet_outlined": Icons.tablet_outlined, - "tablet_android": Icons.tablet_android, - "tablet_android_sharp": Icons.tablet_android_sharp, - "tablet_android_rounded": Icons.tablet_android_rounded, - "tablet_android_outlined": Icons.tablet_android_outlined, - "tablet_mac": Icons.tablet_mac, - "tablet_mac_sharp": Icons.tablet_mac_sharp, - "tablet_mac_rounded": Icons.tablet_mac_rounded, - "tablet_mac_outlined": Icons.tablet_mac_outlined, - "tag": Icons.tag, - "tag_sharp": Icons.tag_sharp, - "tag_rounded": Icons.tag_rounded, - "tag_outlined": Icons.tag_outlined, - "tag_faces": Icons.tag_faces, - "tag_faces_sharp": Icons.tag_faces_sharp, - "tag_faces_rounded": Icons.tag_faces_rounded, - "tag_faces_outlined": Icons.tag_faces_outlined, - "takeout_dining": Icons.takeout_dining, - "takeout_dining_sharp": Icons.takeout_dining_sharp, - "takeout_dining_rounded": Icons.takeout_dining_rounded, - "takeout_dining_outlined": Icons.takeout_dining_outlined, - "tap_and_play": Icons.tap_and_play, - "tap_and_play_sharp": Icons.tap_and_play_sharp, - "tap_and_play_rounded": Icons.tap_and_play_rounded, - "tap_and_play_outlined": Icons.tap_and_play_outlined, - "tapas": Icons.tapas, - "tapas_sharp": Icons.tapas_sharp, - "tapas_rounded": Icons.tapas_rounded, - "tapas_outlined": Icons.tapas_outlined, - "task": Icons.task, - "task_sharp": Icons.task_sharp, - "task_rounded": Icons.task_rounded, - "task_outlined": Icons.task_outlined, - "task_alt": Icons.task_alt, - "task_alt_sharp": Icons.task_alt_sharp, - "task_alt_rounded": Icons.task_alt_rounded, - "task_alt_outlined": Icons.task_alt_outlined, - "taxi_alert": Icons.taxi_alert, - "taxi_alert_sharp": Icons.taxi_alert_sharp, - "taxi_alert_rounded": Icons.taxi_alert_rounded, - "taxi_alert_outlined": Icons.taxi_alert_outlined, - "telegram": Icons.telegram, - "telegram_sharp": Icons.telegram_sharp, - "telegram_rounded": Icons.telegram_rounded, - "telegram_outlined": Icons.telegram_outlined, - "temple_buddhist": Icons.temple_buddhist, - "temple_buddhist_sharp": Icons.temple_buddhist_sharp, - "temple_buddhist_rounded": Icons.temple_buddhist_rounded, - "temple_buddhist_outlined": Icons.temple_buddhist_outlined, - "temple_hindu": Icons.temple_hindu, - "temple_hindu_sharp": Icons.temple_hindu_sharp, - "temple_hindu_rounded": Icons.temple_hindu_rounded, - "temple_hindu_outlined": Icons.temple_hindu_outlined, - "terminal": Icons.terminal, - "terminal_sharp": Icons.terminal_sharp, - "terminal_rounded": Icons.terminal_rounded, - "terminal_outlined": Icons.terminal_outlined, - "terrain": Icons.terrain, - "terrain_sharp": Icons.terrain_sharp, - "terrain_rounded": Icons.terrain_rounded, - "terrain_outlined": Icons.terrain_outlined, - "text_decrease": Icons.text_decrease, - "text_decrease_sharp": Icons.text_decrease_sharp, - "text_decrease_rounded": Icons.text_decrease_rounded, - "text_decrease_outlined": Icons.text_decrease_outlined, - "text_fields": Icons.text_fields, - "text_fields_sharp": Icons.text_fields_sharp, - "text_fields_rounded": Icons.text_fields_rounded, - "text_fields_outlined": Icons.text_fields_outlined, - "text_format": Icons.text_format, - "text_format_sharp": Icons.text_format_sharp, - "text_format_rounded": Icons.text_format_rounded, - "text_format_outlined": Icons.text_format_outlined, - "text_increase": Icons.text_increase, - "text_increase_sharp": Icons.text_increase_sharp, - "text_increase_rounded": Icons.text_increase_rounded, - "text_increase_outlined": Icons.text_increase_outlined, - "text_rotate_up": Icons.text_rotate_up, - "text_rotate_up_sharp": Icons.text_rotate_up_sharp, - "text_rotate_up_rounded": Icons.text_rotate_up_rounded, - "text_rotate_up_outlined": Icons.text_rotate_up_outlined, - "text_rotate_vertical": Icons.text_rotate_vertical, - "text_rotate_vertical_sharp": Icons.text_rotate_vertical_sharp, - "text_rotate_vertical_rounded": Icons.text_rotate_vertical_rounded, - "text_rotate_vertical_outlined": Icons.text_rotate_vertical_outlined, - "text_rotation_angledown": Icons.text_rotation_angledown, - "text_rotation_angledown_sharp": Icons.text_rotation_angledown_sharp, - "text_rotation_angledown_rounded": Icons.text_rotation_angledown_rounded, - "text_rotation_angledown_outlined": Icons.text_rotation_angledown_outlined, - "text_rotation_angleup": Icons.text_rotation_angleup, - "text_rotation_angleup_sharp": Icons.text_rotation_angleup_sharp, - "text_rotation_angleup_rounded": Icons.text_rotation_angleup_rounded, - "text_rotation_angleup_outlined": Icons.text_rotation_angleup_outlined, - "text_rotation_down": Icons.text_rotation_down, - "text_rotation_down_sharp": Icons.text_rotation_down_sharp, - "text_rotation_down_rounded": Icons.text_rotation_down_rounded, - "text_rotation_down_outlined": Icons.text_rotation_down_outlined, - "text_rotation_none": Icons.text_rotation_none, - "text_rotation_none_sharp": Icons.text_rotation_none_sharp, - "text_rotation_none_rounded": Icons.text_rotation_none_rounded, - "text_rotation_none_outlined": Icons.text_rotation_none_outlined, - "text_snippet": Icons.text_snippet, - "text_snippet_sharp": Icons.text_snippet_sharp, - "text_snippet_rounded": Icons.text_snippet_rounded, - "text_snippet_outlined": Icons.text_snippet_outlined, - "textsms": Icons.textsms, - "textsms_sharp": Icons.textsms_sharp, - "textsms_rounded": Icons.textsms_rounded, - "textsms_outlined": Icons.textsms_outlined, - "texture": Icons.texture, - "texture_sharp": Icons.texture_sharp, - "texture_rounded": Icons.texture_rounded, - "texture_outlined": Icons.texture_outlined, - "theater_comedy": Icons.theater_comedy, - "theater_comedy_sharp": Icons.theater_comedy_sharp, - "theater_comedy_rounded": Icons.theater_comedy_rounded, - "theater_comedy_outlined": Icons.theater_comedy_outlined, - "theaters": Icons.theaters, - "theaters_sharp": Icons.theaters_sharp, - "theaters_rounded": Icons.theaters_rounded, - "theaters_outlined": Icons.theaters_outlined, - "thermostat": Icons.thermostat, - "thermostat_sharp": Icons.thermostat_sharp, - "thermostat_rounded": Icons.thermostat_rounded, - "thermostat_outlined": Icons.thermostat_outlined, - "thermostat_auto": Icons.thermostat_auto, - "thermostat_auto_sharp": Icons.thermostat_auto_sharp, - "thermostat_auto_rounded": Icons.thermostat_auto_rounded, - "thermostat_auto_outlined": Icons.thermostat_auto_outlined, - "thumb_down": Icons.thumb_down, - "thumb_down_sharp": Icons.thumb_down_sharp, - "thumb_down_rounded": Icons.thumb_down_rounded, - "thumb_down_outlined": Icons.thumb_down_outlined, - "thumb_down_alt": Icons.thumb_down_alt, - "thumb_down_alt_sharp": Icons.thumb_down_alt_sharp, - "thumb_down_alt_rounded": Icons.thumb_down_alt_rounded, - "thumb_down_alt_outlined": Icons.thumb_down_alt_outlined, - "thumb_down_off_alt": Icons.thumb_down_off_alt, - "thumb_down_off_alt_sharp": Icons.thumb_down_off_alt_sharp, - "thumb_down_off_alt_rounded": Icons.thumb_down_off_alt_rounded, - "thumb_down_off_alt_outlined": Icons.thumb_down_off_alt_outlined, - "thumb_up": Icons.thumb_up, - "thumb_up_sharp": Icons.thumb_up_sharp, - "thumb_up_rounded": Icons.thumb_up_rounded, - "thumb_up_outlined": Icons.thumb_up_outlined, - "thumb_up_alt": Icons.thumb_up_alt, - "thumb_up_alt_sharp": Icons.thumb_up_alt_sharp, - "thumb_up_alt_rounded": Icons.thumb_up_alt_rounded, - "thumb_up_alt_outlined": Icons.thumb_up_alt_outlined, - "thumb_up_off_alt": Icons.thumb_up_off_alt, - "thumb_up_off_alt_sharp": Icons.thumb_up_off_alt_sharp, - "thumb_up_off_alt_rounded": Icons.thumb_up_off_alt_rounded, - "thumb_up_off_alt_outlined": Icons.thumb_up_off_alt_outlined, - "thumbs_up_down": Icons.thumbs_up_down, - "thumbs_up_down_sharp": Icons.thumbs_up_down_sharp, - "thumbs_up_down_rounded": Icons.thumbs_up_down_rounded, - "thumbs_up_down_outlined": Icons.thumbs_up_down_outlined, - "thunderstorm": Icons.thunderstorm, - "thunderstorm_sharp": Icons.thunderstorm_sharp, - "thunderstorm_rounded": Icons.thunderstorm_rounded, - "thunderstorm_outlined": Icons.thunderstorm_outlined, - "tiktok": Icons.tiktok, - "tiktok_sharp": Icons.tiktok_sharp, - "tiktok_rounded": Icons.tiktok_rounded, - "tiktok_outlined": Icons.tiktok_outlined, - "time_to_leave": Icons.time_to_leave, - "time_to_leave_sharp": Icons.time_to_leave_sharp, - "time_to_leave_rounded": Icons.time_to_leave_rounded, - "time_to_leave_outlined": Icons.time_to_leave_outlined, - "timelapse": Icons.timelapse, - "timelapse_sharp": Icons.timelapse_sharp, - "timelapse_rounded": Icons.timelapse_rounded, - "timelapse_outlined": Icons.timelapse_outlined, - "timeline": Icons.timeline, - "timeline_sharp": Icons.timeline_sharp, - "timeline_rounded": Icons.timeline_rounded, - "timeline_outlined": Icons.timeline_outlined, - "timer": Icons.timer, - "timer_sharp": Icons.timer_sharp, - "timer_rounded": Icons.timer_rounded, - "timer_outlined": Icons.timer_outlined, - "timer_10": Icons.timer_10, - "timer_10_sharp": Icons.timer_10_sharp, - "timer_10_rounded": Icons.timer_10_rounded, - "timer_10_outlined": Icons.timer_10_outlined, - "timer_10_select": Icons.timer_10_select, - "timer_10_select_sharp": Icons.timer_10_select_sharp, - "timer_10_select_rounded": Icons.timer_10_select_rounded, - "timer_10_select_outlined": Icons.timer_10_select_outlined, - "timer_3": Icons.timer_3, - "timer_3_sharp": Icons.timer_3_sharp, - "timer_3_rounded": Icons.timer_3_rounded, - "timer_3_outlined": Icons.timer_3_outlined, - "timer_3_select": Icons.timer_3_select, - "timer_3_select_sharp": Icons.timer_3_select_sharp, - "timer_3_select_rounded": Icons.timer_3_select_rounded, - "timer_3_select_outlined": Icons.timer_3_select_outlined, - "timer_off": Icons.timer_off, - "timer_off_sharp": Icons.timer_off_sharp, - "timer_off_rounded": Icons.timer_off_rounded, - "timer_off_outlined": Icons.timer_off_outlined, - "tips_and_updates": Icons.tips_and_updates, - "tips_and_updates_sharp": Icons.tips_and_updates_sharp, - "tips_and_updates_rounded": Icons.tips_and_updates_rounded, - "tips_and_updates_outlined": Icons.tips_and_updates_outlined, - "tire_repair": Icons.tire_repair, - "tire_repair_sharp": Icons.tire_repair_sharp, - "tire_repair_rounded": Icons.tire_repair_rounded, - "tire_repair_outlined": Icons.tire_repair_outlined, - "title": Icons.title, - "title_sharp": Icons.title_sharp, - "title_rounded": Icons.title_rounded, - "title_outlined": Icons.title_outlined, - "toc": Icons.toc, - "toc_sharp": Icons.toc_sharp, - "toc_rounded": Icons.toc_rounded, - "toc_outlined": Icons.toc_outlined, - "today": Icons.today, - "today_sharp": Icons.today_sharp, - "today_rounded": Icons.today_rounded, - "today_outlined": Icons.today_outlined, - "toggle_off": Icons.toggle_off, - "toggle_off_sharp": Icons.toggle_off_sharp, - "toggle_off_rounded": Icons.toggle_off_rounded, - "toggle_off_outlined": Icons.toggle_off_outlined, - "toggle_on": Icons.toggle_on, - "toggle_on_sharp": Icons.toggle_on_sharp, - "toggle_on_rounded": Icons.toggle_on_rounded, - "toggle_on_outlined": Icons.toggle_on_outlined, - "token": Icons.token, - "token_sharp": Icons.token_sharp, - "token_rounded": Icons.token_rounded, - "token_outlined": Icons.token_outlined, - "toll": Icons.toll, - "toll_sharp": Icons.toll_sharp, - "toll_rounded": Icons.toll_rounded, - "toll_outlined": Icons.toll_outlined, - "tonality": Icons.tonality, - "tonality_sharp": Icons.tonality_sharp, - "tonality_rounded": Icons.tonality_rounded, - "tonality_outlined": Icons.tonality_outlined, - "topic": Icons.topic, - "topic_sharp": Icons.topic_sharp, - "topic_rounded": Icons.topic_rounded, - "topic_outlined": Icons.topic_outlined, - "tornado": Icons.tornado, - "tornado_sharp": Icons.tornado_sharp, - "tornado_rounded": Icons.tornado_rounded, - "tornado_outlined": Icons.tornado_outlined, - "touch_app": Icons.touch_app, - "touch_app_sharp": Icons.touch_app_sharp, - "touch_app_rounded": Icons.touch_app_rounded, - "touch_app_outlined": Icons.touch_app_outlined, - "tour": Icons.tour, - "tour_sharp": Icons.tour_sharp, - "tour_rounded": Icons.tour_rounded, - "tour_outlined": Icons.tour_outlined, - "toys": Icons.toys, - "toys_sharp": Icons.toys_sharp, - "toys_rounded": Icons.toys_rounded, - "toys_outlined": Icons.toys_outlined, - "track_changes": Icons.track_changes, - "track_changes_sharp": Icons.track_changes_sharp, - "track_changes_rounded": Icons.track_changes_rounded, - "track_changes_outlined": Icons.track_changes_outlined, - "traffic": Icons.traffic, - "traffic_sharp": Icons.traffic_sharp, - "traffic_rounded": Icons.traffic_rounded, - "traffic_outlined": Icons.traffic_outlined, - "train": Icons.train, - "train_sharp": Icons.train_sharp, - "train_rounded": Icons.train_rounded, - "train_outlined": Icons.train_outlined, - "tram": Icons.tram, - "tram_sharp": Icons.tram_sharp, - "tram_rounded": Icons.tram_rounded, - "tram_outlined": Icons.tram_outlined, - "transcribe": Icons.transcribe, - "transcribe_sharp": Icons.transcribe_sharp, - "transcribe_rounded": Icons.transcribe_rounded, - "transcribe_outlined": Icons.transcribe_outlined, - "transfer_within_a_station": Icons.transfer_within_a_station, - "transfer_within_a_station_sharp": Icons.transfer_within_a_station_sharp, - "transfer_within_a_station_rounded": Icons.transfer_within_a_station_rounded, - "transfer_within_a_station_outlined": - Icons.transfer_within_a_station_outlined, - "transform": Icons.transform, - "transform_sharp": Icons.transform_sharp, - "transform_rounded": Icons.transform_rounded, - "transform_outlined": Icons.transform_outlined, - "transgender": Icons.transgender, - "transgender_sharp": Icons.transgender_sharp, - "transgender_rounded": Icons.transgender_rounded, - "transgender_outlined": Icons.transgender_outlined, - "transit_enterexit": Icons.transit_enterexit, - "transit_enterexit_sharp": Icons.transit_enterexit_sharp, - "transit_enterexit_rounded": Icons.transit_enterexit_rounded, - "transit_enterexit_outlined": Icons.transit_enterexit_outlined, - "translate": Icons.translate, - "translate_sharp": Icons.translate_sharp, - "translate_rounded": Icons.translate_rounded, - "translate_outlined": Icons.translate_outlined, - "travel_explore": Icons.travel_explore, - "travel_explore_sharp": Icons.travel_explore_sharp, - "travel_explore_rounded": Icons.travel_explore_rounded, - "travel_explore_outlined": Icons.travel_explore_outlined, - "trending_down": Icons.trending_down, - "trending_down_sharp": Icons.trending_down_sharp, - "trending_down_rounded": Icons.trending_down_rounded, - "trending_down_outlined": Icons.trending_down_outlined, - "trending_flat": Icons.trending_flat, - "trending_flat_sharp": Icons.trending_flat_sharp, - "trending_flat_rounded": Icons.trending_flat_rounded, - "trending_flat_outlined": Icons.trending_flat_outlined, - "trending_neutral": Icons.trending_neutral, - "trending_neutral_sharp": Icons.trending_neutral_sharp, - "trending_neutral_rounded": Icons.trending_neutral_rounded, - "trending_neutral_outlined": Icons.trending_neutral_outlined, - "trending_up": Icons.trending_up, - "trending_up_sharp": Icons.trending_up_sharp, - "trending_up_rounded": Icons.trending_up_rounded, - "trending_up_outlined": Icons.trending_up_outlined, - "trip_origin": Icons.trip_origin, - "trip_origin_sharp": Icons.trip_origin_sharp, - "trip_origin_rounded": Icons.trip_origin_rounded, - "trip_origin_outlined": Icons.trip_origin_outlined, - "trolley": Icons.trolley, - "troubleshoot": Icons.troubleshoot, - "troubleshoot_sharp": Icons.troubleshoot_sharp, - "troubleshoot_rounded": Icons.troubleshoot_rounded, - "troubleshoot_outlined": Icons.troubleshoot_outlined, - "try_sms_star": Icons.try_sms_star, - "try_sms_star_sharp": Icons.try_sms_star_sharp, - "try_sms_star_rounded": Icons.try_sms_star_rounded, - "try_sms_star_outlined": Icons.try_sms_star_outlined, - "tsunami": Icons.tsunami, - "tsunami_sharp": Icons.tsunami_sharp, - "tsunami_rounded": Icons.tsunami_rounded, - "tsunami_outlined": Icons.tsunami_outlined, - "tty": Icons.tty, - "tty_sharp": Icons.tty_sharp, - "tty_rounded": Icons.tty_rounded, - "tty_outlined": Icons.tty_outlined, - "tune": Icons.tune, - "tune_sharp": Icons.tune_sharp, - "tune_rounded": Icons.tune_rounded, - "tune_outlined": Icons.tune_outlined, - "tungsten": Icons.tungsten, - "tungsten_sharp": Icons.tungsten_sharp, - "tungsten_rounded": Icons.tungsten_rounded, - "tungsten_outlined": Icons.tungsten_outlined, - "turn_left": Icons.turn_left, - "turn_left_sharp": Icons.turn_left_sharp, - "turn_left_rounded": Icons.turn_left_rounded, - "turn_left_outlined": Icons.turn_left_outlined, - "turn_right": Icons.turn_right, - "turn_right_sharp": Icons.turn_right_sharp, - "turn_right_rounded": Icons.turn_right_rounded, - "turn_right_outlined": Icons.turn_right_outlined, - "turn_sharp_left": Icons.turn_sharp_left, - "turn_sharp_left_sharp": Icons.turn_sharp_left_sharp, - "turn_sharp_left_rounded": Icons.turn_sharp_left_rounded, - "turn_sharp_left_outlined": Icons.turn_sharp_left_outlined, - "turn_sharp_right": Icons.turn_sharp_right, - "turn_sharp_right_sharp": Icons.turn_sharp_right_sharp, - "turn_sharp_right_rounded": Icons.turn_sharp_right_rounded, - "turn_sharp_right_outlined": Icons.turn_sharp_right_outlined, - "turn_slight_left": Icons.turn_slight_left, - "turn_slight_left_sharp": Icons.turn_slight_left_sharp, - "turn_slight_left_rounded": Icons.turn_slight_left_rounded, - "turn_slight_left_outlined": Icons.turn_slight_left_outlined, - "turn_slight_right": Icons.turn_slight_right, - "turn_slight_right_sharp": Icons.turn_slight_right_sharp, - "turn_slight_right_rounded": Icons.turn_slight_right_rounded, - "turn_slight_right_outlined": Icons.turn_slight_right_outlined, - "turned_in": Icons.turned_in, - "turned_in_sharp": Icons.turned_in_sharp, - "turned_in_rounded": Icons.turned_in_rounded, - "turned_in_outlined": Icons.turned_in_outlined, - "turned_in_not": Icons.turned_in_not, - "turned_in_not_sharp": Icons.turned_in_not_sharp, - "turned_in_not_rounded": Icons.turned_in_not_rounded, - "turned_in_not_outlined": Icons.turned_in_not_outlined, - "tv": Icons.tv, - "tv_sharp": Icons.tv_sharp, - "tv_rounded": Icons.tv_rounded, - "tv_outlined": Icons.tv_outlined, - "tv_off": Icons.tv_off, - "tv_off_sharp": Icons.tv_off_sharp, - "tv_off_rounded": Icons.tv_off_rounded, - "tv_off_outlined": Icons.tv_off_outlined, - "two_wheeler": Icons.two_wheeler, - "two_wheeler_sharp": Icons.two_wheeler_sharp, - "two_wheeler_rounded": Icons.two_wheeler_rounded, - "two_wheeler_outlined": Icons.two_wheeler_outlined, - "type_specimen": Icons.type_specimen, - "type_specimen_sharp": Icons.type_specimen_sharp, - "type_specimen_rounded": Icons.type_specimen_rounded, - "type_specimen_outlined": Icons.type_specimen_outlined, - "u_turn_left": Icons.u_turn_left, - "u_turn_left_sharp": Icons.u_turn_left_sharp, - "u_turn_left_rounded": Icons.u_turn_left_rounded, - "u_turn_left_outlined": Icons.u_turn_left_outlined, - "u_turn_right": Icons.u_turn_right, - "u_turn_right_sharp": Icons.u_turn_right_sharp, - "u_turn_right_rounded": Icons.u_turn_right_rounded, - "u_turn_right_outlined": Icons.u_turn_right_outlined, - "umbrella": Icons.umbrella, - "umbrella_sharp": Icons.umbrella_sharp, - "umbrella_rounded": Icons.umbrella_rounded, - "umbrella_outlined": Icons.umbrella_outlined, - "unarchive": Icons.unarchive, - "unarchive_sharp": Icons.unarchive_sharp, - "unarchive_rounded": Icons.unarchive_rounded, - "unarchive_outlined": Icons.unarchive_outlined, - "undo": Icons.undo, - "undo_sharp": Icons.undo_sharp, - "undo_rounded": Icons.undo_rounded, - "undo_outlined": Icons.undo_outlined, - "unfold_less": Icons.unfold_less, - "unfold_less_sharp": Icons.unfold_less_sharp, - "unfold_less_rounded": Icons.unfold_less_rounded, - "unfold_less_outlined": Icons.unfold_less_outlined, - "unfold_less_double": Icons.unfold_less_double, - "unfold_less_double_sharp": Icons.unfold_less_double_sharp, - "unfold_less_double_rounded": Icons.unfold_less_double_rounded, - "unfold_less_double_outlined": Icons.unfold_less_double_outlined, - "unfold_more": Icons.unfold_more, - "unfold_more_sharp": Icons.unfold_more_sharp, - "unfold_more_rounded": Icons.unfold_more_rounded, - "unfold_more_outlined": Icons.unfold_more_outlined, - "unfold_more_double": Icons.unfold_more_double, - "unfold_more_double_sharp": Icons.unfold_more_double_sharp, - "unfold_more_double_rounded": Icons.unfold_more_double_rounded, - "unfold_more_double_outlined": Icons.unfold_more_double_outlined, - "unpublished": Icons.unpublished, - "unpublished_sharp": Icons.unpublished_sharp, - "unpublished_rounded": Icons.unpublished_rounded, - "unpublished_outlined": Icons.unpublished_outlined, - "unsubscribe": Icons.unsubscribe, - "unsubscribe_sharp": Icons.unsubscribe_sharp, - "unsubscribe_rounded": Icons.unsubscribe_rounded, - "unsubscribe_outlined": Icons.unsubscribe_outlined, - "upcoming": Icons.upcoming, - "upcoming_sharp": Icons.upcoming_sharp, - "upcoming_rounded": Icons.upcoming_rounded, - "upcoming_outlined": Icons.upcoming_outlined, - "update": Icons.update, - "update_sharp": Icons.update_sharp, - "update_rounded": Icons.update_rounded, - "update_outlined": Icons.update_outlined, - "update_disabled": Icons.update_disabled, - "update_disabled_sharp": Icons.update_disabled_sharp, - "update_disabled_rounded": Icons.update_disabled_rounded, - "update_disabled_outlined": Icons.update_disabled_outlined, - "upgrade": Icons.upgrade, - "upgrade_sharp": Icons.upgrade_sharp, - "upgrade_rounded": Icons.upgrade_rounded, - "upgrade_outlined": Icons.upgrade_outlined, - "upload": Icons.upload, - "upload_sharp": Icons.upload_sharp, - "upload_rounded": Icons.upload_rounded, - "upload_outlined": Icons.upload_outlined, - "upload_file": Icons.upload_file, - "upload_file_sharp": Icons.upload_file_sharp, - "upload_file_rounded": Icons.upload_file_rounded, - "upload_file_outlined": Icons.upload_file_outlined, - "usb": Icons.usb, - "usb_sharp": Icons.usb_sharp, - "usb_rounded": Icons.usb_rounded, - "usb_outlined": Icons.usb_outlined, - "usb_off": Icons.usb_off, - "usb_off_sharp": Icons.usb_off_sharp, - "usb_off_rounded": Icons.usb_off_rounded, - "usb_off_outlined": Icons.usb_off_outlined, - "vaccines": Icons.vaccines, - "vaccines_sharp": Icons.vaccines_sharp, - "vaccines_rounded": Icons.vaccines_rounded, - "vaccines_outlined": Icons.vaccines_outlined, - "vape_free": Icons.vape_free, - "vape_free_sharp": Icons.vape_free_sharp, - "vape_free_rounded": Icons.vape_free_rounded, - "vape_free_outlined": Icons.vape_free_outlined, - "vaping_rooms": Icons.vaping_rooms, - "vaping_rooms_sharp": Icons.vaping_rooms_sharp, - "vaping_rooms_rounded": Icons.vaping_rooms_rounded, - "vaping_rooms_outlined": Icons.vaping_rooms_outlined, - "verified": Icons.verified, - "verified_sharp": Icons.verified_sharp, - "verified_rounded": Icons.verified_rounded, - "verified_outlined": Icons.verified_outlined, - "verified_user": Icons.verified_user, - "verified_user_sharp": Icons.verified_user_sharp, - "verified_user_rounded": Icons.verified_user_rounded, - "verified_user_outlined": Icons.verified_user_outlined, - "vertical_align_bottom": Icons.vertical_align_bottom, - "vertical_align_bottom_sharp": Icons.vertical_align_bottom_sharp, - "vertical_align_bottom_rounded": Icons.vertical_align_bottom_rounded, - "vertical_align_bottom_outlined": Icons.vertical_align_bottom_outlined, - "vertical_align_center": Icons.vertical_align_center, - "vertical_align_center_sharp": Icons.vertical_align_center_sharp, - "vertical_align_center_rounded": Icons.vertical_align_center_rounded, - "vertical_align_center_outlined": Icons.vertical_align_center_outlined, - "vertical_align_top": Icons.vertical_align_top, - "vertical_align_top_sharp": Icons.vertical_align_top_sharp, - "vertical_align_top_rounded": Icons.vertical_align_top_rounded, - "vertical_align_top_outlined": Icons.vertical_align_top_outlined, - "vertical_distribute": Icons.vertical_distribute, - "vertical_distribute_sharp": Icons.vertical_distribute_sharp, - "vertical_distribute_rounded": Icons.vertical_distribute_rounded, - "vertical_distribute_outlined": Icons.vertical_distribute_outlined, - "vertical_shades": Icons.vertical_shades, - "vertical_shades_sharp": Icons.vertical_shades_sharp, - "vertical_shades_rounded": Icons.vertical_shades_rounded, - "vertical_shades_outlined": Icons.vertical_shades_outlined, - "vertical_shades_closed": Icons.vertical_shades_closed, - "vertical_shades_closed_sharp": Icons.vertical_shades_closed_sharp, - "vertical_shades_closed_rounded": Icons.vertical_shades_closed_rounded, - "vertical_shades_closed_outlined": Icons.vertical_shades_closed_outlined, - "vertical_split": Icons.vertical_split, - "vertical_split_sharp": Icons.vertical_split_sharp, - "vertical_split_rounded": Icons.vertical_split_rounded, - "vertical_split_outlined": Icons.vertical_split_outlined, - "vibration": Icons.vibration, - "vibration_sharp": Icons.vibration_sharp, - "vibration_rounded": Icons.vibration_rounded, - "vibration_outlined": Icons.vibration_outlined, - "video_call": Icons.video_call, - "video_call_sharp": Icons.video_call_sharp, - "video_call_rounded": Icons.video_call_rounded, - "video_call_outlined": Icons.video_call_outlined, - "video_camera_back": Icons.video_camera_back, - "video_camera_back_sharp": Icons.video_camera_back_sharp, - "video_camera_back_rounded": Icons.video_camera_back_rounded, - "video_camera_back_outlined": Icons.video_camera_back_outlined, - "video_camera_front": Icons.video_camera_front, - "video_camera_front_sharp": Icons.video_camera_front_sharp, - "video_camera_front_rounded": Icons.video_camera_front_rounded, - "video_camera_front_outlined": Icons.video_camera_front_outlined, - "video_chat": Icons.video_chat, - "video_chat_sharp": Icons.video_chat_sharp, - "video_chat_rounded": Icons.video_chat_rounded, - "video_chat_outlined": Icons.video_chat_outlined, - "video_collection": Icons.video_collection, - "video_collection_sharp": Icons.video_collection_sharp, - "video_collection_rounded": Icons.video_collection_rounded, - "video_collection_outlined": Icons.video_collection_outlined, - "video_file": Icons.video_file, - "video_file_sharp": Icons.video_file_sharp, - "video_file_rounded": Icons.video_file_rounded, - "video_file_outlined": Icons.video_file_outlined, - "video_label": Icons.video_label, - "video_label_sharp": Icons.video_label_sharp, - "video_label_rounded": Icons.video_label_rounded, - "video_label_outlined": Icons.video_label_outlined, - "video_library": Icons.video_library, - "video_library_sharp": Icons.video_library_sharp, - "video_library_rounded": Icons.video_library_rounded, - "video_library_outlined": Icons.video_library_outlined, - "video_settings": Icons.video_settings, - "video_settings_sharp": Icons.video_settings_sharp, - "video_settings_rounded": Icons.video_settings_rounded, - "video_settings_outlined": Icons.video_settings_outlined, - "video_stable": Icons.video_stable, - "video_stable_sharp": Icons.video_stable_sharp, - "video_stable_rounded": Icons.video_stable_rounded, - "video_stable_outlined": Icons.video_stable_outlined, - "videocam": Icons.videocam, - "videocam_sharp": Icons.videocam_sharp, - "videocam_rounded": Icons.videocam_rounded, - "videocam_outlined": Icons.videocam_outlined, - "videocam_off": Icons.videocam_off, - "videocam_off_sharp": Icons.videocam_off_sharp, - "videocam_off_rounded": Icons.videocam_off_rounded, - "videocam_off_outlined": Icons.videocam_off_outlined, - "videogame_asset": Icons.videogame_asset, - "videogame_asset_sharp": Icons.videogame_asset_sharp, - "videogame_asset_rounded": Icons.videogame_asset_rounded, - "videogame_asset_outlined": Icons.videogame_asset_outlined, - "videogame_asset_off": Icons.videogame_asset_off, - "videogame_asset_off_sharp": Icons.videogame_asset_off_sharp, - "videogame_asset_off_rounded": Icons.videogame_asset_off_rounded, - "videogame_asset_off_outlined": Icons.videogame_asset_off_outlined, - "view_agenda": Icons.view_agenda, - "view_agenda_sharp": Icons.view_agenda_sharp, - "view_agenda_rounded": Icons.view_agenda_rounded, - "view_agenda_outlined": Icons.view_agenda_outlined, - "view_array": Icons.view_array, - "view_array_sharp": Icons.view_array_sharp, - "view_array_rounded": Icons.view_array_rounded, - "view_array_outlined": Icons.view_array_outlined, - "view_carousel": Icons.view_carousel, - "view_carousel_sharp": Icons.view_carousel_sharp, - "view_carousel_rounded": Icons.view_carousel_rounded, - "view_carousel_outlined": Icons.view_carousel_outlined, - "view_column": Icons.view_column, - "view_column_sharp": Icons.view_column_sharp, - "view_column_rounded": Icons.view_column_rounded, - "view_column_outlined": Icons.view_column_outlined, - "view_comfortable": Icons.view_comfortable, - "view_comfortable_sharp": Icons.view_comfortable_sharp, - "view_comfortable_rounded": Icons.view_comfortable_rounded, - "view_comfortable_outlined": Icons.view_comfortable_outlined, - "view_comfy": Icons.view_comfy, - "view_comfy_sharp": Icons.view_comfy_sharp, - "view_comfy_rounded": Icons.view_comfy_rounded, - "view_comfy_outlined": Icons.view_comfy_outlined, - "view_comfy_alt": Icons.view_comfy_alt, - "view_comfy_alt_sharp": Icons.view_comfy_alt_sharp, - "view_comfy_alt_rounded": Icons.view_comfy_alt_rounded, - "view_comfy_alt_outlined": Icons.view_comfy_alt_outlined, - "view_compact": Icons.view_compact, - "view_compact_sharp": Icons.view_compact_sharp, - "view_compact_rounded": Icons.view_compact_rounded, - "view_compact_outlined": Icons.view_compact_outlined, - "view_compact_alt": Icons.view_compact_alt, - "view_compact_alt_sharp": Icons.view_compact_alt_sharp, - "view_compact_alt_rounded": Icons.view_compact_alt_rounded, - "view_compact_alt_outlined": Icons.view_compact_alt_outlined, - "view_cozy": Icons.view_cozy, - "view_cozy_sharp": Icons.view_cozy_sharp, - "view_cozy_rounded": Icons.view_cozy_rounded, - "view_cozy_outlined": Icons.view_cozy_outlined, - "view_day": Icons.view_day, - "view_day_sharp": Icons.view_day_sharp, - "view_day_rounded": Icons.view_day_rounded, - "view_day_outlined": Icons.view_day_outlined, - "view_headline": Icons.view_headline, - "view_headline_sharp": Icons.view_headline_sharp, - "view_headline_rounded": Icons.view_headline_rounded, - "view_headline_outlined": Icons.view_headline_outlined, - "view_in_ar": Icons.view_in_ar, - "view_in_ar_sharp": Icons.view_in_ar_sharp, - "view_in_ar_rounded": Icons.view_in_ar_rounded, - "view_in_ar_outlined": Icons.view_in_ar_outlined, - "view_kanban": Icons.view_kanban, - "view_kanban_sharp": Icons.view_kanban_sharp, - "view_kanban_rounded": Icons.view_kanban_rounded, - "view_kanban_outlined": Icons.view_kanban_outlined, - "view_list": Icons.view_list, - "view_list_sharp": Icons.view_list_sharp, - "view_list_rounded": Icons.view_list_rounded, - "view_list_outlined": Icons.view_list_outlined, - "view_module": Icons.view_module, - "view_module_sharp": Icons.view_module_sharp, - "view_module_rounded": Icons.view_module_rounded, - "view_module_outlined": Icons.view_module_outlined, - "view_quilt": Icons.view_quilt, - "view_quilt_sharp": Icons.view_quilt_sharp, - "view_quilt_rounded": Icons.view_quilt_rounded, - "view_quilt_outlined": Icons.view_quilt_outlined, - "view_sidebar": Icons.view_sidebar, - "view_sidebar_sharp": Icons.view_sidebar_sharp, - "view_sidebar_rounded": Icons.view_sidebar_rounded, - "view_sidebar_outlined": Icons.view_sidebar_outlined, - "view_stream": Icons.view_stream, - "view_stream_sharp": Icons.view_stream_sharp, - "view_stream_rounded": Icons.view_stream_rounded, - "view_stream_outlined": Icons.view_stream_outlined, - "view_timeline": Icons.view_timeline, - "view_timeline_sharp": Icons.view_timeline_sharp, - "view_timeline_rounded": Icons.view_timeline_rounded, - "view_timeline_outlined": Icons.view_timeline_outlined, - "view_week": Icons.view_week, - "view_week_sharp": Icons.view_week_sharp, - "view_week_rounded": Icons.view_week_rounded, - "view_week_outlined": Icons.view_week_outlined, - "vignette": Icons.vignette, - "vignette_sharp": Icons.vignette_sharp, - "vignette_rounded": Icons.vignette_rounded, - "vignette_outlined": Icons.vignette_outlined, - "villa": Icons.villa, - "villa_sharp": Icons.villa_sharp, - "villa_rounded": Icons.villa_rounded, - "villa_outlined": Icons.villa_outlined, - "visibility": Icons.visibility, - "visibility_sharp": Icons.visibility_sharp, - "visibility_rounded": Icons.visibility_rounded, - "visibility_outlined": Icons.visibility_outlined, - "visibility_off": Icons.visibility_off, - "visibility_off_sharp": Icons.visibility_off_sharp, - "visibility_off_rounded": Icons.visibility_off_rounded, - "visibility_off_outlined": Icons.visibility_off_outlined, - "voice_chat": Icons.voice_chat, - "voice_chat_sharp": Icons.voice_chat_sharp, - "voice_chat_rounded": Icons.voice_chat_rounded, - "voice_chat_outlined": Icons.voice_chat_outlined, - "voice_over_off": Icons.voice_over_off, - "voice_over_off_sharp": Icons.voice_over_off_sharp, - "voice_over_off_rounded": Icons.voice_over_off_rounded, - "voice_over_off_outlined": Icons.voice_over_off_outlined, - "voicemail": Icons.voicemail, - "voicemail_sharp": Icons.voicemail_sharp, - "voicemail_rounded": Icons.voicemail_rounded, - "voicemail_outlined": Icons.voicemail_outlined, - "volcano": Icons.volcano, - "volcano_sharp": Icons.volcano_sharp, - "volcano_rounded": Icons.volcano_rounded, - "volcano_outlined": Icons.volcano_outlined, - "volume_down": Icons.volume_down, - "volume_down_sharp": Icons.volume_down_sharp, - "volume_down_rounded": Icons.volume_down_rounded, - "volume_down_outlined": Icons.volume_down_outlined, - "volume_down_alt": Icons.volume_down_alt, - "volume_mute": Icons.volume_mute, - "volume_mute_sharp": Icons.volume_mute_sharp, - "volume_mute_rounded": Icons.volume_mute_rounded, - "volume_mute_outlined": Icons.volume_mute_outlined, - "volume_off": Icons.volume_off, - "volume_off_sharp": Icons.volume_off_sharp, - "volume_off_rounded": Icons.volume_off_rounded, - "volume_off_outlined": Icons.volume_off_outlined, - "volume_up": Icons.volume_up, - "volume_up_sharp": Icons.volume_up_sharp, - "volume_up_rounded": Icons.volume_up_rounded, - "volume_up_outlined": Icons.volume_up_outlined, - "volunteer_activism": Icons.volunteer_activism, - "volunteer_activism_sharp": Icons.volunteer_activism_sharp, - "volunteer_activism_rounded": Icons.volunteer_activism_rounded, - "volunteer_activism_outlined": Icons.volunteer_activism_outlined, - "vpn_key": Icons.vpn_key, - "vpn_key_sharp": Icons.vpn_key_sharp, - "vpn_key_rounded": Icons.vpn_key_rounded, - "vpn_key_outlined": Icons.vpn_key_outlined, - "vpn_key_off": Icons.vpn_key_off, - "vpn_key_off_sharp": Icons.vpn_key_off_sharp, - "vpn_key_off_rounded": Icons.vpn_key_off_rounded, - "vpn_key_off_outlined": Icons.vpn_key_off_outlined, - "vpn_lock": Icons.vpn_lock, - "vpn_lock_sharp": Icons.vpn_lock_sharp, - "vpn_lock_rounded": Icons.vpn_lock_rounded, - "vpn_lock_outlined": Icons.vpn_lock_outlined, - "vrpano": Icons.vrpano, - "vrpano_sharp": Icons.vrpano_sharp, - "vrpano_rounded": Icons.vrpano_rounded, - "vrpano_outlined": Icons.vrpano_outlined, - "wallet": Icons.wallet, - "wallet_sharp": Icons.wallet_sharp, - "wallet_rounded": Icons.wallet_rounded, - "wallet_outlined": Icons.wallet_outlined, - "wallet_giftcard": Icons.wallet_giftcard, - "wallet_giftcard_sharp": Icons.wallet_giftcard_sharp, - "wallet_giftcard_rounded": Icons.wallet_giftcard_rounded, - "wallet_giftcard_outlined": Icons.wallet_giftcard_outlined, - "wallet_membership": Icons.wallet_membership, - "wallet_membership_sharp": Icons.wallet_membership_sharp, - "wallet_membership_rounded": Icons.wallet_membership_rounded, - "wallet_membership_outlined": Icons.wallet_membership_outlined, - "wallet_travel": Icons.wallet_travel, - "wallet_travel_sharp": Icons.wallet_travel_sharp, - "wallet_travel_rounded": Icons.wallet_travel_rounded, - "wallet_travel_outlined": Icons.wallet_travel_outlined, - "wallpaper": Icons.wallpaper, - "wallpaper_sharp": Icons.wallpaper_sharp, - "wallpaper_rounded": Icons.wallpaper_rounded, - "wallpaper_outlined": Icons.wallpaper_outlined, - "warehouse": Icons.warehouse, - "warehouse_sharp": Icons.warehouse_sharp, - "warehouse_rounded": Icons.warehouse_rounded, - "warehouse_outlined": Icons.warehouse_outlined, - "warning": Icons.warning, - "warning_sharp": Icons.warning_sharp, - "warning_rounded": Icons.warning_rounded, - "warning_outlined": Icons.warning_outlined, - "warning_amber": Icons.warning_amber, - "warning_amber_sharp": Icons.warning_amber_sharp, - "warning_amber_rounded": Icons.warning_amber_rounded, - "warning_amber_outlined": Icons.warning_amber_outlined, - "wash": Icons.wash, - "wash_sharp": Icons.wash_sharp, - "wash_rounded": Icons.wash_rounded, - "wash_outlined": Icons.wash_outlined, - "watch": Icons.watch, - "watch_sharp": Icons.watch_sharp, - "watch_rounded": Icons.watch_rounded, - "watch_outlined": Icons.watch_outlined, - "watch_later": Icons.watch_later, - "watch_later_sharp": Icons.watch_later_sharp, - "watch_later_rounded": Icons.watch_later_rounded, - "watch_later_outlined": Icons.watch_later_outlined, - "watch_off": Icons.watch_off, - "watch_off_sharp": Icons.watch_off_sharp, - "watch_off_rounded": Icons.watch_off_rounded, - "watch_off_outlined": Icons.watch_off_outlined, - "water": Icons.water, - "water_sharp": Icons.water_sharp, - "water_rounded": Icons.water_rounded, - "water_outlined": Icons.water_outlined, - "water_damage": Icons.water_damage, - "water_damage_sharp": Icons.water_damage_sharp, - "water_damage_rounded": Icons.water_damage_rounded, - "water_damage_outlined": Icons.water_damage_outlined, - "water_drop": Icons.water_drop, - "water_drop_sharp": Icons.water_drop_sharp, - "water_drop_rounded": Icons.water_drop_rounded, - "water_drop_outlined": Icons.water_drop_outlined, - "waterfall_chart": Icons.waterfall_chart, - "waterfall_chart_sharp": Icons.waterfall_chart_sharp, - "waterfall_chart_rounded": Icons.waterfall_chart_rounded, - "waterfall_chart_outlined": Icons.waterfall_chart_outlined, - "waves": Icons.waves, - "waves_sharp": Icons.waves_sharp, - "waves_rounded": Icons.waves_rounded, - "waves_outlined": Icons.waves_outlined, - "waving_hand": Icons.waving_hand, - "waving_hand_sharp": Icons.waving_hand_sharp, - "waving_hand_rounded": Icons.waving_hand_rounded, - "waving_hand_outlined": Icons.waving_hand_outlined, - "wb_auto": Icons.wb_auto, - "wb_auto_sharp": Icons.wb_auto_sharp, - "wb_auto_rounded": Icons.wb_auto_rounded, - "wb_auto_outlined": Icons.wb_auto_outlined, - "wb_cloudy": Icons.wb_cloudy, - "wb_cloudy_sharp": Icons.wb_cloudy_sharp, - "wb_cloudy_rounded": Icons.wb_cloudy_rounded, - "wb_cloudy_outlined": Icons.wb_cloudy_outlined, - "wb_incandescent": Icons.wb_incandescent, - "wb_incandescent_sharp": Icons.wb_incandescent_sharp, - "wb_incandescent_rounded": Icons.wb_incandescent_rounded, - "wb_incandescent_outlined": Icons.wb_incandescent_outlined, - "wb_iridescent": Icons.wb_iridescent, - "wb_iridescent_sharp": Icons.wb_iridescent_sharp, - "wb_iridescent_rounded": Icons.wb_iridescent_rounded, - "wb_iridescent_outlined": Icons.wb_iridescent_outlined, - "wb_shade": Icons.wb_shade, - "wb_shade_sharp": Icons.wb_shade_sharp, - "wb_shade_rounded": Icons.wb_shade_rounded, - "wb_shade_outlined": Icons.wb_shade_outlined, - "wb_sunny": Icons.wb_sunny, - "wb_sunny_sharp": Icons.wb_sunny_sharp, - "wb_sunny_rounded": Icons.wb_sunny_rounded, - "wb_sunny_outlined": Icons.wb_sunny_outlined, - "wb_twighlight": Icons.wb_twighlight, - "wb_twilight": Icons.wb_twilight, - "wb_twilight_sharp": Icons.wb_twilight_sharp, - "wb_twilight_rounded": Icons.wb_twilight_rounded, - "wb_twilight_outlined": Icons.wb_twilight_outlined, - "wc": Icons.wc, - "wc_sharp": Icons.wc_sharp, - "wc_rounded": Icons.wc_rounded, - "wc_outlined": Icons.wc_outlined, - "web": Icons.web, - "web_sharp": Icons.web_sharp, - "web_rounded": Icons.web_rounded, - "web_outlined": Icons.web_outlined, - "web_asset": Icons.web_asset, - "web_asset_sharp": Icons.web_asset_sharp, - "web_asset_rounded": Icons.web_asset_rounded, - "web_asset_outlined": Icons.web_asset_outlined, - "web_asset_off": Icons.web_asset_off, - "web_asset_off_sharp": Icons.web_asset_off_sharp, - "web_asset_off_rounded": Icons.web_asset_off_rounded, - "web_asset_off_outlined": Icons.web_asset_off_outlined, - "web_stories": Icons.web_stories, - "web_stories_sharp": Icons.web_stories_sharp, - "web_stories_rounded": Icons.web_stories_rounded, - "web_stories_outlined": Icons.web_stories_outlined, - "webhook": Icons.webhook, - "webhook_sharp": Icons.webhook_sharp, - "webhook_rounded": Icons.webhook_rounded, - "webhook_outlined": Icons.webhook_outlined, - "wechat": Icons.wechat, - "wechat_sharp": Icons.wechat_sharp, - "wechat_rounded": Icons.wechat_rounded, - "wechat_outlined": Icons.wechat_outlined, - "weekend": Icons.weekend, - "weekend_sharp": Icons.weekend_sharp, - "weekend_rounded": Icons.weekend_rounded, - "weekend_outlined": Icons.weekend_outlined, - "west": Icons.west, - "west_sharp": Icons.west_sharp, - "west_rounded": Icons.west_rounded, - "west_outlined": Icons.west_outlined, - "whatshot": Icons.whatshot, - "whatshot_sharp": Icons.whatshot_sharp, - "whatshot_rounded": Icons.whatshot_rounded, - "whatshot_outlined": Icons.whatshot_outlined, - "wheelchair_pickup": Icons.wheelchair_pickup, - "wheelchair_pickup_sharp": Icons.wheelchair_pickup_sharp, - "wheelchair_pickup_rounded": Icons.wheelchair_pickup_rounded, - "wheelchair_pickup_outlined": Icons.wheelchair_pickup_outlined, - "where_to_vote": Icons.where_to_vote, - "where_to_vote_sharp": Icons.where_to_vote_sharp, - "where_to_vote_rounded": Icons.where_to_vote_rounded, - "where_to_vote_outlined": Icons.where_to_vote_outlined, - "widgets": Icons.widgets, - "widgets_sharp": Icons.widgets_sharp, - "widgets_rounded": Icons.widgets_rounded, - "widgets_outlined": Icons.widgets_outlined, - "width_full": Icons.width_full, - "width_full_sharp": Icons.width_full_sharp, - "width_full_rounded": Icons.width_full_rounded, - "width_full_outlined": Icons.width_full_outlined, - "width_normal": Icons.width_normal, - "width_normal_sharp": Icons.width_normal_sharp, - "width_normal_rounded": Icons.width_normal_rounded, - "width_normal_outlined": Icons.width_normal_outlined, - "width_wide": Icons.width_wide, - "width_wide_sharp": Icons.width_wide_sharp, - "width_wide_rounded": Icons.width_wide_rounded, - "width_wide_outlined": Icons.width_wide_outlined, - "wifi": Icons.wifi, - "wifi_sharp": Icons.wifi_sharp, - "wifi_rounded": Icons.wifi_rounded, - "wifi_outlined": Icons.wifi_outlined, - "wifi_1_bar": Icons.wifi_1_bar, - "wifi_1_bar_sharp": Icons.wifi_1_bar_sharp, - "wifi_1_bar_rounded": Icons.wifi_1_bar_rounded, - "wifi_1_bar_outlined": Icons.wifi_1_bar_outlined, - "wifi_2_bar": Icons.wifi_2_bar, - "wifi_2_bar_sharp": Icons.wifi_2_bar_sharp, - "wifi_2_bar_rounded": Icons.wifi_2_bar_rounded, - "wifi_2_bar_outlined": Icons.wifi_2_bar_outlined, - "wifi_calling": Icons.wifi_calling, - "wifi_calling_sharp": Icons.wifi_calling_sharp, - "wifi_calling_rounded": Icons.wifi_calling_rounded, - "wifi_calling_outlined": Icons.wifi_calling_outlined, - "wifi_calling_3": Icons.wifi_calling_3, - "wifi_calling_3_sharp": Icons.wifi_calling_3_sharp, - "wifi_calling_3_rounded": Icons.wifi_calling_3_rounded, - "wifi_calling_3_outlined": Icons.wifi_calling_3_outlined, - "wifi_channel": Icons.wifi_channel, - "wifi_channel_sharp": Icons.wifi_channel_sharp, - "wifi_channel_rounded": Icons.wifi_channel_rounded, - "wifi_channel_outlined": Icons.wifi_channel_outlined, - "wifi_find": Icons.wifi_find, - "wifi_find_sharp": Icons.wifi_find_sharp, - "wifi_find_rounded": Icons.wifi_find_rounded, - "wifi_find_outlined": Icons.wifi_find_outlined, - "wifi_lock": Icons.wifi_lock, - "wifi_lock_sharp": Icons.wifi_lock_sharp, - "wifi_lock_rounded": Icons.wifi_lock_rounded, - "wifi_lock_outlined": Icons.wifi_lock_outlined, - "wifi_off": Icons.wifi_off, - "wifi_off_sharp": Icons.wifi_off_sharp, - "wifi_off_rounded": Icons.wifi_off_rounded, - "wifi_off_outlined": Icons.wifi_off_outlined, - "wifi_password": Icons.wifi_password, - "wifi_password_sharp": Icons.wifi_password_sharp, - "wifi_password_rounded": Icons.wifi_password_rounded, - "wifi_password_outlined": Icons.wifi_password_outlined, - "wifi_protected_setup": Icons.wifi_protected_setup, - "wifi_protected_setup_sharp": Icons.wifi_protected_setup_sharp, - "wifi_protected_setup_rounded": Icons.wifi_protected_setup_rounded, - "wifi_protected_setup_outlined": Icons.wifi_protected_setup_outlined, - "wifi_tethering": Icons.wifi_tethering, - "wifi_tethering_sharp": Icons.wifi_tethering_sharp, - "wifi_tethering_rounded": Icons.wifi_tethering_rounded, - "wifi_tethering_outlined": Icons.wifi_tethering_outlined, - "wifi_tethering_error": Icons.wifi_tethering_error, - "wifi_tethering_error_sharp": Icons.wifi_tethering_error_sharp, - "wifi_tethering_error_rounded": Icons.wifi_tethering_error_rounded, - "wifi_tethering_error_outlined": Icons.wifi_tethering_error_outlined, - "wifi_tethering_error_rounded_sharp": - Icons.wifi_tethering_error_rounded_sharp, - "wifi_tethering_error_rounded_rounded": - Icons.wifi_tethering_error_rounded_rounded, - "wifi_tethering_error_rounded_outlined": - Icons.wifi_tethering_error_rounded_outlined, - "wifi_tethering_off": Icons.wifi_tethering_off, - "wifi_tethering_off_sharp": Icons.wifi_tethering_off_sharp, - "wifi_tethering_off_rounded": Icons.wifi_tethering_off_rounded, - "wifi_tethering_off_outlined": Icons.wifi_tethering_off_outlined, - "wind_power": Icons.wind_power, - "wind_power_sharp": Icons.wind_power_sharp, - "wind_power_rounded": Icons.wind_power_rounded, - "wind_power_outlined": Icons.wind_power_outlined, - "window": Icons.window, - "window_sharp": Icons.window_sharp, - "window_rounded": Icons.window_rounded, - "window_outlined": Icons.window_outlined, - "wine_bar": Icons.wine_bar, - "wine_bar_sharp": Icons.wine_bar_sharp, - "wine_bar_rounded": Icons.wine_bar_rounded, - "wine_bar_outlined": Icons.wine_bar_outlined, - "woman": Icons.woman, - "woman_sharp": Icons.woman_sharp, - "woman_rounded": Icons.woman_rounded, - "woman_outlined": Icons.woman_outlined, - "woman_2": Icons.woman_2, - "woman_2_sharp": Icons.woman_2_sharp, - "woman_2_rounded": Icons.woman_2_rounded, - "woman_2_outlined": Icons.woman_2_outlined, - "woo_commerce": Icons.woo_commerce, - "woo_commerce_sharp": Icons.woo_commerce_sharp, - "woo_commerce_rounded": Icons.woo_commerce_rounded, - "woo_commerce_outlined": Icons.woo_commerce_outlined, - "wordpress": Icons.wordpress, - "wordpress_sharp": Icons.wordpress_sharp, - "wordpress_rounded": Icons.wordpress_rounded, - "wordpress_outlined": Icons.wordpress_outlined, - "work": Icons.work, - "work_sharp": Icons.work_sharp, - "work_rounded": Icons.work_rounded, - "work_outlined": Icons.work_outlined, - "work_history": Icons.work_history, - "work_history_sharp": Icons.work_history_sharp, - "work_history_rounded": Icons.work_history_rounded, - "work_history_outlined": Icons.work_history_outlined, - "work_off": Icons.work_off, - "work_off_sharp": Icons.work_off_sharp, - "work_off_rounded": Icons.work_off_rounded, - "work_off_outlined": Icons.work_off_outlined, - "work_outline": Icons.work_outline, - "work_outline_sharp": Icons.work_outline_sharp, - "work_outline_rounded": Icons.work_outline_rounded, - "work_outline_outlined": Icons.work_outline_outlined, - "workspace_premium": Icons.workspace_premium, - "workspace_premium_sharp": Icons.workspace_premium_sharp, - "workspace_premium_rounded": Icons.workspace_premium_rounded, - "workspace_premium_outlined": Icons.workspace_premium_outlined, - "workspaces": Icons.workspaces, - "workspaces_sharp": Icons.workspaces_sharp, - "workspaces_rounded": Icons.workspaces_rounded, - "workspaces_outlined": Icons.workspaces_outlined, - "workspaces_filled": Icons.workspaces_filled, - "workspaces_outline": Icons.workspaces_outline, - "wrap_text": Icons.wrap_text, - "wrap_text_sharp": Icons.wrap_text_sharp, - "wrap_text_rounded": Icons.wrap_text_rounded, - "wrap_text_outlined": Icons.wrap_text_outlined, - "wrong_location": Icons.wrong_location, - "wrong_location_sharp": Icons.wrong_location_sharp, - "wrong_location_rounded": Icons.wrong_location_rounded, - "wrong_location_outlined": Icons.wrong_location_outlined, - "wysiwyg": Icons.wysiwyg, - "wysiwyg_sharp": Icons.wysiwyg_sharp, - "wysiwyg_rounded": Icons.wysiwyg_rounded, - "wysiwyg_outlined": Icons.wysiwyg_outlined, - "yard": Icons.yard, - "yard_sharp": Icons.yard_sharp, - "yard_rounded": Icons.yard_rounded, - "yard_outlined": Icons.yard_outlined, - "youtube_searched_for": Icons.youtube_searched_for, - "youtube_searched_for_sharp": Icons.youtube_searched_for_sharp, - "youtube_searched_for_rounded": Icons.youtube_searched_for_rounded, - "youtube_searched_for_outlined": Icons.youtube_searched_for_outlined, - "zoom_in": Icons.zoom_in, - "zoom_in_sharp": Icons.zoom_in_sharp, - "zoom_in_rounded": Icons.zoom_in_rounded, - "zoom_in_outlined": Icons.zoom_in_outlined, - "zoom_in_map": Icons.zoom_in_map, - "zoom_in_map_sharp": Icons.zoom_in_map_sharp, - "zoom_in_map_rounded": Icons.zoom_in_map_rounded, - "zoom_in_map_outlined": Icons.zoom_in_map_outlined, - "zoom_out": Icons.zoom_out, - "zoom_out_sharp": Icons.zoom_out_sharp, - "zoom_out_rounded": Icons.zoom_out_rounded, - "zoom_out_outlined": Icons.zoom_out_outlined, - "zoom_out_map": Icons.zoom_out_map, - "zoom_out_map_sharp": Icons.zoom_out_map_sharp, - "zoom_out_map_rounded": Icons.zoom_out_map_rounded, - "zoom_out_map_outlined": Icons.zoom_out_map_outlined, -}; +List materialIcons = [ + Icons.abc, + Icons.abc_outlined, + Icons.abc_rounded, + Icons.abc_sharp, + Icons.ac_unit, + Icons.ac_unit_outlined, + Icons.ac_unit_rounded, + Icons.ac_unit_sharp, + Icons.access_alarm, + Icons.access_alarm_outlined, + Icons.access_alarm_rounded, + Icons.access_alarm_sharp, + Icons.access_alarms, + Icons.access_alarms_outlined, + Icons.access_alarms_rounded, + Icons.access_alarms_sharp, + Icons.access_time, + Icons.access_time_filled, + Icons.access_time_filled_outlined, + Icons.access_time_filled_rounded, + Icons.access_time_filled_sharp, + Icons.access_time_outlined, + Icons.access_time_rounded, + Icons.access_time_sharp, + Icons.accessibility, + Icons.accessibility_new, + Icons.accessibility_new_outlined, + Icons.accessibility_new_rounded, + Icons.accessibility_new_sharp, + Icons.accessibility_outlined, + Icons.accessibility_rounded, + Icons.accessibility_sharp, + Icons.accessible, + Icons.accessible_forward, + Icons.accessible_forward_outlined, + Icons.accessible_forward_rounded, + Icons.accessible_forward_sharp, + Icons.accessible_outlined, + Icons.accessible_rounded, + Icons.accessible_sharp, + Icons.account_balance, + Icons.account_balance_outlined, + Icons.account_balance_rounded, + Icons.account_balance_sharp, + Icons.account_balance_wallet, + Icons.account_balance_wallet_outlined, + Icons.account_balance_wallet_rounded, + Icons.account_balance_wallet_sharp, + Icons.account_box, + Icons.account_box_outlined, + Icons.account_box_rounded, + Icons.account_box_sharp, + Icons.account_circle, + Icons.account_circle_outlined, + Icons.account_circle_rounded, + Icons.account_circle_sharp, + Icons.account_tree, + Icons.account_tree_outlined, + Icons.account_tree_rounded, + Icons.account_tree_sharp, + Icons.ad_units, + Icons.ad_units_outlined, + Icons.ad_units_rounded, + Icons.ad_units_sharp, + Icons.adb, + Icons.adb_outlined, + Icons.adb_rounded, + Icons.adb_sharp, + Icons.add, + Icons.add_a_photo, + Icons.add_a_photo_outlined, + Icons.add_a_photo_rounded, + Icons.add_a_photo_sharp, + Icons.add_alarm, + Icons.add_alarm_outlined, + Icons.add_alarm_rounded, + Icons.add_alarm_sharp, + Icons.add_alert, + Icons.add_alert_outlined, + Icons.add_alert_rounded, + Icons.add_alert_sharp, + Icons.add_box, + Icons.add_box_outlined, + Icons.add_box_rounded, + Icons.add_box_sharp, + Icons.add_business, + Icons.add_business_outlined, + Icons.add_business_rounded, + Icons.add_business_sharp, + Icons.add_call, + Icons.add_card, + Icons.add_card_outlined, + Icons.add_card_rounded, + Icons.add_card_sharp, + Icons.add_chart, + Icons.add_chart_outlined, + Icons.add_chart_rounded, + Icons.add_chart_sharp, + Icons.add_circle, + Icons.add_circle_outline, + Icons.add_circle_outline_outlined, + Icons.add_circle_outline_rounded, + Icons.add_circle_outline_sharp, + Icons.add_circle_outlined, + Icons.add_circle_rounded, + Icons.add_circle_sharp, + Icons.add_comment, + Icons.add_comment_outlined, + Icons.add_comment_rounded, + Icons.add_comment_sharp, + Icons.add_home, + Icons.add_home_outlined, + Icons.add_home_rounded, + Icons.add_home_sharp, + Icons.add_home_work, + Icons.add_home_work_outlined, + Icons.add_home_work_rounded, + Icons.add_home_work_sharp, + Icons.add_ic_call, + Icons.add_ic_call_outlined, + Icons.add_ic_call_rounded, + Icons.add_ic_call_sharp, + Icons.add_link, + Icons.add_link_outlined, + Icons.add_link_rounded, + Icons.add_link_sharp, + Icons.add_location, + Icons.add_location_alt, + Icons.add_location_alt_outlined, + Icons.add_location_alt_rounded, + Icons.add_location_alt_sharp, + Icons.add_location_outlined, + Icons.add_location_rounded, + Icons.add_location_sharp, + Icons.add_moderator, + Icons.add_moderator_outlined, + Icons.add_moderator_rounded, + Icons.add_moderator_sharp, + Icons.add_outlined, + Icons.add_photo_alternate, + Icons.add_photo_alternate_outlined, + Icons.add_photo_alternate_rounded, + Icons.add_photo_alternate_sharp, + Icons.add_reaction, + Icons.add_reaction_outlined, + Icons.add_reaction_rounded, + Icons.add_reaction_sharp, + Icons.add_road, + Icons.add_road_outlined, + Icons.add_road_rounded, + Icons.add_road_sharp, + Icons.add_rounded, + Icons.add_sharp, + Icons.add_shopping_cart, + Icons.add_shopping_cart_outlined, + Icons.add_shopping_cart_rounded, + Icons.add_shopping_cart_sharp, + Icons.add_task, + Icons.add_task_outlined, + Icons.add_task_rounded, + Icons.add_task_sharp, + Icons.add_to_drive, + Icons.add_to_drive_outlined, + Icons.add_to_drive_rounded, + Icons.add_to_drive_sharp, + Icons.add_to_home_screen, + Icons.add_to_home_screen_outlined, + Icons.add_to_home_screen_rounded, + Icons.add_to_home_screen_sharp, + Icons.add_to_photos, + Icons.add_to_photos_outlined, + Icons.add_to_photos_rounded, + Icons.add_to_photos_sharp, + Icons.add_to_queue, + Icons.add_to_queue_outlined, + Icons.add_to_queue_rounded, + Icons.add_to_queue_sharp, + Icons.addchart, + Icons.addchart_outlined, + Icons.addchart_rounded, + Icons.addchart_sharp, + Icons.adf_scanner, + Icons.adf_scanner_outlined, + Icons.adf_scanner_rounded, + Icons.adf_scanner_sharp, + Icons.adjust, + Icons.adjust_outlined, + Icons.adjust_rounded, + Icons.adjust_sharp, + Icons.admin_panel_settings, + Icons.admin_panel_settings_outlined, + Icons.admin_panel_settings_rounded, + Icons.admin_panel_settings_sharp, + Icons.adobe, + Icons.adobe_outlined, + Icons.adobe_rounded, + Icons.adobe_sharp, + Icons.ads_click, + Icons.ads_click_outlined, + Icons.ads_click_rounded, + Icons.ads_click_sharp, + Icons.agriculture, + Icons.agriculture_outlined, + Icons.agriculture_rounded, + Icons.agriculture_sharp, + Icons.air, + Icons.air_outlined, + Icons.air_rounded, + Icons.air_sharp, + Icons.airline_seat_flat, + Icons.airline_seat_flat_angled, + Icons.airline_seat_flat_angled_outlined, + Icons.airline_seat_flat_angled_rounded, + Icons.airline_seat_flat_angled_sharp, + Icons.airline_seat_flat_outlined, + Icons.airline_seat_flat_rounded, + Icons.airline_seat_flat_sharp, + Icons.airline_seat_individual_suite, + Icons.airline_seat_individual_suite_outlined, + Icons.airline_seat_individual_suite_rounded, + Icons.airline_seat_individual_suite_sharp, + Icons.airline_seat_legroom_extra, + Icons.airline_seat_legroom_extra_outlined, + Icons.airline_seat_legroom_extra_rounded, + Icons.airline_seat_legroom_extra_sharp, + Icons.airline_seat_legroom_normal, + Icons.airline_seat_legroom_normal_outlined, + Icons.airline_seat_legroom_normal_rounded, + Icons.airline_seat_legroom_normal_sharp, + Icons.airline_seat_legroom_reduced, + Icons.airline_seat_legroom_reduced_outlined, + Icons.airline_seat_legroom_reduced_rounded, + Icons.airline_seat_legroom_reduced_sharp, + Icons.airline_seat_recline_extra, + Icons.airline_seat_recline_extra_outlined, + Icons.airline_seat_recline_extra_rounded, + Icons.airline_seat_recline_extra_sharp, + Icons.airline_seat_recline_normal, + Icons.airline_seat_recline_normal_outlined, + Icons.airline_seat_recline_normal_rounded, + Icons.airline_seat_recline_normal_sharp, + Icons.airline_stops, + Icons.airline_stops_outlined, + Icons.airline_stops_rounded, + Icons.airline_stops_sharp, + Icons.airlines, + Icons.airlines_outlined, + Icons.airlines_rounded, + Icons.airlines_sharp, + Icons.airplane_ticket, + Icons.airplane_ticket_outlined, + Icons.airplane_ticket_rounded, + Icons.airplane_ticket_sharp, + Icons.airplanemode_active, + Icons.airplanemode_active_outlined, + Icons.airplanemode_active_rounded, + Icons.airplanemode_active_sharp, + Icons.airplanemode_inactive, + Icons.airplanemode_inactive_outlined, + Icons.airplanemode_inactive_rounded, + Icons.airplanemode_inactive_sharp, + Icons.airplanemode_off, + Icons.airplanemode_off_outlined, + Icons.airplanemode_off_rounded, + Icons.airplanemode_off_sharp, + Icons.airplanemode_on, + Icons.airplanemode_on_outlined, + Icons.airplanemode_on_rounded, + Icons.airplanemode_on_sharp, + Icons.airplay, + Icons.airplay_outlined, + Icons.airplay_rounded, + Icons.airplay_sharp, + Icons.airport_shuttle, + Icons.airport_shuttle_outlined, + Icons.airport_shuttle_rounded, + Icons.airport_shuttle_sharp, + Icons.alarm, + Icons.alarm_add, + Icons.alarm_add_outlined, + Icons.alarm_add_rounded, + Icons.alarm_add_sharp, + Icons.alarm_off, + Icons.alarm_off_outlined, + Icons.alarm_off_rounded, + Icons.alarm_off_sharp, + Icons.alarm_on, + Icons.alarm_on_outlined, + Icons.alarm_on_rounded, + Icons.alarm_on_sharp, + Icons.alarm_outlined, + Icons.alarm_rounded, + Icons.alarm_sharp, + Icons.album, + Icons.album_outlined, + Icons.album_rounded, + Icons.album_sharp, + Icons.align_horizontal_center, + Icons.align_horizontal_center_outlined, + Icons.align_horizontal_center_rounded, + Icons.align_horizontal_center_sharp, + Icons.align_horizontal_left, + Icons.align_horizontal_left_outlined, + Icons.align_horizontal_left_rounded, + Icons.align_horizontal_left_sharp, + Icons.align_horizontal_right, + Icons.align_horizontal_right_outlined, + Icons.align_horizontal_right_rounded, + Icons.align_horizontal_right_sharp, + Icons.align_vertical_bottom, + Icons.align_vertical_bottom_outlined, + Icons.align_vertical_bottom_rounded, + Icons.align_vertical_bottom_sharp, + Icons.align_vertical_center, + Icons.align_vertical_center_outlined, + Icons.align_vertical_center_rounded, + Icons.align_vertical_center_sharp, + Icons.align_vertical_top, + Icons.align_vertical_top_outlined, + Icons.align_vertical_top_rounded, + Icons.align_vertical_top_sharp, + Icons.all_inbox, + Icons.all_inbox_outlined, + Icons.all_inbox_rounded, + Icons.all_inbox_sharp, + Icons.all_inclusive, + Icons.all_inclusive_outlined, + Icons.all_inclusive_rounded, + Icons.all_inclusive_sharp, + Icons.all_out, + Icons.all_out_outlined, + Icons.all_out_rounded, + Icons.all_out_sharp, + Icons.alt_route, + Icons.alt_route_outlined, + Icons.alt_route_rounded, + Icons.alt_route_sharp, + Icons.alternate_email, + Icons.alternate_email_outlined, + Icons.alternate_email_rounded, + Icons.alternate_email_sharp, + Icons.amp_stories, + Icons.amp_stories_outlined, + Icons.amp_stories_rounded, + Icons.amp_stories_sharp, + Icons.analytics, + Icons.analytics_outlined, + Icons.analytics_rounded, + Icons.analytics_sharp, + Icons.anchor, + Icons.anchor_outlined, + Icons.anchor_rounded, + Icons.anchor_sharp, + Icons.android, + Icons.android_outlined, + Icons.android_rounded, + Icons.android_sharp, + Icons.animation, + Icons.animation_outlined, + Icons.animation_rounded, + Icons.animation_sharp, + Icons.announcement, + Icons.announcement_outlined, + Icons.announcement_rounded, + Icons.announcement_sharp, + Icons.aod, + Icons.aod_outlined, + Icons.aod_rounded, + Icons.aod_sharp, + Icons.apartment, + Icons.apartment_outlined, + Icons.apartment_rounded, + Icons.apartment_sharp, + Icons.api, + Icons.api_outlined, + Icons.api_rounded, + Icons.api_sharp, + Icons.app_blocking, + Icons.app_blocking_outlined, + Icons.app_blocking_rounded, + Icons.app_blocking_sharp, + Icons.app_registration, + Icons.app_registration_outlined, + Icons.app_registration_rounded, + Icons.app_registration_sharp, + Icons.app_settings_alt, + Icons.app_settings_alt_outlined, + Icons.app_settings_alt_rounded, + Icons.app_settings_alt_sharp, + Icons.app_shortcut, + Icons.app_shortcut_outlined, + Icons.app_shortcut_rounded, + Icons.app_shortcut_sharp, + Icons.apple, + Icons.apple_outlined, + Icons.apple_rounded, + Icons.apple_sharp, + Icons.approval, + Icons.approval_outlined, + Icons.approval_rounded, + Icons.approval_sharp, + Icons.apps, + Icons.apps_outage, + Icons.apps_outage_outlined, + Icons.apps_outage_rounded, + Icons.apps_outage_sharp, + Icons.apps_outlined, + Icons.apps_rounded, + Icons.apps_sharp, + Icons.architecture, + Icons.architecture_outlined, + Icons.architecture_rounded, + Icons.architecture_sharp, + Icons.archive, + Icons.archive_outlined, + Icons.archive_rounded, + Icons.archive_sharp, + Icons.area_chart, + Icons.area_chart_outlined, + Icons.area_chart_rounded, + Icons.area_chart_sharp, + Icons.arrow_back, + Icons.arrow_back_ios, + Icons.arrow_back_ios_new, + Icons.arrow_back_ios_new_outlined, + Icons.arrow_back_ios_new_rounded, + Icons.arrow_back_ios_new_sharp, + Icons.arrow_back_ios_outlined, + Icons.arrow_back_ios_rounded, + Icons.arrow_back_ios_sharp, + Icons.arrow_back_outlined, + Icons.arrow_back_rounded, + Icons.arrow_back_sharp, + Icons.arrow_circle_down, + Icons.arrow_circle_down_outlined, + Icons.arrow_circle_down_rounded, + Icons.arrow_circle_down_sharp, + Icons.arrow_circle_left, + Icons.arrow_circle_left_outlined, + Icons.arrow_circle_left_rounded, + Icons.arrow_circle_left_sharp, + Icons.arrow_circle_right, + Icons.arrow_circle_right_outlined, + Icons.arrow_circle_right_rounded, + Icons.arrow_circle_right_sharp, + Icons.arrow_circle_up, + Icons.arrow_circle_up_outlined, + Icons.arrow_circle_up_rounded, + Icons.arrow_circle_up_sharp, + Icons.arrow_downward, + Icons.arrow_downward_outlined, + Icons.arrow_downward_rounded, + Icons.arrow_downward_sharp, + Icons.arrow_drop_down, + Icons.arrow_drop_down_circle, + Icons.arrow_drop_down_circle_outlined, + Icons.arrow_drop_down_circle_rounded, + Icons.arrow_drop_down_circle_sharp, + Icons.arrow_drop_down_outlined, + Icons.arrow_drop_down_rounded, + Icons.arrow_drop_down_sharp, + Icons.arrow_drop_up, + Icons.arrow_drop_up_outlined, + Icons.arrow_drop_up_rounded, + Icons.arrow_drop_up_sharp, + Icons.arrow_forward, + Icons.arrow_forward_ios, + Icons.arrow_forward_ios_outlined, + Icons.arrow_forward_ios_rounded, + Icons.arrow_forward_ios_sharp, + Icons.arrow_forward_outlined, + Icons.arrow_forward_rounded, + Icons.arrow_forward_sharp, + Icons.arrow_left, + Icons.arrow_left_outlined, + Icons.arrow_left_rounded, + Icons.arrow_left_sharp, + Icons.arrow_outward, + Icons.arrow_outward_outlined, + Icons.arrow_outward_rounded, + Icons.arrow_outward_sharp, + Icons.arrow_right, + Icons.arrow_right_alt, + Icons.arrow_right_alt_outlined, + Icons.arrow_right_alt_rounded, + Icons.arrow_right_alt_sharp, + Icons.arrow_right_outlined, + Icons.arrow_right_rounded, + Icons.arrow_right_sharp, + Icons.arrow_upward, + Icons.arrow_upward_outlined, + Icons.arrow_upward_rounded, + Icons.arrow_upward_sharp, + Icons.art_track, + Icons.art_track_outlined, + Icons.art_track_rounded, + Icons.art_track_sharp, + Icons.article, + Icons.article_outlined, + Icons.article_rounded, + Icons.article_sharp, + Icons.aspect_ratio, + Icons.aspect_ratio_outlined, + Icons.aspect_ratio_rounded, + Icons.aspect_ratio_sharp, + Icons.assessment, + Icons.assessment_outlined, + Icons.assessment_rounded, + Icons.assessment_sharp, + Icons.assignment, + Icons.assignment_add, + Icons.assignment_ind, + Icons.assignment_ind_outlined, + Icons.assignment_ind_rounded, + Icons.assignment_ind_sharp, + Icons.assignment_late, + Icons.assignment_late_outlined, + Icons.assignment_late_rounded, + Icons.assignment_late_sharp, + Icons.assignment_outlined, + Icons.assignment_return, + Icons.assignment_return_outlined, + Icons.assignment_return_rounded, + Icons.assignment_return_sharp, + Icons.assignment_returned, + Icons.assignment_returned_outlined, + Icons.assignment_returned_rounded, + Icons.assignment_returned_sharp, + Icons.assignment_rounded, + Icons.assignment_sharp, + Icons.assignment_turned_in, + Icons.assignment_turned_in_outlined, + Icons.assignment_turned_in_rounded, + Icons.assignment_turned_in_sharp, + Icons.assist_walker, + Icons.assist_walker_outlined, + Icons.assist_walker_rounded, + Icons.assist_walker_sharp, + Icons.assistant, + Icons.assistant_direction, + Icons.assistant_direction_outlined, + Icons.assistant_direction_rounded, + Icons.assistant_direction_sharp, + Icons.assistant_navigation, + Icons.assistant_outlined, + Icons.assistant_photo, + Icons.assistant_photo_outlined, + Icons.assistant_photo_rounded, + Icons.assistant_photo_sharp, + Icons.assistant_rounded, + Icons.assistant_sharp, + Icons.assured_workload, + Icons.assured_workload_outlined, + Icons.assured_workload_rounded, + Icons.assured_workload_sharp, + Icons.atm, + Icons.atm_outlined, + Icons.atm_rounded, + Icons.atm_sharp, + Icons.attach_email, + Icons.attach_email_outlined, + Icons.attach_email_rounded, + Icons.attach_email_sharp, + Icons.attach_file, + Icons.attach_file_outlined, + Icons.attach_file_rounded, + Icons.attach_file_sharp, + Icons.attach_money, + Icons.attach_money_outlined, + Icons.attach_money_rounded, + Icons.attach_money_sharp, + Icons.attachment, + Icons.attachment_outlined, + Icons.attachment_rounded, + Icons.attachment_sharp, + Icons.attractions, + Icons.attractions_outlined, + Icons.attractions_rounded, + Icons.attractions_sharp, + Icons.attribution, + Icons.attribution_outlined, + Icons.attribution_rounded, + Icons.attribution_sharp, + Icons.audio_file, + Icons.audio_file_outlined, + Icons.audio_file_rounded, + Icons.audio_file_sharp, + Icons.audiotrack, + Icons.audiotrack_outlined, + Icons.audiotrack_rounded, + Icons.audiotrack_sharp, + Icons.auto_awesome, + Icons.auto_awesome_mosaic, + Icons.auto_awesome_mosaic_outlined, + Icons.auto_awesome_mosaic_rounded, + Icons.auto_awesome_mosaic_sharp, + Icons.auto_awesome_motion, + Icons.auto_awesome_motion_outlined, + Icons.auto_awesome_motion_rounded, + Icons.auto_awesome_motion_sharp, + Icons.auto_awesome_outlined, + Icons.auto_awesome_rounded, + Icons.auto_awesome_sharp, + Icons.auto_delete, + Icons.auto_delete_outlined, + Icons.auto_delete_rounded, + Icons.auto_delete_sharp, + Icons.auto_fix_high, + Icons.auto_fix_high_outlined, + Icons.auto_fix_high_rounded, + Icons.auto_fix_high_sharp, + Icons.auto_fix_normal, + Icons.auto_fix_normal_outlined, + Icons.auto_fix_normal_rounded, + Icons.auto_fix_normal_sharp, + Icons.auto_fix_off, + Icons.auto_fix_off_outlined, + Icons.auto_fix_off_rounded, + Icons.auto_fix_off_sharp, + Icons.auto_graph, + Icons.auto_graph_outlined, + Icons.auto_graph_rounded, + Icons.auto_graph_sharp, + Icons.auto_mode, + Icons.auto_mode_outlined, + Icons.auto_mode_rounded, + Icons.auto_mode_sharp, + Icons.auto_stories, + Icons.auto_stories_outlined, + Icons.auto_stories_rounded, + Icons.auto_stories_sharp, + Icons.autofps_select, + Icons.autofps_select_outlined, + Icons.autofps_select_rounded, + Icons.autofps_select_sharp, + Icons.autorenew, + Icons.autorenew_outlined, + Icons.autorenew_rounded, + Icons.autorenew_sharp, + Icons.av_timer, + Icons.av_timer_outlined, + Icons.av_timer_rounded, + Icons.av_timer_sharp, + Icons.baby_changing_station, + Icons.baby_changing_station_outlined, + Icons.baby_changing_station_rounded, + Icons.baby_changing_station_sharp, + Icons.back_hand, + Icons.back_hand_outlined, + Icons.back_hand_rounded, + Icons.back_hand_sharp, + Icons.backpack, + Icons.backpack_outlined, + Icons.backpack_rounded, + Icons.backpack_sharp, + Icons.backspace, + Icons.backspace_outlined, + Icons.backspace_rounded, + Icons.backspace_sharp, + Icons.backup, + Icons.backup_outlined, + Icons.backup_rounded, + Icons.backup_sharp, + Icons.backup_table, + Icons.backup_table_outlined, + Icons.backup_table_rounded, + Icons.backup_table_sharp, + Icons.badge, + Icons.badge_outlined, + Icons.badge_rounded, + Icons.badge_sharp, + Icons.bakery_dining, + Icons.bakery_dining_outlined, + Icons.bakery_dining_rounded, + Icons.bakery_dining_sharp, + Icons.balance, + Icons.balance_outlined, + Icons.balance_rounded, + Icons.balance_sharp, + Icons.balcony, + Icons.balcony_outlined, + Icons.balcony_rounded, + Icons.balcony_sharp, + Icons.ballot, + Icons.ballot_outlined, + Icons.ballot_rounded, + Icons.ballot_sharp, + Icons.bar_chart, + Icons.bar_chart_outlined, + Icons.bar_chart_rounded, + Icons.bar_chart_sharp, + Icons.barcode_reader, + Icons.batch_prediction, + Icons.batch_prediction_outlined, + Icons.batch_prediction_rounded, + Icons.batch_prediction_sharp, + Icons.bathroom, + Icons.bathroom_outlined, + Icons.bathroom_rounded, + Icons.bathroom_sharp, + Icons.bathtub, + Icons.bathtub_outlined, + Icons.bathtub_rounded, + Icons.bathtub_sharp, + Icons.battery_0_bar, + Icons.battery_0_bar_outlined, + Icons.battery_0_bar_rounded, + Icons.battery_0_bar_sharp, + Icons.battery_1_bar, + Icons.battery_1_bar_outlined, + Icons.battery_1_bar_rounded, + Icons.battery_1_bar_sharp, + Icons.battery_2_bar, + Icons.battery_2_bar_outlined, + Icons.battery_2_bar_rounded, + Icons.battery_2_bar_sharp, + Icons.battery_3_bar, + Icons.battery_3_bar_outlined, + Icons.battery_3_bar_rounded, + Icons.battery_3_bar_sharp, + Icons.battery_4_bar, + Icons.battery_4_bar_outlined, + Icons.battery_4_bar_rounded, + Icons.battery_4_bar_sharp, + Icons.battery_5_bar, + Icons.battery_5_bar_outlined, + Icons.battery_5_bar_rounded, + Icons.battery_5_bar_sharp, + Icons.battery_6_bar, + Icons.battery_6_bar_outlined, + Icons.battery_6_bar_rounded, + Icons.battery_6_bar_sharp, + Icons.battery_alert, + Icons.battery_alert_outlined, + Icons.battery_alert_rounded, + Icons.battery_alert_sharp, + Icons.battery_charging_full, + Icons.battery_charging_full_outlined, + Icons.battery_charging_full_rounded, + Icons.battery_charging_full_sharp, + Icons.battery_full, + Icons.battery_full_outlined, + Icons.battery_full_rounded, + Icons.battery_full_sharp, + Icons.battery_saver, + Icons.battery_saver_outlined, + Icons.battery_saver_rounded, + Icons.battery_saver_sharp, + Icons.battery_std, + Icons.battery_std_outlined, + Icons.battery_std_rounded, + Icons.battery_std_sharp, + Icons.battery_unknown, + Icons.battery_unknown_outlined, + Icons.battery_unknown_rounded, + Icons.battery_unknown_sharp, + Icons.beach_access, + Icons.beach_access_outlined, + Icons.beach_access_rounded, + Icons.beach_access_sharp, + Icons.bed, + Icons.bed_outlined, + Icons.bed_rounded, + Icons.bed_sharp, + Icons.bedroom_baby, + Icons.bedroom_baby_outlined, + Icons.bedroom_baby_rounded, + Icons.bedroom_baby_sharp, + Icons.bedroom_child, + Icons.bedroom_child_outlined, + Icons.bedroom_child_rounded, + Icons.bedroom_child_sharp, + Icons.bedroom_parent, + Icons.bedroom_parent_outlined, + Icons.bedroom_parent_rounded, + Icons.bedroom_parent_sharp, + Icons.bedtime, + Icons.bedtime_off, + Icons.bedtime_off_outlined, + Icons.bedtime_off_rounded, + Icons.bedtime_off_sharp, + Icons.bedtime_outlined, + Icons.bedtime_rounded, + Icons.bedtime_sharp, + Icons.beenhere, + Icons.beenhere_outlined, + Icons.beenhere_rounded, + Icons.beenhere_sharp, + Icons.bento, + Icons.bento_outlined, + Icons.bento_rounded, + Icons.bento_sharp, + Icons.bike_scooter, + Icons.bike_scooter_outlined, + Icons.bike_scooter_rounded, + Icons.bike_scooter_sharp, + Icons.biotech, + Icons.biotech_outlined, + Icons.biotech_rounded, + Icons.biotech_sharp, + Icons.blender, + Icons.blender_outlined, + Icons.blender_rounded, + Icons.blender_sharp, + Icons.blind, + Icons.blind_outlined, + Icons.blind_rounded, + Icons.blind_sharp, + Icons.blinds, + Icons.blinds_closed, + Icons.blinds_closed_outlined, + Icons.blinds_closed_rounded, + Icons.blinds_closed_sharp, + Icons.blinds_outlined, + Icons.blinds_rounded, + Icons.blinds_sharp, + Icons.block, + Icons.block_flipped, + Icons.block_outlined, + Icons.block_rounded, + Icons.block_sharp, + Icons.bloodtype, + Icons.bloodtype_outlined, + Icons.bloodtype_rounded, + Icons.bloodtype_sharp, + Icons.bluetooth, + Icons.bluetooth_audio, + Icons.bluetooth_audio_outlined, + Icons.bluetooth_audio_rounded, + Icons.bluetooth_audio_sharp, + Icons.bluetooth_connected, + Icons.bluetooth_connected_outlined, + Icons.bluetooth_connected_rounded, + Icons.bluetooth_connected_sharp, + Icons.bluetooth_disabled, + Icons.bluetooth_disabled_outlined, + Icons.bluetooth_disabled_rounded, + Icons.bluetooth_disabled_sharp, + Icons.bluetooth_drive, + Icons.bluetooth_drive_outlined, + Icons.bluetooth_drive_rounded, + Icons.bluetooth_drive_sharp, + Icons.bluetooth_outlined, + Icons.bluetooth_rounded, + Icons.bluetooth_searching, + Icons.bluetooth_searching_outlined, + Icons.bluetooth_searching_rounded, + Icons.bluetooth_searching_sharp, + Icons.bluetooth_sharp, + Icons.blur_circular, + Icons.blur_circular_outlined, + Icons.blur_circular_rounded, + Icons.blur_circular_sharp, + Icons.blur_linear, + Icons.blur_linear_outlined, + Icons.blur_linear_rounded, + Icons.blur_linear_sharp, + Icons.blur_off, + Icons.blur_off_outlined, + Icons.blur_off_rounded, + Icons.blur_off_sharp, + Icons.blur_on, + Icons.blur_on_outlined, + Icons.blur_on_rounded, + Icons.blur_on_sharp, + Icons.bolt, + Icons.bolt_outlined, + Icons.bolt_rounded, + Icons.bolt_sharp, + Icons.book, + Icons.book_online, + Icons.book_online_outlined, + Icons.book_online_rounded, + Icons.book_online_sharp, + Icons.book_outlined, + Icons.book_rounded, + Icons.book_sharp, + Icons.bookmark, + Icons.bookmark_add, + Icons.bookmark_add_outlined, + Icons.bookmark_add_rounded, + Icons.bookmark_add_sharp, + Icons.bookmark_added, + Icons.bookmark_added_outlined, + Icons.bookmark_added_rounded, + Icons.bookmark_added_sharp, + Icons.bookmark_border, + Icons.bookmark_border_outlined, + Icons.bookmark_border_rounded, + Icons.bookmark_border_sharp, + Icons.bookmark_outline, + Icons.bookmark_outline_outlined, + Icons.bookmark_outline_rounded, + Icons.bookmark_outline_sharp, + Icons.bookmark_outlined, + Icons.bookmark_remove, + Icons.bookmark_remove_outlined, + Icons.bookmark_remove_rounded, + Icons.bookmark_remove_sharp, + Icons.bookmark_rounded, + Icons.bookmark_sharp, + Icons.bookmarks, + Icons.bookmarks_outlined, + Icons.bookmarks_rounded, + Icons.bookmarks_sharp, + Icons.border_all, + Icons.border_all_outlined, + Icons.border_all_rounded, + Icons.border_all_sharp, + Icons.border_bottom, + Icons.border_bottom_outlined, + Icons.border_bottom_rounded, + Icons.border_bottom_sharp, + Icons.border_clear, + Icons.border_clear_outlined, + Icons.border_clear_rounded, + Icons.border_clear_sharp, + Icons.border_color, + Icons.border_color_outlined, + Icons.border_color_rounded, + Icons.border_color_sharp, + Icons.border_horizontal, + Icons.border_horizontal_outlined, + Icons.border_horizontal_rounded, + Icons.border_horizontal_sharp, + Icons.border_inner, + Icons.border_inner_outlined, + Icons.border_inner_rounded, + Icons.border_inner_sharp, + Icons.border_left, + Icons.border_left_outlined, + Icons.border_left_rounded, + Icons.border_left_sharp, + Icons.border_outer, + Icons.border_outer_outlined, + Icons.border_outer_rounded, + Icons.border_outer_sharp, + Icons.border_right, + Icons.border_right_outlined, + Icons.border_right_rounded, + Icons.border_right_sharp, + Icons.border_style, + Icons.border_style_outlined, + Icons.border_style_rounded, + Icons.border_style_sharp, + Icons.border_top, + Icons.border_top_outlined, + Icons.border_top_rounded, + Icons.border_top_sharp, + Icons.border_vertical, + Icons.border_vertical_outlined, + Icons.border_vertical_rounded, + Icons.border_vertical_sharp, + Icons.boy, + Icons.boy_outlined, + Icons.boy_rounded, + Icons.boy_sharp, + Icons.branding_watermark, + Icons.branding_watermark_outlined, + Icons.branding_watermark_rounded, + Icons.branding_watermark_sharp, + Icons.breakfast_dining, + Icons.breakfast_dining_outlined, + Icons.breakfast_dining_rounded, + Icons.breakfast_dining_sharp, + Icons.brightness_1, + Icons.brightness_1_outlined, + Icons.brightness_1_rounded, + Icons.brightness_1_sharp, + Icons.brightness_2, + Icons.brightness_2_outlined, + Icons.brightness_2_rounded, + Icons.brightness_2_sharp, + Icons.brightness_3, + Icons.brightness_3_outlined, + Icons.brightness_3_rounded, + Icons.brightness_3_sharp, + Icons.brightness_4, + Icons.brightness_4_outlined, + Icons.brightness_4_rounded, + Icons.brightness_4_sharp, + Icons.brightness_5, + Icons.brightness_5_outlined, + Icons.brightness_5_rounded, + Icons.brightness_5_sharp, + Icons.brightness_6, + Icons.brightness_6_outlined, + Icons.brightness_6_rounded, + Icons.brightness_6_sharp, + Icons.brightness_7, + Icons.brightness_7_outlined, + Icons.brightness_7_rounded, + Icons.brightness_7_sharp, + Icons.brightness_auto, + Icons.brightness_auto_outlined, + Icons.brightness_auto_rounded, + Icons.brightness_auto_sharp, + Icons.brightness_high, + Icons.brightness_high_outlined, + Icons.brightness_high_rounded, + Icons.brightness_high_sharp, + Icons.brightness_low, + Icons.brightness_low_outlined, + Icons.brightness_low_rounded, + Icons.brightness_low_sharp, + Icons.brightness_medium, + Icons.brightness_medium_outlined, + Icons.brightness_medium_rounded, + Icons.brightness_medium_sharp, + Icons.broadcast_on_home, + Icons.broadcast_on_home_outlined, + Icons.broadcast_on_home_rounded, + Icons.broadcast_on_home_sharp, + Icons.broadcast_on_personal, + Icons.broadcast_on_personal_outlined, + Icons.broadcast_on_personal_rounded, + Icons.broadcast_on_personal_sharp, + Icons.broken_image, + Icons.broken_image_outlined, + Icons.broken_image_rounded, + Icons.broken_image_sharp, + Icons.browse_gallery, + Icons.browse_gallery_outlined, + Icons.browse_gallery_rounded, + Icons.browse_gallery_sharp, + Icons.browser_not_supported, + Icons.browser_not_supported_outlined, + Icons.browser_not_supported_rounded, + Icons.browser_not_supported_sharp, + Icons.browser_updated, + Icons.browser_updated_outlined, + Icons.browser_updated_rounded, + Icons.browser_updated_sharp, + Icons.brunch_dining, + Icons.brunch_dining_outlined, + Icons.brunch_dining_rounded, + Icons.brunch_dining_sharp, + Icons.brush, + Icons.brush_outlined, + Icons.brush_rounded, + Icons.brush_sharp, + Icons.bubble_chart, + Icons.bubble_chart_outlined, + Icons.bubble_chart_rounded, + Icons.bubble_chart_sharp, + Icons.bug_report, + Icons.bug_report_outlined, + Icons.bug_report_rounded, + Icons.bug_report_sharp, + Icons.build, + Icons.build_circle, + Icons.build_circle_outlined, + Icons.build_circle_rounded, + Icons.build_circle_sharp, + Icons.build_outlined, + Icons.build_rounded, + Icons.build_sharp, + Icons.bungalow, + Icons.bungalow_outlined, + Icons.bungalow_rounded, + Icons.bungalow_sharp, + Icons.burst_mode, + Icons.burst_mode_outlined, + Icons.burst_mode_rounded, + Icons.burst_mode_sharp, + Icons.bus_alert, + Icons.bus_alert_outlined, + Icons.bus_alert_rounded, + Icons.bus_alert_sharp, + Icons.business, + Icons.business_center, + Icons.business_center_outlined, + Icons.business_center_rounded, + Icons.business_center_sharp, + Icons.business_outlined, + Icons.business_rounded, + Icons.business_sharp, + Icons.cabin, + Icons.cabin_outlined, + Icons.cabin_rounded, + Icons.cabin_sharp, + Icons.cable, + Icons.cable_outlined, + Icons.cable_rounded, + Icons.cable_sharp, + Icons.cached, + Icons.cached_outlined, + Icons.cached_rounded, + Icons.cached_sharp, + Icons.cake, + Icons.cake_outlined, + Icons.cake_rounded, + Icons.cake_sharp, + Icons.calculate, + Icons.calculate_outlined, + Icons.calculate_rounded, + Icons.calculate_sharp, + Icons.calendar_month, + Icons.calendar_month_outlined, + Icons.calendar_month_rounded, + Icons.calendar_month_sharp, + Icons.calendar_today, + Icons.calendar_today_outlined, + Icons.calendar_today_rounded, + Icons.calendar_today_sharp, + Icons.calendar_view_day, + Icons.calendar_view_day_outlined, + Icons.calendar_view_day_rounded, + Icons.calendar_view_day_sharp, + Icons.calendar_view_month, + Icons.calendar_view_month_outlined, + Icons.calendar_view_month_rounded, + Icons.calendar_view_month_sharp, + Icons.calendar_view_week, + Icons.calendar_view_week_outlined, + Icons.calendar_view_week_rounded, + Icons.calendar_view_week_sharp, + Icons.call, + Icons.call_end, + Icons.call_end_outlined, + Icons.call_end_rounded, + Icons.call_end_sharp, + Icons.call_made, + Icons.call_made_outlined, + Icons.call_made_rounded, + Icons.call_made_sharp, + Icons.call_merge, + Icons.call_merge_outlined, + Icons.call_merge_rounded, + Icons.call_merge_sharp, + Icons.call_missed, + Icons.call_missed_outgoing, + Icons.call_missed_outgoing_outlined, + Icons.call_missed_outgoing_rounded, + Icons.call_missed_outgoing_sharp, + Icons.call_missed_outlined, + Icons.call_missed_rounded, + Icons.call_missed_sharp, + Icons.call_outlined, + Icons.call_received, + Icons.call_received_outlined, + Icons.call_received_rounded, + Icons.call_received_sharp, + Icons.call_rounded, + Icons.call_sharp, + Icons.call_split, + Icons.call_split_outlined, + Icons.call_split_rounded, + Icons.call_split_sharp, + Icons.call_to_action, + Icons.call_to_action_outlined, + Icons.call_to_action_rounded, + Icons.call_to_action_sharp, + Icons.camera, + Icons.camera_alt, + Icons.camera_alt_outlined, + Icons.camera_alt_rounded, + Icons.camera_alt_sharp, + Icons.camera_enhance, + Icons.camera_enhance_outlined, + Icons.camera_enhance_rounded, + Icons.camera_enhance_sharp, + Icons.camera_front, + Icons.camera_front_outlined, + Icons.camera_front_rounded, + Icons.camera_front_sharp, + Icons.camera_indoor, + Icons.camera_indoor_outlined, + Icons.camera_indoor_rounded, + Icons.camera_indoor_sharp, + Icons.camera_outdoor, + Icons.camera_outdoor_outlined, + Icons.camera_outdoor_rounded, + Icons.camera_outdoor_sharp, + Icons.camera_outlined, + Icons.camera_rear, + Icons.camera_rear_outlined, + Icons.camera_rear_rounded, + Icons.camera_rear_sharp, + Icons.camera_roll, + Icons.camera_roll_outlined, + Icons.camera_roll_rounded, + Icons.camera_roll_sharp, + Icons.camera_rounded, + Icons.camera_sharp, + Icons.cameraswitch, + Icons.cameraswitch_outlined, + Icons.cameraswitch_rounded, + Icons.cameraswitch_sharp, + Icons.campaign, + Icons.campaign_outlined, + Icons.campaign_rounded, + Icons.campaign_sharp, + Icons.cancel, + Icons.cancel_outlined, + Icons.cancel_presentation, + Icons.cancel_presentation_outlined, + Icons.cancel_presentation_rounded, + Icons.cancel_presentation_sharp, + Icons.cancel_rounded, + Icons.cancel_schedule_send, + Icons.cancel_schedule_send_outlined, + Icons.cancel_schedule_send_rounded, + Icons.cancel_schedule_send_sharp, + Icons.cancel_sharp, + Icons.candlestick_chart, + Icons.candlestick_chart_outlined, + Icons.candlestick_chart_rounded, + Icons.candlestick_chart_sharp, + Icons.car_crash, + Icons.car_crash_outlined, + Icons.car_crash_rounded, + Icons.car_crash_sharp, + Icons.car_rental, + Icons.car_rental_outlined, + Icons.car_rental_rounded, + Icons.car_rental_sharp, + Icons.car_repair, + Icons.car_repair_outlined, + Icons.car_repair_rounded, + Icons.car_repair_sharp, + Icons.card_giftcard, + Icons.card_giftcard_outlined, + Icons.card_giftcard_rounded, + Icons.card_giftcard_sharp, + Icons.card_membership, + Icons.card_membership_outlined, + Icons.card_membership_rounded, + Icons.card_membership_sharp, + Icons.card_travel, + Icons.card_travel_outlined, + Icons.card_travel_rounded, + Icons.card_travel_sharp, + Icons.carpenter, + Icons.carpenter_outlined, + Icons.carpenter_rounded, + Icons.carpenter_sharp, + Icons.cases, + Icons.cases_outlined, + Icons.cases_rounded, + Icons.cases_sharp, + Icons.casino, + Icons.casino_outlined, + Icons.casino_rounded, + Icons.casino_sharp, + Icons.cast, + Icons.cast_connected, + Icons.cast_connected_outlined, + Icons.cast_connected_rounded, + Icons.cast_connected_sharp, + Icons.cast_for_education, + Icons.cast_for_education_outlined, + Icons.cast_for_education_rounded, + Icons.cast_for_education_sharp, + Icons.cast_outlined, + Icons.cast_rounded, + Icons.cast_sharp, + Icons.castle, + Icons.castle_outlined, + Icons.castle_rounded, + Icons.castle_sharp, + Icons.catching_pokemon, + Icons.catching_pokemon_outlined, + Icons.catching_pokemon_rounded, + Icons.catching_pokemon_sharp, + Icons.category, + Icons.category_outlined, + Icons.category_rounded, + Icons.category_sharp, + Icons.celebration, + Icons.celebration_outlined, + Icons.celebration_rounded, + Icons.celebration_sharp, + Icons.cell_tower, + Icons.cell_tower_outlined, + Icons.cell_tower_rounded, + Icons.cell_tower_sharp, + Icons.cell_wifi, + Icons.cell_wifi_outlined, + Icons.cell_wifi_rounded, + Icons.cell_wifi_sharp, + Icons.center_focus_strong, + Icons.center_focus_strong_outlined, + Icons.center_focus_strong_rounded, + Icons.center_focus_strong_sharp, + Icons.center_focus_weak, + Icons.center_focus_weak_outlined, + Icons.center_focus_weak_rounded, + Icons.center_focus_weak_sharp, + Icons.chair, + Icons.chair_alt, + Icons.chair_alt_outlined, + Icons.chair_alt_rounded, + Icons.chair_alt_sharp, + Icons.chair_outlined, + Icons.chair_rounded, + Icons.chair_sharp, + Icons.chalet, + Icons.chalet_outlined, + Icons.chalet_rounded, + Icons.chalet_sharp, + Icons.change_circle, + Icons.change_circle_outlined, + Icons.change_circle_rounded, + Icons.change_circle_sharp, + Icons.change_history, + Icons.change_history_outlined, + Icons.change_history_rounded, + Icons.change_history_sharp, + Icons.charging_station, + Icons.charging_station_outlined, + Icons.charging_station_rounded, + Icons.charging_station_sharp, + Icons.chat, + Icons.chat_bubble, + Icons.chat_bubble_outline, + Icons.chat_bubble_outline_outlined, + Icons.chat_bubble_outline_rounded, + Icons.chat_bubble_outline_sharp, + Icons.chat_bubble_outlined, + Icons.chat_bubble_rounded, + Icons.chat_bubble_sharp, + Icons.chat_outlined, + Icons.chat_rounded, + Icons.chat_sharp, + Icons.check, + Icons.check_box, + Icons.check_box_outline_blank, + Icons.check_box_outline_blank_outlined, + Icons.check_box_outline_blank_rounded, + Icons.check_box_outline_blank_sharp, + Icons.check_box_outlined, + Icons.check_box_rounded, + Icons.check_box_sharp, + Icons.check_circle, + Icons.check_circle_outline, + Icons.check_circle_outline_outlined, + Icons.check_circle_outline_rounded, + Icons.check_circle_outline_sharp, + Icons.check_circle_outlined, + Icons.check_circle_rounded, + Icons.check_circle_sharp, + Icons.check_outlined, + Icons.check_rounded, + Icons.check_sharp, + Icons.checklist, + Icons.checklist_outlined, + Icons.checklist_rounded, + Icons.checklist_rtl, + Icons.checklist_rtl_outlined, + Icons.checklist_rtl_rounded, + Icons.checklist_rtl_sharp, + Icons.checklist_sharp, + Icons.checkroom, + Icons.checkroom_outlined, + Icons.checkroom_rounded, + Icons.checkroom_sharp, + Icons.chevron_left, + Icons.chevron_left_outlined, + Icons.chevron_left_rounded, + Icons.chevron_left_sharp, + Icons.chevron_right, + Icons.chevron_right_outlined, + Icons.chevron_right_rounded, + Icons.chevron_right_sharp, + Icons.child_care, + Icons.child_care_outlined, + Icons.child_care_rounded, + Icons.child_care_sharp, + Icons.child_friendly, + Icons.child_friendly_outlined, + Icons.child_friendly_rounded, + Icons.child_friendly_sharp, + Icons.chrome_reader_mode, + Icons.chrome_reader_mode_outlined, + Icons.chrome_reader_mode_rounded, + Icons.chrome_reader_mode_sharp, + Icons.church, + Icons.church_outlined, + Icons.church_rounded, + Icons.church_sharp, + Icons.circle, + Icons.circle_notifications, + Icons.circle_notifications_outlined, + Icons.circle_notifications_rounded, + Icons.circle_notifications_sharp, + Icons.circle_outlined, + Icons.circle_rounded, + Icons.circle_sharp, + Icons.class_, + Icons.class_outlined, + Icons.class_rounded, + Icons.class_sharp, + Icons.clean_hands, + Icons.clean_hands_outlined, + Icons.clean_hands_rounded, + Icons.clean_hands_sharp, + Icons.cleaning_services, + Icons.cleaning_services_outlined, + Icons.cleaning_services_rounded, + Icons.cleaning_services_sharp, + Icons.clear, + Icons.clear_all, + Icons.clear_all_outlined, + Icons.clear_all_rounded, + Icons.clear_all_sharp, + Icons.clear_outlined, + Icons.clear_rounded, + Icons.clear_sharp, + Icons.close, + Icons.close_fullscreen, + Icons.close_fullscreen_outlined, + Icons.close_fullscreen_rounded, + Icons.close_fullscreen_sharp, + Icons.close_outlined, + Icons.close_rounded, + Icons.close_sharp, + Icons.closed_caption, + Icons.closed_caption_disabled, + Icons.closed_caption_disabled_outlined, + Icons.closed_caption_disabled_rounded, + Icons.closed_caption_disabled_sharp, + Icons.closed_caption_off, + Icons.closed_caption_off_outlined, + Icons.closed_caption_off_rounded, + Icons.closed_caption_off_sharp, + Icons.closed_caption_outlined, + Icons.closed_caption_rounded, + Icons.closed_caption_sharp, + Icons.cloud, + Icons.cloud_circle, + Icons.cloud_circle_outlined, + Icons.cloud_circle_rounded, + Icons.cloud_circle_sharp, + Icons.cloud_done, + Icons.cloud_done_outlined, + Icons.cloud_done_rounded, + Icons.cloud_done_sharp, + Icons.cloud_download, + Icons.cloud_download_outlined, + Icons.cloud_download_rounded, + Icons.cloud_download_sharp, + Icons.cloud_off, + Icons.cloud_off_outlined, + Icons.cloud_off_rounded, + Icons.cloud_off_sharp, + Icons.cloud_outlined, + Icons.cloud_queue, + Icons.cloud_queue_outlined, + Icons.cloud_queue_rounded, + Icons.cloud_queue_sharp, + Icons.cloud_rounded, + Icons.cloud_sharp, + Icons.cloud_sync, + Icons.cloud_sync_outlined, + Icons.cloud_sync_rounded, + Icons.cloud_sync_sharp, + Icons.cloud_upload, + Icons.cloud_upload_outlined, + Icons.cloud_upload_rounded, + Icons.cloud_upload_sharp, + Icons.cloudy_snowing, + Icons.co2, + Icons.co2_outlined, + Icons.co2_rounded, + Icons.co2_sharp, + Icons.co_present, + Icons.co_present_outlined, + Icons.co_present_rounded, + Icons.co_present_sharp, + Icons.code, + Icons.code_off, + Icons.code_off_outlined, + Icons.code_off_rounded, + Icons.code_off_sharp, + Icons.code_outlined, + Icons.code_rounded, + Icons.code_sharp, + Icons.coffee, + Icons.coffee_maker, + Icons.coffee_maker_outlined, + Icons.coffee_maker_rounded, + Icons.coffee_maker_sharp, + Icons.coffee_outlined, + Icons.coffee_rounded, + Icons.coffee_sharp, + Icons.collections, + Icons.collections_bookmark, + Icons.collections_bookmark_outlined, + Icons.collections_bookmark_rounded, + Icons.collections_bookmark_sharp, + Icons.collections_outlined, + Icons.collections_rounded, + Icons.collections_sharp, + Icons.color_lens, + Icons.color_lens_outlined, + Icons.color_lens_rounded, + Icons.color_lens_sharp, + Icons.colorize, + Icons.colorize_outlined, + Icons.colorize_rounded, + Icons.colorize_sharp, + Icons.comment, + Icons.comment_bank, + Icons.comment_bank_outlined, + Icons.comment_bank_rounded, + Icons.comment_bank_sharp, + Icons.comment_outlined, + Icons.comment_rounded, + Icons.comment_sharp, + Icons.comments_disabled, + Icons.comments_disabled_outlined, + Icons.comments_disabled_rounded, + Icons.comments_disabled_sharp, + Icons.commit, + Icons.commit_outlined, + Icons.commit_rounded, + Icons.commit_sharp, + Icons.commute, + Icons.commute_outlined, + Icons.commute_rounded, + Icons.commute_sharp, + Icons.compare, + Icons.compare_arrows, + Icons.compare_arrows_outlined, + Icons.compare_arrows_rounded, + Icons.compare_arrows_sharp, + Icons.compare_outlined, + Icons.compare_rounded, + Icons.compare_sharp, + Icons.compass_calibration, + Icons.compass_calibration_outlined, + Icons.compass_calibration_rounded, + Icons.compass_calibration_sharp, + Icons.compost, + Icons.compost_outlined, + Icons.compost_rounded, + Icons.compost_sharp, + Icons.compress, + Icons.compress_outlined, + Icons.compress_rounded, + Icons.compress_sharp, + Icons.computer, + Icons.computer_outlined, + Icons.computer_rounded, + Icons.computer_sharp, + Icons.confirmation_num, + Icons.confirmation_num_outlined, + Icons.confirmation_num_rounded, + Icons.confirmation_num_sharp, + Icons.confirmation_number, + Icons.confirmation_number_outlined, + Icons.confirmation_number_rounded, + Icons.confirmation_number_sharp, + Icons.connect_without_contact, + Icons.connect_without_contact_outlined, + Icons.connect_without_contact_rounded, + Icons.connect_without_contact_sharp, + Icons.connected_tv, + Icons.connected_tv_outlined, + Icons.connected_tv_rounded, + Icons.connected_tv_sharp, + Icons.connecting_airports, + Icons.connecting_airports_outlined, + Icons.connecting_airports_rounded, + Icons.connecting_airports_sharp, + Icons.construction, + Icons.construction_outlined, + Icons.construction_rounded, + Icons.construction_sharp, + Icons.contact_emergency, + Icons.contact_emergency_outlined, + Icons.contact_emergency_rounded, + Icons.contact_emergency_sharp, + Icons.contact_mail, + Icons.contact_mail_outlined, + Icons.contact_mail_rounded, + Icons.contact_mail_sharp, + Icons.contact_page, + Icons.contact_page_outlined, + Icons.contact_page_rounded, + Icons.contact_page_sharp, + Icons.contact_phone, + Icons.contact_phone_outlined, + Icons.contact_phone_rounded, + Icons.contact_phone_sharp, + Icons.contact_support, + Icons.contact_support_outlined, + Icons.contact_support_rounded, + Icons.contact_support_sharp, + Icons.contactless, + Icons.contactless_outlined, + Icons.contactless_rounded, + Icons.contactless_sharp, + Icons.contacts, + Icons.contacts_outlined, + Icons.contacts_rounded, + Icons.contacts_sharp, + Icons.content_copy, + Icons.content_copy_outlined, + Icons.content_copy_rounded, + Icons.content_copy_sharp, + Icons.content_cut, + Icons.content_cut_outlined, + Icons.content_cut_rounded, + Icons.content_cut_sharp, + Icons.content_paste, + Icons.content_paste_go, + Icons.content_paste_go_outlined, + Icons.content_paste_go_rounded, + Icons.content_paste_go_sharp, + Icons.content_paste_off, + Icons.content_paste_off_outlined, + Icons.content_paste_off_rounded, + Icons.content_paste_off_sharp, + Icons.content_paste_outlined, + Icons.content_paste_rounded, + Icons.content_paste_search, + Icons.content_paste_search_outlined, + Icons.content_paste_search_rounded, + Icons.content_paste_search_sharp, + Icons.content_paste_sharp, + Icons.contrast, + Icons.contrast_outlined, + Icons.contrast_rounded, + Icons.contrast_sharp, + Icons.control_camera, + Icons.control_camera_outlined, + Icons.control_camera_rounded, + Icons.control_camera_sharp, + Icons.control_point, + Icons.control_point_duplicate, + Icons.control_point_duplicate_outlined, + Icons.control_point_duplicate_rounded, + Icons.control_point_duplicate_sharp, + Icons.control_point_outlined, + Icons.control_point_rounded, + Icons.control_point_sharp, + Icons.conveyor_belt, + Icons.cookie, + Icons.cookie_outlined, + Icons.cookie_rounded, + Icons.cookie_sharp, + Icons.copy, + Icons.copy_all, + Icons.copy_all_outlined, + Icons.copy_all_rounded, + Icons.copy_all_sharp, + Icons.copy_outlined, + Icons.copy_rounded, + Icons.copy_sharp, + Icons.copyright, + Icons.copyright_outlined, + Icons.copyright_rounded, + Icons.copyright_sharp, + Icons.coronavirus, + Icons.coronavirus_outlined, + Icons.coronavirus_rounded, + Icons.coronavirus_sharp, + Icons.corporate_fare, + Icons.corporate_fare_outlined, + Icons.corporate_fare_rounded, + Icons.corporate_fare_sharp, + Icons.cottage, + Icons.cottage_outlined, + Icons.cottage_rounded, + Icons.cottage_sharp, + Icons.countertops, + Icons.countertops_outlined, + Icons.countertops_rounded, + Icons.countertops_sharp, + Icons.create, + Icons.create_new_folder, + Icons.create_new_folder_outlined, + Icons.create_new_folder_rounded, + Icons.create_new_folder_sharp, + Icons.create_outlined, + Icons.create_rounded, + Icons.create_sharp, + Icons.credit_card, + Icons.credit_card_off, + Icons.credit_card_off_outlined, + Icons.credit_card_off_rounded, + Icons.credit_card_off_sharp, + Icons.credit_card_outlined, + Icons.credit_card_rounded, + Icons.credit_card_sharp, + Icons.credit_score, + Icons.credit_score_outlined, + Icons.credit_score_rounded, + Icons.credit_score_sharp, + Icons.crib, + Icons.crib_outlined, + Icons.crib_rounded, + Icons.crib_sharp, + Icons.crisis_alert, + Icons.crisis_alert_outlined, + Icons.crisis_alert_rounded, + Icons.crisis_alert_sharp, + Icons.crop, + Icons.crop_16_9, + Icons.crop_16_9_outlined, + Icons.crop_16_9_rounded, + Icons.crop_16_9_sharp, + Icons.crop_3_2, + Icons.crop_3_2_outlined, + Icons.crop_3_2_rounded, + Icons.crop_3_2_sharp, + Icons.crop_5_4, + Icons.crop_5_4_outlined, + Icons.crop_5_4_rounded, + Icons.crop_5_4_sharp, + Icons.crop_7_5, + Icons.crop_7_5_outlined, + Icons.crop_7_5_rounded, + Icons.crop_7_5_sharp, + Icons.crop_din, + Icons.crop_din_outlined, + Icons.crop_din_rounded, + Icons.crop_din_sharp, + Icons.crop_free, + Icons.crop_free_outlined, + Icons.crop_free_rounded, + Icons.crop_free_sharp, + Icons.crop_landscape, + Icons.crop_landscape_outlined, + Icons.crop_landscape_rounded, + Icons.crop_landscape_sharp, + Icons.crop_original, + Icons.crop_original_outlined, + Icons.crop_original_rounded, + Icons.crop_original_sharp, + Icons.crop_outlined, + Icons.crop_portrait, + Icons.crop_portrait_outlined, + Icons.crop_portrait_rounded, + Icons.crop_portrait_sharp, + Icons.crop_rotate, + Icons.crop_rotate_outlined, + Icons.crop_rotate_rounded, + Icons.crop_rotate_sharp, + Icons.crop_rounded, + Icons.crop_sharp, + Icons.crop_square, + Icons.crop_square_outlined, + Icons.crop_square_rounded, + Icons.crop_square_sharp, + Icons.cruelty_free, + Icons.cruelty_free_outlined, + Icons.cruelty_free_rounded, + Icons.cruelty_free_sharp, + Icons.css, + Icons.css_outlined, + Icons.css_rounded, + Icons.css_sharp, + Icons.currency_bitcoin, + Icons.currency_bitcoin_outlined, + Icons.currency_bitcoin_rounded, + Icons.currency_bitcoin_sharp, + Icons.currency_exchange, + Icons.currency_exchange_outlined, + Icons.currency_exchange_rounded, + Icons.currency_exchange_sharp, + Icons.currency_franc, + Icons.currency_franc_outlined, + Icons.currency_franc_rounded, + Icons.currency_franc_sharp, + Icons.currency_lira, + Icons.currency_lira_outlined, + Icons.currency_lira_rounded, + Icons.currency_lira_sharp, + Icons.currency_pound, + Icons.currency_pound_outlined, + Icons.currency_pound_rounded, + Icons.currency_pound_sharp, + Icons.currency_ruble, + Icons.currency_ruble_outlined, + Icons.currency_ruble_rounded, + Icons.currency_ruble_sharp, + Icons.currency_rupee, + Icons.currency_rupee_outlined, + Icons.currency_rupee_rounded, + Icons.currency_rupee_sharp, + Icons.currency_yen, + Icons.currency_yen_outlined, + Icons.currency_yen_rounded, + Icons.currency_yen_sharp, + Icons.currency_yuan, + Icons.currency_yuan_outlined, + Icons.currency_yuan_rounded, + Icons.currency_yuan_sharp, + Icons.curtains, + Icons.curtains_closed, + Icons.curtains_closed_outlined, + Icons.curtains_closed_rounded, + Icons.curtains_closed_sharp, + Icons.curtains_outlined, + Icons.curtains_rounded, + Icons.curtains_sharp, + Icons.cut, + Icons.cut_outlined, + Icons.cut_rounded, + Icons.cut_sharp, + Icons.cyclone, + Icons.cyclone_outlined, + Icons.cyclone_rounded, + Icons.cyclone_sharp, + Icons.dangerous, + Icons.dangerous_outlined, + Icons.dangerous_rounded, + Icons.dangerous_sharp, + Icons.dark_mode, + Icons.dark_mode_outlined, + Icons.dark_mode_rounded, + Icons.dark_mode_sharp, + Icons.dashboard, + Icons.dashboard_customize, + Icons.dashboard_customize_outlined, + Icons.dashboard_customize_rounded, + Icons.dashboard_customize_sharp, + Icons.dashboard_outlined, + Icons.dashboard_rounded, + Icons.dashboard_sharp, + Icons.data_array, + Icons.data_array_outlined, + Icons.data_array_rounded, + Icons.data_array_sharp, + Icons.data_exploration, + Icons.data_exploration_outlined, + Icons.data_exploration_rounded, + Icons.data_exploration_sharp, + Icons.data_object, + Icons.data_object_outlined, + Icons.data_object_rounded, + Icons.data_object_sharp, + Icons.data_saver_off, + Icons.data_saver_off_outlined, + Icons.data_saver_off_rounded, + Icons.data_saver_off_sharp, + Icons.data_saver_on, + Icons.data_saver_on_outlined, + Icons.data_saver_on_rounded, + Icons.data_saver_on_sharp, + Icons.data_thresholding, + Icons.data_thresholding_outlined, + Icons.data_thresholding_rounded, + Icons.data_thresholding_sharp, + Icons.data_usage, + Icons.data_usage_outlined, + Icons.data_usage_rounded, + Icons.data_usage_sharp, + Icons.dataset, + Icons.dataset_linked, + Icons.dataset_linked_outlined, + Icons.dataset_linked_rounded, + Icons.dataset_linked_sharp, + Icons.dataset_outlined, + Icons.dataset_rounded, + Icons.dataset_sharp, + Icons.date_range, + Icons.date_range_outlined, + Icons.date_range_rounded, + Icons.date_range_sharp, + Icons.deblur, + Icons.deblur_outlined, + Icons.deblur_rounded, + Icons.deblur_sharp, + Icons.deck, + Icons.deck_outlined, + Icons.deck_rounded, + Icons.deck_sharp, + Icons.dehaze, + Icons.dehaze_outlined, + Icons.dehaze_rounded, + Icons.dehaze_sharp, + Icons.delete, + Icons.delete_forever, + Icons.delete_forever_outlined, + Icons.delete_forever_rounded, + Icons.delete_forever_sharp, + Icons.delete_outline, + Icons.delete_outline_outlined, + Icons.delete_outline_rounded, + Icons.delete_outline_sharp, + Icons.delete_outlined, + Icons.delete_rounded, + Icons.delete_sharp, + Icons.delete_sweep, + Icons.delete_sweep_outlined, + Icons.delete_sweep_rounded, + Icons.delete_sweep_sharp, + Icons.delivery_dining, + Icons.delivery_dining_outlined, + Icons.delivery_dining_rounded, + Icons.delivery_dining_sharp, + Icons.density_large, + Icons.density_large_outlined, + Icons.density_large_rounded, + Icons.density_large_sharp, + Icons.density_medium, + Icons.density_medium_outlined, + Icons.density_medium_rounded, + Icons.density_medium_sharp, + Icons.density_small, + Icons.density_small_outlined, + Icons.density_small_rounded, + Icons.density_small_sharp, + Icons.departure_board, + Icons.departure_board_outlined, + Icons.departure_board_rounded, + Icons.departure_board_sharp, + Icons.description, + Icons.description_outlined, + Icons.description_rounded, + Icons.description_sharp, + Icons.deselect, + Icons.deselect_outlined, + Icons.deselect_rounded, + Icons.deselect_sharp, + Icons.design_services, + Icons.design_services_outlined, + Icons.design_services_rounded, + Icons.design_services_sharp, + Icons.desk, + Icons.desk_outlined, + Icons.desk_rounded, + Icons.desk_sharp, + Icons.desktop_access_disabled, + Icons.desktop_access_disabled_outlined, + Icons.desktop_access_disabled_rounded, + Icons.desktop_access_disabled_sharp, + Icons.desktop_mac, + Icons.desktop_mac_outlined, + Icons.desktop_mac_rounded, + Icons.desktop_mac_sharp, + Icons.desktop_windows, + Icons.desktop_windows_outlined, + Icons.desktop_windows_rounded, + Icons.desktop_windows_sharp, + Icons.details, + Icons.details_outlined, + Icons.details_rounded, + Icons.details_sharp, + Icons.developer_board, + Icons.developer_board_off, + Icons.developer_board_off_outlined, + Icons.developer_board_off_rounded, + Icons.developer_board_off_sharp, + Icons.developer_board_outlined, + Icons.developer_board_rounded, + Icons.developer_board_sharp, + Icons.developer_mode, + Icons.developer_mode_outlined, + Icons.developer_mode_rounded, + Icons.developer_mode_sharp, + Icons.device_hub, + Icons.device_hub_outlined, + Icons.device_hub_rounded, + Icons.device_hub_sharp, + Icons.device_thermostat, + Icons.device_thermostat_outlined, + Icons.device_thermostat_rounded, + Icons.device_thermostat_sharp, + Icons.device_unknown, + Icons.device_unknown_outlined, + Icons.device_unknown_rounded, + Icons.device_unknown_sharp, + Icons.devices, + Icons.devices_fold, + Icons.devices_fold_outlined, + Icons.devices_fold_rounded, + Icons.devices_fold_sharp, + Icons.devices_other, + Icons.devices_other_outlined, + Icons.devices_other_rounded, + Icons.devices_other_sharp, + Icons.devices_outlined, + Icons.devices_rounded, + Icons.devices_sharp, + Icons.dew_point, + Icons.dialer_sip, + Icons.dialer_sip_outlined, + Icons.dialer_sip_rounded, + Icons.dialer_sip_sharp, + Icons.dialpad, + Icons.dialpad_outlined, + Icons.dialpad_rounded, + Icons.dialpad_sharp, + Icons.diamond, + Icons.diamond_outlined, + Icons.diamond_rounded, + Icons.diamond_sharp, + Icons.difference, + Icons.difference_outlined, + Icons.difference_rounded, + Icons.difference_sharp, + Icons.dining, + Icons.dining_outlined, + Icons.dining_rounded, + Icons.dining_sharp, + Icons.dinner_dining, + Icons.dinner_dining_outlined, + Icons.dinner_dining_rounded, + Icons.dinner_dining_sharp, + Icons.directions, + Icons.directions_bike, + Icons.directions_bike_outlined, + Icons.directions_bike_rounded, + Icons.directions_bike_sharp, + Icons.directions_boat, + Icons.directions_boat_filled, + Icons.directions_boat_filled_outlined, + Icons.directions_boat_filled_rounded, + Icons.directions_boat_filled_sharp, + Icons.directions_boat_outlined, + Icons.directions_boat_rounded, + Icons.directions_boat_sharp, + Icons.directions_bus, + Icons.directions_bus_filled, + Icons.directions_bus_filled_outlined, + Icons.directions_bus_filled_rounded, + Icons.directions_bus_filled_sharp, + Icons.directions_bus_outlined, + Icons.directions_bus_rounded, + Icons.directions_bus_sharp, + Icons.directions_car, + Icons.directions_car_filled, + Icons.directions_car_filled_outlined, + Icons.directions_car_filled_rounded, + Icons.directions_car_filled_sharp, + Icons.directions_car_outlined, + Icons.directions_car_rounded, + Icons.directions_car_sharp, + Icons.directions_ferry, + Icons.directions_ferry_outlined, + Icons.directions_ferry_rounded, + Icons.directions_ferry_sharp, + Icons.directions_off, + Icons.directions_off_outlined, + Icons.directions_off_rounded, + Icons.directions_off_sharp, + Icons.directions_outlined, + Icons.directions_railway, + Icons.directions_railway_filled, + Icons.directions_railway_filled_outlined, + Icons.directions_railway_filled_rounded, + Icons.directions_railway_filled_sharp, + Icons.directions_railway_outlined, + Icons.directions_railway_rounded, + Icons.directions_railway_sharp, + Icons.directions_rounded, + Icons.directions_run, + Icons.directions_run_outlined, + Icons.directions_run_rounded, + Icons.directions_run_sharp, + Icons.directions_sharp, + Icons.directions_subway, + Icons.directions_subway_filled, + Icons.directions_subway_filled_outlined, + Icons.directions_subway_filled_rounded, + Icons.directions_subway_filled_sharp, + Icons.directions_subway_outlined, + Icons.directions_subway_rounded, + Icons.directions_subway_sharp, + Icons.directions_train, + Icons.directions_train_outlined, + Icons.directions_train_rounded, + Icons.directions_train_sharp, + Icons.directions_transit, + Icons.directions_transit_filled, + Icons.directions_transit_filled_outlined, + Icons.directions_transit_filled_rounded, + Icons.directions_transit_filled_sharp, + Icons.directions_transit_outlined, + Icons.directions_transit_rounded, + Icons.directions_transit_sharp, + Icons.directions_walk, + Icons.directions_walk_outlined, + Icons.directions_walk_rounded, + Icons.directions_walk_sharp, + Icons.dirty_lens, + Icons.dirty_lens_outlined, + Icons.dirty_lens_rounded, + Icons.dirty_lens_sharp, + Icons.disabled_by_default, + Icons.disabled_by_default_outlined, + Icons.disabled_by_default_rounded, + Icons.disabled_by_default_sharp, + Icons.disabled_visible, + Icons.disabled_visible_outlined, + Icons.disabled_visible_rounded, + Icons.disabled_visible_sharp, + Icons.disc_full, + Icons.disc_full_outlined, + Icons.disc_full_rounded, + Icons.disc_full_sharp, + Icons.discord, + Icons.discord_outlined, + Icons.discord_rounded, + Icons.discord_sharp, + Icons.discount, + Icons.discount_outlined, + Icons.discount_rounded, + Icons.discount_sharp, + Icons.display_settings, + Icons.display_settings_outlined, + Icons.display_settings_rounded, + Icons.display_settings_sharp, + Icons.diversity_1, + Icons.diversity_1_outlined, + Icons.diversity_1_rounded, + Icons.diversity_1_sharp, + Icons.diversity_2, + Icons.diversity_2_outlined, + Icons.diversity_2_rounded, + Icons.diversity_2_sharp, + Icons.diversity_3, + Icons.diversity_3_outlined, + Icons.diversity_3_rounded, + Icons.diversity_3_sharp, + Icons.dnd_forwardslash, + Icons.dnd_forwardslash_outlined, + Icons.dnd_forwardslash_rounded, + Icons.dnd_forwardslash_sharp, + Icons.dns, + Icons.dns_outlined, + Icons.dns_rounded, + Icons.dns_sharp, + Icons.do_disturb, + Icons.do_disturb_alt, + Icons.do_disturb_alt_outlined, + Icons.do_disturb_alt_rounded, + Icons.do_disturb_alt_sharp, + Icons.do_disturb_off, + Icons.do_disturb_off_outlined, + Icons.do_disturb_off_rounded, + Icons.do_disturb_off_sharp, + Icons.do_disturb_on, + Icons.do_disturb_on_outlined, + Icons.do_disturb_on_rounded, + Icons.do_disturb_on_sharp, + Icons.do_disturb_outlined, + Icons.do_disturb_rounded, + Icons.do_disturb_sharp, + Icons.do_not_disturb, + Icons.do_not_disturb_alt, + Icons.do_not_disturb_alt_outlined, + Icons.do_not_disturb_alt_rounded, + Icons.do_not_disturb_alt_sharp, + Icons.do_not_disturb_off, + Icons.do_not_disturb_off_outlined, + Icons.do_not_disturb_off_rounded, + Icons.do_not_disturb_off_sharp, + Icons.do_not_disturb_on, + Icons.do_not_disturb_on_outlined, + Icons.do_not_disturb_on_rounded, + Icons.do_not_disturb_on_sharp, + Icons.do_not_disturb_on_total_silence, + Icons.do_not_disturb_on_total_silence_outlined, + Icons.do_not_disturb_on_total_silence_rounded, + Icons.do_not_disturb_on_total_silence_sharp, + Icons.do_not_disturb_outlined, + Icons.do_not_disturb_rounded, + Icons.do_not_disturb_sharp, + Icons.do_not_step, + Icons.do_not_step_outlined, + Icons.do_not_step_rounded, + Icons.do_not_step_sharp, + Icons.do_not_touch, + Icons.do_not_touch_outlined, + Icons.do_not_touch_rounded, + Icons.do_not_touch_sharp, + Icons.dock, + Icons.dock_outlined, + Icons.dock_rounded, + Icons.dock_sharp, + Icons.document_scanner, + Icons.document_scanner_outlined, + Icons.document_scanner_rounded, + Icons.document_scanner_sharp, + Icons.domain, + Icons.domain_add, + Icons.domain_add_outlined, + Icons.domain_add_rounded, + Icons.domain_add_sharp, + Icons.domain_disabled, + Icons.domain_disabled_outlined, + Icons.domain_disabled_rounded, + Icons.domain_disabled_sharp, + Icons.domain_outlined, + Icons.domain_rounded, + Icons.domain_sharp, + Icons.domain_verification, + Icons.domain_verification_outlined, + Icons.domain_verification_rounded, + Icons.domain_verification_sharp, + Icons.done, + Icons.done_all, + Icons.done_all_outlined, + Icons.done_all_rounded, + Icons.done_all_sharp, + Icons.done_outline, + Icons.done_outline_outlined, + Icons.done_outline_rounded, + Icons.done_outline_sharp, + Icons.done_outlined, + Icons.done_rounded, + Icons.done_sharp, + Icons.donut_large, + Icons.donut_large_outlined, + Icons.donut_large_rounded, + Icons.donut_large_sharp, + Icons.donut_small, + Icons.donut_small_outlined, + Icons.donut_small_rounded, + Icons.donut_small_sharp, + Icons.door_back_door, + Icons.door_back_door_outlined, + Icons.door_back_door_rounded, + Icons.door_back_door_sharp, + Icons.door_front_door, + Icons.door_front_door_outlined, + Icons.door_front_door_rounded, + Icons.door_front_door_sharp, + Icons.door_sliding, + Icons.door_sliding_outlined, + Icons.door_sliding_rounded, + Icons.door_sliding_sharp, + Icons.doorbell, + Icons.doorbell_outlined, + Icons.doorbell_rounded, + Icons.doorbell_sharp, + Icons.double_arrow, + Icons.double_arrow_outlined, + Icons.double_arrow_rounded, + Icons.double_arrow_sharp, + Icons.downhill_skiing, + Icons.downhill_skiing_outlined, + Icons.downhill_skiing_rounded, + Icons.downhill_skiing_sharp, + Icons.download, + Icons.download_done, + Icons.download_done_outlined, + Icons.download_done_rounded, + Icons.download_done_sharp, + Icons.download_for_offline, + Icons.download_for_offline_outlined, + Icons.download_for_offline_rounded, + Icons.download_for_offline_sharp, + Icons.download_outlined, + Icons.download_rounded, + Icons.download_sharp, + Icons.downloading, + Icons.downloading_outlined, + Icons.downloading_rounded, + Icons.downloading_sharp, + Icons.drafts, + Icons.drafts_outlined, + Icons.drafts_rounded, + Icons.drafts_sharp, + Icons.drag_handle, + Icons.drag_handle_outlined, + Icons.drag_handle_rounded, + Icons.drag_handle_sharp, + Icons.drag_indicator, + Icons.drag_indicator_outlined, + Icons.drag_indicator_rounded, + Icons.drag_indicator_sharp, + Icons.draw, + Icons.draw_outlined, + Icons.draw_rounded, + Icons.draw_sharp, + Icons.drive_eta, + Icons.drive_eta_outlined, + Icons.drive_eta_rounded, + Icons.drive_eta_sharp, + Icons.drive_file_move, + Icons.drive_file_move_outline, + Icons.drive_file_move_outlined, + Icons.drive_file_move_rounded, + Icons.drive_file_move_rtl, + Icons.drive_file_move_rtl_outlined, + Icons.drive_file_move_rtl_rounded, + Icons.drive_file_move_rtl_sharp, + Icons.drive_file_move_sharp, + Icons.drive_file_rename_outline, + Icons.drive_file_rename_outline_outlined, + Icons.drive_file_rename_outline_rounded, + Icons.drive_file_rename_outline_sharp, + Icons.drive_folder_upload, + Icons.drive_folder_upload_outlined, + Icons.drive_folder_upload_rounded, + Icons.drive_folder_upload_sharp, + Icons.dry, + Icons.dry_cleaning, + Icons.dry_cleaning_outlined, + Icons.dry_cleaning_rounded, + Icons.dry_cleaning_sharp, + Icons.dry_outlined, + Icons.dry_rounded, + Icons.dry_sharp, + Icons.duo, + Icons.duo_outlined, + Icons.duo_rounded, + Icons.duo_sharp, + Icons.dvr, + Icons.dvr_outlined, + Icons.dvr_rounded, + Icons.dvr_sharp, + Icons.dynamic_feed, + Icons.dynamic_feed_outlined, + Icons.dynamic_feed_rounded, + Icons.dynamic_feed_sharp, + Icons.dynamic_form, + Icons.dynamic_form_outlined, + Icons.dynamic_form_rounded, + Icons.dynamic_form_sharp, + Icons.e_mobiledata, + Icons.e_mobiledata_outlined, + Icons.e_mobiledata_rounded, + Icons.e_mobiledata_sharp, + Icons.earbuds, + Icons.earbuds_battery, + Icons.earbuds_battery_outlined, + Icons.earbuds_battery_rounded, + Icons.earbuds_battery_sharp, + Icons.earbuds_outlined, + Icons.earbuds_rounded, + Icons.earbuds_sharp, + Icons.east, + Icons.east_outlined, + Icons.east_rounded, + Icons.east_sharp, + Icons.eco, + Icons.eco_outlined, + Icons.eco_rounded, + Icons.eco_sharp, + Icons.edgesensor_high, + Icons.edgesensor_high_outlined, + Icons.edgesensor_high_rounded, + Icons.edgesensor_high_sharp, + Icons.edgesensor_low, + Icons.edgesensor_low_outlined, + Icons.edgesensor_low_rounded, + Icons.edgesensor_low_sharp, + Icons.edit, + Icons.edit_attributes, + Icons.edit_attributes_outlined, + Icons.edit_attributes_rounded, + Icons.edit_attributes_sharp, + Icons.edit_calendar, + Icons.edit_calendar_outlined, + Icons.edit_calendar_rounded, + Icons.edit_calendar_sharp, + Icons.edit_document, + Icons.edit_location, + Icons.edit_location_alt, + Icons.edit_location_alt_outlined, + Icons.edit_location_alt_rounded, + Icons.edit_location_alt_sharp, + Icons.edit_location_outlined, + Icons.edit_location_rounded, + Icons.edit_location_sharp, + Icons.edit_note, + Icons.edit_note_outlined, + Icons.edit_note_rounded, + Icons.edit_note_sharp, + Icons.edit_notifications, + Icons.edit_notifications_outlined, + Icons.edit_notifications_rounded, + Icons.edit_notifications_sharp, + Icons.edit_off, + Icons.edit_off_outlined, + Icons.edit_off_rounded, + Icons.edit_off_sharp, + Icons.edit_outlined, + Icons.edit_road, + Icons.edit_road_outlined, + Icons.edit_road_rounded, + Icons.edit_road_sharp, + Icons.edit_rounded, + Icons.edit_sharp, + Icons.edit_square, + Icons.egg, + Icons.egg_alt, + Icons.egg_alt_outlined, + Icons.egg_alt_rounded, + Icons.egg_alt_sharp, + Icons.egg_outlined, + Icons.egg_rounded, + Icons.egg_sharp, + Icons.eight_k, + Icons.eight_k_outlined, + Icons.eight_k_plus, + Icons.eight_k_plus_outlined, + Icons.eight_k_plus_rounded, + Icons.eight_k_plus_sharp, + Icons.eight_k_rounded, + Icons.eight_k_sharp, + Icons.eight_mp, + Icons.eight_mp_outlined, + Icons.eight_mp_rounded, + Icons.eight_mp_sharp, + Icons.eighteen_mp, + Icons.eighteen_mp_outlined, + Icons.eighteen_mp_rounded, + Icons.eighteen_mp_sharp, + Icons.eighteen_up_rating, + Icons.eighteen_up_rating_outlined, + Icons.eighteen_up_rating_rounded, + Icons.eighteen_up_rating_sharp, + Icons.eject, + Icons.eject_outlined, + Icons.eject_rounded, + Icons.eject_sharp, + Icons.elderly, + Icons.elderly_outlined, + Icons.elderly_rounded, + Icons.elderly_sharp, + Icons.elderly_woman, + Icons.elderly_woman_outlined, + Icons.elderly_woman_rounded, + Icons.elderly_woman_sharp, + Icons.electric_bike, + Icons.electric_bike_outlined, + Icons.electric_bike_rounded, + Icons.electric_bike_sharp, + Icons.electric_bolt, + Icons.electric_bolt_outlined, + Icons.electric_bolt_rounded, + Icons.electric_bolt_sharp, + Icons.electric_car, + Icons.electric_car_outlined, + Icons.electric_car_rounded, + Icons.electric_car_sharp, + Icons.electric_meter, + Icons.electric_meter_outlined, + Icons.electric_meter_rounded, + Icons.electric_meter_sharp, + Icons.electric_moped, + Icons.electric_moped_outlined, + Icons.electric_moped_rounded, + Icons.electric_moped_sharp, + Icons.electric_rickshaw, + Icons.electric_rickshaw_outlined, + Icons.electric_rickshaw_rounded, + Icons.electric_rickshaw_sharp, + Icons.electric_scooter, + Icons.electric_scooter_outlined, + Icons.electric_scooter_rounded, + Icons.electric_scooter_sharp, + Icons.electrical_services, + Icons.electrical_services_outlined, + Icons.electrical_services_rounded, + Icons.electrical_services_sharp, + Icons.elevator, + Icons.elevator_outlined, + Icons.elevator_rounded, + Icons.elevator_sharp, + Icons.eleven_mp, + Icons.eleven_mp_outlined, + Icons.eleven_mp_rounded, + Icons.eleven_mp_sharp, + Icons.email, + Icons.email_outlined, + Icons.email_rounded, + Icons.email_sharp, + Icons.emergency, + Icons.emergency_outlined, + Icons.emergency_recording, + Icons.emergency_recording_outlined, + Icons.emergency_recording_rounded, + Icons.emergency_recording_sharp, + Icons.emergency_rounded, + Icons.emergency_share, + Icons.emergency_share_outlined, + Icons.emergency_share_rounded, + Icons.emergency_share_sharp, + Icons.emergency_sharp, + Icons.emoji_emotions, + Icons.emoji_emotions_outlined, + Icons.emoji_emotions_rounded, + Icons.emoji_emotions_sharp, + Icons.emoji_events, + Icons.emoji_events_outlined, + Icons.emoji_events_rounded, + Icons.emoji_events_sharp, + Icons.emoji_flags, + Icons.emoji_flags_outlined, + Icons.emoji_flags_rounded, + Icons.emoji_flags_sharp, + Icons.emoji_food_beverage, + Icons.emoji_food_beverage_outlined, + Icons.emoji_food_beverage_rounded, + Icons.emoji_food_beverage_sharp, + Icons.emoji_nature, + Icons.emoji_nature_outlined, + Icons.emoji_nature_rounded, + Icons.emoji_nature_sharp, + Icons.emoji_objects, + Icons.emoji_objects_outlined, + Icons.emoji_objects_rounded, + Icons.emoji_objects_sharp, + Icons.emoji_people, + Icons.emoji_people_outlined, + Icons.emoji_people_rounded, + Icons.emoji_people_sharp, + Icons.emoji_symbols, + Icons.emoji_symbols_outlined, + Icons.emoji_symbols_rounded, + Icons.emoji_symbols_sharp, + Icons.emoji_transportation, + Icons.emoji_transportation_outlined, + Icons.emoji_transportation_rounded, + Icons.emoji_transportation_sharp, + Icons.energy_savings_leaf, + Icons.energy_savings_leaf_outlined, + Icons.energy_savings_leaf_rounded, + Icons.energy_savings_leaf_sharp, + Icons.engineering, + Icons.engineering_outlined, + Icons.engineering_rounded, + Icons.engineering_sharp, + Icons.enhance_photo_translate, + Icons.enhance_photo_translate_outlined, + Icons.enhance_photo_translate_rounded, + Icons.enhance_photo_translate_sharp, + Icons.enhanced_encryption, + Icons.enhanced_encryption_outlined, + Icons.enhanced_encryption_rounded, + Icons.enhanced_encryption_sharp, + Icons.equalizer, + Icons.equalizer_outlined, + Icons.equalizer_rounded, + Icons.equalizer_sharp, + Icons.error, + Icons.error_outline, + Icons.error_outline_outlined, + Icons.error_outline_rounded, + Icons.error_outline_sharp, + Icons.error_outlined, + Icons.error_rounded, + Icons.error_sharp, + Icons.escalator, + Icons.escalator_outlined, + Icons.escalator_rounded, + Icons.escalator_sharp, + Icons.escalator_warning, + Icons.escalator_warning_outlined, + Icons.escalator_warning_rounded, + Icons.escalator_warning_sharp, + Icons.euro, + Icons.euro_outlined, + Icons.euro_rounded, + Icons.euro_sharp, + Icons.euro_symbol, + Icons.euro_symbol_outlined, + Icons.euro_symbol_rounded, + Icons.euro_symbol_sharp, + Icons.ev_station, + Icons.ev_station_outlined, + Icons.ev_station_rounded, + Icons.ev_station_sharp, + Icons.event, + Icons.event_available, + Icons.event_available_outlined, + Icons.event_available_rounded, + Icons.event_available_sharp, + Icons.event_busy, + Icons.event_busy_outlined, + Icons.event_busy_rounded, + Icons.event_busy_sharp, + Icons.event_note, + Icons.event_note_outlined, + Icons.event_note_rounded, + Icons.event_note_sharp, + Icons.event_outlined, + Icons.event_repeat, + Icons.event_repeat_outlined, + Icons.event_repeat_rounded, + Icons.event_repeat_sharp, + Icons.event_rounded, + Icons.event_seat, + Icons.event_seat_outlined, + Icons.event_seat_rounded, + Icons.event_seat_sharp, + Icons.event_sharp, + Icons.exit_to_app, + Icons.exit_to_app_outlined, + Icons.exit_to_app_rounded, + Icons.exit_to_app_sharp, + Icons.expand, + Icons.expand_circle_down, + Icons.expand_circle_down_outlined, + Icons.expand_circle_down_rounded, + Icons.expand_circle_down_sharp, + Icons.expand_less, + Icons.expand_less_outlined, + Icons.expand_less_rounded, + Icons.expand_less_sharp, + Icons.expand_more, + Icons.expand_more_outlined, + Icons.expand_more_rounded, + Icons.expand_more_sharp, + Icons.expand_outlined, + Icons.expand_rounded, + Icons.expand_sharp, + Icons.explicit, + Icons.explicit_outlined, + Icons.explicit_rounded, + Icons.explicit_sharp, + Icons.explore, + Icons.explore_off, + Icons.explore_off_outlined, + Icons.explore_off_rounded, + Icons.explore_off_sharp, + Icons.explore_outlined, + Icons.explore_rounded, + Icons.explore_sharp, + Icons.exposure, + Icons.exposure_minus_1, + Icons.exposure_minus_1_outlined, + Icons.exposure_minus_1_rounded, + Icons.exposure_minus_1_sharp, + Icons.exposure_minus_2, + Icons.exposure_minus_2_outlined, + Icons.exposure_minus_2_rounded, + Icons.exposure_minus_2_sharp, + Icons.exposure_neg_1, + Icons.exposure_neg_1_outlined, + Icons.exposure_neg_1_rounded, + Icons.exposure_neg_1_sharp, + Icons.exposure_neg_2, + Icons.exposure_neg_2_outlined, + Icons.exposure_neg_2_rounded, + Icons.exposure_neg_2_sharp, + Icons.exposure_outlined, + Icons.exposure_plus_1, + Icons.exposure_plus_1_outlined, + Icons.exposure_plus_1_rounded, + Icons.exposure_plus_1_sharp, + Icons.exposure_plus_2, + Icons.exposure_plus_2_outlined, + Icons.exposure_plus_2_rounded, + Icons.exposure_plus_2_sharp, + Icons.exposure_rounded, + Icons.exposure_sharp, + Icons.exposure_zero, + Icons.exposure_zero_outlined, + Icons.exposure_zero_rounded, + Icons.exposure_zero_sharp, + Icons.extension, + Icons.extension_off, + Icons.extension_off_outlined, + Icons.extension_off_rounded, + Icons.extension_off_sharp, + Icons.extension_outlined, + Icons.extension_rounded, + Icons.extension_sharp, + Icons.face, + Icons.face_2, + Icons.face_2_outlined, + Icons.face_2_rounded, + Icons.face_2_sharp, + Icons.face_3, + Icons.face_3_outlined, + Icons.face_3_rounded, + Icons.face_3_sharp, + Icons.face_4, + Icons.face_4_outlined, + Icons.face_4_rounded, + Icons.face_4_sharp, + Icons.face_5, + Icons.face_5_outlined, + Icons.face_5_rounded, + Icons.face_5_sharp, + Icons.face_6, + Icons.face_6_outlined, + Icons.face_6_rounded, + Icons.face_6_sharp, + Icons.face_outlined, + Icons.face_retouching_natural, + Icons.face_retouching_natural_outlined, + Icons.face_retouching_natural_rounded, + Icons.face_retouching_natural_sharp, + Icons.face_retouching_off, + Icons.face_retouching_off_outlined, + Icons.face_retouching_off_rounded, + Icons.face_retouching_off_sharp, + Icons.face_rounded, + Icons.face_sharp, + Icons.face_unlock_outlined, + Icons.face_unlock_rounded, + Icons.face_unlock_sharp, + Icons.facebook, + Icons.facebook_outlined, + Icons.facebook_rounded, + Icons.facebook_sharp, + Icons.fact_check, + Icons.fact_check_outlined, + Icons.fact_check_rounded, + Icons.fact_check_sharp, + Icons.factory, + Icons.factory_outlined, + Icons.factory_rounded, + Icons.factory_sharp, + Icons.family_restroom, + Icons.family_restroom_outlined, + Icons.family_restroom_rounded, + Icons.family_restroom_sharp, + Icons.fast_forward, + Icons.fast_forward_outlined, + Icons.fast_forward_rounded, + Icons.fast_forward_sharp, + Icons.fast_rewind, + Icons.fast_rewind_outlined, + Icons.fast_rewind_rounded, + Icons.fast_rewind_sharp, + Icons.fastfood, + Icons.fastfood_outlined, + Icons.fastfood_rounded, + Icons.fastfood_sharp, + Icons.favorite, + Icons.favorite_border, + Icons.favorite_border_outlined, + Icons.favorite_border_rounded, + Icons.favorite_border_sharp, + Icons.favorite_outline, + Icons.favorite_outline_outlined, + Icons.favorite_outline_rounded, + Icons.favorite_outline_sharp, + Icons.favorite_outlined, + Icons.favorite_rounded, + Icons.favorite_sharp, + Icons.fax, + Icons.fax_outlined, + Icons.fax_rounded, + Icons.fax_sharp, + Icons.featured_play_list, + Icons.featured_play_list_outlined, + Icons.featured_play_list_rounded, + Icons.featured_play_list_sharp, + Icons.featured_video, + Icons.featured_video_outlined, + Icons.featured_video_rounded, + Icons.featured_video_sharp, + Icons.feed, + Icons.feed_outlined, + Icons.feed_rounded, + Icons.feed_sharp, + Icons.feedback, + Icons.feedback_outlined, + Icons.feedback_rounded, + Icons.feedback_sharp, + Icons.female, + Icons.female_outlined, + Icons.female_rounded, + Icons.female_sharp, + Icons.fence, + Icons.fence_outlined, + Icons.fence_rounded, + Icons.fence_sharp, + Icons.festival, + Icons.festival_outlined, + Icons.festival_rounded, + Icons.festival_sharp, + Icons.fiber_dvr, + Icons.fiber_dvr_outlined, + Icons.fiber_dvr_rounded, + Icons.fiber_dvr_sharp, + Icons.fiber_manual_record, + Icons.fiber_manual_record_outlined, + Icons.fiber_manual_record_rounded, + Icons.fiber_manual_record_sharp, + Icons.fiber_new, + Icons.fiber_new_outlined, + Icons.fiber_new_rounded, + Icons.fiber_new_sharp, + Icons.fiber_pin, + Icons.fiber_pin_outlined, + Icons.fiber_pin_rounded, + Icons.fiber_pin_sharp, + Icons.fiber_smart_record, + Icons.fiber_smart_record_outlined, + Icons.fiber_smart_record_rounded, + Icons.fiber_smart_record_sharp, + Icons.fifteen_mp, + Icons.fifteen_mp_outlined, + Icons.fifteen_mp_rounded, + Icons.fifteen_mp_sharp, + Icons.file_copy, + Icons.file_copy_outlined, + Icons.file_copy_rounded, + Icons.file_copy_sharp, + Icons.file_download, + Icons.file_download_done, + Icons.file_download_done_outlined, + Icons.file_download_done_rounded, + Icons.file_download_done_sharp, + Icons.file_download_off, + Icons.file_download_off_outlined, + Icons.file_download_off_rounded, + Icons.file_download_off_sharp, + Icons.file_download_outlined, + Icons.file_download_rounded, + Icons.file_download_sharp, + Icons.file_open, + Icons.file_open_outlined, + Icons.file_open_rounded, + Icons.file_open_sharp, + Icons.file_present, + Icons.file_present_outlined, + Icons.file_present_rounded, + Icons.file_present_sharp, + Icons.file_upload, + Icons.file_upload_off, + Icons.file_upload_outlined, + Icons.file_upload_rounded, + Icons.file_upload_sharp, + Icons.filter, + Icons.filter_1, + Icons.filter_1_outlined, + Icons.filter_1_rounded, + Icons.filter_1_sharp, + Icons.filter_2, + Icons.filter_2_outlined, + Icons.filter_2_rounded, + Icons.filter_2_sharp, + Icons.filter_3, + Icons.filter_3_outlined, + Icons.filter_3_rounded, + Icons.filter_3_sharp, + Icons.filter_4, + Icons.filter_4_outlined, + Icons.filter_4_rounded, + Icons.filter_4_sharp, + Icons.filter_5, + Icons.filter_5_outlined, + Icons.filter_5_rounded, + Icons.filter_5_sharp, + Icons.filter_6, + Icons.filter_6_outlined, + Icons.filter_6_rounded, + Icons.filter_6_sharp, + Icons.filter_7, + Icons.filter_7_outlined, + Icons.filter_7_rounded, + Icons.filter_7_sharp, + Icons.filter_8, + Icons.filter_8_outlined, + Icons.filter_8_rounded, + Icons.filter_8_sharp, + Icons.filter_9, + Icons.filter_9_outlined, + Icons.filter_9_plus, + Icons.filter_9_plus_outlined, + Icons.filter_9_plus_rounded, + Icons.filter_9_plus_sharp, + Icons.filter_9_rounded, + Icons.filter_9_sharp, + Icons.filter_alt, + Icons.filter_alt_off, + Icons.filter_alt_off_outlined, + Icons.filter_alt_off_rounded, + Icons.filter_alt_off_sharp, + Icons.filter_alt_outlined, + Icons.filter_alt_rounded, + Icons.filter_alt_sharp, + Icons.filter_b_and_w, + Icons.filter_b_and_w_outlined, + Icons.filter_b_and_w_rounded, + Icons.filter_b_and_w_sharp, + Icons.filter_center_focus, + Icons.filter_center_focus_outlined, + Icons.filter_center_focus_rounded, + Icons.filter_center_focus_sharp, + Icons.filter_drama, + Icons.filter_drama_outlined, + Icons.filter_drama_rounded, + Icons.filter_drama_sharp, + Icons.filter_frames, + Icons.filter_frames_outlined, + Icons.filter_frames_rounded, + Icons.filter_frames_sharp, + Icons.filter_hdr, + Icons.filter_hdr_outlined, + Icons.filter_hdr_rounded, + Icons.filter_hdr_sharp, + Icons.filter_list, + Icons.filter_list_alt, + Icons.filter_list_off, + Icons.filter_list_off_outlined, + Icons.filter_list_off_rounded, + Icons.filter_list_off_sharp, + Icons.filter_list_outlined, + Icons.filter_list_rounded, + Icons.filter_list_sharp, + Icons.filter_none, + Icons.filter_none_outlined, + Icons.filter_none_rounded, + Icons.filter_none_sharp, + Icons.filter_outlined, + Icons.filter_rounded, + Icons.filter_sharp, + Icons.filter_tilt_shift, + Icons.filter_tilt_shift_outlined, + Icons.filter_tilt_shift_rounded, + Icons.filter_tilt_shift_sharp, + Icons.filter_vintage, + Icons.filter_vintage_outlined, + Icons.filter_vintage_rounded, + Icons.filter_vintage_sharp, + Icons.find_in_page, + Icons.find_in_page_outlined, + Icons.find_in_page_rounded, + Icons.find_in_page_sharp, + Icons.find_replace, + Icons.find_replace_outlined, + Icons.find_replace_rounded, + Icons.find_replace_sharp, + Icons.fingerprint, + Icons.fingerprint_outlined, + Icons.fingerprint_rounded, + Icons.fingerprint_sharp, + Icons.fire_extinguisher, + Icons.fire_extinguisher_outlined, + Icons.fire_extinguisher_rounded, + Icons.fire_extinguisher_sharp, + Icons.fire_hydrant, + Icons.fire_hydrant_alt, + Icons.fire_hydrant_alt_outlined, + Icons.fire_hydrant_alt_rounded, + Icons.fire_hydrant_alt_sharp, + Icons.fire_truck, + Icons.fire_truck_outlined, + Icons.fire_truck_rounded, + Icons.fire_truck_sharp, + Icons.fireplace, + Icons.fireplace_outlined, + Icons.fireplace_rounded, + Icons.fireplace_sharp, + Icons.first_page, + Icons.first_page_outlined, + Icons.first_page_rounded, + Icons.first_page_sharp, + Icons.fit_screen, + Icons.fit_screen_outlined, + Icons.fit_screen_rounded, + Icons.fit_screen_sharp, + Icons.fitbit, + Icons.fitbit_outlined, + Icons.fitbit_rounded, + Icons.fitbit_sharp, + Icons.fitness_center, + Icons.fitness_center_outlined, + Icons.fitness_center_rounded, + Icons.fitness_center_sharp, + Icons.five_g, + Icons.five_g_outlined, + Icons.five_g_rounded, + Icons.five_g_sharp, + Icons.five_k, + Icons.five_k_outlined, + Icons.five_k_plus, + Icons.five_k_plus_outlined, + Icons.five_k_plus_rounded, + Icons.five_k_plus_sharp, + Icons.five_k_rounded, + Icons.five_k_sharp, + Icons.five_mp, + Icons.five_mp_outlined, + Icons.five_mp_rounded, + Icons.five_mp_sharp, + Icons.flag, + Icons.flag_circle, + Icons.flag_circle_outlined, + Icons.flag_circle_rounded, + Icons.flag_circle_sharp, + Icons.flag_outlined, + Icons.flag_rounded, + Icons.flag_sharp, + Icons.flaky, + Icons.flaky_outlined, + Icons.flaky_rounded, + Icons.flaky_sharp, + Icons.flare, + Icons.flare_outlined, + Icons.flare_rounded, + Icons.flare_sharp, + Icons.flash_auto, + Icons.flash_auto_outlined, + Icons.flash_auto_rounded, + Icons.flash_auto_sharp, + Icons.flash_off, + Icons.flash_off_outlined, + Icons.flash_off_rounded, + Icons.flash_off_sharp, + Icons.flash_on, + Icons.flash_on_outlined, + Icons.flash_on_rounded, + Icons.flash_on_sharp, + Icons.flashlight_off, + Icons.flashlight_off_outlined, + Icons.flashlight_off_rounded, + Icons.flashlight_off_sharp, + Icons.flashlight_on, + Icons.flashlight_on_outlined, + Icons.flashlight_on_rounded, + Icons.flashlight_on_sharp, + Icons.flatware, + Icons.flatware_outlined, + Icons.flatware_rounded, + Icons.flatware_sharp, + Icons.flight, + Icons.flight_class, + Icons.flight_class_outlined, + Icons.flight_class_rounded, + Icons.flight_class_sharp, + Icons.flight_land, + Icons.flight_land_outlined, + Icons.flight_land_rounded, + Icons.flight_land_sharp, + Icons.flight_outlined, + Icons.flight_rounded, + Icons.flight_sharp, + Icons.flight_takeoff, + Icons.flight_takeoff_outlined, + Icons.flight_takeoff_rounded, + Icons.flight_takeoff_sharp, + Icons.flip, + Icons.flip_camera_android, + Icons.flip_camera_android_outlined, + Icons.flip_camera_android_rounded, + Icons.flip_camera_android_sharp, + Icons.flip_camera_ios, + Icons.flip_camera_ios_outlined, + Icons.flip_camera_ios_rounded, + Icons.flip_camera_ios_sharp, + Icons.flip_outlined, + Icons.flip_rounded, + Icons.flip_sharp, + Icons.flip_to_back, + Icons.flip_to_back_outlined, + Icons.flip_to_back_rounded, + Icons.flip_to_back_sharp, + Icons.flip_to_front, + Icons.flip_to_front_outlined, + Icons.flip_to_front_rounded, + Icons.flip_to_front_sharp, + Icons.flood, + Icons.flood_outlined, + Icons.flood_rounded, + Icons.flood_sharp, + Icons.flourescent, + Icons.flourescent_outlined, + Icons.flourescent_rounded, + Icons.flourescent_sharp, + Icons.fluorescent, + Icons.fluorescent_outlined, + Icons.fluorescent_rounded, + Icons.fluorescent_sharp, + Icons.flutter_dash, + Icons.flutter_dash_outlined, + Icons.flutter_dash_rounded, + Icons.flutter_dash_sharp, + Icons.fmd_bad, + Icons.fmd_bad_outlined, + Icons.fmd_bad_rounded, + Icons.fmd_bad_sharp, + Icons.fmd_good, + Icons.fmd_good_outlined, + Icons.fmd_good_rounded, + Icons.fmd_good_sharp, + Icons.foggy, + Icons.folder, + Icons.folder_copy, + Icons.folder_copy_outlined, + Icons.folder_copy_rounded, + Icons.folder_copy_sharp, + Icons.folder_delete, + Icons.folder_delete_outlined, + Icons.folder_delete_rounded, + Icons.folder_delete_sharp, + Icons.folder_off, + Icons.folder_off_outlined, + Icons.folder_off_rounded, + Icons.folder_off_sharp, + Icons.folder_open, + Icons.folder_open_outlined, + Icons.folder_open_rounded, + Icons.folder_open_sharp, + Icons.folder_outlined, + Icons.folder_rounded, + Icons.folder_shared, + Icons.folder_shared_outlined, + Icons.folder_shared_rounded, + Icons.folder_shared_sharp, + Icons.folder_sharp, + Icons.folder_special, + Icons.folder_special_outlined, + Icons.folder_special_rounded, + Icons.folder_special_sharp, + Icons.folder_zip, + Icons.folder_zip_outlined, + Icons.folder_zip_rounded, + Icons.folder_zip_sharp, + Icons.follow_the_signs, + Icons.follow_the_signs_outlined, + Icons.follow_the_signs_rounded, + Icons.follow_the_signs_sharp, + Icons.font_download, + Icons.font_download_off, + Icons.font_download_off_outlined, + Icons.font_download_off_rounded, + Icons.font_download_off_sharp, + Icons.font_download_outlined, + Icons.font_download_rounded, + Icons.font_download_sharp, + Icons.food_bank, + Icons.food_bank_outlined, + Icons.food_bank_rounded, + Icons.food_bank_sharp, + Icons.forest, + Icons.forest_outlined, + Icons.forest_rounded, + Icons.forest_sharp, + Icons.fork_left, + Icons.fork_left_outlined, + Icons.fork_left_rounded, + Icons.fork_left_sharp, + Icons.fork_right, + Icons.fork_right_outlined, + Icons.fork_right_rounded, + Icons.fork_right_sharp, + Icons.forklift, + Icons.format_align_center, + Icons.format_align_center_outlined, + Icons.format_align_center_rounded, + Icons.format_align_center_sharp, + Icons.format_align_justify, + Icons.format_align_justify_outlined, + Icons.format_align_justify_rounded, + Icons.format_align_justify_sharp, + Icons.format_align_left, + Icons.format_align_left_outlined, + Icons.format_align_left_rounded, + Icons.format_align_left_sharp, + Icons.format_align_right, + Icons.format_align_right_outlined, + Icons.format_align_right_rounded, + Icons.format_align_right_sharp, + Icons.format_bold, + Icons.format_bold_outlined, + Icons.format_bold_rounded, + Icons.format_bold_sharp, + Icons.format_clear, + Icons.format_clear_outlined, + Icons.format_clear_rounded, + Icons.format_clear_sharp, + Icons.format_color_fill, + Icons.format_color_fill_outlined, + Icons.format_color_fill_rounded, + Icons.format_color_fill_sharp, + Icons.format_color_reset, + Icons.format_color_reset_outlined, + Icons.format_color_reset_rounded, + Icons.format_color_reset_sharp, + Icons.format_color_text, + Icons.format_color_text_outlined, + Icons.format_color_text_rounded, + Icons.format_color_text_sharp, + Icons.format_indent_decrease, + Icons.format_indent_decrease_outlined, + Icons.format_indent_decrease_rounded, + Icons.format_indent_decrease_sharp, + Icons.format_indent_increase, + Icons.format_indent_increase_outlined, + Icons.format_indent_increase_rounded, + Icons.format_indent_increase_sharp, + Icons.format_italic, + Icons.format_italic_outlined, + Icons.format_italic_rounded, + Icons.format_italic_sharp, + Icons.format_line_spacing, + Icons.format_line_spacing_outlined, + Icons.format_line_spacing_rounded, + Icons.format_line_spacing_sharp, + Icons.format_list_bulleted, + Icons.format_list_bulleted_add, + Icons.format_list_bulleted_outlined, + Icons.format_list_bulleted_rounded, + Icons.format_list_bulleted_sharp, + Icons.format_list_numbered, + Icons.format_list_numbered_outlined, + Icons.format_list_numbered_rounded, + Icons.format_list_numbered_rtl, + Icons.format_list_numbered_rtl_outlined, + Icons.format_list_numbered_rtl_rounded, + Icons.format_list_numbered_rtl_sharp, + Icons.format_list_numbered_sharp, + Icons.format_overline, + Icons.format_overline_outlined, + Icons.format_overline_rounded, + Icons.format_overline_sharp, + Icons.format_paint, + Icons.format_paint_outlined, + Icons.format_paint_rounded, + Icons.format_paint_sharp, + Icons.format_quote, + Icons.format_quote_outlined, + Icons.format_quote_rounded, + Icons.format_quote_sharp, + Icons.format_shapes, + Icons.format_shapes_outlined, + Icons.format_shapes_rounded, + Icons.format_shapes_sharp, + Icons.format_size, + Icons.format_size_outlined, + Icons.format_size_rounded, + Icons.format_size_sharp, + Icons.format_strikethrough, + Icons.format_strikethrough_outlined, + Icons.format_strikethrough_rounded, + Icons.format_strikethrough_sharp, + Icons.format_textdirection_l_to_r, + Icons.format_textdirection_l_to_r_outlined, + Icons.format_textdirection_l_to_r_rounded, + Icons.format_textdirection_l_to_r_sharp, + Icons.format_textdirection_r_to_l, + Icons.format_textdirection_r_to_l_outlined, + Icons.format_textdirection_r_to_l_rounded, + Icons.format_textdirection_r_to_l_sharp, + Icons.format_underline, + Icons.format_underline_outlined, + Icons.format_underline_rounded, + Icons.format_underline_sharp, + Icons.format_underlined, + Icons.format_underlined_outlined, + Icons.format_underlined_rounded, + Icons.format_underlined_sharp, + Icons.fort, + Icons.fort_outlined, + Icons.fort_rounded, + Icons.fort_sharp, + Icons.forum, + Icons.forum_outlined, + Icons.forum_rounded, + Icons.forum_sharp, + Icons.forward, + Icons.forward_10, + Icons.forward_10_outlined, + Icons.forward_10_rounded, + Icons.forward_10_sharp, + Icons.forward_30, + Icons.forward_30_outlined, + Icons.forward_30_rounded, + Icons.forward_30_sharp, + Icons.forward_5, + Icons.forward_5_outlined, + Icons.forward_5_rounded, + Icons.forward_5_sharp, + Icons.forward_outlined, + Icons.forward_rounded, + Icons.forward_sharp, + Icons.forward_to_inbox, + Icons.forward_to_inbox_outlined, + Icons.forward_to_inbox_rounded, + Icons.forward_to_inbox_sharp, + Icons.foundation, + Icons.foundation_outlined, + Icons.foundation_rounded, + Icons.foundation_sharp, + Icons.four_g_mobiledata, + Icons.four_g_mobiledata_outlined, + Icons.four_g_mobiledata_rounded, + Icons.four_g_mobiledata_sharp, + Icons.four_g_plus_mobiledata, + Icons.four_g_plus_mobiledata_outlined, + Icons.four_g_plus_mobiledata_rounded, + Icons.four_g_plus_mobiledata_sharp, + Icons.four_k, + Icons.four_k_outlined, + Icons.four_k_plus, + Icons.four_k_plus_outlined, + Icons.four_k_plus_rounded, + Icons.four_k_plus_sharp, + Icons.four_k_rounded, + Icons.four_k_sharp, + Icons.four_mp, + Icons.four_mp_outlined, + Icons.four_mp_rounded, + Icons.four_mp_sharp, + Icons.fourteen_mp, + Icons.fourteen_mp_outlined, + Icons.fourteen_mp_rounded, + Icons.fourteen_mp_sharp, + Icons.free_breakfast, + Icons.free_breakfast_outlined, + Icons.free_breakfast_rounded, + Icons.free_breakfast_sharp, + Icons.free_cancellation, + Icons.free_cancellation_outlined, + Icons.free_cancellation_rounded, + Icons.free_cancellation_sharp, + Icons.front_hand, + Icons.front_hand_outlined, + Icons.front_hand_rounded, + Icons.front_hand_sharp, + Icons.front_loader, + Icons.fullscreen, + Icons.fullscreen_exit, + Icons.fullscreen_exit_outlined, + Icons.fullscreen_exit_rounded, + Icons.fullscreen_exit_sharp, + Icons.fullscreen_outlined, + Icons.fullscreen_rounded, + Icons.fullscreen_sharp, + Icons.functions, + Icons.functions_outlined, + Icons.functions_rounded, + Icons.functions_sharp, + Icons.g_mobiledata, + Icons.g_mobiledata_outlined, + Icons.g_mobiledata_rounded, + Icons.g_mobiledata_sharp, + Icons.g_translate, + Icons.g_translate_outlined, + Icons.g_translate_rounded, + Icons.g_translate_sharp, + Icons.gamepad, + Icons.gamepad_outlined, + Icons.gamepad_rounded, + Icons.gamepad_sharp, + Icons.games, + Icons.games_outlined, + Icons.games_rounded, + Icons.games_sharp, + Icons.garage, + Icons.garage_outlined, + Icons.garage_rounded, + Icons.garage_sharp, + Icons.gas_meter, + Icons.gas_meter_outlined, + Icons.gas_meter_rounded, + Icons.gas_meter_sharp, + Icons.gavel, + Icons.gavel_outlined, + Icons.gavel_rounded, + Icons.gavel_sharp, + Icons.generating_tokens, + Icons.generating_tokens_outlined, + Icons.generating_tokens_rounded, + Icons.generating_tokens_sharp, + Icons.gesture, + Icons.gesture_outlined, + Icons.gesture_rounded, + Icons.gesture_sharp, + Icons.get_app, + Icons.get_app_outlined, + Icons.get_app_rounded, + Icons.get_app_sharp, + Icons.gif, + Icons.gif_box, + Icons.gif_box_outlined, + Icons.gif_box_rounded, + Icons.gif_box_sharp, + Icons.gif_outlined, + Icons.gif_rounded, + Icons.gif_sharp, + Icons.girl, + Icons.girl_outlined, + Icons.girl_rounded, + Icons.girl_sharp, + Icons.gite, + Icons.gite_outlined, + Icons.gite_rounded, + Icons.gite_sharp, + Icons.golf_course, + Icons.golf_course_outlined, + Icons.golf_course_rounded, + Icons.golf_course_sharp, + Icons.gpp_bad, + Icons.gpp_bad_outlined, + Icons.gpp_bad_rounded, + Icons.gpp_bad_sharp, + Icons.gpp_good, + Icons.gpp_good_outlined, + Icons.gpp_good_rounded, + Icons.gpp_good_sharp, + Icons.gpp_maybe, + Icons.gpp_maybe_outlined, + Icons.gpp_maybe_rounded, + Icons.gpp_maybe_sharp, + Icons.gps_fixed, + Icons.gps_fixed_outlined, + Icons.gps_fixed_rounded, + Icons.gps_fixed_sharp, + Icons.gps_not_fixed, + Icons.gps_not_fixed_outlined, + Icons.gps_not_fixed_rounded, + Icons.gps_not_fixed_sharp, + Icons.gps_off, + Icons.gps_off_outlined, + Icons.gps_off_rounded, + Icons.gps_off_sharp, + Icons.grade, + Icons.grade_outlined, + Icons.grade_rounded, + Icons.grade_sharp, + Icons.gradient, + Icons.gradient_outlined, + Icons.gradient_rounded, + Icons.gradient_sharp, + Icons.grading, + Icons.grading_outlined, + Icons.grading_rounded, + Icons.grading_sharp, + Icons.grain, + Icons.grain_outlined, + Icons.grain_rounded, + Icons.grain_sharp, + Icons.graphic_eq, + Icons.graphic_eq_outlined, + Icons.graphic_eq_rounded, + Icons.graphic_eq_sharp, + Icons.grass, + Icons.grass_outlined, + Icons.grass_rounded, + Icons.grass_sharp, + Icons.grid_3x3, + Icons.grid_3x3_outlined, + Icons.grid_3x3_rounded, + Icons.grid_3x3_sharp, + Icons.grid_4x4, + Icons.grid_4x4_outlined, + Icons.grid_4x4_rounded, + Icons.grid_4x4_sharp, + Icons.grid_goldenratio, + Icons.grid_goldenratio_outlined, + Icons.grid_goldenratio_rounded, + Icons.grid_goldenratio_sharp, + Icons.grid_off, + Icons.grid_off_outlined, + Icons.grid_off_rounded, + Icons.grid_off_sharp, + Icons.grid_on, + Icons.grid_on_outlined, + Icons.grid_on_rounded, + Icons.grid_on_sharp, + Icons.grid_view, + Icons.grid_view_outlined, + Icons.grid_view_rounded, + Icons.grid_view_sharp, + Icons.group, + Icons.group_add, + Icons.group_add_outlined, + Icons.group_add_rounded, + Icons.group_add_sharp, + Icons.group_off, + Icons.group_off_outlined, + Icons.group_off_rounded, + Icons.group_off_sharp, + Icons.group_outlined, + Icons.group_remove, + Icons.group_remove_outlined, + Icons.group_remove_rounded, + Icons.group_remove_sharp, + Icons.group_rounded, + Icons.group_sharp, + Icons.group_work, + Icons.group_work_outlined, + Icons.group_work_rounded, + Icons.group_work_sharp, + Icons.groups, + Icons.groups_2, + Icons.groups_2_outlined, + Icons.groups_2_rounded, + Icons.groups_2_sharp, + Icons.groups_3, + Icons.groups_3_outlined, + Icons.groups_3_rounded, + Icons.groups_3_sharp, + Icons.groups_outlined, + Icons.groups_rounded, + Icons.groups_sharp, + Icons.h_mobiledata, + Icons.h_mobiledata_outlined, + Icons.h_mobiledata_rounded, + Icons.h_mobiledata_sharp, + Icons.h_plus_mobiledata, + Icons.h_plus_mobiledata_outlined, + Icons.h_plus_mobiledata_rounded, + Icons.h_plus_mobiledata_sharp, + Icons.hail, + Icons.hail_outlined, + Icons.hail_rounded, + Icons.hail_sharp, + Icons.handshake, + Icons.handshake_outlined, + Icons.handshake_rounded, + Icons.handshake_sharp, + Icons.handyman, + Icons.handyman_outlined, + Icons.handyman_rounded, + Icons.handyman_sharp, + Icons.hardware, + Icons.hardware_outlined, + Icons.hardware_rounded, + Icons.hardware_sharp, + Icons.hd, + Icons.hd_outlined, + Icons.hd_rounded, + Icons.hd_sharp, + Icons.hdr_auto, + Icons.hdr_auto_outlined, + Icons.hdr_auto_rounded, + Icons.hdr_auto_select, + Icons.hdr_auto_select_outlined, + Icons.hdr_auto_select_rounded, + Icons.hdr_auto_select_sharp, + Icons.hdr_auto_sharp, + Icons.hdr_enhanced_select, + Icons.hdr_enhanced_select_outlined, + Icons.hdr_enhanced_select_rounded, + Icons.hdr_enhanced_select_sharp, + Icons.hdr_off, + Icons.hdr_off_outlined, + Icons.hdr_off_rounded, + Icons.hdr_off_select, + Icons.hdr_off_select_outlined, + Icons.hdr_off_select_rounded, + Icons.hdr_off_select_sharp, + Icons.hdr_off_sharp, + Icons.hdr_on, + Icons.hdr_on_outlined, + Icons.hdr_on_rounded, + Icons.hdr_on_select, + Icons.hdr_on_select_outlined, + Icons.hdr_on_select_rounded, + Icons.hdr_on_select_sharp, + Icons.hdr_on_sharp, + Icons.hdr_plus, + Icons.hdr_plus_outlined, + Icons.hdr_plus_rounded, + Icons.hdr_plus_sharp, + Icons.hdr_strong, + Icons.hdr_strong_outlined, + Icons.hdr_strong_rounded, + Icons.hdr_strong_sharp, + Icons.hdr_weak, + Icons.hdr_weak_outlined, + Icons.hdr_weak_rounded, + Icons.hdr_weak_sharp, + Icons.headphones, + Icons.headphones_battery, + Icons.headphones_battery_outlined, + Icons.headphones_battery_rounded, + Icons.headphones_battery_sharp, + Icons.headphones_outlined, + Icons.headphones_rounded, + Icons.headphones_sharp, + Icons.headset, + Icons.headset_mic, + Icons.headset_mic_outlined, + Icons.headset_mic_rounded, + Icons.headset_mic_sharp, + Icons.headset_off, + Icons.headset_off_outlined, + Icons.headset_off_rounded, + Icons.headset_off_sharp, + Icons.headset_outlined, + Icons.headset_rounded, + Icons.headset_sharp, + Icons.healing, + Icons.healing_outlined, + Icons.healing_rounded, + Icons.healing_sharp, + Icons.health_and_safety, + Icons.health_and_safety_outlined, + Icons.health_and_safety_rounded, + Icons.health_and_safety_sharp, + Icons.hearing, + Icons.hearing_disabled, + Icons.hearing_disabled_outlined, + Icons.hearing_disabled_rounded, + Icons.hearing_disabled_sharp, + Icons.hearing_outlined, + Icons.hearing_rounded, + Icons.hearing_sharp, + Icons.heart_broken, + Icons.heart_broken_outlined, + Icons.heart_broken_rounded, + Icons.heart_broken_sharp, + Icons.heat_pump, + Icons.heat_pump_outlined, + Icons.heat_pump_rounded, + Icons.heat_pump_sharp, + Icons.height, + Icons.height_outlined, + Icons.height_rounded, + Icons.height_sharp, + Icons.help, + Icons.help_center, + Icons.help_center_outlined, + Icons.help_center_rounded, + Icons.help_center_sharp, + Icons.help_outline, + Icons.help_outline_outlined, + Icons.help_outline_rounded, + Icons.help_outline_sharp, + Icons.help_outlined, + Icons.help_rounded, + Icons.help_sharp, + Icons.hevc, + Icons.hevc_outlined, + Icons.hevc_rounded, + Icons.hevc_sharp, + Icons.hexagon, + Icons.hexagon_outlined, + Icons.hexagon_rounded, + Icons.hexagon_sharp, + Icons.hide_image, + Icons.hide_image_outlined, + Icons.hide_image_rounded, + Icons.hide_image_sharp, + Icons.hide_source, + Icons.hide_source_outlined, + Icons.hide_source_rounded, + Icons.hide_source_sharp, + Icons.high_quality, + Icons.high_quality_outlined, + Icons.high_quality_rounded, + Icons.high_quality_sharp, + Icons.highlight, + Icons.highlight_alt, + Icons.highlight_alt_outlined, + Icons.highlight_alt_rounded, + Icons.highlight_alt_sharp, + Icons.highlight_off, + Icons.highlight_off_outlined, + Icons.highlight_off_rounded, + Icons.highlight_off_sharp, + Icons.highlight_outlined, + Icons.highlight_remove, + Icons.highlight_remove_outlined, + Icons.highlight_remove_rounded, + Icons.highlight_remove_sharp, + Icons.highlight_rounded, + Icons.highlight_sharp, + Icons.hiking, + Icons.hiking_outlined, + Icons.hiking_rounded, + Icons.hiking_sharp, + Icons.history, + Icons.history_edu, + Icons.history_edu_outlined, + Icons.history_edu_rounded, + Icons.history_edu_sharp, + Icons.history_outlined, + Icons.history_rounded, + Icons.history_sharp, + Icons.history_toggle_off, + Icons.history_toggle_off_outlined, + Icons.history_toggle_off_rounded, + Icons.history_toggle_off_sharp, + Icons.hive, + Icons.hive_outlined, + Icons.hive_rounded, + Icons.hive_sharp, + Icons.hls, + Icons.hls_off, + Icons.hls_off_outlined, + Icons.hls_off_rounded, + Icons.hls_off_sharp, + Icons.hls_outlined, + Icons.hls_rounded, + Icons.hls_sharp, + Icons.holiday_village, + Icons.holiday_village_outlined, + Icons.holiday_village_rounded, + Icons.holiday_village_sharp, + Icons.home, + Icons.home_filled, + Icons.home_max, + Icons.home_max_outlined, + Icons.home_max_rounded, + Icons.home_max_sharp, + Icons.home_mini, + Icons.home_mini_outlined, + Icons.home_mini_rounded, + Icons.home_mini_sharp, + Icons.home_outlined, + Icons.home_repair_service, + Icons.home_repair_service_outlined, + Icons.home_repair_service_rounded, + Icons.home_repair_service_sharp, + Icons.home_rounded, + Icons.home_sharp, + Icons.home_work, + Icons.home_work_outlined, + Icons.home_work_rounded, + Icons.home_work_sharp, + Icons.horizontal_distribute, + Icons.horizontal_distribute_outlined, + Icons.horizontal_distribute_rounded, + Icons.horizontal_distribute_sharp, + Icons.horizontal_rule, + Icons.horizontal_rule_outlined, + Icons.horizontal_rule_rounded, + Icons.horizontal_rule_sharp, + Icons.horizontal_split, + Icons.horizontal_split_outlined, + Icons.horizontal_split_rounded, + Icons.horizontal_split_sharp, + Icons.hot_tub, + Icons.hot_tub_outlined, + Icons.hot_tub_rounded, + Icons.hot_tub_sharp, + Icons.hotel, + Icons.hotel_class, + Icons.hotel_class_outlined, + Icons.hotel_class_rounded, + Icons.hotel_class_sharp, + Icons.hotel_outlined, + Icons.hotel_rounded, + Icons.hotel_sharp, + Icons.hourglass_bottom, + Icons.hourglass_bottom_outlined, + Icons.hourglass_bottom_rounded, + Icons.hourglass_bottom_sharp, + Icons.hourglass_disabled, + Icons.hourglass_disabled_outlined, + Icons.hourglass_disabled_rounded, + Icons.hourglass_disabled_sharp, + Icons.hourglass_empty, + Icons.hourglass_empty_outlined, + Icons.hourglass_empty_rounded, + Icons.hourglass_empty_sharp, + Icons.hourglass_full, + Icons.hourglass_full_outlined, + Icons.hourglass_full_rounded, + Icons.hourglass_full_sharp, + Icons.hourglass_top, + Icons.hourglass_top_outlined, + Icons.hourglass_top_rounded, + Icons.hourglass_top_sharp, + Icons.house, + Icons.house_outlined, + Icons.house_rounded, + Icons.house_sharp, + Icons.house_siding, + Icons.house_siding_outlined, + Icons.house_siding_rounded, + Icons.house_siding_sharp, + Icons.houseboat, + Icons.houseboat_outlined, + Icons.houseboat_rounded, + Icons.houseboat_sharp, + Icons.how_to_reg, + Icons.how_to_reg_outlined, + Icons.how_to_reg_rounded, + Icons.how_to_reg_sharp, + Icons.how_to_vote, + Icons.how_to_vote_outlined, + Icons.how_to_vote_rounded, + Icons.how_to_vote_sharp, + Icons.html, + Icons.html_outlined, + Icons.html_rounded, + Icons.html_sharp, + Icons.http, + Icons.http_outlined, + Icons.http_rounded, + Icons.http_sharp, + Icons.https, + Icons.https_outlined, + Icons.https_rounded, + Icons.https_sharp, + Icons.hub, + Icons.hub_outlined, + Icons.hub_rounded, + Icons.hub_sharp, + Icons.hvac, + Icons.hvac_outlined, + Icons.hvac_rounded, + Icons.hvac_sharp, + Icons.ice_skating, + Icons.ice_skating_outlined, + Icons.ice_skating_rounded, + Icons.ice_skating_sharp, + Icons.icecream, + Icons.icecream_outlined, + Icons.icecream_rounded, + Icons.icecream_sharp, + Icons.image, + Icons.image_aspect_ratio, + Icons.image_aspect_ratio_outlined, + Icons.image_aspect_ratio_rounded, + Icons.image_aspect_ratio_sharp, + Icons.image_not_supported, + Icons.image_not_supported_outlined, + Icons.image_not_supported_rounded, + Icons.image_not_supported_sharp, + Icons.image_outlined, + Icons.image_rounded, + Icons.image_search, + Icons.image_search_outlined, + Icons.image_search_rounded, + Icons.image_search_sharp, + Icons.image_sharp, + Icons.imagesearch_roller, + Icons.imagesearch_roller_outlined, + Icons.imagesearch_roller_rounded, + Icons.imagesearch_roller_sharp, + Icons.import_contacts, + Icons.import_contacts_outlined, + Icons.import_contacts_rounded, + Icons.import_contacts_sharp, + Icons.import_export, + Icons.import_export_outlined, + Icons.import_export_rounded, + Icons.import_export_sharp, + Icons.important_devices, + Icons.important_devices_outlined, + Icons.important_devices_rounded, + Icons.important_devices_sharp, + Icons.inbox, + Icons.inbox_outlined, + Icons.inbox_rounded, + Icons.inbox_sharp, + Icons.incomplete_circle, + Icons.incomplete_circle_outlined, + Icons.incomplete_circle_rounded, + Icons.incomplete_circle_sharp, + Icons.indeterminate_check_box, + Icons.indeterminate_check_box_outlined, + Icons.indeterminate_check_box_rounded, + Icons.indeterminate_check_box_sharp, + Icons.info, + Icons.info_outline, + Icons.info_outline_rounded, + Icons.info_outline_sharp, + Icons.info_outlined, + Icons.info_rounded, + Icons.info_sharp, + Icons.input, + Icons.input_outlined, + Icons.input_rounded, + Icons.input_sharp, + Icons.insert_chart, + Icons.insert_chart_outlined, + Icons.insert_chart_outlined_outlined, + Icons.insert_chart_outlined_rounded, + Icons.insert_chart_outlined_sharp, + Icons.insert_chart_rounded, + Icons.insert_chart_sharp, + Icons.insert_comment, + Icons.insert_comment_outlined, + Icons.insert_comment_rounded, + Icons.insert_comment_sharp, + Icons.insert_drive_file, + Icons.insert_drive_file_outlined, + Icons.insert_drive_file_rounded, + Icons.insert_drive_file_sharp, + Icons.insert_emoticon, + Icons.insert_emoticon_outlined, + Icons.insert_emoticon_rounded, + Icons.insert_emoticon_sharp, + Icons.insert_invitation, + Icons.insert_invitation_outlined, + Icons.insert_invitation_rounded, + Icons.insert_invitation_sharp, + Icons.insert_link, + Icons.insert_link_outlined, + Icons.insert_link_rounded, + Icons.insert_link_sharp, + Icons.insert_page_break, + Icons.insert_page_break_outlined, + Icons.insert_page_break_rounded, + Icons.insert_page_break_sharp, + Icons.insert_photo, + Icons.insert_photo_outlined, + Icons.insert_photo_rounded, + Icons.insert_photo_sharp, + Icons.insights, + Icons.insights_outlined, + Icons.insights_rounded, + Icons.insights_sharp, + Icons.install_desktop, + Icons.install_desktop_outlined, + Icons.install_desktop_rounded, + Icons.install_desktop_sharp, + Icons.install_mobile, + Icons.install_mobile_outlined, + Icons.install_mobile_rounded, + Icons.install_mobile_sharp, + Icons.integration_instructions, + Icons.integration_instructions_outlined, + Icons.integration_instructions_rounded, + Icons.integration_instructions_sharp, + Icons.interests, + Icons.interests_outlined, + Icons.interests_rounded, + Icons.interests_sharp, + Icons.interpreter_mode, + Icons.interpreter_mode_outlined, + Icons.interpreter_mode_rounded, + Icons.interpreter_mode_sharp, + Icons.inventory, + Icons.inventory_2, + Icons.inventory_2_outlined, + Icons.inventory_2_rounded, + Icons.inventory_2_sharp, + Icons.inventory_outlined, + Icons.inventory_rounded, + Icons.inventory_sharp, + Icons.invert_colors, + Icons.invert_colors_off, + Icons.invert_colors_off_outlined, + Icons.invert_colors_off_rounded, + Icons.invert_colors_off_sharp, + Icons.invert_colors_on, + Icons.invert_colors_on_outlined, + Icons.invert_colors_on_rounded, + Icons.invert_colors_on_sharp, + Icons.invert_colors_outlined, + Icons.invert_colors_rounded, + Icons.invert_colors_sharp, + Icons.ios_share, + Icons.ios_share_outlined, + Icons.ios_share_rounded, + Icons.ios_share_sharp, + Icons.iron, + Icons.iron_outlined, + Icons.iron_rounded, + Icons.iron_sharp, + Icons.iso, + Icons.iso_outlined, + Icons.iso_rounded, + Icons.iso_sharp, + Icons.javascript, + Icons.javascript_outlined, + Icons.javascript_rounded, + Icons.javascript_sharp, + Icons.join_full, + Icons.join_full_outlined, + Icons.join_full_rounded, + Icons.join_full_sharp, + Icons.join_inner, + Icons.join_inner_outlined, + Icons.join_inner_rounded, + Icons.join_inner_sharp, + Icons.join_left, + Icons.join_left_outlined, + Icons.join_left_rounded, + Icons.join_left_sharp, + Icons.join_right, + Icons.join_right_outlined, + Icons.join_right_rounded, + Icons.join_right_sharp, + Icons.kayaking, + Icons.kayaking_outlined, + Icons.kayaking_rounded, + Icons.kayaking_sharp, + Icons.kebab_dining, + Icons.kebab_dining_outlined, + Icons.kebab_dining_rounded, + Icons.kebab_dining_sharp, + Icons.key, + Icons.key_off, + Icons.key_off_outlined, + Icons.key_off_rounded, + Icons.key_off_sharp, + Icons.key_outlined, + Icons.key_rounded, + Icons.key_sharp, + Icons.keyboard, + Icons.keyboard_alt, + Icons.keyboard_alt_outlined, + Icons.keyboard_alt_rounded, + Icons.keyboard_alt_sharp, + Icons.keyboard_arrow_down, + Icons.keyboard_arrow_down_outlined, + Icons.keyboard_arrow_down_rounded, + Icons.keyboard_arrow_down_sharp, + Icons.keyboard_arrow_left, + Icons.keyboard_arrow_left_outlined, + Icons.keyboard_arrow_left_rounded, + Icons.keyboard_arrow_left_sharp, + Icons.keyboard_arrow_right, + Icons.keyboard_arrow_right_outlined, + Icons.keyboard_arrow_right_rounded, + Icons.keyboard_arrow_right_sharp, + Icons.keyboard_arrow_up, + Icons.keyboard_arrow_up_outlined, + Icons.keyboard_arrow_up_rounded, + Icons.keyboard_arrow_up_sharp, + Icons.keyboard_backspace, + Icons.keyboard_backspace_outlined, + Icons.keyboard_backspace_rounded, + Icons.keyboard_backspace_sharp, + Icons.keyboard_capslock, + Icons.keyboard_capslock_outlined, + Icons.keyboard_capslock_rounded, + Icons.keyboard_capslock_sharp, + Icons.keyboard_command_key, + Icons.keyboard_command_key_outlined, + Icons.keyboard_command_key_rounded, + Icons.keyboard_command_key_sharp, + Icons.keyboard_control, + Icons.keyboard_control_key, + Icons.keyboard_control_key_outlined, + Icons.keyboard_control_key_rounded, + Icons.keyboard_control_key_sharp, + Icons.keyboard_control_outlined, + Icons.keyboard_control_rounded, + Icons.keyboard_control_sharp, + Icons.keyboard_double_arrow_down, + Icons.keyboard_double_arrow_down_outlined, + Icons.keyboard_double_arrow_down_rounded, + Icons.keyboard_double_arrow_down_sharp, + Icons.keyboard_double_arrow_left, + Icons.keyboard_double_arrow_left_outlined, + Icons.keyboard_double_arrow_left_rounded, + Icons.keyboard_double_arrow_left_sharp, + Icons.keyboard_double_arrow_right, + Icons.keyboard_double_arrow_right_outlined, + Icons.keyboard_double_arrow_right_rounded, + Icons.keyboard_double_arrow_right_sharp, + Icons.keyboard_double_arrow_up, + Icons.keyboard_double_arrow_up_outlined, + Icons.keyboard_double_arrow_up_rounded, + Icons.keyboard_double_arrow_up_sharp, + Icons.keyboard_hide, + Icons.keyboard_hide_outlined, + Icons.keyboard_hide_rounded, + Icons.keyboard_hide_sharp, + Icons.keyboard_option_key, + Icons.keyboard_option_key_outlined, + Icons.keyboard_option_key_rounded, + Icons.keyboard_option_key_sharp, + Icons.keyboard_outlined, + Icons.keyboard_return, + Icons.keyboard_return_outlined, + Icons.keyboard_return_rounded, + Icons.keyboard_return_sharp, + Icons.keyboard_rounded, + Icons.keyboard_sharp, + Icons.keyboard_tab, + Icons.keyboard_tab_outlined, + Icons.keyboard_tab_rounded, + Icons.keyboard_tab_sharp, + Icons.keyboard_voice, + Icons.keyboard_voice_outlined, + Icons.keyboard_voice_rounded, + Icons.keyboard_voice_sharp, + Icons.king_bed, + Icons.king_bed_outlined, + Icons.king_bed_rounded, + Icons.king_bed_sharp, + Icons.kitchen, + Icons.kitchen_outlined, + Icons.kitchen_rounded, + Icons.kitchen_sharp, + Icons.kitesurfing, + Icons.kitesurfing_outlined, + Icons.kitesurfing_rounded, + Icons.kitesurfing_sharp, + Icons.label, + Icons.label_important, + Icons.label_important_outline, + Icons.label_important_outline_rounded, + Icons.label_important_outline_sharp, + Icons.label_important_outlined, + Icons.label_important_rounded, + Icons.label_important_sharp, + Icons.label_off, + Icons.label_off_outlined, + Icons.label_off_rounded, + Icons.label_off_sharp, + Icons.label_outline, + Icons.label_outline_rounded, + Icons.label_outline_sharp, + Icons.label_outlined, + Icons.label_rounded, + Icons.label_sharp, + Icons.lan, + Icons.lan_outlined, + Icons.lan_rounded, + Icons.lan_sharp, + Icons.landscape, + Icons.landscape_outlined, + Icons.landscape_rounded, + Icons.landscape_sharp, + Icons.landslide, + Icons.landslide_outlined, + Icons.landslide_rounded, + Icons.landslide_sharp, + Icons.language, + Icons.language_outlined, + Icons.language_rounded, + Icons.language_sharp, + Icons.laptop, + Icons.laptop_chromebook, + Icons.laptop_chromebook_outlined, + Icons.laptop_chromebook_rounded, + Icons.laptop_chromebook_sharp, + Icons.laptop_mac, + Icons.laptop_mac_outlined, + Icons.laptop_mac_rounded, + Icons.laptop_mac_sharp, + Icons.laptop_outlined, + Icons.laptop_rounded, + Icons.laptop_sharp, + Icons.laptop_windows, + Icons.laptop_windows_outlined, + Icons.laptop_windows_rounded, + Icons.laptop_windows_sharp, + Icons.last_page, + Icons.last_page_outlined, + Icons.last_page_rounded, + Icons.last_page_sharp, + Icons.launch, + Icons.launch_outlined, + Icons.launch_rounded, + Icons.launch_sharp, + Icons.layers, + Icons.layers_clear, + Icons.layers_clear_outlined, + Icons.layers_clear_rounded, + Icons.layers_clear_sharp, + Icons.layers_outlined, + Icons.layers_rounded, + Icons.layers_sharp, + Icons.leaderboard, + Icons.leaderboard_outlined, + Icons.leaderboard_rounded, + Icons.leaderboard_sharp, + Icons.leak_add, + Icons.leak_add_outlined, + Icons.leak_add_rounded, + Icons.leak_add_sharp, + Icons.leak_remove, + Icons.leak_remove_outlined, + Icons.leak_remove_rounded, + Icons.leak_remove_sharp, + Icons.leave_bags_at_home, + Icons.leave_bags_at_home_outlined, + Icons.leave_bags_at_home_rounded, + Icons.leave_bags_at_home_sharp, + Icons.legend_toggle, + Icons.legend_toggle_outlined, + Icons.legend_toggle_rounded, + Icons.legend_toggle_sharp, + Icons.lens, + Icons.lens_blur, + Icons.lens_blur_outlined, + Icons.lens_blur_rounded, + Icons.lens_blur_sharp, + Icons.lens_outlined, + Icons.lens_rounded, + Icons.lens_sharp, + Icons.library_add, + Icons.library_add_check, + Icons.library_add_check_outlined, + Icons.library_add_check_rounded, + Icons.library_add_check_sharp, + Icons.library_add_outlined, + Icons.library_add_rounded, + Icons.library_add_sharp, + Icons.library_books, + Icons.library_books_outlined, + Icons.library_books_rounded, + Icons.library_books_sharp, + Icons.library_music, + Icons.library_music_outlined, + Icons.library_music_rounded, + Icons.library_music_sharp, + Icons.light, + Icons.light_mode, + Icons.light_mode_outlined, + Icons.light_mode_rounded, + Icons.light_mode_sharp, + Icons.light_outlined, + Icons.light_rounded, + Icons.light_sharp, + Icons.lightbulb, + Icons.lightbulb_circle, + Icons.lightbulb_circle_outlined, + Icons.lightbulb_circle_rounded, + Icons.lightbulb_circle_sharp, + Icons.lightbulb_outline, + Icons.lightbulb_outline_rounded, + Icons.lightbulb_outline_sharp, + Icons.lightbulb_outlined, + Icons.lightbulb_rounded, + Icons.lightbulb_sharp, + Icons.line_axis, + Icons.line_axis_outlined, + Icons.line_axis_rounded, + Icons.line_axis_sharp, + Icons.line_style, + Icons.line_style_outlined, + Icons.line_style_rounded, + Icons.line_style_sharp, + Icons.line_weight, + Icons.line_weight_outlined, + Icons.line_weight_rounded, + Icons.line_weight_sharp, + Icons.linear_scale, + Icons.linear_scale_outlined, + Icons.linear_scale_rounded, + Icons.linear_scale_sharp, + Icons.link, + Icons.link_off, + Icons.link_off_outlined, + Icons.link_off_rounded, + Icons.link_off_sharp, + Icons.link_outlined, + Icons.link_rounded, + Icons.link_sharp, + Icons.linked_camera, + Icons.linked_camera_outlined, + Icons.linked_camera_rounded, + Icons.linked_camera_sharp, + Icons.liquor, + Icons.liquor_outlined, + Icons.liquor_rounded, + Icons.liquor_sharp, + Icons.list, + Icons.list_alt, + Icons.list_alt_outlined, + Icons.list_alt_rounded, + Icons.list_alt_sharp, + Icons.list_outlined, + Icons.list_rounded, + Icons.list_sharp, + Icons.live_help, + Icons.live_help_outlined, + Icons.live_help_rounded, + Icons.live_help_sharp, + Icons.live_tv, + Icons.live_tv_outlined, + Icons.live_tv_rounded, + Icons.live_tv_sharp, + Icons.living, + Icons.living_outlined, + Icons.living_rounded, + Icons.living_sharp, + Icons.local_activity, + Icons.local_activity_outlined, + Icons.local_activity_rounded, + Icons.local_activity_sharp, + Icons.local_airport, + Icons.local_airport_outlined, + Icons.local_airport_rounded, + Icons.local_airport_sharp, + Icons.local_atm, + Icons.local_atm_outlined, + Icons.local_atm_rounded, + Icons.local_atm_sharp, + Icons.local_attraction, + Icons.local_attraction_outlined, + Icons.local_attraction_rounded, + Icons.local_attraction_sharp, + Icons.local_bar, + Icons.local_bar_outlined, + Icons.local_bar_rounded, + Icons.local_bar_sharp, + Icons.local_cafe, + Icons.local_cafe_outlined, + Icons.local_cafe_rounded, + Icons.local_cafe_sharp, + Icons.local_car_wash, + Icons.local_car_wash_outlined, + Icons.local_car_wash_rounded, + Icons.local_car_wash_sharp, + Icons.local_convenience_store, + Icons.local_convenience_store_outlined, + Icons.local_convenience_store_rounded, + Icons.local_convenience_store_sharp, + Icons.local_dining, + Icons.local_dining_outlined, + Icons.local_dining_rounded, + Icons.local_dining_sharp, + Icons.local_drink, + Icons.local_drink_outlined, + Icons.local_drink_rounded, + Icons.local_drink_sharp, + Icons.local_fire_department, + Icons.local_fire_department_outlined, + Icons.local_fire_department_rounded, + Icons.local_fire_department_sharp, + Icons.local_florist, + Icons.local_florist_outlined, + Icons.local_florist_rounded, + Icons.local_florist_sharp, + Icons.local_gas_station, + Icons.local_gas_station_outlined, + Icons.local_gas_station_rounded, + Icons.local_gas_station_sharp, + Icons.local_grocery_store, + Icons.local_grocery_store_outlined, + Icons.local_grocery_store_rounded, + Icons.local_grocery_store_sharp, + Icons.local_hospital, + Icons.local_hospital_outlined, + Icons.local_hospital_rounded, + Icons.local_hospital_sharp, + Icons.local_hotel, + Icons.local_hotel_outlined, + Icons.local_hotel_rounded, + Icons.local_hotel_sharp, + Icons.local_laundry_service, + Icons.local_laundry_service_outlined, + Icons.local_laundry_service_rounded, + Icons.local_laundry_service_sharp, + Icons.local_library, + Icons.local_library_outlined, + Icons.local_library_rounded, + Icons.local_library_sharp, + Icons.local_mall, + Icons.local_mall_outlined, + Icons.local_mall_rounded, + Icons.local_mall_sharp, + Icons.local_movies, + Icons.local_movies_outlined, + Icons.local_movies_rounded, + Icons.local_movies_sharp, + Icons.local_offer, + Icons.local_offer_outlined, + Icons.local_offer_rounded, + Icons.local_offer_sharp, + Icons.local_parking, + Icons.local_parking_outlined, + Icons.local_parking_rounded, + Icons.local_parking_sharp, + Icons.local_pharmacy, + Icons.local_pharmacy_outlined, + Icons.local_pharmacy_rounded, + Icons.local_pharmacy_sharp, + Icons.local_phone, + Icons.local_phone_outlined, + Icons.local_phone_rounded, + Icons.local_phone_sharp, + Icons.local_pizza, + Icons.local_pizza_outlined, + Icons.local_pizza_rounded, + Icons.local_pizza_sharp, + Icons.local_play, + Icons.local_play_outlined, + Icons.local_play_rounded, + Icons.local_play_sharp, + Icons.local_police, + Icons.local_police_outlined, + Icons.local_police_rounded, + Icons.local_police_sharp, + Icons.local_post_office, + Icons.local_post_office_outlined, + Icons.local_post_office_rounded, + Icons.local_post_office_sharp, + Icons.local_print_shop, + Icons.local_print_shop_outlined, + Icons.local_print_shop_rounded, + Icons.local_print_shop_sharp, + Icons.local_printshop, + Icons.local_printshop_outlined, + Icons.local_printshop_rounded, + Icons.local_printshop_sharp, + Icons.local_restaurant, + Icons.local_restaurant_outlined, + Icons.local_restaurant_rounded, + Icons.local_restaurant_sharp, + Icons.local_see, + Icons.local_see_outlined, + Icons.local_see_rounded, + Icons.local_see_sharp, + Icons.local_shipping, + Icons.local_shipping_outlined, + Icons.local_shipping_rounded, + Icons.local_shipping_sharp, + Icons.local_taxi, + Icons.local_taxi_outlined, + Icons.local_taxi_rounded, + Icons.local_taxi_sharp, + Icons.location_city, + Icons.location_city_outlined, + Icons.location_city_rounded, + Icons.location_city_sharp, + Icons.location_disabled, + Icons.location_disabled_outlined, + Icons.location_disabled_rounded, + Icons.location_disabled_sharp, + Icons.location_history, + Icons.location_history_outlined, + Icons.location_history_rounded, + Icons.location_history_sharp, + Icons.location_off, + Icons.location_off_outlined, + Icons.location_off_rounded, + Icons.location_off_sharp, + Icons.location_on, + Icons.location_on_outlined, + Icons.location_on_rounded, + Icons.location_on_sharp, + Icons.location_pin, + Icons.location_searching, + Icons.location_searching_outlined, + Icons.location_searching_rounded, + Icons.location_searching_sharp, + Icons.lock, + Icons.lock_clock, + Icons.lock_clock_outlined, + Icons.lock_clock_rounded, + Icons.lock_clock_sharp, + Icons.lock_open, + Icons.lock_open_outlined, + Icons.lock_open_rounded, + Icons.lock_open_sharp, + Icons.lock_outline, + Icons.lock_outline_rounded, + Icons.lock_outline_sharp, + Icons.lock_outlined, + Icons.lock_person, + Icons.lock_person_outlined, + Icons.lock_person_rounded, + Icons.lock_person_sharp, + Icons.lock_reset, + Icons.lock_reset_outlined, + Icons.lock_reset_rounded, + Icons.lock_reset_sharp, + Icons.lock_rounded, + Icons.lock_sharp, + Icons.login, + Icons.login_outlined, + Icons.login_rounded, + Icons.login_sharp, + Icons.logo_dev, + Icons.logo_dev_outlined, + Icons.logo_dev_rounded, + Icons.logo_dev_sharp, + Icons.logout, + Icons.logout_outlined, + Icons.logout_rounded, + Icons.logout_sharp, + Icons.looks, + Icons.looks_3, + Icons.looks_3_outlined, + Icons.looks_3_rounded, + Icons.looks_3_sharp, + Icons.looks_4, + Icons.looks_4_outlined, + Icons.looks_4_rounded, + Icons.looks_4_sharp, + Icons.looks_5, + Icons.looks_5_outlined, + Icons.looks_5_rounded, + Icons.looks_5_sharp, + Icons.looks_6, + Icons.looks_6_outlined, + Icons.looks_6_rounded, + Icons.looks_6_sharp, + Icons.looks_one, + Icons.looks_one_outlined, + Icons.looks_one_rounded, + Icons.looks_one_sharp, + Icons.looks_outlined, + Icons.looks_rounded, + Icons.looks_sharp, + Icons.looks_two, + Icons.looks_two_outlined, + Icons.looks_two_rounded, + Icons.looks_two_sharp, + Icons.loop, + Icons.loop_outlined, + Icons.loop_rounded, + Icons.loop_sharp, + Icons.loupe, + Icons.loupe_outlined, + Icons.loupe_rounded, + Icons.loupe_sharp, + Icons.low_priority, + Icons.low_priority_outlined, + Icons.low_priority_rounded, + Icons.low_priority_sharp, + Icons.loyalty, + Icons.loyalty_outlined, + Icons.loyalty_rounded, + Icons.loyalty_sharp, + Icons.lte_mobiledata, + Icons.lte_mobiledata_outlined, + Icons.lte_mobiledata_rounded, + Icons.lte_mobiledata_sharp, + Icons.lte_plus_mobiledata, + Icons.lte_plus_mobiledata_outlined, + Icons.lte_plus_mobiledata_rounded, + Icons.lte_plus_mobiledata_sharp, + Icons.luggage, + Icons.luggage_outlined, + Icons.luggage_rounded, + Icons.luggage_sharp, + Icons.lunch_dining, + Icons.lunch_dining_outlined, + Icons.lunch_dining_rounded, + Icons.lunch_dining_sharp, + Icons.lyrics, + Icons.lyrics_outlined, + Icons.lyrics_rounded, + Icons.lyrics_sharp, + Icons.macro_off, + Icons.macro_off_outlined, + Icons.macro_off_rounded, + Icons.macro_off_sharp, + Icons.mail, + Icons.mail_lock, + Icons.mail_lock_outlined, + Icons.mail_lock_rounded, + Icons.mail_lock_sharp, + Icons.mail_outline, + Icons.mail_outline_outlined, + Icons.mail_outline_rounded, + Icons.mail_outline_sharp, + Icons.mail_outlined, + Icons.mail_rounded, + Icons.mail_sharp, + Icons.male, + Icons.male_outlined, + Icons.male_rounded, + Icons.male_sharp, + Icons.man, + Icons.man_2, + Icons.man_2_outlined, + Icons.man_2_rounded, + Icons.man_2_sharp, + Icons.man_3, + Icons.man_3_outlined, + Icons.man_3_rounded, + Icons.man_3_sharp, + Icons.man_4, + Icons.man_4_outlined, + Icons.man_4_rounded, + Icons.man_4_sharp, + Icons.man_outlined, + Icons.man_rounded, + Icons.man_sharp, + Icons.manage_accounts, + Icons.manage_accounts_outlined, + Icons.manage_accounts_rounded, + Icons.manage_accounts_sharp, + Icons.manage_history, + Icons.manage_history_outlined, + Icons.manage_history_rounded, + Icons.manage_history_sharp, + Icons.manage_search, + Icons.manage_search_outlined, + Icons.manage_search_rounded, + Icons.manage_search_sharp, + Icons.map, + Icons.map_outlined, + Icons.map_rounded, + Icons.map_sharp, + Icons.maps_home_work, + Icons.maps_home_work_outlined, + Icons.maps_home_work_rounded, + Icons.maps_home_work_sharp, + Icons.maps_ugc, + Icons.maps_ugc_outlined, + Icons.maps_ugc_rounded, + Icons.maps_ugc_sharp, + Icons.margin, + Icons.margin_outlined, + Icons.margin_rounded, + Icons.margin_sharp, + Icons.mark_as_unread, + Icons.mark_as_unread_outlined, + Icons.mark_as_unread_rounded, + Icons.mark_as_unread_sharp, + Icons.mark_chat_read, + Icons.mark_chat_read_outlined, + Icons.mark_chat_read_rounded, + Icons.mark_chat_read_sharp, + Icons.mark_chat_unread, + Icons.mark_chat_unread_outlined, + Icons.mark_chat_unread_rounded, + Icons.mark_chat_unread_sharp, + Icons.mark_email_read, + Icons.mark_email_read_outlined, + Icons.mark_email_read_rounded, + Icons.mark_email_read_sharp, + Icons.mark_email_unread, + Icons.mark_email_unread_outlined, + Icons.mark_email_unread_rounded, + Icons.mark_email_unread_sharp, + Icons.mark_unread_chat_alt, + Icons.mark_unread_chat_alt_outlined, + Icons.mark_unread_chat_alt_rounded, + Icons.mark_unread_chat_alt_sharp, + Icons.markunread, + Icons.markunread_mailbox, + Icons.markunread_mailbox_outlined, + Icons.markunread_mailbox_rounded, + Icons.markunread_mailbox_sharp, + Icons.markunread_outlined, + Icons.markunread_rounded, + Icons.markunread_sharp, + Icons.masks, + Icons.masks_outlined, + Icons.masks_rounded, + Icons.masks_sharp, + Icons.maximize, + Icons.maximize_outlined, + Icons.maximize_rounded, + Icons.maximize_sharp, + Icons.media_bluetooth_off, + Icons.media_bluetooth_off_outlined, + Icons.media_bluetooth_off_rounded, + Icons.media_bluetooth_off_sharp, + Icons.media_bluetooth_on, + Icons.media_bluetooth_on_outlined, + Icons.media_bluetooth_on_rounded, + Icons.media_bluetooth_on_sharp, + Icons.mediation, + Icons.mediation_outlined, + Icons.mediation_rounded, + Icons.mediation_sharp, + Icons.medical_information, + Icons.medical_information_outlined, + Icons.medical_information_rounded, + Icons.medical_information_sharp, + Icons.medical_services, + Icons.medical_services_outlined, + Icons.medical_services_rounded, + Icons.medical_services_sharp, + Icons.medication, + Icons.medication_liquid, + Icons.medication_liquid_outlined, + Icons.medication_liquid_rounded, + Icons.medication_liquid_sharp, + Icons.medication_outlined, + Icons.medication_rounded, + Icons.medication_sharp, + Icons.meeting_room, + Icons.meeting_room_outlined, + Icons.meeting_room_rounded, + Icons.meeting_room_sharp, + Icons.memory, + Icons.memory_outlined, + Icons.memory_rounded, + Icons.memory_sharp, + Icons.menu, + Icons.menu_book, + Icons.menu_book_outlined, + Icons.menu_book_rounded, + Icons.menu_book_sharp, + Icons.menu_open, + Icons.menu_open_outlined, + Icons.menu_open_rounded, + Icons.menu_open_sharp, + Icons.menu_outlined, + Icons.menu_rounded, + Icons.menu_sharp, + Icons.merge, + Icons.merge_outlined, + Icons.merge_rounded, + Icons.merge_sharp, + Icons.merge_type, + Icons.merge_type_outlined, + Icons.merge_type_rounded, + Icons.merge_type_sharp, + Icons.message, + Icons.message_outlined, + Icons.message_rounded, + Icons.message_sharp, + Icons.messenger, + Icons.messenger_outline, + Icons.messenger_outline_outlined, + Icons.messenger_outline_rounded, + Icons.messenger_outline_sharp, + Icons.messenger_outlined, + Icons.messenger_rounded, + Icons.messenger_sharp, + Icons.mic, + Icons.mic_external_off, + Icons.mic_external_off_outlined, + Icons.mic_external_off_rounded, + Icons.mic_external_off_sharp, + Icons.mic_external_on, + Icons.mic_external_on_outlined, + Icons.mic_external_on_rounded, + Icons.mic_external_on_sharp, + Icons.mic_none, + Icons.mic_none_outlined, + Icons.mic_none_rounded, + Icons.mic_none_sharp, + Icons.mic_off, + Icons.mic_off_outlined, + Icons.mic_off_rounded, + Icons.mic_off_sharp, + Icons.mic_outlined, + Icons.mic_rounded, + Icons.mic_sharp, + Icons.microwave, + Icons.microwave_outlined, + Icons.microwave_rounded, + Icons.microwave_sharp, + Icons.military_tech, + Icons.military_tech_outlined, + Icons.military_tech_rounded, + Icons.military_tech_sharp, + Icons.minimize, + Icons.minimize_outlined, + Icons.minimize_rounded, + Icons.minimize_sharp, + Icons.minor_crash, + Icons.minor_crash_outlined, + Icons.minor_crash_rounded, + Icons.minor_crash_sharp, + Icons.miscellaneous_services, + Icons.miscellaneous_services_outlined, + Icons.miscellaneous_services_rounded, + Icons.miscellaneous_services_sharp, + Icons.missed_video_call, + Icons.missed_video_call_outlined, + Icons.missed_video_call_rounded, + Icons.missed_video_call_sharp, + Icons.mms, + Icons.mms_outlined, + Icons.mms_rounded, + Icons.mms_sharp, + Icons.mobile_friendly, + Icons.mobile_friendly_outlined, + Icons.mobile_friendly_rounded, + Icons.mobile_friendly_sharp, + Icons.mobile_off, + Icons.mobile_off_outlined, + Icons.mobile_off_rounded, + Icons.mobile_off_sharp, + Icons.mobile_screen_share, + Icons.mobile_screen_share_outlined, + Icons.mobile_screen_share_rounded, + Icons.mobile_screen_share_sharp, + Icons.mobiledata_off, + Icons.mobiledata_off_outlined, + Icons.mobiledata_off_rounded, + Icons.mobiledata_off_sharp, + Icons.mode, + Icons.mode_comment, + Icons.mode_comment_outlined, + Icons.mode_comment_rounded, + Icons.mode_comment_sharp, + Icons.mode_edit, + Icons.mode_edit_outline, + Icons.mode_edit_outline_outlined, + Icons.mode_edit_outline_rounded, + Icons.mode_edit_outline_sharp, + Icons.mode_edit_outlined, + Icons.mode_edit_rounded, + Icons.mode_edit_sharp, + Icons.mode_fan_off, + Icons.mode_fan_off_outlined, + Icons.mode_fan_off_rounded, + Icons.mode_fan_off_sharp, + Icons.mode_night, + Icons.mode_night_outlined, + Icons.mode_night_rounded, + Icons.mode_night_sharp, + Icons.mode_of_travel, + Icons.mode_of_travel_outlined, + Icons.mode_of_travel_rounded, + Icons.mode_of_travel_sharp, + Icons.mode_outlined, + Icons.mode_rounded, + Icons.mode_sharp, + Icons.mode_standby, + Icons.mode_standby_outlined, + Icons.mode_standby_rounded, + Icons.mode_standby_sharp, + Icons.model_training, + Icons.model_training_outlined, + Icons.model_training_rounded, + Icons.model_training_sharp, + Icons.monetization_on, + Icons.monetization_on_outlined, + Icons.monetization_on_rounded, + Icons.monetization_on_sharp, + Icons.money, + Icons.money_off, + Icons.money_off_csred, + Icons.money_off_csred_outlined, + Icons.money_off_csred_rounded, + Icons.money_off_csred_sharp, + Icons.money_off_outlined, + Icons.money_off_rounded, + Icons.money_off_sharp, + Icons.money_outlined, + Icons.money_rounded, + Icons.money_sharp, + Icons.monitor, + Icons.monitor_heart, + Icons.monitor_heart_outlined, + Icons.monitor_heart_rounded, + Icons.monitor_heart_sharp, + Icons.monitor_outlined, + Icons.monitor_rounded, + Icons.monitor_sharp, + Icons.monitor_weight, + Icons.monitor_weight_outlined, + Icons.monitor_weight_rounded, + Icons.monitor_weight_sharp, + Icons.monochrome_photos, + Icons.monochrome_photos_outlined, + Icons.monochrome_photos_rounded, + Icons.monochrome_photos_sharp, + Icons.mood, + Icons.mood_bad, + Icons.mood_bad_outlined, + Icons.mood_bad_rounded, + Icons.mood_bad_sharp, + Icons.mood_outlined, + Icons.mood_rounded, + Icons.mood_sharp, + Icons.moped, + Icons.moped_outlined, + Icons.moped_rounded, + Icons.moped_sharp, + Icons.more, + Icons.more_horiz, + Icons.more_horiz_outlined, + Icons.more_horiz_rounded, + Icons.more_horiz_sharp, + Icons.more_outlined, + Icons.more_rounded, + Icons.more_sharp, + Icons.more_time, + Icons.more_time_outlined, + Icons.more_time_rounded, + Icons.more_time_sharp, + Icons.more_vert, + Icons.more_vert_outlined, + Icons.more_vert_rounded, + Icons.more_vert_sharp, + Icons.mosque, + Icons.mosque_outlined, + Icons.mosque_rounded, + Icons.mosque_sharp, + Icons.motion_photos_auto, + Icons.motion_photos_auto_outlined, + Icons.motion_photos_auto_rounded, + Icons.motion_photos_auto_sharp, + Icons.motion_photos_off, + Icons.motion_photos_off_outlined, + Icons.motion_photos_off_rounded, + Icons.motion_photos_off_sharp, + Icons.motion_photos_on, + Icons.motion_photos_on_outlined, + Icons.motion_photos_on_rounded, + Icons.motion_photos_on_sharp, + Icons.motion_photos_pause, + Icons.motion_photos_pause_outlined, + Icons.motion_photos_pause_rounded, + Icons.motion_photos_pause_sharp, + Icons.motion_photos_paused, + Icons.motion_photos_paused_outlined, + Icons.motion_photos_paused_rounded, + Icons.motion_photos_paused_sharp, + Icons.motorcycle, + Icons.motorcycle_outlined, + Icons.motorcycle_rounded, + Icons.motorcycle_sharp, + Icons.mouse, + Icons.mouse_outlined, + Icons.mouse_rounded, + Icons.mouse_sharp, + Icons.move_down, + Icons.move_down_outlined, + Icons.move_down_rounded, + Icons.move_down_sharp, + Icons.move_to_inbox, + Icons.move_to_inbox_outlined, + Icons.move_to_inbox_rounded, + Icons.move_to_inbox_sharp, + Icons.move_up, + Icons.move_up_outlined, + Icons.move_up_rounded, + Icons.move_up_sharp, + Icons.movie, + Icons.movie_creation, + Icons.movie_creation_outlined, + Icons.movie_creation_rounded, + Icons.movie_creation_sharp, + Icons.movie_edit, + Icons.movie_filter, + Icons.movie_filter_outlined, + Icons.movie_filter_rounded, + Icons.movie_filter_sharp, + Icons.movie_outlined, + Icons.movie_rounded, + Icons.movie_sharp, + Icons.moving, + Icons.moving_outlined, + Icons.moving_rounded, + Icons.moving_sharp, + Icons.mp, + Icons.mp_outlined, + Icons.mp_rounded, + Icons.mp_sharp, + Icons.multiline_chart, + Icons.multiline_chart_outlined, + Icons.multiline_chart_rounded, + Icons.multiline_chart_sharp, + Icons.multiple_stop, + Icons.multiple_stop_outlined, + Icons.multiple_stop_rounded, + Icons.multiple_stop_sharp, + Icons.multitrack_audio, + Icons.multitrack_audio_outlined, + Icons.multitrack_audio_rounded, + Icons.multitrack_audio_sharp, + Icons.museum, + Icons.museum_outlined, + Icons.museum_rounded, + Icons.museum_sharp, + Icons.music_note, + Icons.music_note_outlined, + Icons.music_note_rounded, + Icons.music_note_sharp, + Icons.music_off, + Icons.music_off_outlined, + Icons.music_off_rounded, + Icons.music_off_sharp, + Icons.music_video, + Icons.music_video_outlined, + Icons.music_video_rounded, + Icons.music_video_sharp, + Icons.my_library_add, + Icons.my_library_add_outlined, + Icons.my_library_add_rounded, + Icons.my_library_add_sharp, + Icons.my_library_books, + Icons.my_library_books_outlined, + Icons.my_library_books_rounded, + Icons.my_library_books_sharp, + Icons.my_library_music, + Icons.my_library_music_outlined, + Icons.my_library_music_rounded, + Icons.my_library_music_sharp, + Icons.my_location, + Icons.my_location_outlined, + Icons.my_location_rounded, + Icons.my_location_sharp, + Icons.nat, + Icons.nat_outlined, + Icons.nat_rounded, + Icons.nat_sharp, + Icons.nature, + Icons.nature_outlined, + Icons.nature_people, + Icons.nature_people_outlined, + Icons.nature_people_rounded, + Icons.nature_people_sharp, + Icons.nature_rounded, + Icons.nature_sharp, + Icons.navigate_before, + Icons.navigate_before_outlined, + Icons.navigate_before_rounded, + Icons.navigate_before_sharp, + Icons.navigate_next, + Icons.navigate_next_outlined, + Icons.navigate_next_rounded, + Icons.navigate_next_sharp, + Icons.navigation, + Icons.navigation_outlined, + Icons.navigation_rounded, + Icons.navigation_sharp, + Icons.near_me, + Icons.near_me_disabled, + Icons.near_me_disabled_outlined, + Icons.near_me_disabled_rounded, + Icons.near_me_disabled_sharp, + Icons.near_me_outlined, + Icons.near_me_rounded, + Icons.near_me_sharp, + Icons.nearby_error, + Icons.nearby_error_outlined, + Icons.nearby_error_rounded, + Icons.nearby_error_sharp, + Icons.nearby_off, + Icons.nearby_off_outlined, + Icons.nearby_off_rounded, + Icons.nearby_off_sharp, + Icons.nest_cam_wired_stand, + Icons.nest_cam_wired_stand_outlined, + Icons.nest_cam_wired_stand_rounded, + Icons.nest_cam_wired_stand_sharp, + Icons.network_cell, + Icons.network_cell_outlined, + Icons.network_cell_rounded, + Icons.network_cell_sharp, + Icons.network_check, + Icons.network_check_outlined, + Icons.network_check_rounded, + Icons.network_check_sharp, + Icons.network_locked, + Icons.network_locked_outlined, + Icons.network_locked_rounded, + Icons.network_locked_sharp, + Icons.network_ping, + Icons.network_ping_outlined, + Icons.network_ping_rounded, + Icons.network_ping_sharp, + Icons.network_wifi, + Icons.network_wifi_1_bar, + Icons.network_wifi_1_bar_outlined, + Icons.network_wifi_1_bar_rounded, + Icons.network_wifi_1_bar_sharp, + Icons.network_wifi_2_bar, + Icons.network_wifi_2_bar_outlined, + Icons.network_wifi_2_bar_rounded, + Icons.network_wifi_2_bar_sharp, + Icons.network_wifi_3_bar, + Icons.network_wifi_3_bar_outlined, + Icons.network_wifi_3_bar_rounded, + Icons.network_wifi_3_bar_sharp, + Icons.network_wifi_outlined, + Icons.network_wifi_rounded, + Icons.network_wifi_sharp, + Icons.new_label, + Icons.new_label_outlined, + Icons.new_label_rounded, + Icons.new_label_sharp, + Icons.new_releases, + Icons.new_releases_outlined, + Icons.new_releases_rounded, + Icons.new_releases_sharp, + Icons.newspaper, + Icons.newspaper_outlined, + Icons.newspaper_rounded, + Icons.newspaper_sharp, + Icons.next_plan, + Icons.next_plan_outlined, + Icons.next_plan_rounded, + Icons.next_plan_sharp, + Icons.next_week, + Icons.next_week_outlined, + Icons.next_week_rounded, + Icons.next_week_sharp, + Icons.nfc, + Icons.nfc_outlined, + Icons.nfc_rounded, + Icons.nfc_sharp, + Icons.night_shelter, + Icons.night_shelter_outlined, + Icons.night_shelter_rounded, + Icons.night_shelter_sharp, + Icons.nightlife, + Icons.nightlife_outlined, + Icons.nightlife_rounded, + Icons.nightlife_sharp, + Icons.nightlight, + Icons.nightlight_outlined, + Icons.nightlight_round, + Icons.nightlight_round_outlined, + Icons.nightlight_round_rounded, + Icons.nightlight_round_sharp, + Icons.nightlight_rounded, + Icons.nightlight_sharp, + Icons.nights_stay, + Icons.nights_stay_outlined, + Icons.nights_stay_rounded, + Icons.nights_stay_sharp, + Icons.nine_k, + Icons.nine_k_outlined, + Icons.nine_k_plus, + Icons.nine_k_plus_outlined, + Icons.nine_k_plus_rounded, + Icons.nine_k_plus_sharp, + Icons.nine_k_rounded, + Icons.nine_k_sharp, + Icons.nine_mp, + Icons.nine_mp_outlined, + Icons.nine_mp_rounded, + Icons.nine_mp_sharp, + Icons.nineteen_mp, + Icons.nineteen_mp_outlined, + Icons.nineteen_mp_rounded, + Icons.nineteen_mp_sharp, + Icons.no_accounts, + Icons.no_accounts_outlined, + Icons.no_accounts_rounded, + Icons.no_accounts_sharp, + Icons.no_adult_content, + Icons.no_adult_content_outlined, + Icons.no_adult_content_rounded, + Icons.no_adult_content_sharp, + Icons.no_backpack, + Icons.no_backpack_outlined, + Icons.no_backpack_rounded, + Icons.no_backpack_sharp, + Icons.no_cell, + Icons.no_cell_outlined, + Icons.no_cell_rounded, + Icons.no_cell_sharp, + Icons.no_crash, + Icons.no_crash_outlined, + Icons.no_crash_rounded, + Icons.no_crash_sharp, + Icons.no_drinks, + Icons.no_drinks_outlined, + Icons.no_drinks_rounded, + Icons.no_drinks_sharp, + Icons.no_encryption, + Icons.no_encryption_gmailerrorred, + Icons.no_encryption_gmailerrorred_outlined, + Icons.no_encryption_gmailerrorred_rounded, + Icons.no_encryption_gmailerrorred_sharp, + Icons.no_encryption_outlined, + Icons.no_encryption_rounded, + Icons.no_encryption_sharp, + Icons.no_flash, + Icons.no_flash_outlined, + Icons.no_flash_rounded, + Icons.no_flash_sharp, + Icons.no_food, + Icons.no_food_outlined, + Icons.no_food_rounded, + Icons.no_food_sharp, + Icons.no_luggage, + Icons.no_luggage_outlined, + Icons.no_luggage_rounded, + Icons.no_luggage_sharp, + Icons.no_meals, + Icons.no_meals_ouline, + Icons.no_meals_outlined, + Icons.no_meals_rounded, + Icons.no_meals_sharp, + Icons.no_meeting_room, + Icons.no_meeting_room_outlined, + Icons.no_meeting_room_rounded, + Icons.no_meeting_room_sharp, + Icons.no_photography, + Icons.no_photography_outlined, + Icons.no_photography_rounded, + Icons.no_photography_sharp, + Icons.no_sim, + Icons.no_sim_outlined, + Icons.no_sim_rounded, + Icons.no_sim_sharp, + Icons.no_stroller, + Icons.no_stroller_outlined, + Icons.no_stroller_rounded, + Icons.no_stroller_sharp, + Icons.no_transfer, + Icons.no_transfer_outlined, + Icons.no_transfer_rounded, + Icons.no_transfer_sharp, + Icons.noise_aware, + Icons.noise_aware_outlined, + Icons.noise_aware_rounded, + Icons.noise_aware_sharp, + Icons.noise_control_off, + Icons.noise_control_off_outlined, + Icons.noise_control_off_rounded, + Icons.noise_control_off_sharp, + Icons.nordic_walking, + Icons.nordic_walking_outlined, + Icons.nordic_walking_rounded, + Icons.nordic_walking_sharp, + Icons.north, + Icons.north_east, + Icons.north_east_outlined, + Icons.north_east_rounded, + Icons.north_east_sharp, + Icons.north_outlined, + Icons.north_rounded, + Icons.north_sharp, + Icons.north_west, + Icons.north_west_outlined, + Icons.north_west_rounded, + Icons.north_west_sharp, + Icons.not_accessible, + Icons.not_accessible_outlined, + Icons.not_accessible_rounded, + Icons.not_accessible_sharp, + Icons.not_interested, + Icons.not_interested_outlined, + Icons.not_interested_rounded, + Icons.not_interested_sharp, + Icons.not_listed_location, + Icons.not_listed_location_outlined, + Icons.not_listed_location_rounded, + Icons.not_listed_location_sharp, + Icons.not_started, + Icons.not_started_outlined, + Icons.not_started_rounded, + Icons.not_started_sharp, + Icons.note, + Icons.note_add, + Icons.note_add_outlined, + Icons.note_add_rounded, + Icons.note_add_sharp, + Icons.note_alt, + Icons.note_alt_outlined, + Icons.note_alt_rounded, + Icons.note_alt_sharp, + Icons.note_outlined, + Icons.note_rounded, + Icons.note_sharp, + Icons.notes, + Icons.notes_outlined, + Icons.notes_rounded, + Icons.notes_sharp, + Icons.notification_add, + Icons.notification_add_outlined, + Icons.notification_add_rounded, + Icons.notification_add_sharp, + Icons.notification_important, + Icons.notification_important_outlined, + Icons.notification_important_rounded, + Icons.notification_important_sharp, + Icons.notifications, + Icons.notifications_active, + Icons.notifications_active_outlined, + Icons.notifications_active_rounded, + Icons.notifications_active_sharp, + Icons.notifications_none, + Icons.notifications_none_outlined, + Icons.notifications_none_rounded, + Icons.notifications_none_sharp, + Icons.notifications_off, + Icons.notifications_off_outlined, + Icons.notifications_off_rounded, + Icons.notifications_off_sharp, + Icons.notifications_on, + Icons.notifications_on_outlined, + Icons.notifications_on_rounded, + Icons.notifications_on_sharp, + Icons.notifications_outlined, + Icons.notifications_paused, + Icons.notifications_paused_outlined, + Icons.notifications_paused_rounded, + Icons.notifications_paused_sharp, + Icons.notifications_rounded, + Icons.notifications_sharp, + Icons.now_wallpaper, + Icons.now_wallpaper_outlined, + Icons.now_wallpaper_rounded, + Icons.now_wallpaper_sharp, + Icons.now_widgets, + Icons.now_widgets_outlined, + Icons.now_widgets_rounded, + Icons.now_widgets_sharp, + Icons.numbers, + Icons.numbers_outlined, + Icons.numbers_rounded, + Icons.numbers_sharp, + Icons.offline_bolt, + Icons.offline_bolt_outlined, + Icons.offline_bolt_rounded, + Icons.offline_bolt_sharp, + Icons.offline_pin, + Icons.offline_pin_outlined, + Icons.offline_pin_rounded, + Icons.offline_pin_sharp, + Icons.offline_share, + Icons.offline_share_outlined, + Icons.offline_share_rounded, + Icons.offline_share_sharp, + Icons.oil_barrel, + Icons.oil_barrel_outlined, + Icons.oil_barrel_rounded, + Icons.oil_barrel_sharp, + Icons.on_device_training, + Icons.on_device_training_outlined, + Icons.on_device_training_rounded, + Icons.on_device_training_sharp, + Icons.ondemand_video, + Icons.ondemand_video_outlined, + Icons.ondemand_video_rounded, + Icons.ondemand_video_sharp, + Icons.one_k, + Icons.one_k_outlined, + Icons.one_k_plus, + Icons.one_k_plus_outlined, + Icons.one_k_plus_rounded, + Icons.one_k_plus_sharp, + Icons.one_k_rounded, + Icons.one_k_sharp, + Icons.one_x_mobiledata, + Icons.one_x_mobiledata_outlined, + Icons.one_x_mobiledata_rounded, + Icons.one_x_mobiledata_sharp, + Icons.onetwothree, + Icons.onetwothree_outlined, + Icons.onetwothree_rounded, + Icons.onetwothree_sharp, + Icons.online_prediction, + Icons.online_prediction_outlined, + Icons.online_prediction_rounded, + Icons.online_prediction_sharp, + Icons.opacity, + Icons.opacity_outlined, + Icons.opacity_rounded, + Icons.opacity_sharp, + Icons.open_in_browser, + Icons.open_in_browser_outlined, + Icons.open_in_browser_rounded, + Icons.open_in_browser_sharp, + Icons.open_in_full, + Icons.open_in_full_outlined, + Icons.open_in_full_rounded, + Icons.open_in_full_sharp, + Icons.open_in_new, + Icons.open_in_new_off, + Icons.open_in_new_off_outlined, + Icons.open_in_new_off_rounded, + Icons.open_in_new_off_sharp, + Icons.open_in_new_outlined, + Icons.open_in_new_rounded, + Icons.open_in_new_sharp, + Icons.open_with, + Icons.open_with_outlined, + Icons.open_with_rounded, + Icons.open_with_sharp, + Icons.other_houses, + Icons.other_houses_outlined, + Icons.other_houses_rounded, + Icons.other_houses_sharp, + Icons.outbond, + Icons.outbond_outlined, + Icons.outbond_rounded, + Icons.outbond_sharp, + Icons.outbound, + Icons.outbound_outlined, + Icons.outbound_rounded, + Icons.outbound_sharp, + Icons.outbox, + Icons.outbox_outlined, + Icons.outbox_rounded, + Icons.outbox_sharp, + Icons.outdoor_grill, + Icons.outdoor_grill_outlined, + Icons.outdoor_grill_rounded, + Icons.outdoor_grill_sharp, + Icons.outgoing_mail, + Icons.outlet, + Icons.outlet_outlined, + Icons.outlet_rounded, + Icons.outlet_sharp, + Icons.outlined_flag, + Icons.outlined_flag_outlined, + Icons.outlined_flag_rounded, + Icons.outlined_flag_sharp, + Icons.output, + Icons.output_outlined, + Icons.output_rounded, + Icons.output_sharp, + Icons.padding, + Icons.padding_outlined, + Icons.padding_rounded, + Icons.padding_sharp, + Icons.pages, + Icons.pages_outlined, + Icons.pages_rounded, + Icons.pages_sharp, + Icons.pageview, + Icons.pageview_outlined, + Icons.pageview_rounded, + Icons.pageview_sharp, + Icons.paid, + Icons.paid_outlined, + Icons.paid_rounded, + Icons.paid_sharp, + Icons.palette, + Icons.palette_outlined, + Icons.palette_rounded, + Icons.palette_sharp, + Icons.pallet, + Icons.pan_tool, + Icons.pan_tool_alt, + Icons.pan_tool_alt_outlined, + Icons.pan_tool_alt_rounded, + Icons.pan_tool_alt_sharp, + Icons.pan_tool_outlined, + Icons.pan_tool_rounded, + Icons.pan_tool_sharp, + Icons.panorama, + Icons.panorama_fish_eye, + Icons.panorama_fish_eye_outlined, + Icons.panorama_fish_eye_rounded, + Icons.panorama_fish_eye_sharp, + Icons.panorama_fisheye, + Icons.panorama_fisheye_outlined, + Icons.panorama_fisheye_rounded, + Icons.panorama_fisheye_sharp, + Icons.panorama_horizontal, + Icons.panorama_horizontal_outlined, + Icons.panorama_horizontal_rounded, + Icons.panorama_horizontal_select, + Icons.panorama_horizontal_select_outlined, + Icons.panorama_horizontal_select_rounded, + Icons.panorama_horizontal_select_sharp, + Icons.panorama_horizontal_sharp, + Icons.panorama_outlined, + Icons.panorama_photosphere, + Icons.panorama_photosphere_outlined, + Icons.panorama_photosphere_rounded, + Icons.panorama_photosphere_select, + Icons.panorama_photosphere_select_outlined, + Icons.panorama_photosphere_select_rounded, + Icons.panorama_photosphere_select_sharp, + Icons.panorama_photosphere_sharp, + Icons.panorama_rounded, + Icons.panorama_sharp, + Icons.panorama_vertical, + Icons.panorama_vertical_outlined, + Icons.panorama_vertical_rounded, + Icons.panorama_vertical_select, + Icons.panorama_vertical_select_outlined, + Icons.panorama_vertical_select_rounded, + Icons.panorama_vertical_select_sharp, + Icons.panorama_vertical_sharp, + Icons.panorama_wide_angle, + Icons.panorama_wide_angle_outlined, + Icons.panorama_wide_angle_rounded, + Icons.panorama_wide_angle_select, + Icons.panorama_wide_angle_select_outlined, + Icons.panorama_wide_angle_select_rounded, + Icons.panorama_wide_angle_select_sharp, + Icons.panorama_wide_angle_sharp, + Icons.paragliding, + Icons.paragliding_outlined, + Icons.paragliding_rounded, + Icons.paragliding_sharp, + Icons.park, + Icons.park_outlined, + Icons.park_rounded, + Icons.park_sharp, + Icons.party_mode, + Icons.party_mode_outlined, + Icons.party_mode_rounded, + Icons.party_mode_sharp, + Icons.password, + Icons.password_outlined, + Icons.password_rounded, + Icons.password_sharp, + Icons.paste, + Icons.paste_outlined, + Icons.paste_rounded, + Icons.paste_sharp, + Icons.pattern, + Icons.pattern_outlined, + Icons.pattern_rounded, + Icons.pattern_sharp, + Icons.pause, + Icons.pause_circle, + Icons.pause_circle_filled, + Icons.pause_circle_filled_outlined, + Icons.pause_circle_filled_rounded, + Icons.pause_circle_filled_sharp, + Icons.pause_circle_outline, + Icons.pause_circle_outline_outlined, + Icons.pause_circle_outline_rounded, + Icons.pause_circle_outline_sharp, + Icons.pause_circle_outlined, + Icons.pause_circle_rounded, + Icons.pause_circle_sharp, + Icons.pause_outlined, + Icons.pause_presentation, + Icons.pause_presentation_outlined, + Icons.pause_presentation_rounded, + Icons.pause_presentation_sharp, + Icons.pause_rounded, + Icons.pause_sharp, + Icons.payment, + Icons.payment_outlined, + Icons.payment_rounded, + Icons.payment_sharp, + Icons.payments, + Icons.payments_outlined, + Icons.payments_rounded, + Icons.payments_sharp, + Icons.paypal, + Icons.paypal_outlined, + Icons.paypal_rounded, + Icons.paypal_sharp, + Icons.pedal_bike, + Icons.pedal_bike_outlined, + Icons.pedal_bike_rounded, + Icons.pedal_bike_sharp, + Icons.pending, + Icons.pending_actions, + Icons.pending_actions_outlined, + Icons.pending_actions_rounded, + Icons.pending_actions_sharp, + Icons.pending_outlined, + Icons.pending_rounded, + Icons.pending_sharp, + Icons.pentagon, + Icons.pentagon_outlined, + Icons.pentagon_rounded, + Icons.pentagon_sharp, + Icons.people, + Icons.people_alt, + Icons.people_alt_outlined, + Icons.people_alt_rounded, + Icons.people_alt_sharp, + Icons.people_outline, + Icons.people_outline_outlined, + Icons.people_outline_rounded, + Icons.people_outline_sharp, + Icons.people_outlined, + Icons.people_rounded, + Icons.people_sharp, + Icons.percent, + Icons.percent_outlined, + Icons.percent_rounded, + Icons.percent_sharp, + Icons.perm_camera_mic, + Icons.perm_camera_mic_outlined, + Icons.perm_camera_mic_rounded, + Icons.perm_camera_mic_sharp, + Icons.perm_contact_cal, + Icons.perm_contact_cal_outlined, + Icons.perm_contact_cal_rounded, + Icons.perm_contact_cal_sharp, + Icons.perm_contact_calendar, + Icons.perm_contact_calendar_outlined, + Icons.perm_contact_calendar_rounded, + Icons.perm_contact_calendar_sharp, + Icons.perm_data_setting, + Icons.perm_data_setting_outlined, + Icons.perm_data_setting_rounded, + Icons.perm_data_setting_sharp, + Icons.perm_device_info, + Icons.perm_device_info_outlined, + Icons.perm_device_info_rounded, + Icons.perm_device_info_sharp, + Icons.perm_device_information, + Icons.perm_device_information_outlined, + Icons.perm_device_information_rounded, + Icons.perm_device_information_sharp, + Icons.perm_identity, + Icons.perm_identity_outlined, + Icons.perm_identity_rounded, + Icons.perm_identity_sharp, + Icons.perm_media, + Icons.perm_media_outlined, + Icons.perm_media_rounded, + Icons.perm_media_sharp, + Icons.perm_phone_msg, + Icons.perm_phone_msg_outlined, + Icons.perm_phone_msg_rounded, + Icons.perm_phone_msg_sharp, + Icons.perm_scan_wifi, + Icons.perm_scan_wifi_outlined, + Icons.perm_scan_wifi_rounded, + Icons.perm_scan_wifi_sharp, + Icons.person, + Icons.person_2, + Icons.person_2_outlined, + Icons.person_2_rounded, + Icons.person_2_sharp, + Icons.person_3, + Icons.person_3_outlined, + Icons.person_3_rounded, + Icons.person_3_sharp, + Icons.person_4, + Icons.person_4_outlined, + Icons.person_4_rounded, + Icons.person_4_sharp, + Icons.person_add, + Icons.person_add_alt, + Icons.person_add_alt_1, + Icons.person_add_alt_1_outlined, + Icons.person_add_alt_1_rounded, + Icons.person_add_alt_1_sharp, + Icons.person_add_alt_outlined, + Icons.person_add_alt_rounded, + Icons.person_add_alt_sharp, + Icons.person_add_disabled, + Icons.person_add_disabled_outlined, + Icons.person_add_disabled_rounded, + Icons.person_add_disabled_sharp, + Icons.person_add_outlined, + Icons.person_add_rounded, + Icons.person_add_sharp, + Icons.person_off, + Icons.person_off_outlined, + Icons.person_off_rounded, + Icons.person_off_sharp, + Icons.person_outline, + Icons.person_outline_outlined, + Icons.person_outline_rounded, + Icons.person_outline_sharp, + Icons.person_outlined, + Icons.person_pin, + Icons.person_pin_circle, + Icons.person_pin_circle_outlined, + Icons.person_pin_circle_rounded, + Icons.person_pin_circle_sharp, + Icons.person_pin_outlined, + Icons.person_pin_rounded, + Icons.person_pin_sharp, + Icons.person_remove, + Icons.person_remove_alt_1, + Icons.person_remove_alt_1_outlined, + Icons.person_remove_alt_1_rounded, + Icons.person_remove_alt_1_sharp, + Icons.person_remove_outlined, + Icons.person_remove_rounded, + Icons.person_remove_sharp, + Icons.person_rounded, + Icons.person_search, + Icons.person_search_outlined, + Icons.person_search_rounded, + Icons.person_search_sharp, + Icons.person_sharp, + Icons.personal_injury, + Icons.personal_injury_outlined, + Icons.personal_injury_rounded, + Icons.personal_injury_sharp, + Icons.personal_video, + Icons.personal_video_outlined, + Icons.personal_video_rounded, + Icons.personal_video_sharp, + Icons.pest_control, + Icons.pest_control_outlined, + Icons.pest_control_rodent, + Icons.pest_control_rodent_outlined, + Icons.pest_control_rodent_rounded, + Icons.pest_control_rodent_sharp, + Icons.pest_control_rounded, + Icons.pest_control_sharp, + Icons.pets, + Icons.pets_outlined, + Icons.pets_rounded, + Icons.pets_sharp, + Icons.phishing, + Icons.phishing_outlined, + Icons.phishing_rounded, + Icons.phishing_sharp, + Icons.phone, + Icons.phone_android, + Icons.phone_android_outlined, + Icons.phone_android_rounded, + Icons.phone_android_sharp, + Icons.phone_bluetooth_speaker, + Icons.phone_bluetooth_speaker_outlined, + Icons.phone_bluetooth_speaker_rounded, + Icons.phone_bluetooth_speaker_sharp, + Icons.phone_callback, + Icons.phone_callback_outlined, + Icons.phone_callback_rounded, + Icons.phone_callback_sharp, + Icons.phone_disabled, + Icons.phone_disabled_outlined, + Icons.phone_disabled_rounded, + Icons.phone_disabled_sharp, + Icons.phone_enabled, + Icons.phone_enabled_outlined, + Icons.phone_enabled_rounded, + Icons.phone_enabled_sharp, + Icons.phone_forwarded, + Icons.phone_forwarded_outlined, + Icons.phone_forwarded_rounded, + Icons.phone_forwarded_sharp, + Icons.phone_in_talk, + Icons.phone_in_talk_outlined, + Icons.phone_in_talk_rounded, + Icons.phone_in_talk_sharp, + Icons.phone_iphone, + Icons.phone_iphone_outlined, + Icons.phone_iphone_rounded, + Icons.phone_iphone_sharp, + Icons.phone_locked, + Icons.phone_locked_outlined, + Icons.phone_locked_rounded, + Icons.phone_locked_sharp, + Icons.phone_missed, + Icons.phone_missed_outlined, + Icons.phone_missed_rounded, + Icons.phone_missed_sharp, + Icons.phone_outlined, + Icons.phone_paused, + Icons.phone_paused_outlined, + Icons.phone_paused_rounded, + Icons.phone_paused_sharp, + Icons.phone_rounded, + Icons.phone_sharp, + Icons.phonelink, + Icons.phonelink_erase, + Icons.phonelink_erase_outlined, + Icons.phonelink_erase_rounded, + Icons.phonelink_erase_sharp, + Icons.phonelink_lock, + Icons.phonelink_lock_outlined, + Icons.phonelink_lock_rounded, + Icons.phonelink_lock_sharp, + Icons.phonelink_off, + Icons.phonelink_off_outlined, + Icons.phonelink_off_rounded, + Icons.phonelink_off_sharp, + Icons.phonelink_outlined, + Icons.phonelink_ring, + Icons.phonelink_ring_outlined, + Icons.phonelink_ring_rounded, + Icons.phonelink_ring_sharp, + Icons.phonelink_rounded, + Icons.phonelink_setup, + Icons.phonelink_setup_outlined, + Icons.phonelink_setup_rounded, + Icons.phonelink_setup_sharp, + Icons.phonelink_sharp, + Icons.photo, + Icons.photo_album, + Icons.photo_album_outlined, + Icons.photo_album_rounded, + Icons.photo_album_sharp, + Icons.photo_camera, + Icons.photo_camera_back, + Icons.photo_camera_back_outlined, + Icons.photo_camera_back_rounded, + Icons.photo_camera_back_sharp, + Icons.photo_camera_front, + Icons.photo_camera_front_outlined, + Icons.photo_camera_front_rounded, + Icons.photo_camera_front_sharp, + Icons.photo_camera_outlined, + Icons.photo_camera_rounded, + Icons.photo_camera_sharp, + Icons.photo_filter, + Icons.photo_filter_outlined, + Icons.photo_filter_rounded, + Icons.photo_filter_sharp, + Icons.photo_library, + Icons.photo_library_outlined, + Icons.photo_library_rounded, + Icons.photo_library_sharp, + Icons.photo_outlined, + Icons.photo_rounded, + Icons.photo_sharp, + Icons.photo_size_select_actual, + Icons.photo_size_select_actual_outlined, + Icons.photo_size_select_actual_rounded, + Icons.photo_size_select_actual_sharp, + Icons.photo_size_select_large, + Icons.photo_size_select_large_outlined, + Icons.photo_size_select_large_rounded, + Icons.photo_size_select_large_sharp, + Icons.photo_size_select_small, + Icons.photo_size_select_small_outlined, + Icons.photo_size_select_small_rounded, + Icons.photo_size_select_small_sharp, + Icons.php, + Icons.php_outlined, + Icons.php_rounded, + Icons.php_sharp, + Icons.piano, + Icons.piano_off, + Icons.piano_off_outlined, + Icons.piano_off_rounded, + Icons.piano_off_sharp, + Icons.piano_outlined, + Icons.piano_rounded, + Icons.piano_sharp, + Icons.picture_as_pdf, + Icons.picture_as_pdf_outlined, + Icons.picture_as_pdf_rounded, + Icons.picture_as_pdf_sharp, + Icons.picture_in_picture, + Icons.picture_in_picture_alt, + Icons.picture_in_picture_alt_outlined, + Icons.picture_in_picture_alt_rounded, + Icons.picture_in_picture_alt_sharp, + Icons.picture_in_picture_outlined, + Icons.picture_in_picture_rounded, + Icons.picture_in_picture_sharp, + Icons.pie_chart, + Icons.pie_chart_outline, + Icons.pie_chart_outline_outlined, + Icons.pie_chart_outline_rounded, + Icons.pie_chart_outline_sharp, + Icons.pie_chart_rounded, + Icons.pie_chart_sharp, + Icons.pin, + Icons.pin_drop, + Icons.pin_drop_outlined, + Icons.pin_drop_rounded, + Icons.pin_drop_sharp, + Icons.pin_end, + Icons.pin_end_outlined, + Icons.pin_end_rounded, + Icons.pin_end_sharp, + Icons.pin_invoke, + Icons.pin_invoke_outlined, + Icons.pin_invoke_rounded, + Icons.pin_invoke_sharp, + Icons.pin_outlined, + Icons.pin_rounded, + Icons.pin_sharp, + Icons.pinch, + Icons.pinch_outlined, + Icons.pinch_rounded, + Icons.pinch_sharp, + Icons.pivot_table_chart, + Icons.pivot_table_chart_outlined, + Icons.pivot_table_chart_rounded, + Icons.pivot_table_chart_sharp, + Icons.pix, + Icons.pix_outlined, + Icons.pix_rounded, + Icons.pix_sharp, + Icons.place, + Icons.place_outlined, + Icons.place_rounded, + Icons.place_sharp, + Icons.plagiarism, + Icons.plagiarism_outlined, + Icons.plagiarism_rounded, + Icons.plagiarism_sharp, + Icons.play_arrow, + Icons.play_arrow_outlined, + Icons.play_arrow_rounded, + Icons.play_arrow_sharp, + Icons.play_circle, + Icons.play_circle_fill, + Icons.play_circle_fill_outlined, + Icons.play_circle_fill_rounded, + Icons.play_circle_fill_sharp, + Icons.play_circle_filled, + Icons.play_circle_filled_outlined, + Icons.play_circle_filled_rounded, + Icons.play_circle_filled_sharp, + Icons.play_circle_outline, + Icons.play_circle_outline_outlined, + Icons.play_circle_outline_rounded, + Icons.play_circle_outline_sharp, + Icons.play_circle_outlined, + Icons.play_circle_rounded, + Icons.play_circle_sharp, + Icons.play_disabled, + Icons.play_disabled_outlined, + Icons.play_disabled_rounded, + Icons.play_disabled_sharp, + Icons.play_for_work, + Icons.play_for_work_outlined, + Icons.play_for_work_rounded, + Icons.play_for_work_sharp, + Icons.play_lesson, + Icons.play_lesson_outlined, + Icons.play_lesson_rounded, + Icons.play_lesson_sharp, + Icons.playlist_add, + Icons.playlist_add_check, + Icons.playlist_add_check_circle, + Icons.playlist_add_check_circle_outlined, + Icons.playlist_add_check_circle_rounded, + Icons.playlist_add_check_circle_sharp, + Icons.playlist_add_check_outlined, + Icons.playlist_add_check_rounded, + Icons.playlist_add_check_sharp, + Icons.playlist_add_circle, + Icons.playlist_add_circle_outlined, + Icons.playlist_add_circle_rounded, + Icons.playlist_add_circle_sharp, + Icons.playlist_add_outlined, + Icons.playlist_add_rounded, + Icons.playlist_add_sharp, + Icons.playlist_play, + Icons.playlist_play_outlined, + Icons.playlist_play_rounded, + Icons.playlist_play_sharp, + Icons.playlist_remove, + Icons.playlist_remove_outlined, + Icons.playlist_remove_rounded, + Icons.playlist_remove_sharp, + Icons.plumbing, + Icons.plumbing_outlined, + Icons.plumbing_rounded, + Icons.plumbing_sharp, + Icons.plus_one, + Icons.plus_one_outlined, + Icons.plus_one_rounded, + Icons.plus_one_sharp, + Icons.podcasts, + Icons.podcasts_outlined, + Icons.podcasts_rounded, + Icons.podcasts_sharp, + Icons.point_of_sale, + Icons.point_of_sale_outlined, + Icons.point_of_sale_rounded, + Icons.point_of_sale_sharp, + Icons.policy, + Icons.policy_outlined, + Icons.policy_rounded, + Icons.policy_sharp, + Icons.poll, + Icons.poll_outlined, + Icons.poll_rounded, + Icons.poll_sharp, + Icons.polyline, + Icons.polyline_outlined, + Icons.polyline_rounded, + Icons.polyline_sharp, + Icons.polymer, + Icons.polymer_outlined, + Icons.polymer_rounded, + Icons.polymer_sharp, + Icons.pool, + Icons.pool_outlined, + Icons.pool_rounded, + Icons.pool_sharp, + Icons.portable_wifi_off, + Icons.portable_wifi_off_outlined, + Icons.portable_wifi_off_rounded, + Icons.portable_wifi_off_sharp, + Icons.portrait, + Icons.portrait_outlined, + Icons.portrait_rounded, + Icons.portrait_sharp, + Icons.post_add, + Icons.post_add_outlined, + Icons.post_add_rounded, + Icons.post_add_sharp, + Icons.power, + Icons.power_input, + Icons.power_input_outlined, + Icons.power_input_rounded, + Icons.power_input_sharp, + Icons.power_off, + Icons.power_off_outlined, + Icons.power_off_rounded, + Icons.power_off_sharp, + Icons.power_outlined, + Icons.power_rounded, + Icons.power_settings_new, + Icons.power_settings_new_outlined, + Icons.power_settings_new_rounded, + Icons.power_settings_new_sharp, + Icons.power_sharp, + Icons.precision_manufacturing, + Icons.precision_manufacturing_outlined, + Icons.precision_manufacturing_rounded, + Icons.precision_manufacturing_sharp, + Icons.pregnant_woman, + Icons.pregnant_woman_outlined, + Icons.pregnant_woman_rounded, + Icons.pregnant_woman_sharp, + Icons.present_to_all, + Icons.present_to_all_outlined, + Icons.present_to_all_rounded, + Icons.present_to_all_sharp, + Icons.preview, + Icons.preview_outlined, + Icons.preview_rounded, + Icons.preview_sharp, + Icons.price_change, + Icons.price_change_outlined, + Icons.price_change_rounded, + Icons.price_change_sharp, + Icons.price_check, + Icons.price_check_outlined, + Icons.price_check_rounded, + Icons.price_check_sharp, + Icons.print, + Icons.print_disabled, + Icons.print_disabled_outlined, + Icons.print_disabled_rounded, + Icons.print_disabled_sharp, + Icons.print_outlined, + Icons.print_rounded, + Icons.print_sharp, + Icons.priority_high, + Icons.priority_high_outlined, + Icons.priority_high_rounded, + Icons.priority_high_sharp, + Icons.privacy_tip, + Icons.privacy_tip_outlined, + Icons.privacy_tip_rounded, + Icons.privacy_tip_sharp, + Icons.private_connectivity, + Icons.private_connectivity_outlined, + Icons.private_connectivity_rounded, + Icons.private_connectivity_sharp, + Icons.production_quantity_limits, + Icons.production_quantity_limits_outlined, + Icons.production_quantity_limits_rounded, + Icons.production_quantity_limits_sharp, + Icons.propane, + Icons.propane_outlined, + Icons.propane_rounded, + Icons.propane_sharp, + Icons.propane_tank, + Icons.propane_tank_outlined, + Icons.propane_tank_rounded, + Icons.propane_tank_sharp, + Icons.psychology, + Icons.psychology_alt, + Icons.psychology_alt_outlined, + Icons.psychology_alt_rounded, + Icons.psychology_alt_sharp, + Icons.psychology_outlined, + Icons.psychology_rounded, + Icons.psychology_sharp, + Icons.public, + Icons.public_off, + Icons.public_off_outlined, + Icons.public_off_rounded, + Icons.public_off_sharp, + Icons.public_outlined, + Icons.public_rounded, + Icons.public_sharp, + Icons.publish, + Icons.publish_outlined, + Icons.publish_rounded, + Icons.publish_sharp, + Icons.published_with_changes, + Icons.published_with_changes_outlined, + Icons.published_with_changes_rounded, + Icons.published_with_changes_sharp, + Icons.punch_clock, + Icons.punch_clock_outlined, + Icons.punch_clock_rounded, + Icons.punch_clock_sharp, + Icons.push_pin, + Icons.push_pin_outlined, + Icons.push_pin_rounded, + Icons.push_pin_sharp, + Icons.qr_code, + Icons.qr_code_2, + Icons.qr_code_2_outlined, + Icons.qr_code_2_rounded, + Icons.qr_code_2_sharp, + Icons.qr_code_outlined, + Icons.qr_code_rounded, + Icons.qr_code_scanner, + Icons.qr_code_scanner_outlined, + Icons.qr_code_scanner_rounded, + Icons.qr_code_scanner_sharp, + Icons.qr_code_sharp, + Icons.query_builder, + Icons.query_builder_outlined, + Icons.query_builder_rounded, + Icons.query_builder_sharp, + Icons.query_stats, + Icons.query_stats_outlined, + Icons.query_stats_rounded, + Icons.query_stats_sharp, + Icons.question_answer, + Icons.question_answer_outlined, + Icons.question_answer_rounded, + Icons.question_answer_sharp, + Icons.question_mark, + Icons.question_mark_outlined, + Icons.question_mark_rounded, + Icons.question_mark_sharp, + Icons.queue, + Icons.queue_music, + Icons.queue_music_outlined, + Icons.queue_music_rounded, + Icons.queue_music_sharp, + Icons.queue_outlined, + Icons.queue_play_next, + Icons.queue_play_next_outlined, + Icons.queue_play_next_rounded, + Icons.queue_play_next_sharp, + Icons.queue_rounded, + Icons.queue_sharp, + Icons.quick_contacts_dialer, + Icons.quick_contacts_dialer_outlined, + Icons.quick_contacts_dialer_rounded, + Icons.quick_contacts_dialer_sharp, + Icons.quick_contacts_mail, + Icons.quick_contacts_mail_outlined, + Icons.quick_contacts_mail_rounded, + Icons.quick_contacts_mail_sharp, + Icons.quickreply, + Icons.quickreply_outlined, + Icons.quickreply_rounded, + Icons.quickreply_sharp, + Icons.quiz, + Icons.quiz_outlined, + Icons.quiz_rounded, + Icons.quiz_sharp, + Icons.quora, + Icons.quora_outlined, + Icons.quora_rounded, + Icons.quora_sharp, + Icons.r_mobiledata, + Icons.r_mobiledata_outlined, + Icons.r_mobiledata_rounded, + Icons.r_mobiledata_sharp, + Icons.radar, + Icons.radar_outlined, + Icons.radar_rounded, + Icons.radar_sharp, + Icons.radio, + Icons.radio_button_checked, + Icons.radio_button_checked_outlined, + Icons.radio_button_checked_rounded, + Icons.radio_button_checked_sharp, + Icons.radio_button_off, + Icons.radio_button_off_outlined, + Icons.radio_button_off_rounded, + Icons.radio_button_off_sharp, + Icons.radio_button_on, + Icons.radio_button_on_outlined, + Icons.radio_button_on_rounded, + Icons.radio_button_on_sharp, + Icons.radio_button_unchecked, + Icons.radio_button_unchecked_outlined, + Icons.radio_button_unchecked_rounded, + Icons.radio_button_unchecked_sharp, + Icons.radio_outlined, + Icons.radio_rounded, + Icons.radio_sharp, + Icons.railway_alert, + Icons.railway_alert_outlined, + Icons.railway_alert_rounded, + Icons.railway_alert_sharp, + Icons.ramen_dining, + Icons.ramen_dining_outlined, + Icons.ramen_dining_rounded, + Icons.ramen_dining_sharp, + Icons.ramp_left, + Icons.ramp_left_outlined, + Icons.ramp_left_rounded, + Icons.ramp_left_sharp, + Icons.ramp_right, + Icons.ramp_right_outlined, + Icons.ramp_right_rounded, + Icons.ramp_right_sharp, + Icons.rate_review, + Icons.rate_review_outlined, + Icons.rate_review_rounded, + Icons.rate_review_sharp, + Icons.raw_off, + Icons.raw_off_outlined, + Icons.raw_off_rounded, + Icons.raw_off_sharp, + Icons.raw_on, + Icons.raw_on_outlined, + Icons.raw_on_rounded, + Icons.raw_on_sharp, + Icons.read_more, + Icons.read_more_outlined, + Icons.read_more_rounded, + Icons.read_more_sharp, + Icons.real_estate_agent, + Icons.real_estate_agent_outlined, + Icons.real_estate_agent_rounded, + Icons.real_estate_agent_sharp, + Icons.rebase_edit, + Icons.receipt, + Icons.receipt_long, + Icons.receipt_long_outlined, + Icons.receipt_long_rounded, + Icons.receipt_long_sharp, + Icons.receipt_outlined, + Icons.receipt_rounded, + Icons.receipt_sharp, + Icons.recent_actors, + Icons.recent_actors_outlined, + Icons.recent_actors_rounded, + Icons.recent_actors_sharp, + Icons.recommend, + Icons.recommend_outlined, + Icons.recommend_rounded, + Icons.recommend_sharp, + Icons.record_voice_over, + Icons.record_voice_over_outlined, + Icons.record_voice_over_rounded, + Icons.record_voice_over_sharp, + Icons.rectangle, + Icons.rectangle_outlined, + Icons.rectangle_rounded, + Icons.rectangle_sharp, + Icons.recycling, + Icons.recycling_outlined, + Icons.recycling_rounded, + Icons.recycling_sharp, + Icons.reddit, + Icons.reddit_outlined, + Icons.reddit_rounded, + Icons.reddit_sharp, + Icons.redeem, + Icons.redeem_outlined, + Icons.redeem_rounded, + Icons.redeem_sharp, + Icons.redo, + Icons.redo_outlined, + Icons.redo_rounded, + Icons.redo_sharp, + Icons.reduce_capacity, + Icons.reduce_capacity_outlined, + Icons.reduce_capacity_rounded, + Icons.reduce_capacity_sharp, + Icons.refresh, + Icons.refresh_outlined, + Icons.refresh_rounded, + Icons.refresh_sharp, + Icons.remember_me, + Icons.remember_me_outlined, + Icons.remember_me_rounded, + Icons.remember_me_sharp, + Icons.remove, + Icons.remove_circle, + Icons.remove_circle_outline, + Icons.remove_circle_outline_outlined, + Icons.remove_circle_outline_rounded, + Icons.remove_circle_outline_sharp, + Icons.remove_circle_outlined, + Icons.remove_circle_rounded, + Icons.remove_circle_sharp, + Icons.remove_done, + Icons.remove_done_outlined, + Icons.remove_done_rounded, + Icons.remove_done_sharp, + Icons.remove_from_queue, + Icons.remove_from_queue_outlined, + Icons.remove_from_queue_rounded, + Icons.remove_from_queue_sharp, + Icons.remove_moderator, + Icons.remove_moderator_outlined, + Icons.remove_moderator_rounded, + Icons.remove_moderator_sharp, + Icons.remove_outlined, + Icons.remove_red_eye, + Icons.remove_red_eye_outlined, + Icons.remove_red_eye_rounded, + Icons.remove_red_eye_sharp, + Icons.remove_road, + Icons.remove_road_outlined, + Icons.remove_road_rounded, + Icons.remove_road_sharp, + Icons.remove_rounded, + Icons.remove_sharp, + Icons.remove_shopping_cart, + Icons.remove_shopping_cart_outlined, + Icons.remove_shopping_cart_rounded, + Icons.remove_shopping_cart_sharp, + Icons.reorder, + Icons.reorder_outlined, + Icons.reorder_rounded, + Icons.reorder_sharp, + Icons.repartition, + Icons.repartition_outlined, + Icons.repartition_rounded, + Icons.repartition_sharp, + Icons.repeat, + Icons.repeat_on, + Icons.repeat_on_outlined, + Icons.repeat_on_rounded, + Icons.repeat_on_sharp, + Icons.repeat_one, + Icons.repeat_one_on, + Icons.repeat_one_on_outlined, + Icons.repeat_one_on_rounded, + Icons.repeat_one_on_sharp, + Icons.repeat_one_outlined, + Icons.repeat_one_rounded, + Icons.repeat_one_sharp, + Icons.repeat_outlined, + Icons.repeat_rounded, + Icons.repeat_sharp, + Icons.replay, + Icons.replay_10, + Icons.replay_10_outlined, + Icons.replay_10_rounded, + Icons.replay_10_sharp, + Icons.replay_30, + Icons.replay_30_outlined, + Icons.replay_30_rounded, + Icons.replay_30_sharp, + Icons.replay_5, + Icons.replay_5_outlined, + Icons.replay_5_rounded, + Icons.replay_5_sharp, + Icons.replay_circle_filled, + Icons.replay_circle_filled_outlined, + Icons.replay_circle_filled_rounded, + Icons.replay_circle_filled_sharp, + Icons.replay_outlined, + Icons.replay_rounded, + Icons.replay_sharp, + Icons.reply, + Icons.reply_all, + Icons.reply_all_outlined, + Icons.reply_all_rounded, + Icons.reply_all_sharp, + Icons.reply_outlined, + Icons.reply_rounded, + Icons.reply_sharp, + Icons.report, + Icons.report_gmailerrorred, + Icons.report_gmailerrorred_outlined, + Icons.report_gmailerrorred_rounded, + Icons.report_gmailerrorred_sharp, + Icons.report_off, + Icons.report_off_outlined, + Icons.report_off_rounded, + Icons.report_off_sharp, + Icons.report_outlined, + Icons.report_problem, + Icons.report_problem_outlined, + Icons.report_problem_rounded, + Icons.report_problem_sharp, + Icons.report_rounded, + Icons.report_sharp, + Icons.request_page, + Icons.request_page_outlined, + Icons.request_page_rounded, + Icons.request_page_sharp, + Icons.request_quote, + Icons.request_quote_outlined, + Icons.request_quote_rounded, + Icons.request_quote_sharp, + Icons.reset_tv, + Icons.reset_tv_outlined, + Icons.reset_tv_rounded, + Icons.reset_tv_sharp, + Icons.restart_alt, + Icons.restart_alt_outlined, + Icons.restart_alt_rounded, + Icons.restart_alt_sharp, + Icons.restaurant, + Icons.restaurant_menu, + Icons.restaurant_menu_outlined, + Icons.restaurant_menu_rounded, + Icons.restaurant_menu_sharp, + Icons.restaurant_outlined, + Icons.restaurant_rounded, + Icons.restaurant_sharp, + Icons.restore, + Icons.restore_from_trash, + Icons.restore_from_trash_outlined, + Icons.restore_from_trash_rounded, + Icons.restore_from_trash_sharp, + Icons.restore_outlined, + Icons.restore_page, + Icons.restore_page_outlined, + Icons.restore_page_rounded, + Icons.restore_page_sharp, + Icons.restore_rounded, + Icons.restore_sharp, + Icons.reviews, + Icons.reviews_outlined, + Icons.reviews_rounded, + Icons.reviews_sharp, + Icons.rice_bowl, + Icons.rice_bowl_outlined, + Icons.rice_bowl_rounded, + Icons.rice_bowl_sharp, + Icons.ring_volume, + Icons.ring_volume_outlined, + Icons.ring_volume_rounded, + Icons.ring_volume_sharp, + Icons.rocket, + Icons.rocket_launch, + Icons.rocket_launch_outlined, + Icons.rocket_launch_rounded, + Icons.rocket_launch_sharp, + Icons.rocket_outlined, + Icons.rocket_rounded, + Icons.rocket_sharp, + Icons.roller_shades, + Icons.roller_shades_closed, + Icons.roller_shades_closed_outlined, + Icons.roller_shades_closed_rounded, + Icons.roller_shades_closed_sharp, + Icons.roller_shades_outlined, + Icons.roller_shades_rounded, + Icons.roller_shades_sharp, + Icons.roller_skating, + Icons.roller_skating_outlined, + Icons.roller_skating_rounded, + Icons.roller_skating_sharp, + Icons.roofing, + Icons.roofing_outlined, + Icons.roofing_rounded, + Icons.roofing_sharp, + Icons.room, + Icons.room_outlined, + Icons.room_preferences, + Icons.room_preferences_outlined, + Icons.room_preferences_rounded, + Icons.room_preferences_sharp, + Icons.room_rounded, + Icons.room_service, + Icons.room_service_outlined, + Icons.room_service_rounded, + Icons.room_service_sharp, + Icons.room_sharp, + Icons.rotate_90_degrees_ccw, + Icons.rotate_90_degrees_ccw_outlined, + Icons.rotate_90_degrees_ccw_rounded, + Icons.rotate_90_degrees_ccw_sharp, + Icons.rotate_90_degrees_cw, + Icons.rotate_90_degrees_cw_outlined, + Icons.rotate_90_degrees_cw_rounded, + Icons.rotate_90_degrees_cw_sharp, + Icons.rotate_left, + Icons.rotate_left_outlined, + Icons.rotate_left_rounded, + Icons.rotate_left_sharp, + Icons.rotate_right, + Icons.rotate_right_outlined, + Icons.rotate_right_rounded, + Icons.rotate_right_sharp, + Icons.roundabout_left, + Icons.roundabout_left_outlined, + Icons.roundabout_left_rounded, + Icons.roundabout_left_sharp, + Icons.roundabout_right, + Icons.roundabout_right_outlined, + Icons.roundabout_right_rounded, + Icons.roundabout_right_sharp, + Icons.rounded_corner, + Icons.rounded_corner_outlined, + Icons.rounded_corner_rounded, + Icons.rounded_corner_sharp, + Icons.route, + Icons.route_outlined, + Icons.route_rounded, + Icons.route_sharp, + Icons.router, + Icons.router_outlined, + Icons.router_rounded, + Icons.router_sharp, + Icons.rowing, + Icons.rowing_outlined, + Icons.rowing_rounded, + Icons.rowing_sharp, + Icons.rss_feed, + Icons.rss_feed_outlined, + Icons.rss_feed_rounded, + Icons.rss_feed_sharp, + Icons.rsvp, + Icons.rsvp_outlined, + Icons.rsvp_rounded, + Icons.rsvp_sharp, + Icons.rtt, + Icons.rtt_outlined, + Icons.rtt_rounded, + Icons.rtt_sharp, + Icons.rule, + Icons.rule_folder, + Icons.rule_folder_outlined, + Icons.rule_folder_rounded, + Icons.rule_folder_sharp, + Icons.rule_outlined, + Icons.rule_rounded, + Icons.rule_sharp, + Icons.run_circle, + Icons.run_circle_outlined, + Icons.run_circle_rounded, + Icons.run_circle_sharp, + Icons.running_with_errors, + Icons.running_with_errors_outlined, + Icons.running_with_errors_rounded, + Icons.running_with_errors_sharp, + Icons.rv_hookup, + Icons.rv_hookup_outlined, + Icons.rv_hookup_rounded, + Icons.rv_hookup_sharp, + Icons.safety_check, + Icons.safety_check_outlined, + Icons.safety_check_rounded, + Icons.safety_check_sharp, + Icons.safety_divider, + Icons.safety_divider_outlined, + Icons.safety_divider_rounded, + Icons.safety_divider_sharp, + Icons.sailing, + Icons.sailing_outlined, + Icons.sailing_rounded, + Icons.sailing_sharp, + Icons.sanitizer, + Icons.sanitizer_outlined, + Icons.sanitizer_rounded, + Icons.sanitizer_sharp, + Icons.satellite, + Icons.satellite_alt, + Icons.satellite_alt_outlined, + Icons.satellite_alt_rounded, + Icons.satellite_alt_sharp, + Icons.satellite_outlined, + Icons.satellite_rounded, + Icons.satellite_sharp, + Icons.save, + Icons.save_alt, + Icons.save_alt_outlined, + Icons.save_alt_rounded, + Icons.save_alt_sharp, + Icons.save_as, + Icons.save_as_outlined, + Icons.save_as_rounded, + Icons.save_as_sharp, + Icons.save_outlined, + Icons.save_rounded, + Icons.save_sharp, + Icons.saved_search, + Icons.saved_search_outlined, + Icons.saved_search_rounded, + Icons.saved_search_sharp, + Icons.savings, + Icons.savings_outlined, + Icons.savings_rounded, + Icons.savings_sharp, + Icons.scale, + Icons.scale_outlined, + Icons.scale_rounded, + Icons.scale_sharp, + Icons.scanner, + Icons.scanner_outlined, + Icons.scanner_rounded, + Icons.scanner_sharp, + Icons.scatter_plot, + Icons.scatter_plot_outlined, + Icons.scatter_plot_rounded, + Icons.scatter_plot_sharp, + Icons.schedule, + Icons.schedule_outlined, + Icons.schedule_rounded, + Icons.schedule_send, + Icons.schedule_send_outlined, + Icons.schedule_send_rounded, + Icons.schedule_send_sharp, + Icons.schedule_sharp, + Icons.schema, + Icons.schema_outlined, + Icons.schema_rounded, + Icons.schema_sharp, + Icons.school, + Icons.school_outlined, + Icons.school_rounded, + Icons.school_sharp, + Icons.science, + Icons.science_outlined, + Icons.science_rounded, + Icons.science_sharp, + Icons.score, + Icons.score_outlined, + Icons.score_rounded, + Icons.score_sharp, + Icons.scoreboard, + Icons.scoreboard_outlined, + Icons.scoreboard_rounded, + Icons.scoreboard_sharp, + Icons.screen_lock_landscape, + Icons.screen_lock_landscape_outlined, + Icons.screen_lock_landscape_rounded, + Icons.screen_lock_landscape_sharp, + Icons.screen_lock_portrait, + Icons.screen_lock_portrait_outlined, + Icons.screen_lock_portrait_rounded, + Icons.screen_lock_portrait_sharp, + Icons.screen_lock_rotation, + Icons.screen_lock_rotation_outlined, + Icons.screen_lock_rotation_rounded, + Icons.screen_lock_rotation_sharp, + Icons.screen_rotation, + Icons.screen_rotation_alt, + Icons.screen_rotation_alt_outlined, + Icons.screen_rotation_alt_rounded, + Icons.screen_rotation_alt_sharp, + Icons.screen_rotation_outlined, + Icons.screen_rotation_rounded, + Icons.screen_rotation_sharp, + Icons.screen_search_desktop, + Icons.screen_search_desktop_outlined, + Icons.screen_search_desktop_rounded, + Icons.screen_search_desktop_sharp, + Icons.screen_share, + Icons.screen_share_outlined, + Icons.screen_share_rounded, + Icons.screen_share_sharp, + Icons.screenshot, + Icons.screenshot_monitor, + Icons.screenshot_monitor_outlined, + Icons.screenshot_monitor_rounded, + Icons.screenshot_monitor_sharp, + Icons.screenshot_outlined, + Icons.screenshot_rounded, + Icons.screenshot_sharp, + Icons.scuba_diving, + Icons.scuba_diving_outlined, + Icons.scuba_diving_rounded, + Icons.scuba_diving_sharp, + Icons.sd, + Icons.sd_card, + Icons.sd_card_alert, + Icons.sd_card_alert_outlined, + Icons.sd_card_alert_rounded, + Icons.sd_card_alert_sharp, + Icons.sd_card_outlined, + Icons.sd_card_rounded, + Icons.sd_card_sharp, + Icons.sd_outlined, + Icons.sd_rounded, + Icons.sd_sharp, + Icons.sd_storage, + Icons.sd_storage_outlined, + Icons.sd_storage_rounded, + Icons.sd_storage_sharp, + Icons.search, + Icons.search_off, + Icons.search_off_outlined, + Icons.search_off_rounded, + Icons.search_off_sharp, + Icons.search_outlined, + Icons.search_rounded, + Icons.search_sharp, + Icons.security, + Icons.security_outlined, + Icons.security_rounded, + Icons.security_sharp, + Icons.security_update, + Icons.security_update_good, + Icons.security_update_good_outlined, + Icons.security_update_good_rounded, + Icons.security_update_good_sharp, + Icons.security_update_outlined, + Icons.security_update_rounded, + Icons.security_update_sharp, + Icons.security_update_warning, + Icons.security_update_warning_outlined, + Icons.security_update_warning_rounded, + Icons.security_update_warning_sharp, + Icons.segment, + Icons.segment_outlined, + Icons.segment_rounded, + Icons.segment_sharp, + Icons.select_all, + Icons.select_all_outlined, + Icons.select_all_rounded, + Icons.select_all_sharp, + Icons.self_improvement, + Icons.self_improvement_outlined, + Icons.self_improvement_rounded, + Icons.self_improvement_sharp, + Icons.sell, + Icons.sell_outlined, + Icons.sell_rounded, + Icons.sell_sharp, + Icons.send, + Icons.send_and_archive, + Icons.send_and_archive_outlined, + Icons.send_and_archive_rounded, + Icons.send_and_archive_sharp, + Icons.send_outlined, + Icons.send_rounded, + Icons.send_sharp, + Icons.send_time_extension, + Icons.send_time_extension_outlined, + Icons.send_time_extension_rounded, + Icons.send_time_extension_sharp, + Icons.send_to_mobile, + Icons.send_to_mobile_outlined, + Icons.send_to_mobile_rounded, + Icons.send_to_mobile_sharp, + Icons.sensor_door, + Icons.sensor_door_outlined, + Icons.sensor_door_rounded, + Icons.sensor_door_sharp, + Icons.sensor_occupied, + Icons.sensor_occupied_outlined, + Icons.sensor_occupied_rounded, + Icons.sensor_occupied_sharp, + Icons.sensor_window, + Icons.sensor_window_outlined, + Icons.sensor_window_rounded, + Icons.sensor_window_sharp, + Icons.sensors, + Icons.sensors_off, + Icons.sensors_off_outlined, + Icons.sensors_off_rounded, + Icons.sensors_off_sharp, + Icons.sensors_outlined, + Icons.sensors_rounded, + Icons.sensors_sharp, + Icons.sentiment_dissatisfied, + Icons.sentiment_dissatisfied_outlined, + Icons.sentiment_dissatisfied_rounded, + Icons.sentiment_dissatisfied_sharp, + Icons.sentiment_neutral, + Icons.sentiment_neutral_outlined, + Icons.sentiment_neutral_rounded, + Icons.sentiment_neutral_sharp, + Icons.sentiment_satisfied, + Icons.sentiment_satisfied_alt, + Icons.sentiment_satisfied_alt_outlined, + Icons.sentiment_satisfied_alt_rounded, + Icons.sentiment_satisfied_alt_sharp, + Icons.sentiment_satisfied_outlined, + Icons.sentiment_satisfied_rounded, + Icons.sentiment_satisfied_sharp, + Icons.sentiment_very_dissatisfied, + Icons.sentiment_very_dissatisfied_outlined, + Icons.sentiment_very_dissatisfied_rounded, + Icons.sentiment_very_dissatisfied_sharp, + Icons.sentiment_very_satisfied, + Icons.sentiment_very_satisfied_outlined, + Icons.sentiment_very_satisfied_rounded, + Icons.sentiment_very_satisfied_sharp, + Icons.set_meal, + Icons.set_meal_outlined, + Icons.set_meal_rounded, + Icons.set_meal_sharp, + Icons.settings, + Icons.settings_accessibility, + Icons.settings_accessibility_outlined, + Icons.settings_accessibility_rounded, + Icons.settings_accessibility_sharp, + Icons.settings_applications, + Icons.settings_applications_outlined, + Icons.settings_applications_rounded, + Icons.settings_applications_sharp, + Icons.settings_backup_restore, + Icons.settings_backup_restore_outlined, + Icons.settings_backup_restore_rounded, + Icons.settings_backup_restore_sharp, + Icons.settings_bluetooth, + Icons.settings_bluetooth_outlined, + Icons.settings_bluetooth_rounded, + Icons.settings_bluetooth_sharp, + Icons.settings_brightness, + Icons.settings_brightness_outlined, + Icons.settings_brightness_rounded, + Icons.settings_brightness_sharp, + Icons.settings_cell, + Icons.settings_cell_outlined, + Icons.settings_cell_rounded, + Icons.settings_cell_sharp, + Icons.settings_display, + Icons.settings_display_outlined, + Icons.settings_display_rounded, + Icons.settings_display_sharp, + Icons.settings_ethernet, + Icons.settings_ethernet_outlined, + Icons.settings_ethernet_rounded, + Icons.settings_ethernet_sharp, + Icons.settings_input_antenna, + Icons.settings_input_antenna_outlined, + Icons.settings_input_antenna_rounded, + Icons.settings_input_antenna_sharp, + Icons.settings_input_component, + Icons.settings_input_component_outlined, + Icons.settings_input_component_rounded, + Icons.settings_input_component_sharp, + Icons.settings_input_composite, + Icons.settings_input_composite_outlined, + Icons.settings_input_composite_rounded, + Icons.settings_input_composite_sharp, + Icons.settings_input_hdmi, + Icons.settings_input_hdmi_outlined, + Icons.settings_input_hdmi_rounded, + Icons.settings_input_hdmi_sharp, + Icons.settings_input_svideo, + Icons.settings_input_svideo_outlined, + Icons.settings_input_svideo_rounded, + Icons.settings_input_svideo_sharp, + Icons.settings_outlined, + Icons.settings_overscan, + Icons.settings_overscan_outlined, + Icons.settings_overscan_rounded, + Icons.settings_overscan_sharp, + Icons.settings_phone, + Icons.settings_phone_outlined, + Icons.settings_phone_rounded, + Icons.settings_phone_sharp, + Icons.settings_power, + Icons.settings_power_outlined, + Icons.settings_power_rounded, + Icons.settings_power_sharp, + Icons.settings_remote, + Icons.settings_remote_outlined, + Icons.settings_remote_rounded, + Icons.settings_remote_sharp, + Icons.settings_rounded, + Icons.settings_sharp, + Icons.settings_suggest, + Icons.settings_suggest_outlined, + Icons.settings_suggest_rounded, + Icons.settings_suggest_sharp, + Icons.settings_system_daydream, + Icons.settings_system_daydream_outlined, + Icons.settings_system_daydream_rounded, + Icons.settings_system_daydream_sharp, + Icons.settings_voice, + Icons.settings_voice_outlined, + Icons.settings_voice_rounded, + Icons.settings_voice_sharp, + Icons.seven_k, + Icons.seven_k_outlined, + Icons.seven_k_plus, + Icons.seven_k_plus_outlined, + Icons.seven_k_plus_rounded, + Icons.seven_k_plus_sharp, + Icons.seven_k_rounded, + Icons.seven_k_sharp, + Icons.seven_mp, + Icons.seven_mp_outlined, + Icons.seven_mp_rounded, + Icons.seven_mp_sharp, + Icons.seventeen_mp, + Icons.seventeen_mp_outlined, + Icons.seventeen_mp_rounded, + Icons.seventeen_mp_sharp, + Icons.severe_cold, + Icons.severe_cold_outlined, + Icons.severe_cold_rounded, + Icons.severe_cold_sharp, + Icons.shape_line, + Icons.shape_line_outlined, + Icons.shape_line_rounded, + Icons.shape_line_sharp, + Icons.share, + Icons.share_arrival_time, + Icons.share_arrival_time_outlined, + Icons.share_arrival_time_rounded, + Icons.share_arrival_time_sharp, + Icons.share_location, + Icons.share_location_outlined, + Icons.share_location_rounded, + Icons.share_location_sharp, + Icons.share_outlined, + Icons.share_rounded, + Icons.share_sharp, + Icons.shelves, + Icons.shield, + Icons.shield_moon, + Icons.shield_moon_outlined, + Icons.shield_moon_rounded, + Icons.shield_moon_sharp, + Icons.shield_outlined, + Icons.shield_rounded, + Icons.shield_sharp, + Icons.shop, + Icons.shop_2, + Icons.shop_2_outlined, + Icons.shop_2_rounded, + Icons.shop_2_sharp, + Icons.shop_outlined, + Icons.shop_rounded, + Icons.shop_sharp, + Icons.shop_two, + Icons.shop_two_outlined, + Icons.shop_two_rounded, + Icons.shop_two_sharp, + Icons.shopify, + Icons.shopify_outlined, + Icons.shopify_rounded, + Icons.shopify_sharp, + Icons.shopping_bag, + Icons.shopping_bag_outlined, + Icons.shopping_bag_rounded, + Icons.shopping_bag_sharp, + Icons.shopping_basket, + Icons.shopping_basket_outlined, + Icons.shopping_basket_rounded, + Icons.shopping_basket_sharp, + Icons.shopping_cart, + Icons.shopping_cart_checkout, + Icons.shopping_cart_checkout_outlined, + Icons.shopping_cart_checkout_rounded, + Icons.shopping_cart_checkout_sharp, + Icons.shopping_cart_outlined, + Icons.shopping_cart_rounded, + Icons.shopping_cart_sharp, + Icons.short_text, + Icons.short_text_outlined, + Icons.short_text_rounded, + Icons.short_text_sharp, + Icons.shortcut, + Icons.shortcut_outlined, + Icons.shortcut_rounded, + Icons.shortcut_sharp, + Icons.show_chart, + Icons.show_chart_outlined, + Icons.show_chart_rounded, + Icons.show_chart_sharp, + Icons.shower, + Icons.shower_outlined, + Icons.shower_rounded, + Icons.shower_sharp, + Icons.shuffle, + Icons.shuffle_on, + Icons.shuffle_on_outlined, + Icons.shuffle_on_rounded, + Icons.shuffle_on_sharp, + Icons.shuffle_outlined, + Icons.shuffle_rounded, + Icons.shuffle_sharp, + Icons.shutter_speed, + Icons.shutter_speed_outlined, + Icons.shutter_speed_rounded, + Icons.shutter_speed_sharp, + Icons.sick, + Icons.sick_outlined, + Icons.sick_rounded, + Icons.sick_sharp, + Icons.sign_language, + Icons.sign_language_outlined, + Icons.sign_language_rounded, + Icons.sign_language_sharp, + Icons.signal_cellular_0_bar, + Icons.signal_cellular_0_bar_outlined, + Icons.signal_cellular_0_bar_rounded, + Icons.signal_cellular_0_bar_sharp, + Icons.signal_cellular_4_bar, + Icons.signal_cellular_4_bar_outlined, + Icons.signal_cellular_4_bar_rounded, + Icons.signal_cellular_4_bar_sharp, + Icons.signal_cellular_alt, + Icons.signal_cellular_alt_1_bar, + Icons.signal_cellular_alt_1_bar_outlined, + Icons.signal_cellular_alt_1_bar_rounded, + Icons.signal_cellular_alt_1_bar_sharp, + Icons.signal_cellular_alt_2_bar, + Icons.signal_cellular_alt_2_bar_outlined, + Icons.signal_cellular_alt_2_bar_rounded, + Icons.signal_cellular_alt_2_bar_sharp, + Icons.signal_cellular_alt_outlined, + Icons.signal_cellular_alt_rounded, + Icons.signal_cellular_alt_sharp, + Icons.signal_cellular_connected_no_internet_0_bar, + Icons.signal_cellular_connected_no_internet_0_bar_outlined, + Icons.signal_cellular_connected_no_internet_0_bar_rounded, + Icons.signal_cellular_connected_no_internet_0_bar_sharp, + Icons.signal_cellular_connected_no_internet_4_bar, + Icons.signal_cellular_connected_no_internet_4_bar_outlined, + Icons.signal_cellular_connected_no_internet_4_bar_rounded, + Icons.signal_cellular_connected_no_internet_4_bar_sharp, + Icons.signal_cellular_no_sim, + Icons.signal_cellular_no_sim_outlined, + Icons.signal_cellular_no_sim_rounded, + Icons.signal_cellular_no_sim_sharp, + Icons.signal_cellular_nodata, + Icons.signal_cellular_nodata_outlined, + Icons.signal_cellular_nodata_rounded, + Icons.signal_cellular_nodata_sharp, + Icons.signal_cellular_null, + Icons.signal_cellular_null_outlined, + Icons.signal_cellular_null_rounded, + Icons.signal_cellular_null_sharp, + Icons.signal_cellular_off, + Icons.signal_cellular_off_outlined, + Icons.signal_cellular_off_rounded, + Icons.signal_cellular_off_sharp, + Icons.signal_wifi_0_bar, + Icons.signal_wifi_0_bar_outlined, + Icons.signal_wifi_0_bar_rounded, + Icons.signal_wifi_0_bar_sharp, + Icons.signal_wifi_4_bar, + Icons.signal_wifi_4_bar_lock, + Icons.signal_wifi_4_bar_lock_outlined, + Icons.signal_wifi_4_bar_lock_rounded, + Icons.signal_wifi_4_bar_lock_sharp, + Icons.signal_wifi_4_bar_outlined, + Icons.signal_wifi_4_bar_rounded, + Icons.signal_wifi_4_bar_sharp, + Icons.signal_wifi_bad, + Icons.signal_wifi_bad_outlined, + Icons.signal_wifi_bad_rounded, + Icons.signal_wifi_bad_sharp, + Icons.signal_wifi_connected_no_internet_4, + Icons.signal_wifi_connected_no_internet_4_outlined, + Icons.signal_wifi_connected_no_internet_4_rounded, + Icons.signal_wifi_connected_no_internet_4_sharp, + Icons.signal_wifi_off, + Icons.signal_wifi_off_outlined, + Icons.signal_wifi_off_rounded, + Icons.signal_wifi_off_sharp, + Icons.signal_wifi_statusbar_4_bar, + Icons.signal_wifi_statusbar_4_bar_outlined, + Icons.signal_wifi_statusbar_4_bar_rounded, + Icons.signal_wifi_statusbar_4_bar_sharp, + Icons.signal_wifi_statusbar_connected_no_internet_4, + Icons.signal_wifi_statusbar_connected_no_internet_4_outlined, + Icons.signal_wifi_statusbar_connected_no_internet_4_rounded, + Icons.signal_wifi_statusbar_connected_no_internet_4_sharp, + Icons.signal_wifi_statusbar_null, + Icons.signal_wifi_statusbar_null_outlined, + Icons.signal_wifi_statusbar_null_rounded, + Icons.signal_wifi_statusbar_null_sharp, + Icons.signpost, + Icons.signpost_outlined, + Icons.signpost_rounded, + Icons.signpost_sharp, + Icons.sim_card, + Icons.sim_card_alert, + Icons.sim_card_alert_outlined, + Icons.sim_card_alert_rounded, + Icons.sim_card_alert_sharp, + Icons.sim_card_download, + Icons.sim_card_download_outlined, + Icons.sim_card_download_rounded, + Icons.sim_card_download_sharp, + Icons.sim_card_outlined, + Icons.sim_card_rounded, + Icons.sim_card_sharp, + Icons.single_bed, + Icons.single_bed_outlined, + Icons.single_bed_rounded, + Icons.single_bed_sharp, + Icons.sip, + Icons.sip_outlined, + Icons.sip_rounded, + Icons.sip_sharp, + Icons.six_ft_apart, + Icons.six_ft_apart_outlined, + Icons.six_ft_apart_rounded, + Icons.six_ft_apart_sharp, + Icons.six_k, + Icons.six_k_outlined, + Icons.six_k_plus, + Icons.six_k_plus_outlined, + Icons.six_k_plus_rounded, + Icons.six_k_plus_sharp, + Icons.six_k_rounded, + Icons.six_k_sharp, + Icons.six_mp, + Icons.six_mp_outlined, + Icons.six_mp_rounded, + Icons.six_mp_sharp, + Icons.sixteen_mp, + Icons.sixteen_mp_outlined, + Icons.sixteen_mp_rounded, + Icons.sixteen_mp_sharp, + Icons.sixty_fps, + Icons.sixty_fps_outlined, + Icons.sixty_fps_rounded, + Icons.sixty_fps_select, + Icons.sixty_fps_select_outlined, + Icons.sixty_fps_select_rounded, + Icons.sixty_fps_select_sharp, + Icons.sixty_fps_sharp, + Icons.skateboarding, + Icons.skateboarding_outlined, + Icons.skateboarding_rounded, + Icons.skateboarding_sharp, + Icons.skip_next, + Icons.skip_next_outlined, + Icons.skip_next_rounded, + Icons.skip_next_sharp, + Icons.skip_previous, + Icons.skip_previous_outlined, + Icons.skip_previous_rounded, + Icons.skip_previous_sharp, + Icons.sledding, + Icons.sledding_outlined, + Icons.sledding_rounded, + Icons.sledding_sharp, + Icons.slideshow, + Icons.slideshow_outlined, + Icons.slideshow_rounded, + Icons.slideshow_sharp, + Icons.slow_motion_video, + Icons.slow_motion_video_outlined, + Icons.slow_motion_video_rounded, + Icons.slow_motion_video_sharp, + Icons.smart_button, + Icons.smart_button_outlined, + Icons.smart_button_rounded, + Icons.smart_button_sharp, + Icons.smart_display, + Icons.smart_display_outlined, + Icons.smart_display_rounded, + Icons.smart_display_sharp, + Icons.smart_screen, + Icons.smart_screen_outlined, + Icons.smart_screen_rounded, + Icons.smart_screen_sharp, + Icons.smart_toy, + Icons.smart_toy_outlined, + Icons.smart_toy_rounded, + Icons.smart_toy_sharp, + Icons.smartphone, + Icons.smartphone_outlined, + Icons.smartphone_rounded, + Icons.smartphone_sharp, + Icons.smoke_free, + Icons.smoke_free_outlined, + Icons.smoke_free_rounded, + Icons.smoke_free_sharp, + Icons.smoking_rooms, + Icons.smoking_rooms_outlined, + Icons.smoking_rooms_rounded, + Icons.smoking_rooms_sharp, + Icons.sms, + Icons.sms_failed, + Icons.sms_failed_outlined, + Icons.sms_failed_rounded, + Icons.sms_failed_sharp, + Icons.sms_outlined, + Icons.sms_rounded, + Icons.sms_sharp, + Icons.snapchat, + Icons.snapchat_outlined, + Icons.snapchat_rounded, + Icons.snapchat_sharp, + Icons.snippet_folder, + Icons.snippet_folder_outlined, + Icons.snippet_folder_rounded, + Icons.snippet_folder_sharp, + Icons.snooze, + Icons.snooze_outlined, + Icons.snooze_rounded, + Icons.snooze_sharp, + Icons.snowboarding, + Icons.snowboarding_outlined, + Icons.snowboarding_rounded, + Icons.snowboarding_sharp, + Icons.snowing, + Icons.snowmobile, + Icons.snowmobile_outlined, + Icons.snowmobile_rounded, + Icons.snowmobile_sharp, + Icons.snowshoeing, + Icons.snowshoeing_outlined, + Icons.snowshoeing_rounded, + Icons.snowshoeing_sharp, + Icons.soap, + Icons.soap_outlined, + Icons.soap_rounded, + Icons.soap_sharp, + Icons.social_distance, + Icons.social_distance_outlined, + Icons.social_distance_rounded, + Icons.social_distance_sharp, + Icons.solar_power, + Icons.solar_power_outlined, + Icons.solar_power_rounded, + Icons.solar_power_sharp, + Icons.sort, + Icons.sort_by_alpha, + Icons.sort_by_alpha_outlined, + Icons.sort_by_alpha_rounded, + Icons.sort_by_alpha_sharp, + Icons.sort_outlined, + Icons.sort_rounded, + Icons.sort_sharp, + Icons.sos, + Icons.sos_outlined, + Icons.sos_rounded, + Icons.sos_sharp, + Icons.soup_kitchen, + Icons.soup_kitchen_outlined, + Icons.soup_kitchen_rounded, + Icons.soup_kitchen_sharp, + Icons.source, + Icons.source_outlined, + Icons.source_rounded, + Icons.source_sharp, + Icons.south, + Icons.south_america, + Icons.south_america_outlined, + Icons.south_america_rounded, + Icons.south_america_sharp, + Icons.south_east, + Icons.south_east_outlined, + Icons.south_east_rounded, + Icons.south_east_sharp, + Icons.south_outlined, + Icons.south_rounded, + Icons.south_sharp, + Icons.south_west, + Icons.south_west_outlined, + Icons.south_west_rounded, + Icons.south_west_sharp, + Icons.spa, + Icons.spa_outlined, + Icons.spa_rounded, + Icons.spa_sharp, + Icons.space_bar, + Icons.space_bar_outlined, + Icons.space_bar_rounded, + Icons.space_bar_sharp, + Icons.space_dashboard, + Icons.space_dashboard_outlined, + Icons.space_dashboard_rounded, + Icons.space_dashboard_sharp, + Icons.spatial_audio, + Icons.spatial_audio_off, + Icons.spatial_audio_off_outlined, + Icons.spatial_audio_off_rounded, + Icons.spatial_audio_off_sharp, + Icons.spatial_audio_outlined, + Icons.spatial_audio_rounded, + Icons.spatial_audio_sharp, + Icons.spatial_tracking, + Icons.spatial_tracking_outlined, + Icons.spatial_tracking_rounded, + Icons.spatial_tracking_sharp, + Icons.speaker, + Icons.speaker_group, + Icons.speaker_group_outlined, + Icons.speaker_group_rounded, + Icons.speaker_group_sharp, + Icons.speaker_notes, + Icons.speaker_notes_off, + Icons.speaker_notes_off_outlined, + Icons.speaker_notes_off_rounded, + Icons.speaker_notes_off_sharp, + Icons.speaker_notes_outlined, + Icons.speaker_notes_rounded, + Icons.speaker_notes_sharp, + Icons.speaker_outlined, + Icons.speaker_phone, + Icons.speaker_phone_outlined, + Icons.speaker_phone_rounded, + Icons.speaker_phone_sharp, + Icons.speaker_rounded, + Icons.speaker_sharp, + Icons.speed, + Icons.speed_outlined, + Icons.speed_rounded, + Icons.speed_sharp, + Icons.spellcheck, + Icons.spellcheck_outlined, + Icons.spellcheck_rounded, + Icons.spellcheck_sharp, + Icons.splitscreen, + Icons.splitscreen_outlined, + Icons.splitscreen_rounded, + Icons.splitscreen_sharp, + Icons.spoke, + Icons.spoke_outlined, + Icons.spoke_rounded, + Icons.spoke_sharp, + Icons.sports, + Icons.sports_bar, + Icons.sports_bar_outlined, + Icons.sports_bar_rounded, + Icons.sports_bar_sharp, + Icons.sports_baseball, + Icons.sports_baseball_outlined, + Icons.sports_baseball_rounded, + Icons.sports_baseball_sharp, + Icons.sports_basketball, + Icons.sports_basketball_outlined, + Icons.sports_basketball_rounded, + Icons.sports_basketball_sharp, + Icons.sports_cricket, + Icons.sports_cricket_outlined, + Icons.sports_cricket_rounded, + Icons.sports_cricket_sharp, + Icons.sports_esports, + Icons.sports_esports_outlined, + Icons.sports_esports_rounded, + Icons.sports_esports_sharp, + Icons.sports_football, + Icons.sports_football_outlined, + Icons.sports_football_rounded, + Icons.sports_football_sharp, + Icons.sports_golf, + Icons.sports_golf_outlined, + Icons.sports_golf_rounded, + Icons.sports_golf_sharp, + Icons.sports_gymnastics, + Icons.sports_gymnastics_outlined, + Icons.sports_gymnastics_rounded, + Icons.sports_gymnastics_sharp, + Icons.sports_handball, + Icons.sports_handball_outlined, + Icons.sports_handball_rounded, + Icons.sports_handball_sharp, + Icons.sports_hockey, + Icons.sports_hockey_outlined, + Icons.sports_hockey_rounded, + Icons.sports_hockey_sharp, + Icons.sports_kabaddi, + Icons.sports_kabaddi_outlined, + Icons.sports_kabaddi_rounded, + Icons.sports_kabaddi_sharp, + Icons.sports_martial_arts, + Icons.sports_martial_arts_outlined, + Icons.sports_martial_arts_rounded, + Icons.sports_martial_arts_sharp, + Icons.sports_mma, + Icons.sports_mma_outlined, + Icons.sports_mma_rounded, + Icons.sports_mma_sharp, + Icons.sports_motorsports, + Icons.sports_motorsports_outlined, + Icons.sports_motorsports_rounded, + Icons.sports_motorsports_sharp, + Icons.sports_outlined, + Icons.sports_rounded, + Icons.sports_rugby, + Icons.sports_rugby_outlined, + Icons.sports_rugby_rounded, + Icons.sports_rugby_sharp, + Icons.sports_score, + Icons.sports_score_outlined, + Icons.sports_score_rounded, + Icons.sports_score_sharp, + Icons.sports_sharp, + Icons.sports_soccer, + Icons.sports_soccer_outlined, + Icons.sports_soccer_rounded, + Icons.sports_soccer_sharp, + Icons.sports_tennis, + Icons.sports_tennis_outlined, + Icons.sports_tennis_rounded, + Icons.sports_tennis_sharp, + Icons.sports_volleyball, + Icons.sports_volleyball_outlined, + Icons.sports_volleyball_rounded, + Icons.sports_volleyball_sharp, + Icons.square, + Icons.square_foot, + Icons.square_foot_outlined, + Icons.square_foot_rounded, + Icons.square_foot_sharp, + Icons.square_outlined, + Icons.square_rounded, + Icons.square_sharp, + Icons.ssid_chart, + Icons.ssid_chart_outlined, + Icons.ssid_chart_rounded, + Icons.ssid_chart_sharp, + Icons.stacked_bar_chart, + Icons.stacked_bar_chart_outlined, + Icons.stacked_bar_chart_rounded, + Icons.stacked_bar_chart_sharp, + Icons.stacked_line_chart, + Icons.stacked_line_chart_outlined, + Icons.stacked_line_chart_rounded, + Icons.stacked_line_chart_sharp, + Icons.stadium, + Icons.stadium_outlined, + Icons.stadium_rounded, + Icons.stadium_sharp, + Icons.stairs, + Icons.stairs_outlined, + Icons.stairs_rounded, + Icons.stairs_sharp, + Icons.star, + Icons.star_border, + Icons.star_border_outlined, + Icons.star_border_purple500, + Icons.star_border_purple500_outlined, + Icons.star_border_purple500_rounded, + Icons.star_border_purple500_sharp, + Icons.star_border_rounded, + Icons.star_border_sharp, + Icons.star_half, + Icons.star_half_outlined, + Icons.star_half_rounded, + Icons.star_half_sharp, + Icons.star_outline, + Icons.star_outline_outlined, + Icons.star_outline_rounded, + Icons.star_outline_sharp, + Icons.star_outlined, + Icons.star_purple500, + Icons.star_purple500_outlined, + Icons.star_purple500_rounded, + Icons.star_purple500_sharp, + Icons.star_rate, + Icons.star_rate_outlined, + Icons.star_rate_rounded, + Icons.star_rate_sharp, + Icons.star_rounded, + Icons.star_sharp, + Icons.stars, + Icons.stars_outlined, + Icons.stars_rounded, + Icons.stars_sharp, + Icons.start, + Icons.start_outlined, + Icons.start_rounded, + Icons.start_sharp, + Icons.stay_current_landscape, + Icons.stay_current_landscape_outlined, + Icons.stay_current_landscape_rounded, + Icons.stay_current_landscape_sharp, + Icons.stay_current_portrait, + Icons.stay_current_portrait_outlined, + Icons.stay_current_portrait_rounded, + Icons.stay_current_portrait_sharp, + Icons.stay_primary_landscape, + Icons.stay_primary_landscape_outlined, + Icons.stay_primary_landscape_rounded, + Icons.stay_primary_landscape_sharp, + Icons.stay_primary_portrait, + Icons.stay_primary_portrait_outlined, + Icons.stay_primary_portrait_rounded, + Icons.stay_primary_portrait_sharp, + Icons.sticky_note_2, + Icons.sticky_note_2_outlined, + Icons.sticky_note_2_rounded, + Icons.sticky_note_2_sharp, + Icons.stop, + Icons.stop_circle, + Icons.stop_circle_outlined, + Icons.stop_circle_rounded, + Icons.stop_circle_sharp, + Icons.stop_outlined, + Icons.stop_rounded, + Icons.stop_screen_share, + Icons.stop_screen_share_outlined, + Icons.stop_screen_share_rounded, + Icons.stop_screen_share_sharp, + Icons.stop_sharp, + Icons.storage, + Icons.storage_outlined, + Icons.storage_rounded, + Icons.storage_sharp, + Icons.store, + Icons.store_mall_directory, + Icons.store_mall_directory_outlined, + Icons.store_mall_directory_rounded, + Icons.store_mall_directory_sharp, + Icons.store_outlined, + Icons.store_rounded, + Icons.store_sharp, + Icons.storefront, + Icons.storefront_outlined, + Icons.storefront_rounded, + Icons.storefront_sharp, + Icons.storm, + Icons.storm_outlined, + Icons.storm_rounded, + Icons.storm_sharp, + Icons.straight, + Icons.straight_outlined, + Icons.straight_rounded, + Icons.straight_sharp, + Icons.straighten, + Icons.straighten_outlined, + Icons.straighten_rounded, + Icons.straighten_sharp, + Icons.stream, + Icons.stream_outlined, + Icons.stream_rounded, + Icons.stream_sharp, + Icons.streetview, + Icons.streetview_outlined, + Icons.streetview_rounded, + Icons.streetview_sharp, + Icons.strikethrough_s, + Icons.strikethrough_s_outlined, + Icons.strikethrough_s_rounded, + Icons.strikethrough_s_sharp, + Icons.stroller, + Icons.stroller_outlined, + Icons.stroller_rounded, + Icons.stroller_sharp, + Icons.style, + Icons.style_outlined, + Icons.style_rounded, + Icons.style_sharp, + Icons.subdirectory_arrow_left, + Icons.subdirectory_arrow_left_outlined, + Icons.subdirectory_arrow_left_rounded, + Icons.subdirectory_arrow_left_sharp, + Icons.subdirectory_arrow_right, + Icons.subdirectory_arrow_right_outlined, + Icons.subdirectory_arrow_right_rounded, + Icons.subdirectory_arrow_right_sharp, + Icons.subject, + Icons.subject_outlined, + Icons.subject_rounded, + Icons.subject_sharp, + Icons.subscript, + Icons.subscript_outlined, + Icons.subscript_rounded, + Icons.subscript_sharp, + Icons.subscriptions, + Icons.subscriptions_outlined, + Icons.subscriptions_rounded, + Icons.subscriptions_sharp, + Icons.subtitles, + Icons.subtitles_off, + Icons.subtitles_off_outlined, + Icons.subtitles_off_rounded, + Icons.subtitles_off_sharp, + Icons.subtitles_outlined, + Icons.subtitles_rounded, + Icons.subtitles_sharp, + Icons.subway, + Icons.subway_outlined, + Icons.subway_rounded, + Icons.subway_sharp, + Icons.summarize, + Icons.summarize_outlined, + Icons.summarize_rounded, + Icons.summarize_sharp, + Icons.sunny, + Icons.sunny_snowing, + Icons.superscript, + Icons.superscript_outlined, + Icons.superscript_rounded, + Icons.superscript_sharp, + Icons.supervised_user_circle, + Icons.supervised_user_circle_outlined, + Icons.supervised_user_circle_rounded, + Icons.supervised_user_circle_sharp, + Icons.supervisor_account, + Icons.supervisor_account_outlined, + Icons.supervisor_account_rounded, + Icons.supervisor_account_sharp, + Icons.support, + Icons.support_agent, + Icons.support_agent_outlined, + Icons.support_agent_rounded, + Icons.support_agent_sharp, + Icons.support_outlined, + Icons.support_rounded, + Icons.support_sharp, + Icons.surfing, + Icons.surfing_outlined, + Icons.surfing_rounded, + Icons.surfing_sharp, + Icons.surround_sound, + Icons.surround_sound_outlined, + Icons.surround_sound_rounded, + Icons.surround_sound_sharp, + Icons.swap_calls, + Icons.swap_calls_outlined, + Icons.swap_calls_rounded, + Icons.swap_calls_sharp, + Icons.swap_horiz, + Icons.swap_horiz_outlined, + Icons.swap_horiz_rounded, + Icons.swap_horiz_sharp, + Icons.swap_horizontal_circle, + Icons.swap_horizontal_circle_outlined, + Icons.swap_horizontal_circle_rounded, + Icons.swap_horizontal_circle_sharp, + Icons.swap_vert, + Icons.swap_vert_circle, + Icons.swap_vert_circle_outlined, + Icons.swap_vert_circle_rounded, + Icons.swap_vert_circle_sharp, + Icons.swap_vert_outlined, + Icons.swap_vert_rounded, + Icons.swap_vert_sharp, + Icons.swap_vertical_circle, + Icons.swap_vertical_circle_outlined, + Icons.swap_vertical_circle_rounded, + Icons.swap_vertical_circle_sharp, + Icons.swipe, + Icons.swipe_down, + Icons.swipe_down_alt, + Icons.swipe_down_alt_outlined, + Icons.swipe_down_alt_rounded, + Icons.swipe_down_alt_sharp, + Icons.swipe_down_outlined, + Icons.swipe_down_rounded, + Icons.swipe_down_sharp, + Icons.swipe_left, + Icons.swipe_left_alt, + Icons.swipe_left_alt_outlined, + Icons.swipe_left_alt_rounded, + Icons.swipe_left_alt_sharp, + Icons.swipe_left_outlined, + Icons.swipe_left_rounded, + Icons.swipe_left_sharp, + Icons.swipe_outlined, + Icons.swipe_right, + Icons.swipe_right_alt, + Icons.swipe_right_alt_outlined, + Icons.swipe_right_alt_rounded, + Icons.swipe_right_alt_sharp, + Icons.swipe_right_outlined, + Icons.swipe_right_rounded, + Icons.swipe_right_sharp, + Icons.swipe_rounded, + Icons.swipe_sharp, + Icons.swipe_up, + Icons.swipe_up_alt, + Icons.swipe_up_alt_outlined, + Icons.swipe_up_alt_rounded, + Icons.swipe_up_alt_sharp, + Icons.swipe_up_outlined, + Icons.swipe_up_rounded, + Icons.swipe_up_sharp, + Icons.swipe_vertical, + Icons.swipe_vertical_outlined, + Icons.swipe_vertical_rounded, + Icons.swipe_vertical_sharp, + Icons.switch_access_shortcut, + Icons.switch_access_shortcut_add, + Icons.switch_access_shortcut_add_outlined, + Icons.switch_access_shortcut_add_rounded, + Icons.switch_access_shortcut_add_sharp, + Icons.switch_access_shortcut_outlined, + Icons.switch_access_shortcut_rounded, + Icons.switch_access_shortcut_sharp, + Icons.switch_account, + Icons.switch_account_outlined, + Icons.switch_account_rounded, + Icons.switch_account_sharp, + Icons.switch_camera, + Icons.switch_camera_outlined, + Icons.switch_camera_rounded, + Icons.switch_camera_sharp, + Icons.switch_left, + Icons.switch_left_outlined, + Icons.switch_left_rounded, + Icons.switch_left_sharp, + Icons.switch_right, + Icons.switch_right_outlined, + Icons.switch_right_rounded, + Icons.switch_right_sharp, + Icons.switch_video, + Icons.switch_video_outlined, + Icons.switch_video_rounded, + Icons.switch_video_sharp, + Icons.synagogue, + Icons.synagogue_outlined, + Icons.synagogue_rounded, + Icons.synagogue_sharp, + Icons.sync, + Icons.sync_alt, + Icons.sync_alt_outlined, + Icons.sync_alt_rounded, + Icons.sync_alt_sharp, + Icons.sync_disabled, + Icons.sync_disabled_outlined, + Icons.sync_disabled_rounded, + Icons.sync_disabled_sharp, + Icons.sync_lock, + Icons.sync_lock_outlined, + Icons.sync_lock_rounded, + Icons.sync_lock_sharp, + Icons.sync_outlined, + Icons.sync_problem, + Icons.sync_problem_outlined, + Icons.sync_problem_rounded, + Icons.sync_problem_sharp, + Icons.sync_rounded, + Icons.sync_sharp, + Icons.system_security_update, + Icons.system_security_update_good, + Icons.system_security_update_good_outlined, + Icons.system_security_update_good_rounded, + Icons.system_security_update_good_sharp, + Icons.system_security_update_outlined, + Icons.system_security_update_rounded, + Icons.system_security_update_sharp, + Icons.system_security_update_warning, + Icons.system_security_update_warning_outlined, + Icons.system_security_update_warning_rounded, + Icons.system_security_update_warning_sharp, + Icons.system_update, + Icons.system_update_alt, + Icons.system_update_alt_outlined, + Icons.system_update_alt_rounded, + Icons.system_update_alt_sharp, + Icons.system_update_outlined, + Icons.system_update_rounded, + Icons.system_update_sharp, + Icons.system_update_tv, + Icons.system_update_tv_outlined, + Icons.system_update_tv_rounded, + Icons.system_update_tv_sharp, + Icons.tab, + Icons.tab_outlined, + Icons.tab_rounded, + Icons.tab_sharp, + Icons.tab_unselected, + Icons.tab_unselected_outlined, + Icons.tab_unselected_rounded, + Icons.tab_unselected_sharp, + Icons.table_bar, + Icons.table_bar_outlined, + Icons.table_bar_rounded, + Icons.table_bar_sharp, + Icons.table_chart, + Icons.table_chart_outlined, + Icons.table_chart_rounded, + Icons.table_chart_sharp, + Icons.table_restaurant, + Icons.table_restaurant_outlined, + Icons.table_restaurant_rounded, + Icons.table_restaurant_sharp, + Icons.table_rows, + Icons.table_rows_outlined, + Icons.table_rows_rounded, + Icons.table_rows_sharp, + Icons.table_view, + Icons.table_view_outlined, + Icons.table_view_rounded, + Icons.table_view_sharp, + Icons.tablet, + Icons.tablet_android, + Icons.tablet_android_outlined, + Icons.tablet_android_rounded, + Icons.tablet_android_sharp, + Icons.tablet_mac, + Icons.tablet_mac_outlined, + Icons.tablet_mac_rounded, + Icons.tablet_mac_sharp, + Icons.tablet_outlined, + Icons.tablet_rounded, + Icons.tablet_sharp, + Icons.tag, + Icons.tag_faces, + Icons.tag_faces_outlined, + Icons.tag_faces_rounded, + Icons.tag_faces_sharp, + Icons.tag_outlined, + Icons.tag_rounded, + Icons.tag_sharp, + Icons.takeout_dining, + Icons.takeout_dining_outlined, + Icons.takeout_dining_rounded, + Icons.takeout_dining_sharp, + Icons.tap_and_play, + Icons.tap_and_play_outlined, + Icons.tap_and_play_rounded, + Icons.tap_and_play_sharp, + Icons.tapas, + Icons.tapas_outlined, + Icons.tapas_rounded, + Icons.tapas_sharp, + Icons.task, + Icons.task_alt, + Icons.task_alt_outlined, + Icons.task_alt_rounded, + Icons.task_alt_sharp, + Icons.task_outlined, + Icons.task_rounded, + Icons.task_sharp, + Icons.taxi_alert, + Icons.taxi_alert_outlined, + Icons.taxi_alert_rounded, + Icons.taxi_alert_sharp, + Icons.telegram, + Icons.telegram_outlined, + Icons.telegram_rounded, + Icons.telegram_sharp, + Icons.temple_buddhist, + Icons.temple_buddhist_outlined, + Icons.temple_buddhist_rounded, + Icons.temple_buddhist_sharp, + Icons.temple_hindu, + Icons.temple_hindu_outlined, + Icons.temple_hindu_rounded, + Icons.temple_hindu_sharp, + Icons.ten_k, + Icons.ten_k_outlined, + Icons.ten_k_rounded, + Icons.ten_k_sharp, + Icons.ten_mp, + Icons.ten_mp_outlined, + Icons.ten_mp_rounded, + Icons.ten_mp_sharp, + Icons.terminal, + Icons.terminal_outlined, + Icons.terminal_rounded, + Icons.terminal_sharp, + Icons.terrain, + Icons.terrain_outlined, + Icons.terrain_rounded, + Icons.terrain_sharp, + Icons.text_decrease, + Icons.text_decrease_outlined, + Icons.text_decrease_rounded, + Icons.text_decrease_sharp, + Icons.text_fields, + Icons.text_fields_outlined, + Icons.text_fields_rounded, + Icons.text_fields_sharp, + Icons.text_format, + Icons.text_format_outlined, + Icons.text_format_rounded, + Icons.text_format_sharp, + Icons.text_increase, + Icons.text_increase_outlined, + Icons.text_increase_rounded, + Icons.text_increase_sharp, + Icons.text_rotate_up, + Icons.text_rotate_up_outlined, + Icons.text_rotate_up_rounded, + Icons.text_rotate_up_sharp, + Icons.text_rotate_vertical, + Icons.text_rotate_vertical_outlined, + Icons.text_rotate_vertical_rounded, + Icons.text_rotate_vertical_sharp, + Icons.text_rotation_angledown, + Icons.text_rotation_angledown_outlined, + Icons.text_rotation_angledown_rounded, + Icons.text_rotation_angledown_sharp, + Icons.text_rotation_angleup, + Icons.text_rotation_angleup_outlined, + Icons.text_rotation_angleup_rounded, + Icons.text_rotation_angleup_sharp, + Icons.text_rotation_down, + Icons.text_rotation_down_outlined, + Icons.text_rotation_down_rounded, + Icons.text_rotation_down_sharp, + Icons.text_rotation_none, + Icons.text_rotation_none_outlined, + Icons.text_rotation_none_rounded, + Icons.text_rotation_none_sharp, + Icons.text_snippet, + Icons.text_snippet_outlined, + Icons.text_snippet_rounded, + Icons.text_snippet_sharp, + Icons.textsms, + Icons.textsms_outlined, + Icons.textsms_rounded, + Icons.textsms_sharp, + Icons.texture, + Icons.texture_outlined, + Icons.texture_rounded, + Icons.texture_sharp, + Icons.theater_comedy, + Icons.theater_comedy_outlined, + Icons.theater_comedy_rounded, + Icons.theater_comedy_sharp, + Icons.theaters, + Icons.theaters_outlined, + Icons.theaters_rounded, + Icons.theaters_sharp, + Icons.thermostat, + Icons.thermostat_auto, + Icons.thermostat_auto_outlined, + Icons.thermostat_auto_rounded, + Icons.thermostat_auto_sharp, + Icons.thermostat_outlined, + Icons.thermostat_rounded, + Icons.thermostat_sharp, + Icons.thirteen_mp, + Icons.thirteen_mp_outlined, + Icons.thirteen_mp_rounded, + Icons.thirteen_mp_sharp, + Icons.thirty_fps, + Icons.thirty_fps_outlined, + Icons.thirty_fps_rounded, + Icons.thirty_fps_select, + Icons.thirty_fps_select_outlined, + Icons.thirty_fps_select_rounded, + Icons.thirty_fps_select_sharp, + Icons.thirty_fps_sharp, + Icons.three_g_mobiledata, + Icons.three_g_mobiledata_outlined, + Icons.three_g_mobiledata_rounded, + Icons.three_g_mobiledata_sharp, + Icons.three_k, + Icons.three_k_outlined, + Icons.three_k_plus, + Icons.three_k_plus_outlined, + Icons.three_k_plus_rounded, + Icons.three_k_plus_sharp, + Icons.three_k_rounded, + Icons.three_k_sharp, + Icons.three_mp, + Icons.three_mp_outlined, + Icons.three_mp_rounded, + Icons.three_mp_sharp, + Icons.three_p, + Icons.three_p_outlined, + Icons.three_p_rounded, + Icons.three_p_sharp, + Icons.threed_rotation, + Icons.threed_rotation_outlined, + Icons.threed_rotation_rounded, + Icons.threed_rotation_sharp, + Icons.threesixty, + Icons.threesixty_outlined, + Icons.threesixty_rounded, + Icons.threesixty_sharp, + Icons.thumb_down, + Icons.thumb_down_alt, + Icons.thumb_down_alt_outlined, + Icons.thumb_down_alt_rounded, + Icons.thumb_down_alt_sharp, + Icons.thumb_down_off_alt, + Icons.thumb_down_off_alt_outlined, + Icons.thumb_down_off_alt_rounded, + Icons.thumb_down_off_alt_sharp, + Icons.thumb_down_outlined, + Icons.thumb_down_rounded, + Icons.thumb_down_sharp, + Icons.thumb_up, + Icons.thumb_up_alt, + Icons.thumb_up_alt_outlined, + Icons.thumb_up_alt_rounded, + Icons.thumb_up_alt_sharp, + Icons.thumb_up_off_alt, + Icons.thumb_up_off_alt_outlined, + Icons.thumb_up_off_alt_rounded, + Icons.thumb_up_off_alt_sharp, + Icons.thumb_up_outlined, + Icons.thumb_up_rounded, + Icons.thumb_up_sharp, + Icons.thumbs_up_down, + Icons.thumbs_up_down_outlined, + Icons.thumbs_up_down_rounded, + Icons.thumbs_up_down_sharp, + Icons.thunderstorm, + Icons.thunderstorm_outlined, + Icons.thunderstorm_rounded, + Icons.thunderstorm_sharp, + Icons.tiktok, + Icons.tiktok_outlined, + Icons.tiktok_rounded, + Icons.tiktok_sharp, + Icons.time_to_leave, + Icons.time_to_leave_outlined, + Icons.time_to_leave_rounded, + Icons.time_to_leave_sharp, + Icons.timelapse, + Icons.timelapse_outlined, + Icons.timelapse_rounded, + Icons.timelapse_sharp, + Icons.timeline, + Icons.timeline_outlined, + Icons.timeline_rounded, + Icons.timeline_sharp, + Icons.timer, + Icons.timer_10, + Icons.timer_10_outlined, + Icons.timer_10_rounded, + Icons.timer_10_select, + Icons.timer_10_select_outlined, + Icons.timer_10_select_rounded, + Icons.timer_10_select_sharp, + Icons.timer_10_sharp, + Icons.timer_3, + Icons.timer_3_outlined, + Icons.timer_3_rounded, + Icons.timer_3_select, + Icons.timer_3_select_outlined, + Icons.timer_3_select_rounded, + Icons.timer_3_select_sharp, + Icons.timer_3_sharp, + Icons.timer_off, + Icons.timer_off_outlined, + Icons.timer_off_rounded, + Icons.timer_off_sharp, + Icons.timer_outlined, + Icons.timer_rounded, + Icons.timer_sharp, + Icons.tips_and_updates, + Icons.tips_and_updates_outlined, + Icons.tips_and_updates_rounded, + Icons.tips_and_updates_sharp, + Icons.tire_repair, + Icons.tire_repair_outlined, + Icons.tire_repair_rounded, + Icons.tire_repair_sharp, + Icons.title, + Icons.title_outlined, + Icons.title_rounded, + Icons.title_sharp, + Icons.toc, + Icons.toc_outlined, + Icons.toc_rounded, + Icons.toc_sharp, + Icons.today, + Icons.today_outlined, + Icons.today_rounded, + Icons.today_sharp, + Icons.toggle_off, + Icons.toggle_off_outlined, + Icons.toggle_off_rounded, + Icons.toggle_off_sharp, + Icons.toggle_on, + Icons.toggle_on_outlined, + Icons.toggle_on_rounded, + Icons.toggle_on_sharp, + Icons.token, + Icons.token_outlined, + Icons.token_rounded, + Icons.token_sharp, + Icons.toll, + Icons.toll_outlined, + Icons.toll_rounded, + Icons.toll_sharp, + Icons.tonality, + Icons.tonality_outlined, + Icons.tonality_rounded, + Icons.tonality_sharp, + Icons.topic, + Icons.topic_outlined, + Icons.topic_rounded, + Icons.topic_sharp, + Icons.tornado, + Icons.tornado_outlined, + Icons.tornado_rounded, + Icons.tornado_sharp, + Icons.touch_app, + Icons.touch_app_outlined, + Icons.touch_app_rounded, + Icons.touch_app_sharp, + Icons.tour, + Icons.tour_outlined, + Icons.tour_rounded, + Icons.tour_sharp, + Icons.toys, + Icons.toys_outlined, + Icons.toys_rounded, + Icons.toys_sharp, + Icons.track_changes, + Icons.track_changes_outlined, + Icons.track_changes_rounded, + Icons.track_changes_sharp, + Icons.traffic, + Icons.traffic_outlined, + Icons.traffic_rounded, + Icons.traffic_sharp, + Icons.train, + Icons.train_outlined, + Icons.train_rounded, + Icons.train_sharp, + Icons.tram, + Icons.tram_outlined, + Icons.tram_rounded, + Icons.tram_sharp, + Icons.transcribe, + Icons.transcribe_outlined, + Icons.transcribe_rounded, + Icons.transcribe_sharp, + Icons.transfer_within_a_station, + Icons.transfer_within_a_station_outlined, + Icons.transfer_within_a_station_rounded, + Icons.transfer_within_a_station_sharp, + Icons.transform, + Icons.transform_outlined, + Icons.transform_rounded, + Icons.transform_sharp, + Icons.transgender, + Icons.transgender_outlined, + Icons.transgender_rounded, + Icons.transgender_sharp, + Icons.transit_enterexit, + Icons.transit_enterexit_outlined, + Icons.transit_enterexit_rounded, + Icons.transit_enterexit_sharp, + Icons.translate, + Icons.translate_outlined, + Icons.translate_rounded, + Icons.translate_sharp, + Icons.travel_explore, + Icons.travel_explore_outlined, + Icons.travel_explore_rounded, + Icons.travel_explore_sharp, + Icons.trending_down, + Icons.trending_down_outlined, + Icons.trending_down_rounded, + Icons.trending_down_sharp, + Icons.trending_flat, + Icons.trending_flat_outlined, + Icons.trending_flat_rounded, + Icons.trending_flat_sharp, + Icons.trending_neutral, + Icons.trending_neutral_outlined, + Icons.trending_neutral_rounded, + Icons.trending_neutral_sharp, + Icons.trending_up, + Icons.trending_up_outlined, + Icons.trending_up_rounded, + Icons.trending_up_sharp, + Icons.trip_origin, + Icons.trip_origin_outlined, + Icons.trip_origin_rounded, + Icons.trip_origin_sharp, + Icons.trolley, + Icons.troubleshoot, + Icons.troubleshoot_outlined, + Icons.troubleshoot_rounded, + Icons.troubleshoot_sharp, + Icons.try_sms_star, + Icons.try_sms_star_outlined, + Icons.try_sms_star_rounded, + Icons.try_sms_star_sharp, + Icons.tsunami, + Icons.tsunami_outlined, + Icons.tsunami_rounded, + Icons.tsunami_sharp, + Icons.tty, + Icons.tty_outlined, + Icons.tty_rounded, + Icons.tty_sharp, + Icons.tune, + Icons.tune_outlined, + Icons.tune_rounded, + Icons.tune_sharp, + Icons.tungsten, + Icons.tungsten_outlined, + Icons.tungsten_rounded, + Icons.tungsten_sharp, + Icons.turn_left, + Icons.turn_left_outlined, + Icons.turn_left_rounded, + Icons.turn_left_sharp, + Icons.turn_right, + Icons.turn_right_outlined, + Icons.turn_right_rounded, + Icons.turn_right_sharp, + Icons.turn_sharp_left, + Icons.turn_sharp_left_outlined, + Icons.turn_sharp_left_rounded, + Icons.turn_sharp_left_sharp, + Icons.turn_sharp_right, + Icons.turn_sharp_right_outlined, + Icons.turn_sharp_right_rounded, + Icons.turn_sharp_right_sharp, + Icons.turn_slight_left, + Icons.turn_slight_left_outlined, + Icons.turn_slight_left_rounded, + Icons.turn_slight_left_sharp, + Icons.turn_slight_right, + Icons.turn_slight_right_outlined, + Icons.turn_slight_right_rounded, + Icons.turn_slight_right_sharp, + Icons.turned_in, + Icons.turned_in_not, + Icons.turned_in_not_outlined, + Icons.turned_in_not_rounded, + Icons.turned_in_not_sharp, + Icons.turned_in_outlined, + Icons.turned_in_rounded, + Icons.turned_in_sharp, + Icons.tv, + Icons.tv_off, + Icons.tv_off_outlined, + Icons.tv_off_rounded, + Icons.tv_off_sharp, + Icons.tv_outlined, + Icons.tv_rounded, + Icons.tv_sharp, + Icons.twelve_mp, + Icons.twelve_mp_outlined, + Icons.twelve_mp_rounded, + Icons.twelve_mp_sharp, + Icons.twenty_four_mp, + Icons.twenty_four_mp_outlined, + Icons.twenty_four_mp_rounded, + Icons.twenty_four_mp_sharp, + Icons.twenty_mp, + Icons.twenty_mp_outlined, + Icons.twenty_mp_rounded, + Icons.twenty_mp_sharp, + Icons.twenty_one_mp, + Icons.twenty_one_mp_outlined, + Icons.twenty_one_mp_rounded, + Icons.twenty_one_mp_sharp, + Icons.twenty_three_mp, + Icons.twenty_three_mp_outlined, + Icons.twenty_three_mp_rounded, + Icons.twenty_three_mp_sharp, + Icons.twenty_two_mp, + Icons.twenty_two_mp_outlined, + Icons.twenty_two_mp_rounded, + Icons.twenty_two_mp_sharp, + Icons.two_k, + Icons.two_k_outlined, + Icons.two_k_plus, + Icons.two_k_plus_outlined, + Icons.two_k_plus_rounded, + Icons.two_k_plus_sharp, + Icons.two_k_rounded, + Icons.two_k_sharp, + Icons.two_mp, + Icons.two_mp_outlined, + Icons.two_mp_rounded, + Icons.two_mp_sharp, + Icons.two_wheeler, + Icons.two_wheeler_outlined, + Icons.two_wheeler_rounded, + Icons.two_wheeler_sharp, + Icons.type_specimen, + Icons.type_specimen_outlined, + Icons.type_specimen_rounded, + Icons.type_specimen_sharp, + Icons.u_turn_left, + Icons.u_turn_left_outlined, + Icons.u_turn_left_rounded, + Icons.u_turn_left_sharp, + Icons.u_turn_right, + Icons.u_turn_right_outlined, + Icons.u_turn_right_rounded, + Icons.u_turn_right_sharp, + Icons.umbrella, + Icons.umbrella_outlined, + Icons.umbrella_rounded, + Icons.umbrella_sharp, + Icons.unarchive, + Icons.unarchive_outlined, + Icons.unarchive_rounded, + Icons.unarchive_sharp, + Icons.undo, + Icons.undo_outlined, + Icons.undo_rounded, + Icons.undo_sharp, + Icons.unfold_less, + Icons.unfold_less_double, + Icons.unfold_less_double_outlined, + Icons.unfold_less_double_rounded, + Icons.unfold_less_double_sharp, + Icons.unfold_less_outlined, + Icons.unfold_less_rounded, + Icons.unfold_less_sharp, + Icons.unfold_more, + Icons.unfold_more_double, + Icons.unfold_more_double_outlined, + Icons.unfold_more_double_rounded, + Icons.unfold_more_double_sharp, + Icons.unfold_more_outlined, + Icons.unfold_more_rounded, + Icons.unfold_more_sharp, + Icons.unpublished, + Icons.unpublished_outlined, + Icons.unpublished_rounded, + Icons.unpublished_sharp, + Icons.unsubscribe, + Icons.unsubscribe_outlined, + Icons.unsubscribe_rounded, + Icons.unsubscribe_sharp, + Icons.upcoming, + Icons.upcoming_outlined, + Icons.upcoming_rounded, + Icons.upcoming_sharp, + Icons.update, + Icons.update_disabled, + Icons.update_disabled_outlined, + Icons.update_disabled_rounded, + Icons.update_disabled_sharp, + Icons.update_outlined, + Icons.update_rounded, + Icons.update_sharp, + Icons.upgrade, + Icons.upgrade_outlined, + Icons.upgrade_rounded, + Icons.upgrade_sharp, + Icons.upload, + Icons.upload_file, + Icons.upload_file_outlined, + Icons.upload_file_rounded, + Icons.upload_file_sharp, + Icons.upload_outlined, + Icons.upload_rounded, + Icons.upload_sharp, + Icons.usb, + Icons.usb_off, + Icons.usb_off_outlined, + Icons.usb_off_rounded, + Icons.usb_off_sharp, + Icons.usb_outlined, + Icons.usb_rounded, + Icons.usb_sharp, + Icons.vaccines, + Icons.vaccines_outlined, + Icons.vaccines_rounded, + Icons.vaccines_sharp, + Icons.vape_free, + Icons.vape_free_outlined, + Icons.vape_free_rounded, + Icons.vape_free_sharp, + Icons.vaping_rooms, + Icons.vaping_rooms_outlined, + Icons.vaping_rooms_rounded, + Icons.vaping_rooms_sharp, + Icons.verified, + Icons.verified_outlined, + Icons.verified_rounded, + Icons.verified_sharp, + Icons.verified_user, + Icons.verified_user_outlined, + Icons.verified_user_rounded, + Icons.verified_user_sharp, + Icons.vertical_align_bottom, + Icons.vertical_align_bottom_outlined, + Icons.vertical_align_bottom_rounded, + Icons.vertical_align_bottom_sharp, + Icons.vertical_align_center, + Icons.vertical_align_center_outlined, + Icons.vertical_align_center_rounded, + Icons.vertical_align_center_sharp, + Icons.vertical_align_top, + Icons.vertical_align_top_outlined, + Icons.vertical_align_top_rounded, + Icons.vertical_align_top_sharp, + Icons.vertical_distribute, + Icons.vertical_distribute_outlined, + Icons.vertical_distribute_rounded, + Icons.vertical_distribute_sharp, + Icons.vertical_shades, + Icons.vertical_shades_closed, + Icons.vertical_shades_closed_outlined, + Icons.vertical_shades_closed_rounded, + Icons.vertical_shades_closed_sharp, + Icons.vertical_shades_outlined, + Icons.vertical_shades_rounded, + Icons.vertical_shades_sharp, + Icons.vertical_split, + Icons.vertical_split_outlined, + Icons.vertical_split_rounded, + Icons.vertical_split_sharp, + Icons.vibration, + Icons.vibration_outlined, + Icons.vibration_rounded, + Icons.vibration_sharp, + Icons.video_call, + Icons.video_call_outlined, + Icons.video_call_rounded, + Icons.video_call_sharp, + Icons.video_camera_back, + Icons.video_camera_back_outlined, + Icons.video_camera_back_rounded, + Icons.video_camera_back_sharp, + Icons.video_camera_front, + Icons.video_camera_front_outlined, + Icons.video_camera_front_rounded, + Icons.video_camera_front_sharp, + Icons.video_chat, + Icons.video_chat_outlined, + Icons.video_chat_rounded, + Icons.video_chat_sharp, + Icons.video_collection, + Icons.video_collection_outlined, + Icons.video_collection_rounded, + Icons.video_collection_sharp, + Icons.video_file, + Icons.video_file_outlined, + Icons.video_file_rounded, + Icons.video_file_sharp, + Icons.video_label, + Icons.video_label_outlined, + Icons.video_label_rounded, + Icons.video_label_sharp, + Icons.video_library, + Icons.video_library_outlined, + Icons.video_library_rounded, + Icons.video_library_sharp, + Icons.video_settings, + Icons.video_settings_outlined, + Icons.video_settings_rounded, + Icons.video_settings_sharp, + Icons.video_stable, + Icons.video_stable_outlined, + Icons.video_stable_rounded, + Icons.video_stable_sharp, + Icons.videocam, + Icons.videocam_off, + Icons.videocam_off_outlined, + Icons.videocam_off_rounded, + Icons.videocam_off_sharp, + Icons.videocam_outlined, + Icons.videocam_rounded, + Icons.videocam_sharp, + Icons.videogame_asset, + Icons.videogame_asset_off, + Icons.videogame_asset_off_outlined, + Icons.videogame_asset_off_rounded, + Icons.videogame_asset_off_sharp, + Icons.videogame_asset_outlined, + Icons.videogame_asset_rounded, + Icons.videogame_asset_sharp, + Icons.view_agenda, + Icons.view_agenda_outlined, + Icons.view_agenda_rounded, + Icons.view_agenda_sharp, + Icons.view_array, + Icons.view_array_outlined, + Icons.view_array_rounded, + Icons.view_array_sharp, + Icons.view_carousel, + Icons.view_carousel_outlined, + Icons.view_carousel_rounded, + Icons.view_carousel_sharp, + Icons.view_column, + Icons.view_column_outlined, + Icons.view_column_rounded, + Icons.view_column_sharp, + Icons.view_comfortable, + Icons.view_comfortable_outlined, + Icons.view_comfortable_rounded, + Icons.view_comfortable_sharp, + Icons.view_comfy, + Icons.view_comfy_alt, + Icons.view_comfy_alt_outlined, + Icons.view_comfy_alt_rounded, + Icons.view_comfy_alt_sharp, + Icons.view_comfy_outlined, + Icons.view_comfy_rounded, + Icons.view_comfy_sharp, + Icons.view_compact, + Icons.view_compact_alt, + Icons.view_compact_alt_outlined, + Icons.view_compact_alt_rounded, + Icons.view_compact_alt_sharp, + Icons.view_compact_outlined, + Icons.view_compact_rounded, + Icons.view_compact_sharp, + Icons.view_cozy, + Icons.view_cozy_outlined, + Icons.view_cozy_rounded, + Icons.view_cozy_sharp, + Icons.view_day, + Icons.view_day_outlined, + Icons.view_day_rounded, + Icons.view_day_sharp, + Icons.view_headline, + Icons.view_headline_outlined, + Icons.view_headline_rounded, + Icons.view_headline_sharp, + Icons.view_in_ar, + Icons.view_in_ar_outlined, + Icons.view_in_ar_rounded, + Icons.view_in_ar_sharp, + Icons.view_kanban, + Icons.view_kanban_outlined, + Icons.view_kanban_rounded, + Icons.view_kanban_sharp, + Icons.view_list, + Icons.view_list_outlined, + Icons.view_list_rounded, + Icons.view_list_sharp, + Icons.view_module, + Icons.view_module_outlined, + Icons.view_module_rounded, + Icons.view_module_sharp, + Icons.view_quilt, + Icons.view_quilt_outlined, + Icons.view_quilt_rounded, + Icons.view_quilt_sharp, + Icons.view_sidebar, + Icons.view_sidebar_outlined, + Icons.view_sidebar_rounded, + Icons.view_sidebar_sharp, + Icons.view_stream, + Icons.view_stream_outlined, + Icons.view_stream_rounded, + Icons.view_stream_sharp, + Icons.view_timeline, + Icons.view_timeline_outlined, + Icons.view_timeline_rounded, + Icons.view_timeline_sharp, + Icons.view_week, + Icons.view_week_outlined, + Icons.view_week_rounded, + Icons.view_week_sharp, + Icons.vignette, + Icons.vignette_outlined, + Icons.vignette_rounded, + Icons.vignette_sharp, + Icons.villa, + Icons.villa_outlined, + Icons.villa_rounded, + Icons.villa_sharp, + Icons.visibility, + Icons.visibility_off, + Icons.visibility_off_outlined, + Icons.visibility_off_rounded, + Icons.visibility_off_sharp, + Icons.visibility_outlined, + Icons.visibility_rounded, + Icons.visibility_sharp, + Icons.voice_chat, + Icons.voice_chat_outlined, + Icons.voice_chat_rounded, + Icons.voice_chat_sharp, + Icons.voice_over_off, + Icons.voice_over_off_outlined, + Icons.voice_over_off_rounded, + Icons.voice_over_off_sharp, + Icons.voicemail, + Icons.voicemail_outlined, + Icons.voicemail_rounded, + Icons.voicemail_sharp, + Icons.volcano, + Icons.volcano_outlined, + Icons.volcano_rounded, + Icons.volcano_sharp, + Icons.volume_down, + Icons.volume_down_alt, + Icons.volume_down_outlined, + Icons.volume_down_rounded, + Icons.volume_down_sharp, + Icons.volume_mute, + Icons.volume_mute_outlined, + Icons.volume_mute_rounded, + Icons.volume_mute_sharp, + Icons.volume_off, + Icons.volume_off_outlined, + Icons.volume_off_rounded, + Icons.volume_off_sharp, + Icons.volume_up, + Icons.volume_up_outlined, + Icons.volume_up_rounded, + Icons.volume_up_sharp, + Icons.volunteer_activism, + Icons.volunteer_activism_outlined, + Icons.volunteer_activism_rounded, + Icons.volunteer_activism_sharp, + Icons.vpn_key, + Icons.vpn_key_off, + Icons.vpn_key_off_outlined, + Icons.vpn_key_off_rounded, + Icons.vpn_key_off_sharp, + Icons.vpn_key_outlined, + Icons.vpn_key_rounded, + Icons.vpn_key_sharp, + Icons.vpn_lock, + Icons.vpn_lock_outlined, + Icons.vpn_lock_rounded, + Icons.vpn_lock_sharp, + Icons.vrpano, + Icons.vrpano_outlined, + Icons.vrpano_rounded, + Icons.vrpano_sharp, + Icons.wallet, + Icons.wallet_giftcard, + Icons.wallet_giftcard_outlined, + Icons.wallet_giftcard_rounded, + Icons.wallet_giftcard_sharp, + Icons.wallet_membership, + Icons.wallet_membership_outlined, + Icons.wallet_membership_rounded, + Icons.wallet_membership_sharp, + Icons.wallet_outlined, + Icons.wallet_rounded, + Icons.wallet_sharp, + Icons.wallet_travel, + Icons.wallet_travel_outlined, + Icons.wallet_travel_rounded, + Icons.wallet_travel_sharp, + Icons.wallpaper, + Icons.wallpaper_outlined, + Icons.wallpaper_rounded, + Icons.wallpaper_sharp, + Icons.warehouse, + Icons.warehouse_outlined, + Icons.warehouse_rounded, + Icons.warehouse_sharp, + Icons.warning, + Icons.warning_amber, + Icons.warning_amber_outlined, + Icons.warning_amber_rounded, + Icons.warning_amber_sharp, + Icons.warning_outlined, + Icons.warning_rounded, + Icons.warning_sharp, + Icons.wash, + Icons.wash_outlined, + Icons.wash_rounded, + Icons.wash_sharp, + Icons.watch, + Icons.watch_later, + Icons.watch_later_outlined, + Icons.watch_later_rounded, + Icons.watch_later_sharp, + Icons.watch_off, + Icons.watch_off_outlined, + Icons.watch_off_rounded, + Icons.watch_off_sharp, + Icons.watch_outlined, + Icons.watch_rounded, + Icons.watch_sharp, + Icons.water, + Icons.water_damage, + Icons.water_damage_outlined, + Icons.water_damage_rounded, + Icons.water_damage_sharp, + Icons.water_drop, + Icons.water_drop_outlined, + Icons.water_drop_rounded, + Icons.water_drop_sharp, + Icons.water_outlined, + Icons.water_rounded, + Icons.water_sharp, + Icons.waterfall_chart, + Icons.waterfall_chart_outlined, + Icons.waterfall_chart_rounded, + Icons.waterfall_chart_sharp, + Icons.waves, + Icons.waves_outlined, + Icons.waves_rounded, + Icons.waves_sharp, + Icons.waving_hand, + Icons.waving_hand_outlined, + Icons.waving_hand_rounded, + Icons.waving_hand_sharp, + Icons.wb_auto, + Icons.wb_auto_outlined, + Icons.wb_auto_rounded, + Icons.wb_auto_sharp, + Icons.wb_cloudy, + Icons.wb_cloudy_outlined, + Icons.wb_cloudy_rounded, + Icons.wb_cloudy_sharp, + Icons.wb_incandescent, + Icons.wb_incandescent_outlined, + Icons.wb_incandescent_rounded, + Icons.wb_incandescent_sharp, + Icons.wb_iridescent, + Icons.wb_iridescent_outlined, + Icons.wb_iridescent_rounded, + Icons.wb_iridescent_sharp, + Icons.wb_shade, + Icons.wb_shade_outlined, + Icons.wb_shade_rounded, + Icons.wb_shade_sharp, + Icons.wb_sunny, + Icons.wb_sunny_outlined, + Icons.wb_sunny_rounded, + Icons.wb_sunny_sharp, + Icons.wb_twighlight, + Icons.wb_twilight, + Icons.wb_twilight_outlined, + Icons.wb_twilight_rounded, + Icons.wb_twilight_sharp, + Icons.wc, + Icons.wc_outlined, + Icons.wc_rounded, + Icons.wc_sharp, + Icons.web, + Icons.web_asset, + Icons.web_asset_off, + Icons.web_asset_off_outlined, + Icons.web_asset_off_rounded, + Icons.web_asset_off_sharp, + Icons.web_asset_outlined, + Icons.web_asset_rounded, + Icons.web_asset_sharp, + Icons.web_outlined, + Icons.web_rounded, + Icons.web_sharp, + Icons.web_stories, + Icons.web_stories_outlined, + Icons.web_stories_rounded, + Icons.web_stories_sharp, + Icons.webhook, + Icons.webhook_outlined, + Icons.webhook_rounded, + Icons.webhook_sharp, + Icons.wechat, + Icons.wechat_outlined, + Icons.wechat_rounded, + Icons.wechat_sharp, + Icons.weekend, + Icons.weekend_outlined, + Icons.weekend_rounded, + Icons.weekend_sharp, + Icons.west, + Icons.west_outlined, + Icons.west_rounded, + Icons.west_sharp, + Icons.whatshot, + Icons.whatshot_outlined, + Icons.whatshot_rounded, + Icons.whatshot_sharp, + Icons.wheelchair_pickup, + Icons.wheelchair_pickup_outlined, + Icons.wheelchair_pickup_rounded, + Icons.wheelchair_pickup_sharp, + Icons.where_to_vote, + Icons.where_to_vote_outlined, + Icons.where_to_vote_rounded, + Icons.where_to_vote_sharp, + Icons.widgets, + Icons.widgets_outlined, + Icons.widgets_rounded, + Icons.widgets_sharp, + Icons.width_full, + Icons.width_full_outlined, + Icons.width_full_rounded, + Icons.width_full_sharp, + Icons.width_normal, + Icons.width_normal_outlined, + Icons.width_normal_rounded, + Icons.width_normal_sharp, + Icons.width_wide, + Icons.width_wide_outlined, + Icons.width_wide_rounded, + Icons.width_wide_sharp, + Icons.wifi, + Icons.wifi_1_bar, + Icons.wifi_1_bar_outlined, + Icons.wifi_1_bar_rounded, + Icons.wifi_1_bar_sharp, + Icons.wifi_2_bar, + Icons.wifi_2_bar_outlined, + Icons.wifi_2_bar_rounded, + Icons.wifi_2_bar_sharp, + Icons.wifi_calling, + Icons.wifi_calling_3, + Icons.wifi_calling_3_outlined, + Icons.wifi_calling_3_rounded, + Icons.wifi_calling_3_sharp, + Icons.wifi_calling_outlined, + Icons.wifi_calling_rounded, + Icons.wifi_calling_sharp, + Icons.wifi_channel, + Icons.wifi_channel_outlined, + Icons.wifi_channel_rounded, + Icons.wifi_channel_sharp, + Icons.wifi_find, + Icons.wifi_find_outlined, + Icons.wifi_find_rounded, + Icons.wifi_find_sharp, + Icons.wifi_lock, + Icons.wifi_lock_outlined, + Icons.wifi_lock_rounded, + Icons.wifi_lock_sharp, + Icons.wifi_off, + Icons.wifi_off_outlined, + Icons.wifi_off_rounded, + Icons.wifi_off_sharp, + Icons.wifi_outlined, + Icons.wifi_password, + Icons.wifi_password_outlined, + Icons.wifi_password_rounded, + Icons.wifi_password_sharp, + Icons.wifi_protected_setup, + Icons.wifi_protected_setup_outlined, + Icons.wifi_protected_setup_rounded, + Icons.wifi_protected_setup_sharp, + Icons.wifi_rounded, + Icons.wifi_sharp, + Icons.wifi_tethering, + Icons.wifi_tethering_error, + Icons.wifi_tethering_error_outlined, + Icons.wifi_tethering_error_rounded, + Icons.wifi_tethering_error_rounded_outlined, + Icons.wifi_tethering_error_rounded_rounded, + Icons.wifi_tethering_error_rounded_sharp, + Icons.wifi_tethering_error_sharp, + Icons.wifi_tethering_off, + Icons.wifi_tethering_off_outlined, + Icons.wifi_tethering_off_rounded, + Icons.wifi_tethering_off_sharp, + Icons.wifi_tethering_outlined, + Icons.wifi_tethering_rounded, + Icons.wifi_tethering_sharp, + Icons.wind_power, + Icons.wind_power_outlined, + Icons.wind_power_rounded, + Icons.wind_power_sharp, + Icons.window, + Icons.window_outlined, + Icons.window_rounded, + Icons.window_sharp, + Icons.wine_bar, + Icons.wine_bar_outlined, + Icons.wine_bar_rounded, + Icons.wine_bar_sharp, + Icons.woman, + Icons.woman_2, + Icons.woman_2_outlined, + Icons.woman_2_rounded, + Icons.woman_2_sharp, + Icons.woman_outlined, + Icons.woman_rounded, + Icons.woman_sharp, + Icons.woo_commerce, + Icons.woo_commerce_outlined, + Icons.woo_commerce_rounded, + Icons.woo_commerce_sharp, + Icons.wordpress, + Icons.wordpress_outlined, + Icons.wordpress_rounded, + Icons.wordpress_sharp, + Icons.work, + Icons.work_history, + Icons.work_history_outlined, + Icons.work_history_rounded, + Icons.work_history_sharp, + Icons.work_off, + Icons.work_off_outlined, + Icons.work_off_rounded, + Icons.work_off_sharp, + Icons.work_outline, + Icons.work_outline_outlined, + Icons.work_outline_rounded, + Icons.work_outline_sharp, + Icons.work_outlined, + Icons.work_rounded, + Icons.work_sharp, + Icons.workspace_premium, + Icons.workspace_premium_outlined, + Icons.workspace_premium_rounded, + Icons.workspace_premium_sharp, + Icons.workspaces, + Icons.workspaces_filled, + Icons.workspaces_outline, + Icons.workspaces_outlined, + Icons.workspaces_rounded, + Icons.workspaces_sharp, + Icons.wrap_text, + Icons.wrap_text_outlined, + Icons.wrap_text_rounded, + Icons.wrap_text_sharp, + Icons.wrong_location, + Icons.wrong_location_outlined, + Icons.wrong_location_rounded, + Icons.wrong_location_sharp, + Icons.wysiwyg, + Icons.wysiwyg_outlined, + Icons.wysiwyg_rounded, + Icons.wysiwyg_sharp, + Icons.yard, + Icons.yard_outlined, + Icons.yard_rounded, + Icons.yard_sharp, + Icons.youtube_searched_for, + Icons.youtube_searched_for_outlined, + Icons.youtube_searched_for_rounded, + Icons.youtube_searched_for_sharp, + Icons.zoom_in, + Icons.zoom_in_map, + Icons.zoom_in_map_outlined, + Icons.zoom_in_map_rounded, + Icons.zoom_in_map_sharp, + Icons.zoom_in_outlined, + Icons.zoom_in_rounded, + Icons.zoom_in_sharp, + Icons.zoom_out, + Icons.zoom_out_map, + Icons.zoom_out_map_outlined, + Icons.zoom_out_map_rounded, + Icons.zoom_out_map_sharp, + Icons.zoom_out_outlined, + Icons.zoom_out_rounded, + Icons.zoom_out_sharp, + ]; diff --git a/packages/flet/lib/src/utils/theme.dart b/packages/flet/lib/src/utils/theme.dart index 6172e1a0a2..f236976c21 100644 --- a/packages/flet/lib/src/utils/theme.dart +++ b/packages/flet/lib/src/utils/theme.dart @@ -5,6 +5,7 @@ import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; +import '../flet_backend.dart'; import '../models/control.dart'; import '../utils/transforms.dart'; import 'alignment.dart'; @@ -159,7 +160,7 @@ ThemeData parseTheme( checkboxTheme: parseCheckboxTheme(value?["checkbox_theme"], theme), radioTheme: parseRadioTheme(value?["radio_theme"], theme), badgeTheme: parseBadgeTheme(value?["badge_theme"], theme), - switchTheme: parseSwitchTheme(value?["switch_theme"], theme), + switchTheme: parseSwitchTheme(value?["switch_theme"], context), dividerTheme: parseDividerTheme(value?["divider_theme"], theme), snackBarTheme: parseSnackBarTheme(value?["snackbar_theme"], theme), bannerTheme: parseBannerTheme(value?["banner_theme"], theme), @@ -192,8 +193,8 @@ ThemeData parseTheme( filledButtonTheme: parseFilledButtonTheme(value?["filled_button_theme"], theme), iconButtonTheme: parseIconButtonTheme(value?["icon_button_theme"], theme), - segmentedButtonTheme: - parseSegmentedButtonTheme(value?["segmented_button_theme"], theme), + segmentedButtonTheme: parseSegmentedButtonTheme( + value?["segmented_button_theme"], theme, context), iconTheme: parseIconTheme(value?["icon_theme"], theme), timePickerTheme: parseTimePickerTheme(value?["time_picker_theme"], theme), ); @@ -659,16 +660,18 @@ BadgeThemeData? parseBadgeTheme(Map? value, ThemeData theme, ); } -SwitchThemeData? parseSwitchTheme(Map? value, ThemeData theme, +SwitchThemeData? parseSwitchTheme( + Map? value, BuildContext context, [SwitchThemeData? defaultValue]) { if (value == null) return defaultValue; - + var theme = Theme.of(context); return theme.switchTheme.copyWith( thumbColor: parseWidgetStateColor(value["thumb_color"], theme), trackColor: parseWidgetStateColor(value["track_color"], theme), overlayColor: parseWidgetStateColor(value["overlay_color"], theme), splashRadius: parseDouble(value["splash_radius"]), - thumbIcon: parseWidgetStateIcon(value["thumb_icon"], theme), + thumbIcon: parseWidgetStateIcon( + value["thumb_icon"], FletBackend.of(context), theme), trackOutlineColor: parseWidgetStateColor(value["track_outline_color"], theme), trackOutlineWidth: parseWidgetStateDouble(value["track_outline_width"]), @@ -1087,10 +1090,11 @@ NavigationBarThemeData? parseNavigationBarTheme( } SegmentedButtonThemeData? parseSegmentedButtonTheme( - Map? value, ThemeData theme, + Map? value, ThemeData theme, BuildContext context, [SegmentedButtonThemeData? defaultValue]) { if (value == null) return defaultValue; - var selectedIcon = parseIcon(value["selected_icon"]); + var selectedIcon = + parseIconData(value["selected_icon"], FletBackend.of(context)); return theme.segmentedButtonTheme.copyWith( selectedIcon: selectedIcon != null ? Icon(selectedIcon) : null, @@ -1388,9 +1392,9 @@ extension ThemeParsers on Control { return parseBadgeTheme(get(propertyName), theme, defaultValue); } - SwitchThemeData? getSwitchTheme(String propertyName, ThemeData theme, + SwitchThemeData? getSwitchTheme(String propertyName, BuildContext context, [SwitchThemeData? defaultValue]) { - return parseSwitchTheme(get(propertyName), theme, defaultValue); + return parseSwitchTheme(get(propertyName), context, defaultValue); } DividerThemeData? getDividerTheme(String propertyName, ThemeData theme, @@ -1479,9 +1483,10 @@ extension ThemeParsers on Control { } SegmentedButtonThemeData? getSegmentedButtonTheme( - String propertyName, ThemeData theme, + String propertyName, ThemeData theme, BuildContext context, [SegmentedButtonThemeData? defaultValue]) { - return parseSegmentedButtonTheme(get(propertyName), theme, defaultValue); + return parseSegmentedButtonTheme( + get(propertyName), theme, context, defaultValue); } IconThemeData? getIconTheme(String propertyName, ThemeData theme, diff --git a/sdk/python/examples/apps/controls-gallery/components/controls_grid.py b/sdk/python/examples/apps/controls-gallery/components/controls_grid.py index 102527f792..229bf042eb 100644 --- a/sdk/python/examples/apps/controls-gallery/components/controls_grid.py +++ b/sdk/python/examples/apps/controls-gallery/components/controls_grid.py @@ -32,7 +32,7 @@ def display(self, control_group): alignment=ft.MainAxisAlignment.START, vertical_alignment=ft.MainAxisAlignment.CENTER, controls=[ - ft.Icon(name=ft.Icons.FOLDER_OPEN), + ft.Icon(ft.Icons.FOLDER_OPEN), ft.Text( value=grid_item.name, weight=ft.FontWeight.W_500, diff --git a/sdk/python/examples/apps/controls-gallery/components/left_navigation_menu.py b/sdk/python/examples/apps/controls-gallery/components/left_navigation_menu.py index 98408bc81b..863814c86f 100644 --- a/sdk/python/examples/apps/controls-gallery/components/left_navigation_menu.py +++ b/sdk/python/examples/apps/controls-gallery/components/left_navigation_menu.py @@ -6,7 +6,7 @@ def __init__(self, color, name): super().__init__() self.content = ft.Row( controls=[ - ft.Icon(name=ft.Icons.COLOR_LENS_OUTLINED, color=color), + ft.Icon(ft.Icons.COLOR_LENS_OUTLINED, color=color), ft.Text(name), ], ) diff --git a/sdk/python/examples/apps/controls-gallery/examples/buttons/elevatedbutton/04_elevatedbuttons_with_custom_content.py b/sdk/python/examples/apps/controls-gallery/examples/buttons/elevatedbutton/04_elevatedbuttons_with_custom_content.py index db05633a30..80787ccb84 100644 --- a/sdk/python/examples/apps/controls-gallery/examples/buttons/elevatedbutton/04_elevatedbuttons_with_custom_content.py +++ b/sdk/python/examples/apps/controls-gallery/examples/buttons/elevatedbutton/04_elevatedbuttons_with_custom_content.py @@ -10,9 +10,9 @@ def example(): width=150, content=ft.Row( [ - ft.Icon(name=ft.Icons.FAVORITE, color="pink"), - ft.Icon(name=ft.Icons.AUDIOTRACK, color="green"), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color="blue"), + ft.Icon(ft.Icons.FAVORITE, color="pink"), + ft.Icon(ft.Icons.AUDIOTRACK, color="green"), + ft.Icon(ft.Icons.BEACH_ACCESS, color="blue"), ], alignment=ft.MainAxisAlignment.SPACE_AROUND, ), diff --git a/sdk/python/examples/apps/controls-gallery/examples/buttons/outlinedbutton/04_outlinedbuttons_with_custom_content.py b/sdk/python/examples/apps/controls-gallery/examples/buttons/outlinedbutton/04_outlinedbuttons_with_custom_content.py index ed94b9f012..0ea5f6d322 100644 --- a/sdk/python/examples/apps/controls-gallery/examples/buttons/outlinedbutton/04_outlinedbuttons_with_custom_content.py +++ b/sdk/python/examples/apps/controls-gallery/examples/buttons/outlinedbutton/04_outlinedbuttons_with_custom_content.py @@ -10,9 +10,9 @@ def example(): width=150, content=ft.Row( [ - ft.Icon(name=ft.Icons.FAVORITE, color="pink"), - ft.Icon(name=ft.Icons.AUDIOTRACK, color="green"), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color="blue"), + ft.Icon(ft.Icons.FAVORITE, color="pink"), + ft.Icon(ft.Icons.AUDIOTRACK, color="green"), + ft.Icon(ft.Icons.BEACH_ACCESS, color="blue"), ], alignment=ft.MainAxisAlignment.SPACE_AROUND, ), diff --git a/sdk/python/examples/apps/controls-gallery/examples/buttons/textbutton/04_textbuttons_with_custom_content.py b/sdk/python/examples/apps/controls-gallery/examples/buttons/textbutton/04_textbuttons_with_custom_content.py index 73beea9b98..82b0a7d036 100644 --- a/sdk/python/examples/apps/controls-gallery/examples/buttons/textbutton/04_textbuttons_with_custom_content.py +++ b/sdk/python/examples/apps/controls-gallery/examples/buttons/textbutton/04_textbuttons_with_custom_content.py @@ -10,9 +10,9 @@ def example(): width=150, content=ft.Row( [ - ft.Icon(name=ft.Icons.FAVORITE, color="pink"), - ft.Icon(name=ft.Icons.AUDIOTRACK, color="green"), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color="blue"), + ft.Icon(ft.Icons.FAVORITE, color="pink"), + ft.Icon(ft.Icons.AUDIOTRACK, color="green"), + ft.Icon(ft.Icons.BEACH_ACCESS, color="blue"), ], alignment=ft.MainAxisAlignment.SPACE_AROUND, ), diff --git a/sdk/python/examples/apps/controls-gallery/examples/displays/icon/01_icons_with_different_colors_and_sizes.py b/sdk/python/examples/apps/controls-gallery/examples/displays/icon/01_icons_with_different_colors_and_sizes.py index 5d5584350c..20d965e70b 100644 --- a/sdk/python/examples/apps/controls-gallery/examples/displays/icon/01_icons_with_different_colors_and_sizes.py +++ b/sdk/python/examples/apps/controls-gallery/examples/displays/icon/01_icons_with_different_colors_and_sizes.py @@ -6,9 +6,9 @@ def example(): return ft.Row( [ - ft.Icon(name=ft.Icons.FAVORITE, color=ft.Colors.PINK), - ft.Icon(name=ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN_400, size=30), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE, size=50), - ft.Icon(name="settings", color="#c1c1c1"), + ft.Icon(ft.Icons.FAVORITE, color=ft.Colors.PINK), + ft.Icon(ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN_400, size=30), + ft.Icon(ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE, size=50), + ft.Icon(ft.Icons.SETTINGS, color="#c1c1c1"), ] ) diff --git a/sdk/python/examples/apps/controls-gallery/examples/layout/cupertinolisttile/01_cupertinolisttile_example.py b/sdk/python/examples/apps/controls-gallery/examples/layout/cupertinolisttile/01_cupertinolisttile_example.py index 6518455373..d7edb31bb2 100644 --- a/sdk/python/examples/apps/controls-gallery/examples/layout/cupertinolisttile/01_cupertinolisttile_example.py +++ b/sdk/python/examples/apps/controls-gallery/examples/layout/cupertinolisttile/01_cupertinolisttile_example.py @@ -12,19 +12,19 @@ def tile_clicked(e): ft.CupertinoListTile( additional_info=ft.Text("Wed Jan 24"), bgcolor_activated=ft.Colors.AMBER_ACCENT, - leading=ft.Icon(name=ft.CupertinoIcons.GAME_CONTROLLER), + leading=ft.Icon(ft.CupertinoIcons.GAME_CONTROLLER), title=ft.Text("CupertinoListTile not notched"), subtitle=ft.Text("Subtitle"), - trailing=ft.Icon(name=ft.CupertinoIcons.ALARM), + trailing=ft.Icon(ft.CupertinoIcons.ALARM), on_click=tile_clicked, ), ft.CupertinoListTile( notched=True, additional_info=ft.Text("Thu Jan 25"), - leading=ft.Icon(name=ft.CupertinoIcons.GAME_CONTROLLER), + leading=ft.Icon(ft.CupertinoIcons.GAME_CONTROLLER), title=ft.Text("CupertinoListTile notched"), subtitle=ft.Text("Subtitle"), - trailing=ft.Icon(name=ft.CupertinoIcons.ALARM), + trailing=ft.Icon(ft.CupertinoIcons.ALARM), on_click=tile_clicked, ), ] diff --git a/sdk/python/examples/controls/cupertino_button/basic.py b/sdk/python/examples/controls/cupertino_button/basic.py index d25d6beaaf..0206cd2cf5 100644 --- a/sdk/python/examples/controls/cupertino_button/basic.py +++ b/sdk/python/examples/controls/cupertino_button/basic.py @@ -28,12 +28,12 @@ def main(page: ft.Page): content=ft.Text("Disabled CupertinoButton"), ), ft.ElevatedButton( - adaptive=True, # a CupertinoButton will be rendered when running on apple-platform + adaptive=True, bgcolor=ft.CupertinoColors.SYSTEM_TEAL, content=ft.Row( tight=True, controls=[ - ft.Icon(name=ft.Icons.FAVORITE, color="pink"), + ft.Icon(ft.Icons.FAVORITE, color="pink"), ft.Text("ElevatedButton+adaptive"), ], ), diff --git a/sdk/python/examples/controls/cupertino_list_tile/notched.py b/sdk/python/examples/controls/cupertino_list_tile/notched.py index 0693fc12e6..44c9d85b6b 100644 --- a/sdk/python/examples/controls/cupertino_list_tile/notched.py +++ b/sdk/python/examples/controls/cupertino_list_tile/notched.py @@ -9,19 +9,19 @@ def handle_tile_click(e: ft.Event[ft.CupertinoListTile]): ft.CupertinoListTile( additional_info=ft.Text("Wed Jan 24"), bgcolor_activated=ft.Colors.AMBER_ACCENT, - leading=ft.Icon(name=ft.CupertinoIcons.GAME_CONTROLLER), + leading=ft.Icon(ft.CupertinoIcons.GAME_CONTROLLER), title=ft.Text("CupertinoListTile: notched = False"), subtitle=ft.Text("Subtitle"), - trailing=ft.Icon(name=ft.CupertinoIcons.ALARM), + trailing=ft.Icon(ft.CupertinoIcons.ALARM), on_click=handle_tile_click, ), ft.CupertinoListTile( notched=True, additional_info=ft.Text("Thu Jan 25"), - leading=ft.Icon(name=ft.CupertinoIcons.GAME_CONTROLLER), + leading=ft.Icon(ft.CupertinoIcons.GAME_CONTROLLER), title=ft.Text("CupertinoListTile: notched = True"), subtitle=ft.Text("Subtitle"), - trailing=ft.Icon(name=ft.CupertinoIcons.ALARM), + trailing=ft.Icon(ft.CupertinoIcons.ALARM), on_click=handle_tile_click, ), ) diff --git a/sdk/python/examples/controls/drag_target_and_draggable/ordering.py b/sdk/python/examples/controls/drag_target_and_draggable/ordering.py index 6844dca8af..51cfbf6403 100644 --- a/sdk/python/examples/controls/drag_target_and_draggable/ordering.py +++ b/sdk/python/examples/controls/drag_target_and_draggable/ordering.py @@ -124,10 +124,10 @@ def remove_item(self, item): def handle_drag_accept(self, e: ft.DragTargetEvent): src = self.page.get_control(e.src_id) - l = self.list_row.current.controls - to_index = l.index(e.control.data) - from_index = l.index(src.content.data) - l[to_index], l[from_index] = l[from_index], l[to_index] + ctrls = self.list_row.current.controls + to_index = ctrls.index(e.control.data) + from_index = ctrls.index(src.content.data) + ctrls[to_index], ctrls[from_index] = ctrls[from_index], ctrls[to_index] self.end_indicator.opacity = 0.0 self.page.update() @@ -168,7 +168,7 @@ def __init__(self, list: ItemList, item_text: str): content=ft.Row( alignment=ft.MainAxisAlignment.START, controls=[ - ft.Icon(name=ft.Icons.CIRCLE_OUTLINED), + ft.Icon(ft.Icons.CIRCLE_OUTLINED), ft.Text(value=f"{self.item_text}"), ], ), diff --git a/sdk/python/examples/controls/elevated_button/custom_content.py b/sdk/python/examples/controls/elevated_button/custom_content.py index 2acf2d9816..2a2594be9e 100644 --- a/sdk/python/examples/controls/elevated_button/custom_content.py +++ b/sdk/python/examples/controls/elevated_button/custom_content.py @@ -10,9 +10,9 @@ def main(page: ft.Page): content=ft.Row( alignment=ft.MainAxisAlignment.SPACE_AROUND, controls=[ - ft.Icon(name=ft.Icons.FAVORITE, color=ft.Colors.PINK), - ft.Icon(name=ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE), + ft.Icon(ft.Icons.FAVORITE, color=ft.Colors.PINK), + ft.Icon(ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN), + ft.Icon(ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE), ], ), ), diff --git a/sdk/python/examples/controls/icon/basic.py b/sdk/python/examples/controls/icon/basic.py index 652e9b0ca6..2ae5b4eb1b 100644 --- a/sdk/python/examples/controls/icon/basic.py +++ b/sdk/python/examples/controls/icon/basic.py @@ -1,17 +1,41 @@ +from typing import cast + import flet as ft def main(page: ft.Page): page.add( + # material + ft.Row( + controls=[ + ft.Icon(ft.Icons.FAVORITE, color=ft.Colors.PINK), + ft.Icon(ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN_400, size=30), + ft.Icon(ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE, size=50), + ft.Icon(ft.Icons.SETTINGS, color="#c1c1c1"), + ] + ), + # cupertino ft.Row( controls=[ - ft.Icon(name=ft.Icons.FAVORITE, color=ft.Colors.PINK), - ft.Icon(name=ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN_400, size=30), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE, size=50), - ft.Icon(name="settings", color="#c1c1c1"), + ft.Icon(ft.CupertinoIcons.PROFILE_CIRCLED, color=ft.Colors.PINK), + ft.Icon( + icon=cast(ft.CupertinoIcons, ft.CupertinoIcons.random()), + color=ft.Colors.GREEN_400, + size=30, + ), + ft.Icon( + icon=cast(ft.CupertinoIcons, ft.CupertinoIcons.random()), + color=ft.Colors.BLUE, + size=50, + ), + ft.Icon( + icon=cast(ft.CupertinoIcons, ft.CupertinoIcons.random()), + color="#c1c1c1", + ), ] - ) + ), ) -ft.run(main) +if __name__ == "__main__": + ft.run(main) diff --git a/sdk/python/examples/controls/outlined_button/custom_content.py b/sdk/python/examples/controls/outlined_button/custom_content.py index 76d4d4ae2d..c00165153b 100644 --- a/sdk/python/examples/controls/outlined_button/custom_content.py +++ b/sdk/python/examples/controls/outlined_button/custom_content.py @@ -11,9 +11,9 @@ def main(page: ft.Page): content=ft.Row( alignment=ft.MainAxisAlignment.SPACE_AROUND, controls=[ - ft.Icon(name=ft.Icons.FAVORITE, color=ft.Colors.PINK), - ft.Icon(name=ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE), + ft.Icon(ft.Icons.FAVORITE, color=ft.Colors.PINK), + ft.Icon(ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN), + ft.Icon(ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE), ], ), ), diff --git a/sdk/python/examples/controls/semantics/basic.py b/sdk/python/examples/controls/semantics/basic.py index 9074ea4be3..6540f4b080 100644 --- a/sdk/python/examples/controls/semantics/basic.py +++ b/sdk/python/examples/controls/semantics/basic.py @@ -21,7 +21,7 @@ def handle_lose_accessibility_focus(e: ft.Event[ft.Semantics]): value="What is your occupation?", ), ), - ft.Icon(name="settings", color="#c1c1c1"), + ft.Icon(ft.Icons.SETTINGS, color="#c1c1c1"), ] ) ) diff --git a/sdk/python/examples/controls/text_button/custom_content.py b/sdk/python/examples/controls/text_button/custom_content.py index 91e7abd561..6c9223a38c 100644 --- a/sdk/python/examples/controls/text_button/custom_content.py +++ b/sdk/python/examples/controls/text_button/custom_content.py @@ -10,9 +10,9 @@ def main(page: ft.Page): content=ft.Row( alignment=ft.MainAxisAlignment.SPACE_AROUND, controls=[ - ft.Icon(name=ft.Icons.FAVORITE, color=ft.Colors.PINK), - ft.Icon(name=ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN), - ft.Icon(name=ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE), + ft.Icon(ft.Icons.FAVORITE, color=ft.Colors.PINK), + ft.Icon(ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN), + ft.Icon(ft.Icons.BEACH_ACCESS, color=ft.Colors.BLUE), ], ), ), diff --git a/sdk/python/packages/flet-cli/src/flet_cli/commands/build.py b/sdk/python/packages/flet-cli/src/flet_cli/commands/build.py index 2531f09585..ac9521cd19 100644 --- a/sdk/python/packages/flet-cli/src/flet_cli/commands/build.py +++ b/sdk/python/packages/flet-cli/src/flet_cli/commands/build.py @@ -8,12 +8,8 @@ from pathlib import Path from typing import Optional, cast -import flet.version import flet_cli.utils.processes as processes import yaml -from flet.utils import cleanup_path, copy_tree, is_windows, slugify -from flet.utils.platform_utils import get_bool_env_var -from flet.version import update_version from flet_cli.commands.base import BaseCommand from flet_cli.utils.hash_stamp import HashStamp from flet_cli.utils.merge import merge_dict @@ -32,6 +28,11 @@ from rich.table import Column, Table from rich.theme import Theme +import flet.version +from flet.utils import cleanup_path, copy_tree, is_windows, slugify +from flet.utils.platform_utils import get_bool_env_var +from flet.version import update_version + PYODIDE_ROOT_URL = "https://cdn.jsdelivr.net/pyodide/v0.27.7/full" DEFAULT_TEMPLATE_URL = "gh:flet-dev/flet-build-template" diff --git a/sdk/python/packages/flet/docs/types/aliases.md b/sdk/python/packages/flet/docs/types/aliases.md index c3bc5ffab4..c9e1f18e2c 100644 --- a/sdk/python/packages/flet/docs/types/aliases.md +++ b/sdk/python/packages/flet/docs/types/aliases.md @@ -12,8 +12,8 @@ ::: flet.DurationValue ::: flet.EventControlType ::: flet.EventHandler -::: flet.IconValue -::: flet.IconValueOrControl +::: flet.IconData +::: flet.IconDataOrControl ::: flet.KeyValue ::: flet.MarginValue ::: flet.Number @@ -23,4 +23,4 @@ ::: flet.RotateValue ::: flet.ScaleValue ::: flet.StrOrControl -::: flet.TooltipValue \ No newline at end of file +::: flet.TooltipValue diff --git a/sdk/python/packages/flet/integration_tests/controls/golden/macos/icon/icon_basic.png b/sdk/python/packages/flet/integration_tests/controls/golden/macos/icon/icon_basic.png new file mode 100644 index 0000000000..20a0cf5137 Binary files /dev/null and b/sdk/python/packages/flet/integration_tests/controls/golden/macos/icon/icon_basic.png differ diff --git a/sdk/python/packages/flet/integration_tests/controls/test_icon.py b/sdk/python/packages/flet/integration_tests/controls/test_icon.py new file mode 100644 index 0000000000..5e6b61db64 --- /dev/null +++ b/sdk/python/packages/flet/integration_tests/controls/test_icon.py @@ -0,0 +1,45 @@ +import pytest + +import flet as ft +import flet.testing as ftt + + +@pytest.mark.asyncio(loop_scope="module") +async def test_icon_basic(flet_app: ftt.FletTestApp, request): + flet_app.page.theme_mode = ft.ThemeMode.LIGHT + await flet_app.assert_control_screenshot( + request.node.name, + ft.Column( + [ # material + ft.Row( + controls=[ + ft.Icon(ft.Icons.ABC, color=ft.Colors.PINK), + ft.Icon( + ft.Icons.AUDIOTRACK, color=ft.Colors.GREEN_400, size=30 + ), + ft.Icon(ft.Icons.AC_UNIT, color=ft.Colors.BLUE, size=50), + ft.Icon(ft.Icons.SETTINGS, color="#c1c1c1"), + ft.Icon(ft.Icons.ALARM, size=40), + ] + ), + # cupertino + ft.Row( + controls=[ + ft.Icon(ft.CupertinoIcons.AIRPLANE, color=ft.Colors.PINK), + ft.Icon( + icon=ft.CupertinoIcons.CUBE_BOX, + color=ft.Colors.GREEN_400, + size=30, + ), + ft.Icon( + icon=ft.CupertinoIcons.ARCHIVEBOX, + color=ft.Colors.BLUE, + size=50, + ), + ft.Icon(icon=ft.CupertinoIcons.BAG, color="#c1c1c1"), + ft.Icon(ft.CupertinoIcons.ALARM, size=40), + ] + ), + ] + ), + ) diff --git a/sdk/python/packages/flet/integration_tests/test_finders.py b/sdk/python/packages/flet/integration_tests/test_finders.py index c6e26b7e6e..495fa5a3db 100644 --- a/sdk/python/packages/flet/integration_tests/test_finders.py +++ b/sdk/python/packages/flet/integration_tests/test_finders.py @@ -1,7 +1,8 @@ import apps.finders as app +import pytest + import flet as ft import flet.testing as ftt -import pytest @pytest.mark.parametrize( diff --git a/sdk/python/packages/flet/src/flet/__init__.py b/sdk/python/packages/flet/src/flet/__init__.py index ade396bfde..7da9377440 100644 --- a/sdk/python/packages/flet/src/flet/__init__.py +++ b/sdk/python/packages/flet/src/flet/__init__.py @@ -218,6 +218,7 @@ RadialGradient, SweepGradient, ) +from flet.controls.icon_data import IconData from flet.controls.keys import Key, KeyValue, ScrollKey, ValueKey from flet.controls.margin import Margin, MarginValue from flet.controls.material import dropdown, dropdownm2, icons @@ -459,8 +460,7 @@ CrossAxisAlignment, FloatingActionButtonLocation, FontWeight, - IconValue, - IconValueOrControl, + IconDataOrControl, ImageRepeat, LabelPosition, Locale, @@ -677,9 +677,9 @@ "Icon", "IconButton", "IconButtonTheme", + "IconData", + "IconDataOrControl", "IconTheme", - "IconValue", - "IconValueOrControl", "Icons", "Image", "ImageRepeat", diff --git a/sdk/python/packages/flet/src/flet/controls/core/icon.py b/sdk/python/packages/flet/src/flet/controls/core/icon.py index 1b1f8c7adf..33b0ae91ae 100644 --- a/sdk/python/packages/flet/src/flet/controls/core/icon.py +++ b/sdk/python/packages/flet/src/flet/controls/core/icon.py @@ -3,7 +3,7 @@ from flet.controls.base_control import control from flet.controls.box import BoxShadowValue from flet.controls.constrained_control import ConstrainedControl -from flet.controls.types import BlendMode, ColorValue, IconValue, Number +from flet.controls.types import BlendMode, ColorValue, IconData, Number __all__ = ["Icon"] @@ -11,7 +11,10 @@ @control("Icon") class Icon(ConstrainedControl): """ - Displays a Material icon. + A control that displays an icon from a built-in or custom icon set. + + Icons can be customized in color, size, and visual style using various + parameters such as stroke weight, fill level, and shadows. Raises: AssertionError: If [`fill`][(c).] is less than `0.0` or greater than `1.0`. @@ -19,85 +22,100 @@ class Icon(ConstrainedControl): AssertionError: If [`optical_size`][(c).] is less than or equal to `0.0`. """ - name: IconValue + icon: IconData """ - The name of the icon. + The icon to display, selected from a predefined icon set. - You can search through the list of all available icons using our - [Icons browser](https://gallery.flet.dev/icons-browser/) app - [written in Flet](https://github.com/flet-dev/examples/blob/main/python/apps/icons-browser/main.py). + You can explore available icons using the + [Flet Icons Browser](https://gallery.flet.dev/icons-browser/). """ color: Optional[ColorValue] = None """ - Icon color. + The color to use when drawing the icon. """ size: Optional[Number] = None """ - The icon's size. - - Icons occupy a square with width and height equal to `size`. - - Defaults to the nearest [`IconTheme.size`][flet.IconTheme.size]. + The size (width and height) of the square area the icon will occupy. - If this `Icon` is being placed inside an [`IconButton`][flet.IconButton], then use - [`IconButton.icon_size`][flet.IconButton.icon_size] instead, so that the `IconButton` can make the splash - area the appropriate size as well. The `IconButton` uses an [`IconTheme`][flet.IconTheme] to - pass down the size to the `Icon`. + If not set, a default size will be used. When placing this icon + inside other controls (such as buttons), those controls may also affect sizing. """ semantics_label: Optional[str] = None """ - The semantics label for this icon. + An accessibility label for the icon. - It is not shown to the in the UI, but is announced in accessibility modes - (e.g. TalkBack/VoiceOver). + This text is not displayed visually but may be announced by screen readers + or other assistive technologies. """ shadows: Optional[BoxShadowValue] = None """ - TBD + A list of shadows to apply beneath the icon. + + Use multiple shadows to simulate complex lighting effects. + The order of shadows matters for how transparency is blended. """ fill: Optional[Number] = None """ - TBD + The fill amount of the icon, between `0.0` (outline) and `1.0` (solid). + + This feature requires the icon's font to support fill variation. + It can be used to indicate state transitions or selection visually. """ apply_text_scaling: Optional[bool] = None """ - TBD + Whether to scale the icon based on the system or user's preferred text size. + + Useful when placing icons alongside text, ensuring both scale consistently + for better readability and accessibility. """ grade: Optional[Number] = None """ - TBD + A fine-tuning adjustment for the stroke thickness of the icon. + + This requires support from the icon's font. Grade values can be negative or + positive. + It allows precise visual adjustments without changing icon size. """ weight: Optional[Number] = None """ - TBD + The stroke weight (thickness) of the icon's lines. + + This requires the icon font to support weight variation. + Must be greater than `0`. """ optical_size: Optional[Number] = None """ - TBD + Adjusts the icon's visual style for different sizes to maintain clarity and balance. + + This requires the icon font to support optical sizing. + Must be greater than `0`. """ - blend_mode: Optional[BlendMode] = None + blend_mode: Optional[BlendMode] = BlendMode.SRC_OVER """ - TBD + The blend mode used when rendering the icon. + + Blend modes control how the icon's color interacts with the background. + The default is normal blending (`SRC_OVER`). """ def before_update(self): super().before_update() - assert self.fill is None or ( - 0.0 <= self.fill <= 1.0 - ), f"fill must be between 0.0 and 1.0 inclusive, got {self.fill}" - assert self.weight is None or ( - self.weight > 0.0 - ), f"weight must be strictly greater than 0.0, got {self.weight}" - assert self.optical_size is None or ( - self.optical_size > 0.0 - ), f"optical_size must be strictly greater than 0.0, got {self.optical_size}" + assert self.fill is None or (0.0 <= self.fill <= 1.0), ( + f"fill must be between 0.0 and 1.0 inclusive, got {self.fill}" + ) + assert self.weight is None or (self.weight > 0.0), ( + f"weight must be strictly greater than 0.0, got {self.weight}" + ) + assert self.optical_size is None or (self.optical_size > 0.0), ( + f"optical_size must be strictly greater than 0.0, got {self.optical_size}" + ) diff --git a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_button.py b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_button.py index 02900d6bb1..a645c5d396 100644 --- a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_button.py +++ b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_button.py @@ -11,7 +11,7 @@ from flet.controls.padding import PaddingValue from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, MouseCursor, Number, StrOrControl, @@ -42,7 +42,7 @@ class CupertinoButton(ConstrainedControl): The content of the button. Can be either a string or a control. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ Icon shown in the button. """ diff --git a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_context_menu_action.py b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_context_menu_action.py index 996a79f7a7..add05e0e68 100644 --- a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_context_menu_action.py +++ b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_context_menu_action.py @@ -3,7 +3,7 @@ from flet.controls.adaptive_control import AdaptiveControl from flet.controls.base_control import control from flet.controls.control_event import ControlEventHandler -from flet.controls.types import IconValue, StrOrControl +from flet.controls.types import IconData, StrOrControl __all__ = ["CupertinoContextMenuAction"] @@ -13,7 +13,8 @@ class CupertinoContextMenuAction(AdaptiveControl): """ A cupertino context menu action. - Typically used as a child of [`CupertinoContextMenu.actions`][flet.CupertinoContextMenu.actions]. + Typically used as a child of + [`CupertinoContextMenu.actions`][flet.CupertinoContextMenu.actions]. Raises: AssertionError: If [`content`][(c).] is neither a string nor a visible Control. @@ -34,9 +35,10 @@ class CupertinoContextMenuAction(AdaptiveControl): Whether this action should receive the style of a destructive action. """ - trailing_icon: Optional[IconValue] = None + trailing_icon: Optional[IconData] = None """ - An optional icon to display at the right of the [`content`][flet.CupertinoContextMenuAction.content] control. + An optional icon to display at the right of the + [`content`][flet.CupertinoContextMenuAction.content] control. """ on_click: Optional[ControlEventHandler["CupertinoContextMenuAction"]] = None diff --git a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_icons.py b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_icons.py index 88b971650e..87aca77517 100644 --- a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_icons.py +++ b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_icons.py @@ -1,1413 +1,1338 @@ """ Flet Cupertino Icons -To generate/update these values run: +To generate/update this file run from the root of the repository: -sh ci/generate_cupertino_icons_python.sh - ---- - -Code to sort the members: ``` -s = sorted(CupertinoIcons, key=lambda i: i.name) -for i in s: - print(f"{i.name} = \"{i.value}\"") +uv run ci/generate_icons.py ``` """ -import random -from enum import Enum -from typing import Optional +from flet.controls.icon_data import IconData __all__ = ["CupertinoIcons"] -class CupertinoIcons(str, Enum): - def __eq__(self, other): - if isinstance(other, str): - return self.value.lower() == other.lower() - if isinstance(other, Enum): - return self.value.lower() == other.value.lower() - return NotImplemented - - def __hash__(self): - return hash(self.value.lower()) - - @staticmethod - def random( - exclude: Optional[list["CupertinoIcons"]] = None, - weights: Optional[dict["CupertinoIcons", int]] = None, - ) -> Optional["CupertinoIcons"]: - """ - Selects a random icon, with optional exclusions and weights. - - Args: - exclude: A list of icons members to exclude from the selection. - weights: A dictionary mapping icon members to their respective weights for - weighted random selection. - - Returns: - A randomly selected icon, or `None` if all members are excluded. - - Examples: - >>> CupertinoIcons.random(exclude=[CupertinoIcons.BOOK], weights={CupertinoIcons.INFO: 150}) - CupertinoIcons.INFO - """ - choices = list(CupertinoIcons) - if exclude: - choices = [member for member in choices if member not in exclude] - if not choices: - return None - if weights: - weights_list = [weights.get(c, 1) for c in choices] - return random.choices(choices, weights=weights_list)[0] - return random.choice(choices) - - ADD = "cupertino_add" - ADD_CIRCLED = "cupertino_add_circled" - ADD_CIRCLED_SOLID = "cupertino_add_circled_solid" - AIRPLANE = "cupertino_airplane" - ALARM = "cupertino_alarm" - ALARM_FILL = "cupertino_alarm_fill" - ALT = "cupertino_alt" - ANT = "cupertino_ant" - ANTENNA_RADIOWAVES_LEFT_RIGHT = "cupertino_antenna_radiowaves_left_right" - ANT_CIRCLE = "cupertino_ant_circle" - ANT_CIRCLE_FILL = "cupertino_ant_circle_fill" - ANT_FILL = "cupertino_ant_fill" - APP = "cupertino_app" - APP_BADGE = "cupertino_app_badge" - APP_BADGE_FILL = "cupertino_app_badge_fill" - APP_FILL = "cupertino_app_fill" - ARCHIVEBOX = "cupertino_archivebox" - ARCHIVEBOX_FILL = "cupertino_archivebox_fill" - ARROWSHAPE_TURN_UP_LEFT = "cupertino_arrowshape_turn_up_left" - ARROWSHAPE_TURN_UP_LEFT_2 = "cupertino_arrowshape_turn_up_left_2" - ARROWSHAPE_TURN_UP_LEFT_2_FILL = "cupertino_arrowshape_turn_up_left_2_fill" - ARROWSHAPE_TURN_UP_LEFT_CIRCLE = "cupertino_arrowshape_turn_up_left_circle" - ARROWSHAPE_TURN_UP_LEFT_CIRCLE_FILL = ( - "cupertino_arrowshape_turn_up_left_circle_fill" - ) - ARROWSHAPE_TURN_UP_LEFT_FILL = "cupertino_arrowshape_turn_up_left_fill" - ARROWSHAPE_TURN_UP_RIGHT = "cupertino_arrowshape_turn_up_right" - ARROWSHAPE_TURN_UP_RIGHT_CIRCLE = "cupertino_arrowshape_turn_up_right_circle" - ARROWSHAPE_TURN_UP_RIGHT_CIRCLE_FILL = ( - "cupertino_arrowshape_turn_up_right_circle_fill" - ) - ARROWSHAPE_TURN_UP_RIGHT_FILL = "cupertino_arrowshape_turn_up_right_fill" - ARROWTRIANGLE_DOWN = "cupertino_arrowtriangle_down" - ARROWTRIANGLE_DOWN_CIRCLE = "cupertino_arrowtriangle_down_circle" - ARROWTRIANGLE_DOWN_CIRCLE_FILL = "cupertino_arrowtriangle_down_circle_fill" - ARROWTRIANGLE_DOWN_FILL = "cupertino_arrowtriangle_down_fill" - ARROWTRIANGLE_DOWN_SQUARE = "cupertino_arrowtriangle_down_square" - ARROWTRIANGLE_DOWN_SQUARE_FILL = "cupertino_arrowtriangle_down_square_fill" - ARROWTRIANGLE_LEFT = "cupertino_arrowtriangle_left" - ARROWTRIANGLE_LEFT_CIRCLE = "cupertino_arrowtriangle_left_circle" - ARROWTRIANGLE_LEFT_CIRCLE_FILL = "cupertino_arrowtriangle_left_circle_fill" - ARROWTRIANGLE_LEFT_FILL = "cupertino_arrowtriangle_left_fill" - ARROWTRIANGLE_LEFT_SQUARE = "cupertino_arrowtriangle_left_square" - ARROWTRIANGLE_LEFT_SQUARE_FILL = "cupertino_arrowtriangle_left_square_fill" - ARROWTRIANGLE_RIGHT = "cupertino_arrowtriangle_right" - ARROWTRIANGLE_RIGHT_CIRCLE = "cupertino_arrowtriangle_right_circle" - ARROWTRIANGLE_RIGHT_CIRCLE_FILL = "cupertino_arrowtriangle_right_circle_fill" - ARROWTRIANGLE_RIGHT_FILL = "cupertino_arrowtriangle_right_fill" - ARROWTRIANGLE_RIGHT_SQUARE = "cupertino_arrowtriangle_right_square" - ARROWTRIANGLE_RIGHT_SQUARE_FILL = "cupertino_arrowtriangle_right_square_fill" - ARROWTRIANGLE_UP = "cupertino_arrowtriangle_up" - ARROWTRIANGLE_UP_CIRCLE = "cupertino_arrowtriangle_up_circle" - ARROWTRIANGLE_UP_CIRCLE_FILL = "cupertino_arrowtriangle_up_circle_fill" - ARROWTRIANGLE_UP_FILL = "cupertino_arrowtriangle_up_fill" - ARROWTRIANGLE_UP_SQUARE = "cupertino_arrowtriangle_up_square" - ARROWTRIANGLE_UP_SQUARE_FILL = "cupertino_arrowtriangle_up_square_fill" - ARROW_2_CIRCLEPATH = "cupertino_arrow_2_circlepath" - ARROW_2_CIRCLEPATH_CIRCLE = "cupertino_arrow_2_circlepath_circle" - ARROW_2_CIRCLEPATH_CIRCLE_FILL = "cupertino_arrow_2_circlepath_circle_fill" - ARROW_2_SQUAREPATH = "cupertino_arrow_2_squarepath" - ARROW_3_TRIANGLEPATH = "cupertino_arrow_3_trianglepath" - ARROW_BRANCH = "cupertino_arrow_branch" - ARROW_CLOCKWISE = "cupertino_arrow_clockwise" - ARROW_CLOCKWISE_CIRCLE = "cupertino_arrow_clockwise_circle" - ARROW_CLOCKWISE_CIRCLE_FILL = "cupertino_arrow_clockwise_circle_fill" - ARROW_COUNTERCLOCKWISE = "cupertino_arrow_counterclockwise" - ARROW_COUNTERCLOCKWISE_CIRCLE = "cupertino_arrow_counterclockwise_circle" - ARROW_COUNTERCLOCKWISE_CIRCLE_FILL = "cupertino_arrow_counterclockwise_circle_fill" - ARROW_DOWN = "cupertino_arrow_down" - ARROW_DOWN_CIRCLE = "cupertino_arrow_down_circle" - ARROW_DOWN_CIRCLE_FILL = "cupertino_arrow_down_circle_fill" - ARROW_DOWN_DOC = "cupertino_arrow_down_doc" - ARROW_DOWN_DOC_FILL = "cupertino_arrow_down_doc_fill" - ARROW_DOWN_LEFT = "cupertino_arrow_down_left" - ARROW_DOWN_LEFT_CIRCLE = "cupertino_arrow_down_left_circle" - ARROW_DOWN_LEFT_CIRCLE_FILL = "cupertino_arrow_down_left_circle_fill" - ARROW_DOWN_LEFT_SQUARE = "cupertino_arrow_down_left_square" - ARROW_DOWN_LEFT_SQUARE_FILL = "cupertino_arrow_down_left_square_fill" - ARROW_DOWN_RIGHT = "cupertino_arrow_down_right" - ARROW_DOWN_RIGHT_ARROW_UP_LEFT = "cupertino_arrow_down_right_arrow_up_left" - ARROW_DOWN_RIGHT_CIRCLE = "cupertino_arrow_down_right_circle" - ARROW_DOWN_RIGHT_CIRCLE_FILL = "cupertino_arrow_down_right_circle_fill" - ARROW_DOWN_RIGHT_SQUARE = "cupertino_arrow_down_right_square" - ARROW_DOWN_RIGHT_SQUARE_FILL = "cupertino_arrow_down_right_square_fill" - ARROW_DOWN_SQUARE = "cupertino_arrow_down_square" - ARROW_DOWN_SQUARE_FILL = "cupertino_arrow_down_square_fill" - ARROW_DOWN_TO_LINE = "cupertino_arrow_down_to_line" - ARROW_DOWN_TO_LINE_ALT = "cupertino_arrow_down_to_line_alt" - ARROW_LEFT = "cupertino_arrow_left" - ARROW_LEFT_CIRCLE = "cupertino_arrow_left_circle" - ARROW_LEFT_CIRCLE_FILL = "cupertino_arrow_left_circle_fill" - ARROW_LEFT_RIGHT = "cupertino_arrow_left_right" - ARROW_LEFT_RIGHT_CIRCLE = "cupertino_arrow_left_right_circle" - ARROW_LEFT_RIGHT_CIRCLE_FILL = "cupertino_arrow_left_right_circle_fill" - ARROW_LEFT_RIGHT_SQUARE = "cupertino_arrow_left_right_square" - ARROW_LEFT_RIGHT_SQUARE_FILL = "cupertino_arrow_left_right_square_fill" - ARROW_LEFT_SQUARE = "cupertino_arrow_left_square" - ARROW_LEFT_SQUARE_FILL = "cupertino_arrow_left_square_fill" - ARROW_LEFT_TO_LINE = "cupertino_arrow_left_to_line" - ARROW_LEFT_TO_LINE_ALT = "cupertino_arrow_left_to_line_alt" - ARROW_MERGE = "cupertino_arrow_merge" - ARROW_RIGHT = "cupertino_arrow_right" - ARROW_RIGHT_ARROW_LEFT = "cupertino_arrow_right_arrow_left" - ARROW_RIGHT_ARROW_LEFT_CIRCLE = "cupertino_arrow_right_arrow_left_circle" - ARROW_RIGHT_ARROW_LEFT_CIRCLE_FILL = "cupertino_arrow_right_arrow_left_circle_fill" - ARROW_RIGHT_ARROW_LEFT_SQUARE = "cupertino_arrow_right_arrow_left_square" - ARROW_RIGHT_ARROW_LEFT_SQUARE_FILL = "cupertino_arrow_right_arrow_left_square_fill" - ARROW_RIGHT_CIRCLE = "cupertino_arrow_right_circle" - ARROW_RIGHT_CIRCLE_FILL = "cupertino_arrow_right_circle_fill" - ARROW_RIGHT_SQUARE = "cupertino_arrow_right_square" - ARROW_RIGHT_SQUARE_FILL = "cupertino_arrow_right_square_fill" - ARROW_RIGHT_TO_LINE = "cupertino_arrow_right_to_line" - ARROW_RIGHT_TO_LINE_ALT = "cupertino_arrow_right_to_line_alt" - ARROW_SWAP = "cupertino_arrow_swap" - ARROW_TURN_DOWN_LEFT = "cupertino_arrow_turn_down_left" - ARROW_TURN_DOWN_RIGHT = "cupertino_arrow_turn_down_right" - ARROW_TURN_LEFT_DOWN = "cupertino_arrow_turn_left_down" - ARROW_TURN_LEFT_UP = "cupertino_arrow_turn_left_up" - ARROW_TURN_RIGHT_DOWN = "cupertino_arrow_turn_right_down" - ARROW_TURN_RIGHT_UP = "cupertino_arrow_turn_right_up" - ARROW_TURN_UP_LEFT = "cupertino_arrow_turn_up_left" - ARROW_TURN_UP_RIGHT = "cupertino_arrow_turn_up_right" - ARROW_UP = "cupertino_arrow_up" - ARROW_UP_ARROW_DOWN = "cupertino_arrow_up_arrow_down" - ARROW_UP_ARROW_DOWN_CIRCLE = "cupertino_arrow_up_arrow_down_circle" - ARROW_UP_ARROW_DOWN_CIRCLE_FILL = "cupertino_arrow_up_arrow_down_circle_fill" - ARROW_UP_ARROW_DOWN_SQUARE = "cupertino_arrow_up_arrow_down_square" - ARROW_UP_ARROW_DOWN_SQUARE_FILL = "cupertino_arrow_up_arrow_down_square_fill" - ARROW_UP_BIN = "cupertino_arrow_up_bin" - ARROW_UP_BIN_FILL = "cupertino_arrow_up_bin_fill" - ARROW_UP_CIRCLE = "cupertino_arrow_up_circle" - ARROW_UP_CIRCLE_FILL = "cupertino_arrow_up_circle_fill" - ARROW_UP_DOC = "cupertino_arrow_up_doc" - ARROW_UP_DOC_FILL = "cupertino_arrow_up_doc_fill" - ARROW_UP_DOWN = "cupertino_arrow_up_down" - ARROW_UP_DOWN_CIRCLE = "cupertino_arrow_up_down_circle" - ARROW_UP_DOWN_CIRCLE_FILL = "cupertino_arrow_up_down_circle_fill" - ARROW_UP_DOWN_SQUARE = "cupertino_arrow_up_down_square" - ARROW_UP_DOWN_SQUARE_FILL = "cupertino_arrow_up_down_square_fill" - ARROW_UP_LEFT = "cupertino_arrow_up_left" - ARROW_UP_LEFT_ARROW_DOWN_RIGHT = "cupertino_arrow_up_left_arrow_down_right" - ARROW_UP_LEFT_CIRCLE = "cupertino_arrow_up_left_circle" - ARROW_UP_LEFT_CIRCLE_FILL = "cupertino_arrow_up_left_circle_fill" - ARROW_UP_LEFT_SQUARE = "cupertino_arrow_up_left_square" - ARROW_UP_LEFT_SQUARE_FILL = "cupertino_arrow_up_left_square_fill" - ARROW_UP_RIGHT = "cupertino_arrow_up_right" - ARROW_UP_RIGHT_CIRCLE = "cupertino_arrow_up_right_circle" - ARROW_UP_RIGHT_CIRCLE_FILL = "cupertino_arrow_up_right_circle_fill" - ARROW_UP_RIGHT_DIAMOND = "cupertino_arrow_up_right_diamond" - ARROW_UP_RIGHT_DIAMOND_FILL = "cupertino_arrow_up_right_diamond_fill" - ARROW_UP_RIGHT_SQUARE = "cupertino_arrow_up_right_square" - ARROW_UP_RIGHT_SQUARE_FILL = "cupertino_arrow_up_right_square_fill" - ARROW_UP_SQUARE = "cupertino_arrow_up_square" - ARROW_UP_SQUARE_FILL = "cupertino_arrow_up_square_fill" - ARROW_UP_TO_LINE = "cupertino_arrow_up_to_line" - ARROW_UP_TO_LINE_ALT = "cupertino_arrow_up_to_line_alt" - ARROW_UTURN_DOWN = "cupertino_arrow_uturn_down" - ARROW_UTURN_DOWN_CIRCLE = "cupertino_arrow_uturn_down_circle" - ARROW_UTURN_DOWN_CIRCLE_FILL = "cupertino_arrow_uturn_down_circle_fill" - ARROW_UTURN_DOWN_SQUARE = "cupertino_arrow_uturn_down_square" - ARROW_UTURN_DOWN_SQUARE_FILL = "cupertino_arrow_uturn_down_square_fill" - ARROW_UTURN_LEFT = "cupertino_arrow_uturn_left" - ARROW_UTURN_LEFT_CIRCLE = "cupertino_arrow_uturn_left_circle" - ARROW_UTURN_LEFT_CIRCLE_FILL = "cupertino_arrow_uturn_left_circle_fill" - ARROW_UTURN_LEFT_SQUARE = "cupertino_arrow_uturn_left_square" - ARROW_UTURN_LEFT_SQUARE_FILL = "cupertino_arrow_uturn_left_square_fill" - ARROW_UTURN_RIGHT = "cupertino_arrow_uturn_right" - ARROW_UTURN_RIGHT_CIRCLE = "cupertino_arrow_uturn_right_circle" - ARROW_UTURN_RIGHT_CIRCLE_FILL = "cupertino_arrow_uturn_right_circle_fill" - ARROW_UTURN_RIGHT_SQUARE = "cupertino_arrow_uturn_right_square" - ARROW_UTURN_RIGHT_SQUARE_FILL = "cupertino_arrow_uturn_right_square_fill" - ARROW_UTURN_UP = "cupertino_arrow_uturn_up" - ARROW_UTURN_UP_CIRCLE = "cupertino_arrow_uturn_up_circle" - ARROW_UTURN_UP_CIRCLE_FILL = "cupertino_arrow_uturn_up_circle_fill" - ARROW_UTURN_UP_SQUARE = "cupertino_arrow_uturn_up_square" - ARROW_UTURN_UP_SQUARE_FILL = "cupertino_arrow_uturn_up_square_fill" - ASTERISK_CIRCLE = "cupertino_asterisk_circle" - ASTERISK_CIRCLE_FILL = "cupertino_asterisk_circle_fill" - AT = "cupertino_at" - AT_BADGE_MINUS = "cupertino_at_badge_minus" - AT_BADGE_PLUS = "cupertino_at_badge_plus" - AT_CIRCLE = "cupertino_at_circle" - AT_CIRCLE_FILL = "cupertino_at_circle_fill" - BACK = "cupertino_back" - BACKWARD = "cupertino_backward" - BACKWARD_END = "cupertino_backward_end" - BACKWARD_END_ALT = "cupertino_backward_end_alt" - BACKWARD_END_ALT_FILL = "cupertino_backward_end_alt_fill" - BACKWARD_END_FILL = "cupertino_backward_end_fill" - BACKWARD_FILL = "cupertino_backward_fill" - BADGE_PLUS_RADIOWAVES_RIGHT = "cupertino_badge_plus_radiowaves_right" - BAG = "cupertino_bag" - BAG_BADGE_MINUS = "cupertino_bag_badge_minus" - BAG_BADGE_PLUS = "cupertino_bag_badge_plus" - BAG_FILL = "cupertino_bag_fill" - BAG_FILL_BADGE_MINUS = "cupertino_bag_fill_badge_minus" - BAG_FILL_BADGE_PLUS = "cupertino_bag_fill_badge_plus" - BANDAGE = "cupertino_bandage" - BANDAGE_FILL = "cupertino_bandage_fill" - BARCODE = "cupertino_barcode" - BARCODE_VIEWFINDER = "cupertino_barcode_viewfinder" - BARS = "cupertino_bars" - BATTERY_0 = "cupertino_battery_0" - BATTERY_100 = "cupertino_battery_100" - BATTERY_25 = "cupertino_battery_25" - BATTERY_25_PERCENT = "cupertino_battery_25_percent" - BATTERY_75_PERCENT = "cupertino_battery_75_percent" - BATTERY_CHARGING = "cupertino_battery_charging" - BATTERY_EMPTY = "cupertino_battery_empty" - BATTERY_FULL = "cupertino_battery_full" - BED_DOUBLE = "cupertino_bed_double" - BED_DOUBLE_FILL = "cupertino_bed_double_fill" - BELL = "cupertino_bell" - BELL_CIRCLE = "cupertino_bell_circle" - BELL_CIRCLE_FILL = "cupertino_bell_circle_fill" - BELL_FILL = "cupertino_bell_fill" - BELL_SLASH = "cupertino_bell_slash" - BELL_SLASH_FILL = "cupertino_bell_slash_fill" - BELL_SOLID = "cupertino_bell_solid" - BIN_XMARK = "cupertino_bin_xmark" - BIN_XMARK_FILL = "cupertino_bin_xmark_fill" - BITCOIN = "cupertino_bitcoin" - BITCOIN_CIRCLE = "cupertino_bitcoin_circle" - BITCOIN_CIRCLE_FILL = "cupertino_bitcoin_circle_fill" - BLUETOOTH = "cupertino_bluetooth" - BOLD = "cupertino_bold" - BOLD_ITALIC_UNDERLINE = "cupertino_bold_italic_underline" - BOLD_UNDERLINE = "cupertino_bold_underline" - BOLT = "cupertino_bolt" - BOLT_BADGE_A = "cupertino_bolt_badge_a" - BOLT_BADGE_A_FILL = "cupertino_bolt_badge_a_fill" - BOLT_CIRCLE = "cupertino_bolt_circle" - BOLT_CIRCLE_FILL = "cupertino_bolt_circle_fill" - BOLT_FILL = "cupertino_bolt_fill" - BOLT_HORIZONTAL = "cupertino_bolt_horizontal" - BOLT_HORIZONTAL_CIRCLE = "cupertino_bolt_horizontal_circle" - BOLT_HORIZONTAL_CIRCLE_FILL = "cupertino_bolt_horizontal_circle_fill" - BOLT_HORIZONTAL_FILL = "cupertino_bolt_horizontal_fill" - BOLT_SLASH = "cupertino_bolt_slash" - BOLT_SLASH_FILL = "cupertino_bolt_slash_fill" - BOOK = "cupertino_book" - BOOKMARK = "cupertino_bookmark" - BOOKMARK_FILL = "cupertino_bookmark_fill" - BOOKMARK_SOLID = "cupertino_bookmark_solid" - BOOK_CIRCLE = "cupertino_book_circle" - BOOK_CIRCLE_FILL = "cupertino_book_circle_fill" - BOOK_FILL = "cupertino_book_fill" - BOOK_SOLID = "cupertino_book_solid" - BRIEFCASE = "cupertino_briefcase" - BRIEFCASE_FILL = "cupertino_briefcase_fill" - BRIGHTNESS = "cupertino_brightness" - BRIGHTNESS_SOLID = "cupertino_brightness_solid" - BUBBLE_LEFT = "cupertino_bubble_left" - BUBBLE_LEFT_BUBBLE_RIGHT = "cupertino_bubble_left_bubble_right" - BUBBLE_LEFT_BUBBLE_RIGHT_FILL = "cupertino_bubble_left_bubble_right_fill" - BUBBLE_LEFT_FILL = "cupertino_bubble_left_fill" - BUBBLE_MIDDLE_BOTTOM = "cupertino_bubble_middle_bottom" - BUBBLE_MIDDLE_BOTTOM_FILL = "cupertino_bubble_middle_bottom_fill" - BUBBLE_MIDDLE_TOP = "cupertino_bubble_middle_top" - BUBBLE_MIDDLE_TOP_FILL = "cupertino_bubble_middle_top_fill" - BUBBLE_RIGHT = "cupertino_bubble_right" - BUBBLE_RIGHT_FILL = "cupertino_bubble_right_fill" - BUILDING_2_FILL = "cupertino_building_2_fill" - BURN = "cupertino_burn" - BURST = "cupertino_burst" - BURST_FILL = "cupertino_burst_fill" - BUS = "cupertino_bus" - CALENDAR = "cupertino_calendar" - CALENDAR_BADGE_MINUS = "cupertino_calendar_badge_minus" - CALENDAR_BADGE_PLUS = "cupertino_calendar_badge_plus" - CALENDAR_CIRCLE = "cupertino_calendar_circle" - CALENDAR_CIRCLE_FILL = "cupertino_calendar_circle_fill" - CALENDAR_TODAY = "cupertino_calendar_today" - CAMERA = "cupertino_camera" - CAMERA_CIRCLE = "cupertino_camera_circle" - CAMERA_CIRCLE_FILL = "cupertino_camera_circle_fill" - CAMERA_FILL = "cupertino_camera_fill" - CAMERA_ON_RECTANGLE = "cupertino_camera_on_rectangle" - CAMERA_ON_RECTANGLE_FILL = "cupertino_camera_on_rectangle_fill" - CAMERA_ROTATE = "cupertino_camera_rotate" - CAMERA_ROTATE_FILL = "cupertino_camera_rotate_fill" - CAMERA_VIEWFINDER = "cupertino_camera_viewfinder" - CAPSLOCK = "cupertino_capslock" - CAPSLOCK_FILL = "cupertino_capslock_fill" - CAPSULE = "cupertino_capsule" - CAPSULE_FILL = "cupertino_capsule_fill" - CAPTIONS_BUBBLE = "cupertino_captions_bubble" - CAPTIONS_BUBBLE_FILL = "cupertino_captions_bubble_fill" - CAR = "cupertino_car" - CART = "cupertino_cart" - CART_BADGE_MINUS = "cupertino_cart_badge_minus" - CART_BADGE_PLUS = "cupertino_cart_badge_plus" - CART_FILL = "cupertino_cart_fill" - CART_FILL_BADGE_MINUS = "cupertino_cart_fill_badge_minus" - CART_FILL_BADGE_PLUS = "cupertino_cart_fill_badge_plus" - CAR_DETAILED = "cupertino_car_detailed" - CAR_FILL = "cupertino_car_fill" - CHART_BAR = "cupertino_chart_bar" - CHART_BAR_ALT_FILL = "cupertino_chart_bar_alt_fill" - CHART_BAR_CIRCLE = "cupertino_chart_bar_circle" - CHART_BAR_CIRCLE_FILL = "cupertino_chart_bar_circle_fill" - CHART_BAR_FILL = "cupertino_chart_bar_fill" - CHART_BAR_SQUARE = "cupertino_chart_bar_square" - CHART_BAR_SQUARE_FILL = "cupertino_chart_bar_square_fill" - CHART_PIE = "cupertino_chart_pie" - CHART_PIE_FILL = "cupertino_chart_pie_fill" - CHAT_BUBBLE = "cupertino_chat_bubble" - CHAT_BUBBLE_2 = "cupertino_chat_bubble_2" - CHAT_BUBBLE_2_FILL = "cupertino_chat_bubble_2_fill" - CHAT_BUBBLE_FILL = "cupertino_chat_bubble_fill" - CHAT_BUBBLE_TEXT = "cupertino_chat_bubble_text" - CHAT_BUBBLE_TEXT_FILL = "cupertino_chat_bubble_text_fill" - CHECKMARK = "cupertino_checkmark" - CHECKMARK_ALT = "cupertino_checkmark_alt" - CHECKMARK_ALT_CIRCLE = "cupertino_checkmark_alt_circle" - CHECKMARK_ALT_CIRCLE_FILL = "cupertino_checkmark_alt_circle_fill" - CHECKMARK_CIRCLE = "cupertino_checkmark_circle" - CHECKMARK_CIRCLE_FILL = "cupertino_checkmark_circle_fill" - CHECKMARK_RECTANGLE = "cupertino_checkmark_rectangle" - CHECKMARK_RECTANGLE_FILL = "cupertino_checkmark_rectangle_fill" - CHECKMARK_SEAL = "cupertino_checkmark_seal" - CHECKMARK_SEAL_FILL = "cupertino_checkmark_seal_fill" - CHECKMARK_SHIELD = "cupertino_checkmark_shield" - CHECKMARK_SHIELD_FILL = "cupertino_checkmark_shield_fill" - CHECKMARK_SQUARE = "cupertino_checkmark_square" - CHECKMARK_SQUARE_FILL = "cupertino_checkmark_square_fill" - CHECK_MARK = "cupertino_check_mark" - CHECK_MARK_CIRCLED = "cupertino_check_mark_circled" - CHECK_MARK_CIRCLED_SOLID = "cupertino_check_mark_circled_solid" - CHEVRON_BACK = "cupertino_chevron_back" - CHEVRON_COMPACT_DOWN = "cupertino_chevron_compact_down" - CHEVRON_COMPACT_LEFT = "cupertino_chevron_compact_left" - CHEVRON_COMPACT_RIGHT = "cupertino_chevron_compact_right" - CHEVRON_COMPACT_UP = "cupertino_chevron_compact_up" - CHEVRON_DOWN = "cupertino_chevron_down" - CHEVRON_DOWN_CIRCLE = "cupertino_chevron_down_circle" - CHEVRON_DOWN_CIRCLE_FILL = "cupertino_chevron_down_circle_fill" - CHEVRON_DOWN_SQUARE = "cupertino_chevron_down_square" - CHEVRON_DOWN_SQUARE_FILL = "cupertino_chevron_down_square_fill" - CHEVRON_FORWARD = "cupertino_chevron_forward" - CHEVRON_LEFT = "cupertino_chevron_left" - CHEVRON_LEFT_2 = "cupertino_chevron_left_2" - CHEVRON_LEFT_CIRCLE = "cupertino_chevron_left_circle" - CHEVRON_LEFT_CIRCLE_FILL = "cupertino_chevron_left_circle_fill" - CHEVRON_LEFT_SLASH_CHEVRON_RIGHT = "cupertino_chevron_left_slash_chevron_right" - CHEVRON_LEFT_SQUARE = "cupertino_chevron_left_square" - CHEVRON_LEFT_SQUARE_FILL = "cupertino_chevron_left_square_fill" - CHEVRON_RIGHT = "cupertino_chevron_right" - CHEVRON_RIGHT_2 = "cupertino_chevron_right_2" - CHEVRON_RIGHT_CIRCLE = "cupertino_chevron_right_circle" - CHEVRON_RIGHT_CIRCLE_FILL = "cupertino_chevron_right_circle_fill" - CHEVRON_RIGHT_SQUARE = "cupertino_chevron_right_square" - CHEVRON_RIGHT_SQUARE_FILL = "cupertino_chevron_right_square_fill" - CHEVRON_UP = "cupertino_chevron_up" - CHEVRON_UP_CHEVRON_DOWN = "cupertino_chevron_up_chevron_down" - CHEVRON_UP_CIRCLE = "cupertino_chevron_up_circle" - CHEVRON_UP_CIRCLE_FILL = "cupertino_chevron_up_circle_fill" - CHEVRON_UP_SQUARE = "cupertino_chevron_up_square" - CHEVRON_UP_SQUARE_FILL = "cupertino_chevron_up_square_fill" - CIRCLE = "cupertino_circle" - CIRCLE_BOTTOMTHIRD_SPLIT = "cupertino_circle_bottomthird_split" - CIRCLE_FILL = "cupertino_circle_fill" - CIRCLE_FILLED = "cupertino_circle_filled" - CIRCLE_GRID_3X3 = "cupertino_circle_grid_3x3" - CIRCLE_GRID_3X3_FILL = "cupertino_circle_grid_3x3_fill" - CIRCLE_GRID_HEX = "cupertino_circle_grid_hex" - CIRCLE_GRID_HEX_FILL = "cupertino_circle_grid_hex_fill" - CIRCLE_LEFTHALF_FILL = "cupertino_circle_lefthalf_fill" - CIRCLE_RIGHTHALF_FILL = "cupertino_circle_righthalf_fill" - CLEAR = "cupertino_clear" - CLEAR_CIRCLED = "cupertino_clear_circled" - CLEAR_CIRCLED_SOLID = "cupertino_clear_circled_solid" - CLEAR_FILL = "cupertino_clear_fill" - CLEAR_THICK = "cupertino_clear_thick" - CLEAR_THICK_CIRCLED = "cupertino_clear_thick_circled" - CLOCK = "cupertino_clock" - CLOCK_FILL = "cupertino_clock_fill" - CLOCK_SOLID = "cupertino_clock_solid" - CLOUD = "cupertino_cloud" - CLOUD_BOLT = "cupertino_cloud_bolt" - CLOUD_BOLT_FILL = "cupertino_cloud_bolt_fill" - CLOUD_BOLT_RAIN = "cupertino_cloud_bolt_rain" - CLOUD_BOLT_RAIN_FILL = "cupertino_cloud_bolt_rain_fill" - CLOUD_DOWNLOAD = "cupertino_cloud_download" - CLOUD_DOWNLOAD_FILL = "cupertino_cloud_download_fill" - CLOUD_DRIZZLE = "cupertino_cloud_drizzle" - CLOUD_DRIZZLE_FILL = "cupertino_cloud_drizzle_fill" - CLOUD_FILL = "cupertino_cloud_fill" - CLOUD_FOG = "cupertino_cloud_fog" - CLOUD_FOG_FILL = "cupertino_cloud_fog_fill" - CLOUD_HAIL = "cupertino_cloud_hail" - CLOUD_HAIL_FILL = "cupertino_cloud_hail_fill" - CLOUD_HEAVYRAIN = "cupertino_cloud_heavyrain" - CLOUD_HEAVYRAIN_FILL = "cupertino_cloud_heavyrain_fill" - CLOUD_MOON = "cupertino_cloud_moon" - CLOUD_MOON_BOLT = "cupertino_cloud_moon_bolt" - CLOUD_MOON_BOLT_FILL = "cupertino_cloud_moon_bolt_fill" - CLOUD_MOON_FILL = "cupertino_cloud_moon_fill" - CLOUD_MOON_RAIN = "cupertino_cloud_moon_rain" - CLOUD_MOON_RAIN_FILL = "cupertino_cloud_moon_rain_fill" - CLOUD_RAIN = "cupertino_cloud_rain" - CLOUD_RAIN_FILL = "cupertino_cloud_rain_fill" - CLOUD_SLEET = "cupertino_cloud_sleet" - CLOUD_SLEET_FILL = "cupertino_cloud_sleet_fill" - CLOUD_SNOW = "cupertino_cloud_snow" - CLOUD_SNOW_FILL = "cupertino_cloud_snow_fill" - CLOUD_SUN = "cupertino_cloud_sun" - CLOUD_SUN_BOLT = "cupertino_cloud_sun_bolt" - CLOUD_SUN_BOLT_FILL = "cupertino_cloud_sun_bolt_fill" - CLOUD_SUN_FILL = "cupertino_cloud_sun_fill" - CLOUD_SUN_RAIN = "cupertino_cloud_sun_rain" - CLOUD_SUN_RAIN_FILL = "cupertino_cloud_sun_rain_fill" - CLOUD_UPLOAD = "cupertino_cloud_upload" - CLOUD_UPLOAD_FILL = "cupertino_cloud_upload_fill" - COLLECTIONS = "cupertino_collections" - COLLECTIONS_SOLID = "cupertino_collections_solid" - COLOR_FILTER = "cupertino_color_filter" - COLOR_FILTER_FILL = "cupertino_color_filter_fill" - COMMAND = "cupertino_command" - COMPASS = "cupertino_compass" - COMPASS_FILL = "cupertino_compass_fill" - CONTROL = "cupertino_control" - CONVERSATION_BUBBLE = "cupertino_conversation_bubble" - CREATE = "cupertino_create" - CREATE_SOLID = "cupertino_create_solid" - CREDITCARD = "cupertino_creditcard" - CREDITCARD_FILL = "cupertino_creditcard_fill" - CROP = "cupertino_crop" - CROP_ROTATE = "cupertino_crop_rotate" - CUBE = "cupertino_cube" - CUBE_BOX = "cupertino_cube_box" - CUBE_BOX_FILL = "cupertino_cube_box_fill" - CUBE_FILL = "cupertino_cube_fill" - CURSOR_RAYS = "cupertino_cursor_rays" - DECREASE_INDENT = "cupertino_decrease_indent" - DECREASE_QUOTELEVEL = "cupertino_decrease_quotelevel" - DELETE = "cupertino_delete" - DELETE_LEFT = "cupertino_delete_left" - DELETE_LEFT_FILL = "cupertino_delete_left_fill" - DELETE_RIGHT = "cupertino_delete_right" - DELETE_RIGHT_FILL = "cupertino_delete_right_fill" - DELETE_SIMPLE = "cupertino_delete_simple" - DELETE_SOLID = "cupertino_delete_solid" - DESKTOPCOMPUTER = "cupertino_desktopcomputer" - DEVICE_DESKTOP = "cupertino_device_desktop" - DEVICE_LAPTOP = "cupertino_device_laptop" - DEVICE_PHONE_LANDSCAPE = "cupertino_device_phone_landscape" - DEVICE_PHONE_PORTRAIT = "cupertino_device_phone_portrait" - DIAL = "cupertino_dial" - DIAL_FILL = "cupertino_dial_fill" - DIVIDE = "cupertino_divide" - DIVIDE_CIRCLE = "cupertino_divide_circle" - DIVIDE_CIRCLE_FILL = "cupertino_divide_circle_fill" - DIVIDE_SQUARE = "cupertino_divide_square" - DIVIDE_SQUARE_FILL = "cupertino_divide_square_fill" - DOC = "cupertino_doc" - DOC_APPEND = "cupertino_doc_append" - DOC_CHART = "cupertino_doc_chart" - DOC_CHART_FILL = "cupertino_doc_chart_fill" - DOC_CHECKMARK = "cupertino_doc_checkmark" - DOC_CHECKMARK_FILL = "cupertino_doc_checkmark_fill" - DOC_CIRCLE = "cupertino_doc_circle" - DOC_CIRCLE_FILL = "cupertino_doc_circle_fill" - DOC_FILL = "cupertino_doc_fill" - DOC_ON_CLIPBOARD = "cupertino_doc_on_clipboard" - DOC_ON_CLIPBOARD_FILL = "cupertino_doc_on_clipboard_fill" - DOC_ON_DOC = "cupertino_doc_on_doc" - DOC_ON_DOC_FILL = "cupertino_doc_on_doc_fill" - DOC_PERSON = "cupertino_doc_person" - DOC_PERSON_FILL = "cupertino_doc_person_fill" - DOC_PLAINTEXT = "cupertino_doc_plaintext" - DOC_RICHTEXT = "cupertino_doc_richtext" - DOC_TEXT = "cupertino_doc_text" - DOC_TEXT_FILL = "cupertino_doc_text_fill" - DOC_TEXT_SEARCH = "cupertino_doc_text_search" - DOC_TEXT_VIEWFINDER = "cupertino_doc_text_viewfinder" - DOT_RADIOWAVES_LEFT_RIGHT = "cupertino_dot_radiowaves_left_right" - DOT_RADIOWAVES_RIGHT = "cupertino_dot_radiowaves_right" - DOT_SQUARE = "cupertino_dot_square" - DOT_SQUARE_FILL = "cupertino_dot_square_fill" - DOUBLE_MUSIC_NOTE = "cupertino_double_music_note" - DOWNLOAD_CIRCLE = "cupertino_download_circle" - DOWNLOAD_CIRCLE_FILL = "cupertino_download_circle_fill" - DOWN_ARROW = "cupertino_down_arrow" - DROP = "cupertino_drop" - DROP_FILL = "cupertino_drop_fill" - DROP_TRIANGLE = "cupertino_drop_triangle" - DROP_TRIANGLE_FILL = "cupertino_drop_triangle_fill" - EAR = "cupertino_ear" - EJECT = "cupertino_eject" - EJECT_FILL = "cupertino_eject_fill" - ELLIPSES_BUBBLE = "cupertino_ellipses_bubble" - ELLIPSES_BUBBLE_FILL = "cupertino_ellipses_bubble_fill" - ELLIPSIS = "cupertino_ellipsis" - ELLIPSIS_CIRCLE = "cupertino_ellipsis_circle" - ELLIPSIS_CIRCLE_FILL = "cupertino_ellipsis_circle_fill" - ELLIPSIS_VERTICAL = "cupertino_ellipsis_vertical" - ELLIPSIS_VERTICAL_CIRCLE = "cupertino_ellipsis_vertical_circle" - ELLIPSIS_VERTICAL_CIRCLE_FILL = "cupertino_ellipsis_vertical_circle_fill" - ENVELOPE = "cupertino_envelope" - ENVELOPE_BADGE = "cupertino_envelope_badge" - ENVELOPE_BADGE_FILL = "cupertino_envelope_badge_fill" - ENVELOPE_CIRCLE = "cupertino_envelope_circle" - ENVELOPE_CIRCLE_FILL = "cupertino_envelope_circle_fill" - ENVELOPE_FILL = "cupertino_envelope_fill" - ENVELOPE_OPEN = "cupertino_envelope_open" - ENVELOPE_OPEN_FILL = "cupertino_envelope_open_fill" - EQUAL = "cupertino_equal" - EQUAL_CIRCLE = "cupertino_equal_circle" - EQUAL_CIRCLE_FILL = "cupertino_equal_circle_fill" - EQUAL_SQUARE = "cupertino_equal_square" - EQUAL_SQUARE_FILL = "cupertino_equal_square_fill" - ESCAPE = "cupertino_escape" - EXCLAMATIONMARK = "cupertino_exclamationmark" - EXCLAMATIONMARK_BUBBLE = "cupertino_exclamationmark_bubble" - EXCLAMATIONMARK_BUBBLE_FILL = "cupertino_exclamationmark_bubble_fill" - EXCLAMATIONMARK_CIRCLE = "cupertino_exclamationmark_circle" - EXCLAMATIONMARK_CIRCLE_FILL = "cupertino_exclamationmark_circle_fill" - EXCLAMATIONMARK_OCTAGON = "cupertino_exclamationmark_octagon" - EXCLAMATIONMARK_OCTAGON_FILL = "cupertino_exclamationmark_octagon_fill" - EXCLAMATIONMARK_SHIELD = "cupertino_exclamationmark_shield" - EXCLAMATIONMARK_SHIELD_FILL = "cupertino_exclamationmark_shield_fill" - EXCLAMATIONMARK_SQUARE = "cupertino_exclamationmark_square" - EXCLAMATIONMARK_SQUARE_FILL = "cupertino_exclamationmark_square_fill" - EXCLAMATIONMARK_TRIANGLE = "cupertino_exclamationmark_triangle" - EXCLAMATIONMARK_TRIANGLE_FILL = "cupertino_exclamationmark_triangle_fill" - EYE = "cupertino_eye" - EYEDROPPER = "cupertino_eyedropper" - EYEDROPPER_FULL = "cupertino_eyedropper_full" - EYEDROPPER_HALFFULL = "cupertino_eyedropper_halffull" - EYEGLASSES = "cupertino_eyeglasses" - EYE_FILL = "cupertino_eye_fill" - EYE_SLASH = "cupertino_eye_slash" - EYE_SLASH_FILL = "cupertino_eye_slash_fill" - EYE_SOLID = "cupertino_eye_solid" - FILM = "cupertino_film" - FILM_FILL = "cupertino_film_fill" - FLAG = "cupertino_flag" - FLAG_CIRCLE = "cupertino_flag_circle" - FLAG_CIRCLE_FILL = "cupertino_flag_circle_fill" - FLAG_FILL = "cupertino_flag_fill" - FLAG_SLASH = "cupertino_flag_slash" - FLAG_SLASH_FILL = "cupertino_flag_slash_fill" - FLAME = "cupertino_flame" - FLAME_FILL = "cupertino_flame_fill" - FLOPPY_DISK = "cupertino_floppy_disk" - FLOWCHART = "cupertino_flowchart" - FLOWCHART_FILL = "cupertino_flowchart_fill" - FOLDER = "cupertino_folder" - FOLDER_BADGE_MINUS = "cupertino_folder_badge_minus" - FOLDER_BADGE_PERSON_CROP = "cupertino_folder_badge_person_crop" - FOLDER_BADGE_PLUS = "cupertino_folder_badge_plus" - FOLDER_CIRCLE = "cupertino_folder_circle" - FOLDER_CIRCLE_FILL = "cupertino_folder_circle_fill" - FOLDER_FILL = "cupertino_folder_fill" - FOLDER_FILL_BADGE_MINUS = "cupertino_folder_fill_badge_minus" - FOLDER_FILL_BADGE_PERSON_CROP = "cupertino_folder_fill_badge_person_crop" - FOLDER_FILL_BADGE_PLUS = "cupertino_folder_fill_badge_plus" - FOLDER_OPEN = "cupertino_folder_open" - FOLDER_SOLID = "cupertino_folder_solid" - FORWARD = "cupertino_forward" - FORWARD_END = "cupertino_forward_end" - FORWARD_END_ALT = "cupertino_forward_end_alt" - FORWARD_END_ALT_FILL = "cupertino_forward_end_alt_fill" - FORWARD_END_FILL = "cupertino_forward_end_fill" - FORWARD_FILL = "cupertino_forward_fill" - FULLSCREEN = "cupertino_fullscreen" - FULLSCREEN_EXIT = "cupertino_fullscreen_exit" - FUNCTION = "cupertino_function" - FX = "cupertino_fx" - F_CURSIVE = "cupertino_f_cursive" - F_CURSIVE_CIRCLE = "cupertino_f_cursive_circle" - F_CURSIVE_CIRCLE_FILL = "cupertino_f_cursive_circle_fill" - GAMECONTROLLER = "cupertino_gamecontroller" - GAMECONTROLLER_ALT_FILL = "cupertino_gamecontroller_alt_fill" - GAMECONTROLLER_FILL = "cupertino_gamecontroller_fill" - GAME_CONTROLLER = "cupertino_game_controller" - GAME_CONTROLLER_SOLID = "cupertino_game_controller_solid" - GAUGE = "cupertino_gauge" - GAUGE_BADGE_MINUS = "cupertino_gauge_badge_minus" - GAUGE_BADGE_PLUS = "cupertino_gauge_badge_plus" - GEAR = "cupertino_gear" - GEAR_ALT = "cupertino_gear_alt" - GEAR_ALT_FILL = "cupertino_gear_alt_fill" - GEAR_BIG = "cupertino_gear_big" - GEAR_SOLID = "cupertino_gear_solid" - GIFT = "cupertino_gift" - GIFT_ALT = "cupertino_gift_alt" - GIFT_ALT_FILL = "cupertino_gift_alt_fill" - GIFT_FILL = "cupertino_gift_fill" - GLOBE = "cupertino_globe" - GOBACKWARD = "cupertino_gobackward" - GOBACKWARD_10 = "cupertino_gobackward_10" - GOBACKWARD_15 = "cupertino_gobackward_15" - GOBACKWARD_30 = "cupertino_gobackward_30" - GOBACKWARD_45 = "cupertino_gobackward_45" - GOBACKWARD_60 = "cupertino_gobackward_60" - GOBACKWARD_75 = "cupertino_gobackward_75" - GOBACKWARD_90 = "cupertino_gobackward_90" - GOBACKWARD_MINUS = "cupertino_gobackward_minus" - GOFORWARD = "cupertino_goforward" - GOFORWARD_10 = "cupertino_goforward_10" - GOFORWARD_15 = "cupertino_goforward_15" - GOFORWARD_30 = "cupertino_goforward_30" - GOFORWARD_45 = "cupertino_goforward_45" - GOFORWARD_60 = "cupertino_goforward_60" - GOFORWARD_75 = "cupertino_goforward_75" - GOFORWARD_90 = "cupertino_goforward_90" - GOFORWARD_PLUS = "cupertino_goforward_plus" - GRAPH_CIRCLE = "cupertino_graph_circle" - GRAPH_CIRCLE_FILL = "cupertino_graph_circle_fill" - GRAPH_SQUARE = "cupertino_graph_square" - GRAPH_SQUARE_FILL = "cupertino_graph_square_fill" - GREATERTHAN = "cupertino_greaterthan" - GREATERTHAN_CIRCLE = "cupertino_greaterthan_circle" - GREATERTHAN_CIRCLE_FILL = "cupertino_greaterthan_circle_fill" - GREATERTHAN_SQUARE = "cupertino_greaterthan_square" - GREATERTHAN_SQUARE_FILL = "cupertino_greaterthan_square_fill" - GRID = "cupertino_grid" - GRID_CIRCLE = "cupertino_grid_circle" - GRID_CIRCLE_FILL = "cupertino_grid_circle_fill" - GROUP = "cupertino_group" - GROUP_SOLID = "cupertino_group_solid" - GUITARS = "cupertino_guitars" - HAMMER = "cupertino_hammer" - HAMMER_FILL = "cupertino_hammer_fill" - HAND_DRAW = "cupertino_hand_draw" - HAND_DRAW_FILL = "cupertino_hand_draw_fill" - HAND_POINT_LEFT = "cupertino_hand_point_left" - HAND_POINT_LEFT_FILL = "cupertino_hand_point_left_fill" - HAND_POINT_RIGHT = "cupertino_hand_point_right" - HAND_POINT_RIGHT_FILL = "cupertino_hand_point_right_fill" - HAND_RAISED = "cupertino_hand_raised" - HAND_RAISED_FILL = "cupertino_hand_raised_fill" - HAND_RAISED_SLASH = "cupertino_hand_raised_slash" - HAND_RAISED_SLASH_FILL = "cupertino_hand_raised_slash_fill" - HAND_THUMBSDOWN = "cupertino_hand_thumbsdown" - HAND_THUMBSDOWN_FILL = "cupertino_hand_thumbsdown_fill" - HAND_THUMBSUP = "cupertino_hand_thumbsup" - HAND_THUMBSUP_FILL = "cupertino_hand_thumbsup_fill" - HARE = "cupertino_hare" - HARE_FILL = "cupertino_hare_fill" - HEADPHONES = "cupertino_headphones" - HEART = "cupertino_heart" - HEART_CIRCLE = "cupertino_heart_circle" - HEART_CIRCLE_FILL = "cupertino_heart_circle_fill" - HEART_FILL = "cupertino_heart_fill" - HEART_SLASH = "cupertino_heart_slash" - HEART_SLASH_CIRCLE = "cupertino_heart_slash_circle" - HEART_SLASH_CIRCLE_FILL = "cupertino_heart_slash_circle_fill" - HEART_SLASH_FILL = "cupertino_heart_slash_fill" - HEART_SOLID = "cupertino_heart_solid" - HELM = "cupertino_helm" - HEXAGON = "cupertino_hexagon" - HEXAGON_FILL = "cupertino_hexagon_fill" - HIFISPEAKER = "cupertino_hifispeaker" - HIFISPEAKER_FILL = "cupertino_hifispeaker_fill" - HOME = "cupertino_home" - HOURGLASS = "cupertino_hourglass" - HOURGLASS_BOTTOMHALF_FILL = "cupertino_hourglass_bottomhalf_fill" - HOURGLASS_TOPHALF_FILL = "cupertino_hourglass_tophalf_fill" - HOUSE = "cupertino_house" - HOUSE_ALT = "cupertino_house_alt" - HOUSE_ALT_FILL = "cupertino_house_alt_fill" - HOUSE_FILL = "cupertino_house_fill" - HURRICANE = "cupertino_hurricane" - INCREASE_INDENT = "cupertino_increase_indent" - INCREASE_QUOTELEVEL = "cupertino_increase_quotelevel" - INFINITE = "cupertino_infinite" - INFO = "cupertino_info" - INFO_CIRCLE = "cupertino_info_circle" - INFO_CIRCLE_FILL = "cupertino_info_circle_fill" - ITALIC = "cupertino_italic" - KEYBOARD = "cupertino_keyboard" - KEYBOARD_CHEVRON_COMPACT_DOWN = "cupertino_keyboard_chevron_compact_down" - LAB_FLASK = "cupertino_lab_flask" - LAB_FLASK_SOLID = "cupertino_lab_flask_solid" - LARGECIRCLE_FILL_CIRCLE = "cupertino_largecircle_fill_circle" - LASSO = "cupertino_lasso" - LAYERS = "cupertino_layers" - LAYERS_ALT = "cupertino_layers_alt" - LAYERS_ALT_FILL = "cupertino_layers_alt_fill" - LAYERS_FILL = "cupertino_layers_fill" - LEAF_ARROW_CIRCLEPATH = "cupertino_leaf_arrow_circlepath" - LEFT_CHEVRON = "cupertino_left_chevron" - LESSTHAN = "cupertino_lessthan" - LESSTHAN_CIRCLE = "cupertino_lessthan_circle" - LESSTHAN_CIRCLE_FILL = "cupertino_lessthan_circle_fill" - LESSTHAN_SQUARE = "cupertino_lessthan_square" - LESSTHAN_SQUARE_FILL = "cupertino_lessthan_square_fill" - LIGHTBULB = "cupertino_lightbulb" - LIGHTBULB_FILL = "cupertino_lightbulb_fill" - LIGHTBULB_SLASH = "cupertino_lightbulb_slash" - LIGHTBULB_SLASH_FILL = "cupertino_lightbulb_slash_fill" - LIGHT_MAX = "cupertino_light_max" - LIGHT_MIN = "cupertino_light_min" - LINE_HORIZONTAL_3 = "cupertino_line_horizontal_3" - LINE_HORIZONTAL_3_DECREASE = "cupertino_line_horizontal_3_decrease" - LINE_HORIZONTAL_3_DECREASE_CIRCLE = "cupertino_line_horizontal_3_decrease_circle" - LINE_HORIZONTAL_3_DECREASE_CIRCLE_FILL = ( - "cupertino_line_horizontal_3_decrease_circle_fill" - ) - LINK = "cupertino_link" - LINK_CIRCLE = "cupertino_link_circle" - LINK_CIRCLE_FILL = "cupertino_link_circle_fill" - LIST_BULLET = "cupertino_list_bullet" - LIST_BULLET_BELOW_RECTANGLE = "cupertino_list_bullet_below_rectangle" - LIST_BULLET_INDENT = "cupertino_list_bullet_indent" - LIST_DASH = "cupertino_list_dash" - LIST_NUMBER = "cupertino_list_number" - LIST_NUMBER_RTL = "cupertino_list_number_rtl" - LOCATION = "cupertino_location" - LOCATION_CIRCLE = "cupertino_location_circle" - LOCATION_CIRCLE_FILL = "cupertino_location_circle_fill" - LOCATION_FILL = "cupertino_location_fill" - LOCATION_NORTH = "cupertino_location_north" - LOCATION_NORTH_FILL = "cupertino_location_north_fill" - LOCATION_NORTH_LINE = "cupertino_location_north_line" - LOCATION_NORTH_LINE_FILL = "cupertino_location_north_line_fill" - LOCATION_SLASH = "cupertino_location_slash" - LOCATION_SLASH_FILL = "cupertino_location_slash_fill" - LOCATION_SOLID = "cupertino_location_solid" - LOCK = "cupertino_lock" - LOCK_CIRCLE = "cupertino_lock_circle" - LOCK_CIRCLE_FILL = "cupertino_lock_circle_fill" - LOCK_FILL = "cupertino_lock_fill" - LOCK_OPEN = "cupertino_lock_open" - LOCK_OPEN_FILL = "cupertino_lock_open_fill" - LOCK_ROTATION = "cupertino_lock_rotation" - LOCK_ROTATION_OPEN = "cupertino_lock_rotation_open" - LOCK_SHIELD = "cupertino_lock_shield" - LOCK_SHIELD_FILL = "cupertino_lock_shield_fill" - LOCK_SLASH = "cupertino_lock_slash" - LOCK_SLASH_FILL = "cupertino_lock_slash_fill" - LOOP = "cupertino_loop" - LOOP_THICK = "cupertino_loop_thick" - MACWINDOW = "cupertino_macwindow" - MAIL = "cupertino_mail" - MAIL_SOLID = "cupertino_mail_solid" - MAP = "cupertino_map" - MAP_FILL = "cupertino_map_fill" - MAP_PIN = "cupertino_map_pin" - MAP_PIN_ELLIPSE = "cupertino_map_pin_ellipse" - MAP_PIN_SLASH = "cupertino_map_pin_slash" - MEMORIES = "cupertino_memories" - MEMORIES_BADGE_MINUS = "cupertino_memories_badge_minus" - MEMORIES_BADGE_PLUS = "cupertino_memories_badge_plus" - METRONOME = "cupertino_metronome" - MIC = "cupertino_mic" - MIC_CIRCLE = "cupertino_mic_circle" - MIC_CIRCLE_FILL = "cupertino_mic_circle_fill" - MIC_FILL = "cupertino_mic_fill" - MIC_OFF = "cupertino_mic_off" - MIC_SLASH = "cupertino_mic_slash" - MIC_SLASH_FILL = "cupertino_mic_slash_fill" - MIC_SOLID = "cupertino_mic_solid" - MINUS = "cupertino_minus" - MINUS_CIRCLE = "cupertino_minus_circle" - MINUS_CIRCLED = "cupertino_minus_circled" - MINUS_CIRCLE_FILL = "cupertino_minus_circle_fill" - MINUS_RECTANGLE = "cupertino_minus_rectangle" - MINUS_RECTANGLE_FILL = "cupertino_minus_rectangle_fill" - MINUS_SLASH_PLUS = "cupertino_minus_slash_plus" - MINUS_SQUARE = "cupertino_minus_square" - MINUS_SQUARE_FILL = "cupertino_minus_square_fill" - MONEY_DOLLAR = "cupertino_money_dollar" - MONEY_DOLLAR_CIRCLE = "cupertino_money_dollar_circle" - MONEY_DOLLAR_CIRCLE_FILL = "cupertino_money_dollar_circle_fill" - MONEY_EURO = "cupertino_money_euro" - MONEY_EURO_CIRCLE = "cupertino_money_euro_circle" - MONEY_EURO_CIRCLE_FILL = "cupertino_money_euro_circle_fill" - MONEY_POUND = "cupertino_money_pound" - MONEY_POUND_CIRCLE = "cupertino_money_pound_circle" - MONEY_POUND_CIRCLE_FILL = "cupertino_money_pound_circle_fill" - MONEY_RUBL = "cupertino_money_rubl" - MONEY_RUBL_CIRCLE = "cupertino_money_rubl_circle" - MONEY_RUBL_CIRCLE_FILL = "cupertino_money_rubl_circle_fill" - MONEY_YEN = "cupertino_money_yen" - MONEY_YEN_CIRCLE = "cupertino_money_yen_circle" - MONEY_YEN_CIRCLE_FILL = "cupertino_money_yen_circle_fill" - MOON = "cupertino_moon" - MOON_CIRCLE = "cupertino_moon_circle" - MOON_CIRCLE_FILL = "cupertino_moon_circle_fill" - MOON_FILL = "cupertino_moon_fill" - MOON_STARS = "cupertino_moon_stars" - MOON_STARS_FILL = "cupertino_moon_stars_fill" - MOON_ZZZ = "cupertino_moon_zzz" - MOON_ZZZ_FILL = "cupertino_moon_zzz_fill" - MOVE = "cupertino_move" - MULTIPLY = "cupertino_multiply" - MULTIPLY_CIRCLE = "cupertino_multiply_circle" - MULTIPLY_CIRCLE_FILL = "cupertino_multiply_circle_fill" - MULTIPLY_SQUARE = "cupertino_multiply_square" - MULTIPLY_SQUARE_FILL = "cupertino_multiply_square_fill" - MUSIC_ALBUMS = "cupertino_music_albums" - MUSIC_ALBUMS_FILL = "cupertino_music_albums_fill" - MUSIC_HOUSE = "cupertino_music_house" - MUSIC_HOUSE_FILL = "cupertino_music_house_fill" - MUSIC_MIC = "cupertino_music_mic" - MUSIC_NOTE = "cupertino_music_note" - MUSIC_NOTE_2 = "cupertino_music_note_2" - MUSIC_NOTE_LIST = "cupertino_music_note_list" - NEWS = "cupertino_news" - NEWS_SOLID = "cupertino_news_solid" - NOSIGN = "cupertino_nosign" - NUMBER = "cupertino_number" - NUMBER_CIRCLE = "cupertino_number_circle" - NUMBER_CIRCLE_FILL = "cupertino_number_circle_fill" - NUMBER_SQUARE = "cupertino_number_square" - NUMBER_SQUARE_FILL = "cupertino_number_square_fill" - OPTION = "cupertino_option" - PADLOCK = "cupertino_padlock" - PADLOCK_SOLID = "cupertino_padlock_solid" - PAINTBRUSH = "cupertino_paintbrush" - PAINTBRUSH_FILL = "cupertino_paintbrush_fill" - PANO = "cupertino_pano" - PANO_FILL = "cupertino_pano_fill" - PAPERCLIP = "cupertino_paperclip" - PAPERPLANE = "cupertino_paperplane" - PAPERPLANE_FILL = "cupertino_paperplane_fill" - PARAGRAPH = "cupertino_paragraph" - PAUSE = "cupertino_pause" - PAUSE_CIRCLE = "cupertino_pause_circle" - PAUSE_CIRCLE_FILL = "cupertino_pause_circle_fill" - PAUSE_FILL = "cupertino_pause_fill" - PAUSE_RECTANGLE = "cupertino_pause_rectangle" - PAUSE_RECTANGLE_FILL = "cupertino_pause_rectangle_fill" - PAUSE_SOLID = "cupertino_pause_solid" - PAW = "cupertino_paw" - PAW_SOLID = "cupertino_paw_solid" - PEN = "cupertino_pen" - PENCIL = "cupertino_pencil" - PENCIL_CIRCLE = "cupertino_pencil_circle" - PENCIL_CIRCLE_FILL = "cupertino_pencil_circle_fill" - PENCIL_ELLIPSIS_RECTANGLE = "cupertino_pencil_ellipsis_rectangle" - PENCIL_OUTLINE = "cupertino_pencil_outline" - PENCIL_SLASH = "cupertino_pencil_slash" - PERCENT = "cupertino_percent" - PERSON = "cupertino_person" - PERSONALHOTSPOT = "cupertino_personalhotspot" - PERSON_2 = "cupertino_person_2" - PERSON_2_ALT = "cupertino_person_2_alt" - PERSON_2_FILL = "cupertino_person_2_fill" - PERSON_2_SQUARE_STACK = "cupertino_person_2_square_stack" - PERSON_2_SQUARE_STACK_FILL = "cupertino_person_2_square_stack_fill" - PERSON_3 = "cupertino_person_3" - PERSON_3_FILL = "cupertino_person_3_fill" - PERSON_ADD = "cupertino_person_add" - PERSON_ADD_SOLID = "cupertino_person_add_solid" - PERSON_ALT = "cupertino_person_alt" - PERSON_ALT_CIRCLE = "cupertino_person_alt_circle" - PERSON_ALT_CIRCLE_FILL = "cupertino_person_alt_circle_fill" - PERSON_BADGE_MINUS = "cupertino_person_badge_minus" - PERSON_BADGE_MINUS_FILL = "cupertino_person_badge_minus_fill" - PERSON_BADGE_PLUS = "cupertino_person_badge_plus" - PERSON_BADGE_PLUS_FILL = "cupertino_person_badge_plus_fill" - PERSON_CIRCLE = "cupertino_person_circle" - PERSON_CIRCLE_FILL = "cupertino_person_circle_fill" - PERSON_CROP_CIRCLE = "cupertino_person_crop_circle" - PERSON_CROP_CIRCLE_BADGE_CHECKMARK = "cupertino_person_crop_circle_badge_checkmark" - PERSON_CROP_CIRCLE_BADGE_EXCLAM = "cupertino_person_crop_circle_badge_exclam" - PERSON_CROP_CIRCLE_BADGE_MINUS = "cupertino_person_crop_circle_badge_minus" - PERSON_CROP_CIRCLE_BADGE_PLUS = "cupertino_person_crop_circle_badge_plus" - PERSON_CROP_CIRCLE_BADGE_XMARK = "cupertino_person_crop_circle_badge_xmark" - PERSON_CROP_CIRCLE_FILL = "cupertino_person_crop_circle_fill" - PERSON_CROP_CIRCLE_FILL_BADGE_CHECKMARK = ( - "cupertino_person_crop_circle_fill_badge_checkmark" - ) - PERSON_CROP_CIRCLE_FILL_BADGE_EXCLAM = ( - "cupertino_person_crop_circle_fill_badge_exclam" - ) - PERSON_CROP_CIRCLE_FILL_BADGE_MINUS = ( - "cupertino_person_crop_circle_fill_badge_minus" - ) - PERSON_CROP_CIRCLE_FILL_BADGE_PLUS = "cupertino_person_crop_circle_fill_badge_plus" - PERSON_CROP_CIRCLE_FILL_BADGE_XMARK = ( - "cupertino_person_crop_circle_fill_badge_xmark" - ) - PERSON_CROP_RECTANGLE = "cupertino_person_crop_rectangle" - PERSON_CROP_RECTANGLE_FILL = "cupertino_person_crop_rectangle_fill" - PERSON_CROP_SQUARE = "cupertino_person_crop_square" - PERSON_CROP_SQUARE_FILL = "cupertino_person_crop_square_fill" - PERSON_FILL = "cupertino_person_fill" - PERSON_SOLID = "cupertino_person_solid" - PERSPECTIVE = "cupertino_perspective" - PHONE = "cupertino_phone" - PHONE_ARROW_DOWN_LEFT = "cupertino_phone_arrow_down_left" - PHONE_ARROW_RIGHT = "cupertino_phone_arrow_right" - PHONE_ARROW_UP_RIGHT = "cupertino_phone_arrow_up_right" - PHONE_BADGE_PLUS = "cupertino_phone_badge_plus" - PHONE_CIRCLE = "cupertino_phone_circle" - PHONE_CIRCLE_FILL = "cupertino_phone_circle_fill" - PHONE_DOWN = "cupertino_phone_down" - PHONE_DOWN_CIRCLE = "cupertino_phone_down_circle" - PHONE_DOWN_CIRCLE_FILL = "cupertino_phone_down_circle_fill" - PHONE_DOWN_FILL = "cupertino_phone_down_fill" - PHONE_FILL = "cupertino_phone_fill" - PHONE_FILL_ARROW_DOWN_LEFT = "cupertino_phone_fill_arrow_down_left" - PHONE_FILL_ARROW_RIGHT = "cupertino_phone_fill_arrow_right" - PHONE_FILL_ARROW_UP_RIGHT = "cupertino_phone_fill_arrow_up_right" - PHONE_FILL_BADGE_PLUS = "cupertino_phone_fill_badge_plus" - PHONE_SOLID = "cupertino_phone_solid" - PHOTO = "cupertino_photo" - PHOTO_CAMERA = "cupertino_photo_camera" - PHOTO_CAMERA_SOLID = "cupertino_photo_camera_solid" - PHOTO_FILL = "cupertino_photo_fill" - PHOTO_FILL_ON_RECTANGLE_FILL = "cupertino_photo_fill_on_rectangle_fill" - PHOTO_ON_RECTANGLE = "cupertino_photo_on_rectangle" - PIANO = "cupertino_piano" - PIN = "cupertino_pin" - PIN_FILL = "cupertino_pin_fill" - PIN_SLASH = "cupertino_pin_slash" - PIN_SLASH_FILL = "cupertino_pin_slash_fill" - PLACEMARK = "cupertino_placemark" - PLACEMARK_FILL = "cupertino_placemark_fill" - PLAY = "cupertino_play" - PLAYPAUSE = "cupertino_playpause" - PLAYPAUSE_FILL = "cupertino_playpause_fill" - PLAY_ARROW = "cupertino_play_arrow" - PLAY_ARROW_SOLID = "cupertino_play_arrow_solid" - PLAY_CIRCLE = "cupertino_play_circle" - PLAY_CIRCLE_FILL = "cupertino_play_circle_fill" - PLAY_FILL = "cupertino_play_fill" - PLAY_RECTANGLE = "cupertino_play_rectangle" - PLAY_RECTANGLE_FILL = "cupertino_play_rectangle_fill" - PLUS = "cupertino_plus" - PLUSMINUS = "cupertino_plusminus" - PLUSMINUS_CIRCLE = "cupertino_plusminus_circle" - PLUSMINUS_CIRCLE_FILL = "cupertino_plusminus_circle_fill" - PLUS_APP = "cupertino_plus_app" - PLUS_APP_FILL = "cupertino_plus_app_fill" - PLUS_BUBBLE = "cupertino_plus_bubble" - PLUS_BUBBLE_FILL = "cupertino_plus_bubble_fill" - PLUS_CIRCLE = "cupertino_plus_circle" - PLUS_CIRCLED = "cupertino_plus_circled" - PLUS_CIRCLE_FILL = "cupertino_plus_circle_fill" - PLUS_RECTANGLE = "cupertino_plus_rectangle" - PLUS_RECTANGLE_FILL = "cupertino_plus_rectangle_fill" - PLUS_RECTANGLE_FILL_ON_RECTANGLE_FILL = ( - "cupertino_plus_rectangle_fill_on_rectangle_fill" - ) - PLUS_RECTANGLE_ON_RECTANGLE = "cupertino_plus_rectangle_on_rectangle" - PLUS_SLASH_MINUS = "cupertino_plus_slash_minus" - PLUS_SQUARE = "cupertino_plus_square" - PLUS_SQUARE_FILL = "cupertino_plus_square_fill" - PLUS_SQUARE_FILL_ON_SQUARE_FILL = "cupertino_plus_square_fill_on_square_fill" - PLUS_SQUARE_ON_SQUARE = "cupertino_plus_square_on_square" - POWER = "cupertino_power" - PRINTER = "cupertino_printer" - PRINTER_FILL = "cupertino_printer_fill" - PROFILE_CIRCLED = "cupertino_profile_circled" - PROJECTIVE = "cupertino_projective" - PURCHASED = "cupertino_purchased" - PURCHASED_CIRCLE = "cupertino_purchased_circle" - PURCHASED_CIRCLE_FILL = "cupertino_purchased_circle_fill" - QRCODE = "cupertino_qrcode" - QRCODE_VIEWFINDER = "cupertino_qrcode_viewfinder" - QUESTION = "cupertino_question" - QUESTION_CIRCLE = "cupertino_question_circle" - QUESTION_CIRCLE_FILL = "cupertino_question_circle_fill" - QUESTION_DIAMOND = "cupertino_question_diamond" - QUESTION_DIAMOND_FILL = "cupertino_question_diamond_fill" - QUESTION_SQUARE = "cupertino_question_square" - QUESTION_SQUARE_FILL = "cupertino_question_square_fill" - QUOTE_BUBBLE = "cupertino_quote_bubble" - QUOTE_BUBBLE_FILL = "cupertino_quote_bubble_fill" - RADIOWAVES_LEFT = "cupertino_radiowaves_left" - RADIOWAVES_RIGHT = "cupertino_radiowaves_right" - RAYS = "cupertino_rays" - RECORDINGTAPE = "cupertino_recordingtape" - RECTANGLE = "cupertino_rectangle" - RECTANGLE_3_OFFGRID = "cupertino_rectangle_3_offgrid" - RECTANGLE_3_OFFGRID_FILL = "cupertino_rectangle_3_offgrid_fill" - RECTANGLE_ARROW_UP_RIGHT_ARROW_DOWN_LEFT = ( - "cupertino_rectangle_arrow_up_right_arrow_down_left" - ) - RECTANGLE_ARROW_UP_RIGHT_ARROW_DOWN_LEFT_SLASH = ( - "cupertino_rectangle_arrow_up_right_arrow_down_left_slash" - ) - RECTANGLE_BADGE_CHECKMARK = "cupertino_rectangle_badge_checkmark" - RECTANGLE_BADGE_XMARK = "cupertino_rectangle_badge_xmark" - RECTANGLE_COMPRESS_VERTICAL = "cupertino_rectangle_compress_vertical" - RECTANGLE_DOCK = "cupertino_rectangle_dock" - RECTANGLE_EXPAND_VERTICAL = "cupertino_rectangle_expand_vertical" - RECTANGLE_FILL = "cupertino_rectangle_fill" - RECTANGLE_FILL_BADGE_CHECKMARK = "cupertino_rectangle_fill_badge_checkmark" - RECTANGLE_FILL_BADGE_XMARK = "cupertino_rectangle_fill_badge_xmark" - RECTANGLE_FILL_ON_RECTANGLE_ANGLED_FILL = ( - "cupertino_rectangle_fill_on_rectangle_angled_fill" - ) - RECTANGLE_FILL_ON_RECTANGLE_FILL = "cupertino_rectangle_fill_on_rectangle_fill" - RECTANGLE_GRID_1X2 = "cupertino_rectangle_grid_1x2" - RECTANGLE_GRID_1X2_FILL = "cupertino_rectangle_grid_1x2_fill" - RECTANGLE_GRID_2X2 = "cupertino_rectangle_grid_2x2" - RECTANGLE_GRID_2X2_FILL = "cupertino_rectangle_grid_2x2_fill" - RECTANGLE_GRID_3X2 = "cupertino_rectangle_grid_3x2" - RECTANGLE_GRID_3X2_FILL = "cupertino_rectangle_grid_3x2_fill" - RECTANGLE_ON_RECTANGLE = "cupertino_rectangle_on_rectangle" - RECTANGLE_ON_RECTANGLE_ANGLED = "cupertino_rectangle_on_rectangle_angled" - RECTANGLE_PAPERCLIP = "cupertino_rectangle_paperclip" - RECTANGLE_SPLIT_3X1 = "cupertino_rectangle_split_3x1" - RECTANGLE_SPLIT_3X1_FILL = "cupertino_rectangle_split_3x1_fill" - RECTANGLE_SPLIT_3X3 = "cupertino_rectangle_split_3x3" - RECTANGLE_SPLIT_3X3_FILL = "cupertino_rectangle_split_3x3_fill" - RECTANGLE_STACK = "cupertino_rectangle_stack" - RECTANGLE_STACK_BADGE_MINUS = "cupertino_rectangle_stack_badge_minus" - RECTANGLE_STACK_BADGE_PERSON_CROP = "cupertino_rectangle_stack_badge_person_crop" - RECTANGLE_STACK_BADGE_PLUS = "cupertino_rectangle_stack_badge_plus" - RECTANGLE_STACK_FILL = "cupertino_rectangle_stack_fill" - RECTANGLE_STACK_FILL_BADGE_MINUS = "cupertino_rectangle_stack_fill_badge_minus" - RECTANGLE_STACK_FILL_BADGE_PERSON_CROP = ( - "cupertino_rectangle_stack_fill_badge_person_crop" - ) - RECTANGLE_STACK_FILL_BADGE_PLUS = "cupertino_rectangle_stack_fill_badge_plus" - RECTANGLE_STACK_PERSON_CROP = "cupertino_rectangle_stack_person_crop" - RECTANGLE_STACK_PERSON_CROP_FILL = "cupertino_rectangle_stack_person_crop_fill" - REFRESH = "cupertino_refresh" - REFRESH_BOLD = "cupertino_refresh_bold" - REFRESH_CIRCLED = "cupertino_refresh_circled" - REFRESH_CIRCLED_SOLID = "cupertino_refresh_circled_solid" - REFRESH_THICK = "cupertino_refresh_thick" - REFRESH_THIN = "cupertino_refresh_thin" - REPEAT = "cupertino_repeat" - REPEAT_1 = "cupertino_repeat_1" - REPLY = "cupertino_reply" - REPLY_ALL = "cupertino_reply_all" - REPLY_THICK_SOLID = "cupertino_reply_thick_solid" - RESIZE = "cupertino_resize" - RESIZE_H = "cupertino_resize_h" - RESIZE_V = "cupertino_resize_v" - RESTART = "cupertino_restart" - RETURN_ICON = "cupertino_return_icon" - RHOMBUS = "cupertino_rhombus" - RHOMBUS_FILL = "cupertino_rhombus_fill" - RIGHT_CHEVRON = "cupertino_right_chevron" - ROCKET = "cupertino_rocket" - ROCKET_FILL = "cupertino_rocket_fill" - ROSETTE = "cupertino_rosette" - ROTATE_LEFT = "cupertino_rotate_left" - ROTATE_LEFT_FILL = "cupertino_rotate_left_fill" - ROTATE_RIGHT = "cupertino_rotate_right" - ROTATE_RIGHT_FILL = "cupertino_rotate_right_fill" - SCISSORS = "cupertino_scissors" - SCISSORS_ALT = "cupertino_scissors_alt" - SCOPE = "cupertino_scope" - SCRIBBLE = "cupertino_scribble" - SEARCH = "cupertino_search" - SEARCH_CIRCLE = "cupertino_search_circle" - SEARCH_CIRCLE_FILL = "cupertino_search_circle_fill" - SELECTION_PIN_IN_OUT = "cupertino_selection_pin_in_out" - SETTINGS = "cupertino_settings" - SETTINGS_SOLID = "cupertino_settings_solid" - SHARE = "cupertino_share" - SHARE_SOLID = "cupertino_share_solid" - SHARE_UP = "cupertino_share_up" - SHIELD = "cupertino_shield" - SHIELD_FILL = "cupertino_shield_fill" - SHIELD_LEFTHALF_FILL = "cupertino_shield_lefthalf_fill" - SHIELD_SLASH = "cupertino_shield_slash" - SHIELD_SLASH_FILL = "cupertino_shield_slash_fill" - SHIFT = "cupertino_shift" - SHIFT_FILL = "cupertino_shift_fill" - SHOPPING_CART = "cupertino_shopping_cart" - SHUFFLE = "cupertino_shuffle" - SHUFFLE_MEDIUM = "cupertino_shuffle_medium" - SHUFFLE_THICK = "cupertino_shuffle_thick" - SIDEBAR_LEFT = "cupertino_sidebar_left" - SIDEBAR_RIGHT = "cupertino_sidebar_right" - SIGNATURE = "cupertino_signature" - SKEW = "cupertino_skew" - SLASH_CIRCLE = "cupertino_slash_circle" - SLASH_CIRCLE_FILL = "cupertino_slash_circle_fill" - SLIDER_HORIZONTAL_3 = "cupertino_slider_horizontal_3" - SLIDER_HORIZONTAL_BELOW_RECTANGLE = "cupertino_slider_horizontal_below_rectangle" - SLOWMO = "cupertino_slowmo" - SMALLCIRCLE_CIRCLE = "cupertino_smallcircle_circle" - SMALLCIRCLE_CIRCLE_FILL = "cupertino_smallcircle_circle_fill" - SMALLCIRCLE_FILL_CIRCLE = "cupertino_smallcircle_fill_circle" - SMALLCIRCLE_FILL_CIRCLE_FILL = "cupertino_smallcircle_fill_circle_fill" - SMILEY = "cupertino_smiley" - SMILEY_FILL = "cupertino_smiley_fill" - SMOKE = "cupertino_smoke" - SMOKE_FILL = "cupertino_smoke_fill" - SNOW = "cupertino_snow" - SORT_DOWN = "cupertino_sort_down" - SORT_DOWN_CIRCLE = "cupertino_sort_down_circle" - SORT_DOWN_CIRCLE_FILL = "cupertino_sort_down_circle_fill" - SORT_UP = "cupertino_sort_up" - SORT_UP_CIRCLE = "cupertino_sort_up_circle" - SORT_UP_CIRCLE_FILL = "cupertino_sort_up_circle_fill" - SPARKLES = "cupertino_sparkles" - SPEAKER = "cupertino_speaker" - SPEAKER_1 = "cupertino_speaker_1" - SPEAKER_1_FILL = "cupertino_speaker_1_fill" - SPEAKER_2 = "cupertino_speaker_2" - SPEAKER_2_FILL = "cupertino_speaker_2_fill" - SPEAKER_3 = "cupertino_speaker_3" - SPEAKER_3_FILL = "cupertino_speaker_3_fill" - SPEAKER_FILL = "cupertino_speaker_fill" - SPEAKER_SLASH = "cupertino_speaker_slash" - SPEAKER_SLASH_FILL = "cupertino_speaker_slash_fill" - SPEAKER_SLASH_FILL_RTL = "cupertino_speaker_slash_fill_rtl" - SPEAKER_SLASH_RTL = "cupertino_speaker_slash_rtl" - SPEAKER_ZZZ = "cupertino_speaker_zzz" - SPEAKER_ZZZ_FILL = "cupertino_speaker_zzz_fill" - SPEAKER_ZZZ_FILL_RTL = "cupertino_speaker_zzz_fill_rtl" - SPEAKER_ZZZ_RTL = "cupertino_speaker_zzz_rtl" - SPEEDOMETER = "cupertino_speedometer" - SPORTSCOURT = "cupertino_sportscourt" - SPORTSCOURT_FILL = "cupertino_sportscourt_fill" - SQUARE = "cupertino_square" - SQUARES_BELOW_RECTANGLE = "cupertino_squares_below_rectangle" - SQUARE_ARROW_DOWN = "cupertino_square_arrow_down" - SQUARE_ARROW_DOWN_FILL = "cupertino_square_arrow_down_fill" - SQUARE_ARROW_DOWN_ON_SQUARE = "cupertino_square_arrow_down_on_square" - SQUARE_ARROW_DOWN_ON_SQUARE_FILL = "cupertino_square_arrow_down_on_square_fill" - SQUARE_ARROW_LEFT = "cupertino_square_arrow_left" - SQUARE_ARROW_LEFT_FILL = "cupertino_square_arrow_left_fill" - SQUARE_ARROW_RIGHT = "cupertino_square_arrow_right" - SQUARE_ARROW_RIGHT_FILL = "cupertino_square_arrow_right_fill" - SQUARE_ARROW_UP = "cupertino_square_arrow_up" - SQUARE_ARROW_UP_FILL = "cupertino_square_arrow_up_fill" - SQUARE_ARROW_UP_ON_SQUARE = "cupertino_square_arrow_up_on_square" - SQUARE_ARROW_UP_ON_SQUARE_FILL = "cupertino_square_arrow_up_on_square_fill" - SQUARE_FAVORITES = "cupertino_square_favorites" - SQUARE_FAVORITES_ALT = "cupertino_square_favorites_alt" - SQUARE_FAVORITES_ALT_FILL = "cupertino_square_favorites_alt_fill" - SQUARE_FAVORITES_FILL = "cupertino_square_favorites_fill" - SQUARE_FILL = "cupertino_square_fill" - SQUARE_FILL_LINE_VERTICAL_SQUARE = "cupertino_square_fill_line_vertical_square" - SQUARE_FILL_LINE_VERTICAL_SQUARE_FILL = ( - "cupertino_square_fill_line_vertical_square_fill" - ) - SQUARE_FILL_ON_CIRCLE_FILL = "cupertino_square_fill_on_circle_fill" - SQUARE_FILL_ON_SQUARE_FILL = "cupertino_square_fill_on_square_fill" - SQUARE_GRID_2X2 = "cupertino_square_grid_2x2" - SQUARE_GRID_2X2_FILL = "cupertino_square_grid_2x2_fill" - SQUARE_GRID_3X2 = "cupertino_square_grid_3x2" - SQUARE_GRID_3X2_FILL = "cupertino_square_grid_3x2_fill" - SQUARE_GRID_4X3_FILL = "cupertino_square_grid_4x3_fill" - SQUARE_LEFTHALF_FILL = "cupertino_square_lefthalf_fill" - SQUARE_LINE_VERTICAL_SQUARE = "cupertino_square_line_vertical_square" - SQUARE_LINE_VERTICAL_SQUARE_FILL = "cupertino_square_line_vertical_square_fill" - SQUARE_LIST = "cupertino_square_list" - SQUARE_LIST_FILL = "cupertino_square_list_fill" - SQUARE_ON_CIRCLE = "cupertino_square_on_circle" - SQUARE_ON_SQUARE = "cupertino_square_on_square" - SQUARE_PENCIL = "cupertino_square_pencil" - SQUARE_PENCIL_FILL = "cupertino_square_pencil_fill" - SQUARE_RIGHTHALF_FILL = "cupertino_square_righthalf_fill" - SQUARE_SPLIT_1X2 = "cupertino_square_split_1x2" - SQUARE_SPLIT_1X2_FILL = "cupertino_square_split_1x2_fill" - SQUARE_SPLIT_2X1 = "cupertino_square_split_2x1" - SQUARE_SPLIT_2X1_FILL = "cupertino_square_split_2x1_fill" - SQUARE_SPLIT_2X2 = "cupertino_square_split_2x2" - SQUARE_SPLIT_2X2_FILL = "cupertino_square_split_2x2_fill" - SQUARE_STACK = "cupertino_square_stack" - SQUARE_STACK_3D_DOWN_DOTTEDLINE = "cupertino_square_stack_3d_down_dottedline" - SQUARE_STACK_3D_DOWN_RIGHT = "cupertino_square_stack_3d_down_right" - SQUARE_STACK_3D_DOWN_RIGHT_FILL = "cupertino_square_stack_3d_down_right_fill" - SQUARE_STACK_3D_UP = "cupertino_square_stack_3d_up" - SQUARE_STACK_3D_UP_FILL = "cupertino_square_stack_3d_up_fill" - SQUARE_STACK_3D_UP_SLASH = "cupertino_square_stack_3d_up_slash" - SQUARE_STACK_3D_UP_SLASH_FILL = "cupertino_square_stack_3d_up_slash_fill" - SQUARE_STACK_FILL = "cupertino_square_stack_fill" - STAR = "cupertino_star" - STAROFLIFE = "cupertino_staroflife" - STAROFLIFE_FILL = "cupertino_staroflife_fill" - STAR_CIRCLE = "cupertino_star_circle" - STAR_CIRCLE_FILL = "cupertino_star_circle_fill" - STAR_FILL = "cupertino_star_fill" - STAR_LEFTHALF_FILL = "cupertino_star_lefthalf_fill" - STAR_SLASH = "cupertino_star_slash" - STAR_SLASH_FILL = "cupertino_star_slash_fill" - STOP = "cupertino_stop" - STOPWATCH = "cupertino_stopwatch" - STOPWATCH_FILL = "cupertino_stopwatch_fill" - STOP_CIRCLE = "cupertino_stop_circle" - STOP_CIRCLE_FILL = "cupertino_stop_circle_fill" - STOP_FILL = "cupertino_stop_fill" - STRIKETHROUGH = "cupertino_strikethrough" - SUIT_CLUB = "cupertino_suit_club" - SUIT_CLUB_FILL = "cupertino_suit_club_fill" - SUIT_DIAMOND = "cupertino_suit_diamond" - SUIT_DIAMOND_FILL = "cupertino_suit_diamond_fill" - SUIT_HEART = "cupertino_suit_heart" - SUIT_HEART_FILL = "cupertino_suit_heart_fill" - SUIT_SPADE = "cupertino_suit_spade" - SUIT_SPADE_FILL = "cupertino_suit_spade_fill" - SUM = "cupertino_sum" - SUNRISE = "cupertino_sunrise" - SUNRISE_FILL = "cupertino_sunrise_fill" - SUNSET = "cupertino_sunset" - SUNSET_FILL = "cupertino_sunset_fill" - SUN_DUST = "cupertino_sun_dust" - SUN_DUST_FILL = "cupertino_sun_dust_fill" - SUN_HAZE = "cupertino_sun_haze" - SUN_HAZE_FILL = "cupertino_sun_haze_fill" - SUN_MAX = "cupertino_sun_max" - SUN_MAX_FILL = "cupertino_sun_max_fill" - SUN_MIN = "cupertino_sun_min" - SUN_MIN_FILL = "cupertino_sun_min_fill" - SWITCH_CAMERA = "cupertino_switch_camera" - SWITCH_CAMERA_SOLID = "cupertino_switch_camera_solid" - TABLE = "cupertino_table" - TABLE_BADGE_MORE = "cupertino_table_badge_more" - TABLE_BADGE_MORE_FILL = "cupertino_table_badge_more_fill" - TABLE_FILL = "cupertino_table_fill" - TAG = "cupertino_tag" - TAGS = "cupertino_tags" - TAGS_SOLID = "cupertino_tags_solid" - TAG_CIRCLE = "cupertino_tag_circle" - TAG_CIRCLE_FILL = "cupertino_tag_circle_fill" - TAG_FILL = "cupertino_tag_fill" - TAG_SOLID = "cupertino_tag_solid" - TEXTBOX = "cupertino_textbox" - TEXTFORMAT = "cupertino_textformat" - TEXTFORMAT_123 = "cupertino_textformat_123" - TEXTFORMAT_ABC = "cupertino_textformat_abc" - TEXTFORMAT_ABC_DOTTEDUNDERLINE = "cupertino_textformat_abc_dottedunderline" - TEXTFORMAT_ALT = "cupertino_textformat_alt" - TEXTFORMAT_SIZE = "cupertino_textformat_size" - TEXTFORMAT_SUBSCRIPT = "cupertino_textformat_subscript" - TEXTFORMAT_SUPERSCRIPT = "cupertino_textformat_superscript" - TEXT_ALIGNCENTER = "cupertino_text_aligncenter" - TEXT_ALIGNLEFT = "cupertino_text_alignleft" - TEXT_ALIGNRIGHT = "cupertino_text_alignright" - TEXT_APPEND = "cupertino_text_append" - TEXT_BADGE_CHECKMARK = "cupertino_text_badge_checkmark" - TEXT_BADGE_MINUS = "cupertino_text_badge_minus" - TEXT_BADGE_PLUS = "cupertino_text_badge_plus" - TEXT_BADGE_STAR = "cupertino_text_badge_star" - TEXT_BADGE_XMARK = "cupertino_text_badge_xmark" - TEXT_BUBBLE = "cupertino_text_bubble" - TEXT_BUBBLE_FILL = "cupertino_text_bubble_fill" - TEXT_CURSOR = "cupertino_text_cursor" - TEXT_INSERT = "cupertino_text_insert" - TEXT_JUSTIFY = "cupertino_text_justify" - TEXT_JUSTIFYLEFT = "cupertino_text_justifyleft" - TEXT_JUSTIFYRIGHT = "cupertino_text_justifyright" - TEXT_QUOTE = "cupertino_text_quote" - THERMOMETER = "cupertino_thermometer" - THERMOMETER_SNOWFLAKE = "cupertino_thermometer_snowflake" - THERMOMETER_SUN = "cupertino_thermometer_sun" - TICKET = "cupertino_ticket" - TICKETS = "cupertino_tickets" - TICKETS_FILL = "cupertino_tickets_fill" - TICKET_FILL = "cupertino_ticket_fill" - TIME = "cupertino_time" - TIMELAPSE = "cupertino_timelapse" - TIMER = "cupertino_timer" - TIMER_FILL = "cupertino_timer_fill" - TIME_SOLID = "cupertino_time_solid" - TODAY = "cupertino_today" - TODAY_FILL = "cupertino_today_fill" - TORNADO = "cupertino_tornado" - TORTOISE = "cupertino_tortoise" - TORTOISE_FILL = "cupertino_tortoise_fill" - TRAIN_STYLE_ONE = "cupertino_train_style_one" - TRAIN_STYLE_TWO = "cupertino_train_style_two" - TRAM_FILL = "cupertino_tram_fill" - TRASH = "cupertino_trash" - TRASH_CIRCLE = "cupertino_trash_circle" - TRASH_CIRCLE_FILL = "cupertino_trash_circle_fill" - TRASH_FILL = "cupertino_trash_fill" - TRASH_SLASH = "cupertino_trash_slash" - TRASH_SLASH_FILL = "cupertino_trash_slash_fill" - TRAY = "cupertino_tray" - TRAY_2 = "cupertino_tray_2" - TRAY_2_FILL = "cupertino_tray_2_fill" - TRAY_ARROW_DOWN = "cupertino_tray_arrow_down" - TRAY_ARROW_DOWN_FILL = "cupertino_tray_arrow_down_fill" - TRAY_ARROW_UP = "cupertino_tray_arrow_up" - TRAY_ARROW_UP_FILL = "cupertino_tray_arrow_up_fill" - TRAY_FILL = "cupertino_tray_fill" - TRAY_FULL = "cupertino_tray_full" - TRAY_FULL_FILL = "cupertino_tray_full_fill" - TREE = "cupertino_tree" - TRIANGLE = "cupertino_triangle" - TRIANGLE_FILL = "cupertino_triangle_fill" - TRIANGLE_LEFTHALF_FILL = "cupertino_triangle_lefthalf_fill" - TRIANGLE_RIGHTHALF_FILL = "cupertino_triangle_righthalf_fill" - TROPICALSTORM = "cupertino_tropicalstorm" - TUNINGFORK = "cupertino_tuningfork" - TV = "cupertino_tv" - TV_CIRCLE = "cupertino_tv_circle" - TV_CIRCLE_FILL = "cupertino_tv_circle_fill" - TV_FILL = "cupertino_tv_fill" - TV_MUSIC_NOTE = "cupertino_tv_music_note" - TV_MUSIC_NOTE_FILL = "cupertino_tv_music_note_fill" - T_BUBBLE = "cupertino_t_bubble" - T_BUBBLE_FILL = "cupertino_t_bubble_fill" - UIWINDOW_SPLIT_2X1 = "cupertino_uiwindow_split_2x1" - UMBRELLA = "cupertino_umbrella" - UMBRELLA_FILL = "cupertino_umbrella_fill" - UNDERLINE = "cupertino_underline" - UPLOAD_CIRCLE = "cupertino_upload_circle" - UPLOAD_CIRCLE_FILL = "cupertino_upload_circle_fill" - UP_ARROW = "cupertino_up_arrow" - VIDEOCAM = "cupertino_videocam" - VIDEOCAM_CIRCLE = "cupertino_videocam_circle" - VIDEOCAM_CIRCLE_FILL = "cupertino_videocam_circle_fill" - VIDEOCAM_FILL = "cupertino_videocam_fill" - VIDEO_CAMERA = "cupertino_video_camera" - VIDEO_CAMERA_SOLID = "cupertino_video_camera_solid" - VIEWFINDER = "cupertino_viewfinder" - VIEWFINDER_CIRCLE = "cupertino_viewfinder_circle" - VIEWFINDER_CIRCLE_FILL = "cupertino_viewfinder_circle_fill" - VIEW_2D = "cupertino_view_2d" - VIEW_3D = "cupertino_view_3d" - VOLUME_DOWN = "cupertino_volume_down" - VOLUME_MUTE = "cupertino_volume_mute" - VOLUME_OFF = "cupertino_volume_off" - VOLUME_UP = "cupertino_volume_up" - WAND_RAYS = "cupertino_wand_rays" - WAND_RAYS_INVERSE = "cupertino_wand_rays_inverse" - WAND_STARS = "cupertino_wand_stars" - WAND_STARS_INVERSE = "cupertino_wand_stars_inverse" - WAVEFORM = "cupertino_waveform" - WAVEFORM_CIRCLE = "cupertino_waveform_circle" - WAVEFORM_CIRCLE_FILL = "cupertino_waveform_circle_fill" - WAVEFORM_PATH = "cupertino_waveform_path" - WAVEFORM_PATH_BADGE_MINUS = "cupertino_waveform_path_badge_minus" - WAVEFORM_PATH_BADGE_PLUS = "cupertino_waveform_path_badge_plus" - WAVEFORM_PATH_ECG = "cupertino_waveform_path_ecg" - WIFI = "cupertino_wifi" - WIFI_EXCLAMATIONMARK = "cupertino_wifi_exclamationmark" - WIFI_SLASH = "cupertino_wifi_slash" - WIND = "cupertino_wind" - WIND_SNOW = "cupertino_wind_snow" - WRENCH = "cupertino_wrench" - WRENCH_FILL = "cupertino_wrench_fill" - XMARK = "cupertino_xmark" - XMARK_CIRCLE = "cupertino_xmark_circle" - XMARK_CIRCLE_FILL = "cupertino_xmark_circle_fill" - XMARK_OCTAGON = "cupertino_xmark_octagon" - XMARK_OCTAGON_FILL = "cupertino_xmark_octagon_fill" - XMARK_RECTANGLE = "cupertino_xmark_rectangle" - XMARK_RECTANGLE_FILL = "cupertino_xmark_rectangle_fill" - XMARK_SEAL = "cupertino_xmark_seal" - XMARK_SEAL_FILL = "cupertino_xmark_seal_fill" - XMARK_SHIELD = "cupertino_xmark_shield" - XMARK_SHIELD_FILL = "cupertino_xmark_shield_fill" - XMARK_SQUARE = "cupertino_xmark_square" - XMARK_SQUARE_FILL = "cupertino_xmark_square_fill" - ZOOM_IN = "cupertino_zoom_in" - ZOOM_OUT = "cupertino_zoom_out" - ZZZ = "cupertino_zzz" +class CupertinoIcons(IconData, package_name="flet", class_name="CupertinoIcons"): + ADD = 0x20000 + ADD_CIRCLED = 0x20001 + ADD_CIRCLED_SOLID = 0x20002 + AIRPLANE = 0x20003 + ALARM = 0x20004 + ALARM_FILL = 0x20005 + ALT = 0x20006 + ANT = 0x20007 + ANT_CIRCLE = 0x20008 + ANT_CIRCLE_FILL = 0x20009 + ANT_FILL = 0x2000A + ANTENNA_RADIOWAVES_LEFT_RIGHT = 0x2000B + APP = 0x2000C + APP_BADGE = 0x2000D + APP_BADGE_FILL = 0x2000E + APP_FILL = 0x2000F + ARCHIVEBOX = 0x20010 + ARCHIVEBOX_FILL = 0x20011 + ARROW_2_CIRCLEPATH = 0x20012 + ARROW_2_CIRCLEPATH_CIRCLE = 0x20013 + ARROW_2_CIRCLEPATH_CIRCLE_FILL = 0x20014 + ARROW_2_SQUAREPATH = 0x20015 + ARROW_3_TRIANGLEPATH = 0x20016 + ARROW_BRANCH = 0x20017 + ARROW_CLOCKWISE = 0x20018 + ARROW_CLOCKWISE_CIRCLE = 0x20019 + ARROW_CLOCKWISE_CIRCLE_FILL = 0x2001A + ARROW_COUNTERCLOCKWISE = 0x2001B + ARROW_COUNTERCLOCKWISE_CIRCLE = 0x2001C + ARROW_COUNTERCLOCKWISE_CIRCLE_FILL = 0x2001D + ARROW_DOWN = 0x2001E + ARROW_DOWN_CIRCLE = 0x2001F + ARROW_DOWN_CIRCLE_FILL = 0x20020 + ARROW_DOWN_DOC = 0x20021 + ARROW_DOWN_DOC_FILL = 0x20022 + ARROW_DOWN_LEFT = 0x20023 + ARROW_DOWN_LEFT_CIRCLE = 0x20024 + ARROW_DOWN_LEFT_CIRCLE_FILL = 0x20025 + ARROW_DOWN_LEFT_SQUARE = 0x20026 + ARROW_DOWN_LEFT_SQUARE_FILL = 0x20027 + ARROW_DOWN_RIGHT = 0x20028 + ARROW_DOWN_RIGHT_ARROW_UP_LEFT = 0x20029 + ARROW_DOWN_RIGHT_CIRCLE = 0x2002A + ARROW_DOWN_RIGHT_CIRCLE_FILL = 0x2002B + ARROW_DOWN_RIGHT_SQUARE = 0x2002C + ARROW_DOWN_RIGHT_SQUARE_FILL = 0x2002D + ARROW_DOWN_SQUARE = 0x2002E + ARROW_DOWN_SQUARE_FILL = 0x2002F + ARROW_DOWN_TO_LINE = 0x20030 + ARROW_DOWN_TO_LINE_ALT = 0x20031 + ARROW_LEFT = 0x20032 + ARROW_LEFT_CIRCLE = 0x20033 + ARROW_LEFT_CIRCLE_FILL = 0x20034 + ARROW_LEFT_RIGHT = 0x20035 + ARROW_LEFT_RIGHT_CIRCLE = 0x20036 + ARROW_LEFT_RIGHT_CIRCLE_FILL = 0x20037 + ARROW_LEFT_RIGHT_SQUARE = 0x20038 + ARROW_LEFT_RIGHT_SQUARE_FILL = 0x20039 + ARROW_LEFT_SQUARE = 0x2003A + ARROW_LEFT_SQUARE_FILL = 0x2003B + ARROW_LEFT_TO_LINE = 0x2003C + ARROW_LEFT_TO_LINE_ALT = 0x2003D + ARROW_MERGE = 0x2003E + ARROW_RIGHT = 0x2003F + ARROW_RIGHT_ARROW_LEFT = 0x20040 + ARROW_RIGHT_ARROW_LEFT_CIRCLE = 0x20041 + ARROW_RIGHT_ARROW_LEFT_CIRCLE_FILL = 0x20042 + ARROW_RIGHT_ARROW_LEFT_SQUARE = 0x20043 + ARROW_RIGHT_ARROW_LEFT_SQUARE_FILL = 0x20044 + ARROW_RIGHT_CIRCLE = 0x20045 + ARROW_RIGHT_CIRCLE_FILL = 0x20046 + ARROW_RIGHT_SQUARE = 0x20047 + ARROW_RIGHT_SQUARE_FILL = 0x20048 + ARROW_RIGHT_TO_LINE = 0x20049 + ARROW_RIGHT_TO_LINE_ALT = 0x2004A + ARROW_SWAP = 0x2004B + ARROW_TURN_DOWN_LEFT = 0x2004C + ARROW_TURN_DOWN_RIGHT = 0x2004D + ARROW_TURN_LEFT_DOWN = 0x2004E + ARROW_TURN_LEFT_UP = 0x2004F + ARROW_TURN_RIGHT_DOWN = 0x20050 + ARROW_TURN_RIGHT_UP = 0x20051 + ARROW_TURN_UP_LEFT = 0x20052 + ARROW_TURN_UP_RIGHT = 0x20053 + ARROW_UP = 0x20054 + ARROW_UP_ARROW_DOWN = 0x20055 + ARROW_UP_ARROW_DOWN_CIRCLE = 0x20056 + ARROW_UP_ARROW_DOWN_CIRCLE_FILL = 0x20057 + ARROW_UP_ARROW_DOWN_SQUARE = 0x20058 + ARROW_UP_ARROW_DOWN_SQUARE_FILL = 0x20059 + ARROW_UP_BIN = 0x2005A + ARROW_UP_BIN_FILL = 0x2005B + ARROW_UP_CIRCLE = 0x2005C + ARROW_UP_CIRCLE_FILL = 0x2005D + ARROW_UP_DOC = 0x2005E + ARROW_UP_DOC_FILL = 0x2005F + ARROW_UP_DOWN = 0x20060 + ARROW_UP_DOWN_CIRCLE = 0x20061 + ARROW_UP_DOWN_CIRCLE_FILL = 0x20062 + ARROW_UP_DOWN_SQUARE = 0x20063 + ARROW_UP_DOWN_SQUARE_FILL = 0x20064 + ARROW_UP_LEFT = 0x20065 + ARROW_UP_LEFT_ARROW_DOWN_RIGHT = 0x20066 + ARROW_UP_LEFT_CIRCLE = 0x20067 + ARROW_UP_LEFT_CIRCLE_FILL = 0x20068 + ARROW_UP_LEFT_SQUARE = 0x20069 + ARROW_UP_LEFT_SQUARE_FILL = 0x2006A + ARROW_UP_RIGHT = 0x2006B + ARROW_UP_RIGHT_CIRCLE = 0x2006C + ARROW_UP_RIGHT_CIRCLE_FILL = 0x2006D + ARROW_UP_RIGHT_DIAMOND = 0x2006E + ARROW_UP_RIGHT_DIAMOND_FILL = 0x2006F + ARROW_UP_RIGHT_SQUARE = 0x20070 + ARROW_UP_RIGHT_SQUARE_FILL = 0x20071 + ARROW_UP_SQUARE = 0x20072 + ARROW_UP_SQUARE_FILL = 0x20073 + ARROW_UP_TO_LINE = 0x20074 + ARROW_UP_TO_LINE_ALT = 0x20075 + ARROW_UTURN_DOWN = 0x20076 + ARROW_UTURN_DOWN_CIRCLE = 0x20077 + ARROW_UTURN_DOWN_CIRCLE_FILL = 0x20078 + ARROW_UTURN_DOWN_SQUARE = 0x20079 + ARROW_UTURN_DOWN_SQUARE_FILL = 0x2007A + ARROW_UTURN_LEFT = 0x2007B + ARROW_UTURN_LEFT_CIRCLE = 0x2007C + ARROW_UTURN_LEFT_CIRCLE_FILL = 0x2007D + ARROW_UTURN_LEFT_SQUARE = 0x2007E + ARROW_UTURN_LEFT_SQUARE_FILL = 0x2007F + ARROW_UTURN_RIGHT = 0x20080 + ARROW_UTURN_RIGHT_CIRCLE = 0x20081 + ARROW_UTURN_RIGHT_CIRCLE_FILL = 0x20082 + ARROW_UTURN_RIGHT_SQUARE = 0x20083 + ARROW_UTURN_RIGHT_SQUARE_FILL = 0x20084 + ARROW_UTURN_UP = 0x20085 + ARROW_UTURN_UP_CIRCLE = 0x20086 + ARROW_UTURN_UP_CIRCLE_FILL = 0x20087 + ARROW_UTURN_UP_SQUARE = 0x20088 + ARROW_UTURN_UP_SQUARE_FILL = 0x20089 + ARROWSHAPE_TURN_UP_LEFT = 0x2008A + ARROWSHAPE_TURN_UP_LEFT_2 = 0x2008B + ARROWSHAPE_TURN_UP_LEFT_2_FILL = 0x2008C + ARROWSHAPE_TURN_UP_LEFT_CIRCLE = 0x2008D + ARROWSHAPE_TURN_UP_LEFT_CIRCLE_FILL = 0x2008E + ARROWSHAPE_TURN_UP_LEFT_FILL = 0x2008F + ARROWSHAPE_TURN_UP_RIGHT = 0x20090 + ARROWSHAPE_TURN_UP_RIGHT_CIRCLE = 0x20091 + ARROWSHAPE_TURN_UP_RIGHT_CIRCLE_FILL = 0x20092 + ARROWSHAPE_TURN_UP_RIGHT_FILL = 0x20093 + ARROWTRIANGLE_DOWN = 0x20094 + ARROWTRIANGLE_DOWN_CIRCLE = 0x20095 + ARROWTRIANGLE_DOWN_CIRCLE_FILL = 0x20096 + ARROWTRIANGLE_DOWN_FILL = 0x20097 + ARROWTRIANGLE_DOWN_SQUARE = 0x20098 + ARROWTRIANGLE_DOWN_SQUARE_FILL = 0x20099 + ARROWTRIANGLE_LEFT = 0x2009A + ARROWTRIANGLE_LEFT_CIRCLE = 0x2009B + ARROWTRIANGLE_LEFT_CIRCLE_FILL = 0x2009C + ARROWTRIANGLE_LEFT_FILL = 0x2009D + ARROWTRIANGLE_LEFT_SQUARE = 0x2009E + ARROWTRIANGLE_LEFT_SQUARE_FILL = 0x2009F + ARROWTRIANGLE_RIGHT = 0x200A0 + ARROWTRIANGLE_RIGHT_CIRCLE = 0x200A1 + ARROWTRIANGLE_RIGHT_CIRCLE_FILL = 0x200A2 + ARROWTRIANGLE_RIGHT_FILL = 0x200A3 + ARROWTRIANGLE_RIGHT_SQUARE = 0x200A4 + ARROWTRIANGLE_RIGHT_SQUARE_FILL = 0x200A5 + ARROWTRIANGLE_UP = 0x200A6 + ARROWTRIANGLE_UP_CIRCLE = 0x200A7 + ARROWTRIANGLE_UP_CIRCLE_FILL = 0x200A8 + ARROWTRIANGLE_UP_FILL = 0x200A9 + ARROWTRIANGLE_UP_SQUARE = 0x200AA + ARROWTRIANGLE_UP_SQUARE_FILL = 0x200AB + ASTERISK_CIRCLE = 0x200AC + ASTERISK_CIRCLE_FILL = 0x200AD + AT = 0x200AE + AT_BADGE_MINUS = 0x200AF + AT_BADGE_PLUS = 0x200B0 + AT_CIRCLE = 0x200B1 + AT_CIRCLE_FILL = 0x200B2 + BACK = 0x200B3 + BACKWARD = 0x200B4 + BACKWARD_END = 0x200B5 + BACKWARD_END_ALT = 0x200B6 + BACKWARD_END_ALT_FILL = 0x200B7 + BACKWARD_END_FILL = 0x200B8 + BACKWARD_FILL = 0x200B9 + BADGE_PLUS_RADIOWAVES_RIGHT = 0x200BA + BAG = 0x200BB + BAG_BADGE_MINUS = 0x200BC + BAG_BADGE_PLUS = 0x200BD + BAG_FILL = 0x200BE + BAG_FILL_BADGE_MINUS = 0x200BF + BAG_FILL_BADGE_PLUS = 0x200C0 + BANDAGE = 0x200C1 + BANDAGE_FILL = 0x200C2 + BARCODE = 0x200C3 + BARCODE_VIEWFINDER = 0x200C4 + BARS = 0x200C5 + BATTERY_0 = 0x200C6 + BATTERY_100 = 0x200C7 + BATTERY_25 = 0x200C8 + BATTERY_25_PERCENT = 0x200C9 + BATTERY_75_PERCENT = 0x200CA + BATTERY_CHARGING = 0x200CB + BATTERY_EMPTY = 0x200CC + BATTERY_FULL = 0x200CD + BED_DOUBLE = 0x200CE + BED_DOUBLE_FILL = 0x200CF + BELL = 0x200D0 + BELL_CIRCLE = 0x200D1 + BELL_CIRCLE_FILL = 0x200D2 + BELL_FILL = 0x200D3 + BELL_SLASH = 0x200D4 + BELL_SLASH_FILL = 0x200D5 + BELL_SOLID = 0x200D6 + BIN_XMARK = 0x200D7 + BIN_XMARK_FILL = 0x200D8 + BITCOIN = 0x200D9 + BITCOIN_CIRCLE = 0x200DA + BITCOIN_CIRCLE_FILL = 0x200DB + BLUETOOTH = 0x200DC + BOLD = 0x200DD + BOLD_ITALIC_UNDERLINE = 0x200DE + BOLD_UNDERLINE = 0x200DF + BOLT = 0x200E0 + BOLT_BADGE_A = 0x200E1 + BOLT_BADGE_A_FILL = 0x200E2 + BOLT_CIRCLE = 0x200E3 + BOLT_CIRCLE_FILL = 0x200E4 + BOLT_FILL = 0x200E5 + BOLT_HORIZONTAL = 0x200E6 + BOLT_HORIZONTAL_CIRCLE = 0x200E7 + BOLT_HORIZONTAL_CIRCLE_FILL = 0x200E8 + BOLT_HORIZONTAL_FILL = 0x200E9 + BOLT_SLASH = 0x200EA + BOLT_SLASH_FILL = 0x200EB + BOOK = 0x200EC + BOOK_CIRCLE = 0x200ED + BOOK_CIRCLE_FILL = 0x200EE + BOOK_FILL = 0x200EF + BOOK_SOLID = 0x200F0 + BOOKMARK = 0x200F1 + BOOKMARK_FILL = 0x200F2 + BOOKMARK_SOLID = 0x200F3 + BRIEFCASE = 0x200F4 + BRIEFCASE_FILL = 0x200F5 + BRIGHTNESS = 0x200F6 + BRIGHTNESS_SOLID = 0x200F7 + BUBBLE_LEFT = 0x200F8 + BUBBLE_LEFT_BUBBLE_RIGHT = 0x200F9 + BUBBLE_LEFT_BUBBLE_RIGHT_FILL = 0x200FA + BUBBLE_LEFT_FILL = 0x200FB + BUBBLE_MIDDLE_BOTTOM = 0x200FC + BUBBLE_MIDDLE_BOTTOM_FILL = 0x200FD + BUBBLE_MIDDLE_TOP = 0x200FE + BUBBLE_MIDDLE_TOP_FILL = 0x200FF + BUBBLE_RIGHT = 0x20100 + BUBBLE_RIGHT_FILL = 0x20101 + BUILDING_2_FILL = 0x20102 + BURN = 0x20103 + BURST = 0x20104 + BURST_FILL = 0x20105 + BUS = 0x20106 + CALENDAR = 0x20107 + CALENDAR_BADGE_MINUS = 0x20108 + CALENDAR_BADGE_PLUS = 0x20109 + CALENDAR_CIRCLE = 0x2010A + CALENDAR_CIRCLE_FILL = 0x2010B + CALENDAR_TODAY = 0x2010C + CAMERA = 0x2010D + CAMERA_CIRCLE = 0x2010E + CAMERA_CIRCLE_FILL = 0x2010F + CAMERA_FILL = 0x20110 + CAMERA_ON_RECTANGLE = 0x20111 + CAMERA_ON_RECTANGLE_FILL = 0x20112 + CAMERA_ROTATE = 0x20113 + CAMERA_ROTATE_FILL = 0x20114 + CAMERA_VIEWFINDER = 0x20115 + CAPSLOCK = 0x20116 + CAPSLOCK_FILL = 0x20117 + CAPSULE = 0x20118 + CAPSULE_FILL = 0x20119 + CAPTIONS_BUBBLE = 0x2011A + CAPTIONS_BUBBLE_FILL = 0x2011B + CAR = 0x2011C + CAR_DETAILED = 0x2011D + CAR_FILL = 0x2011E + CART = 0x2011F + CART_BADGE_MINUS = 0x20120 + CART_BADGE_PLUS = 0x20121 + CART_FILL = 0x20122 + CART_FILL_BADGE_MINUS = 0x20123 + CART_FILL_BADGE_PLUS = 0x20124 + CHART_BAR = 0x20125 + CHART_BAR_ALT_FILL = 0x20126 + CHART_BAR_CIRCLE = 0x20127 + CHART_BAR_CIRCLE_FILL = 0x20128 + CHART_BAR_FILL = 0x20129 + CHART_BAR_SQUARE = 0x2012A + CHART_BAR_SQUARE_FILL = 0x2012B + CHART_PIE = 0x2012C + CHART_PIE_FILL = 0x2012D + CHAT_BUBBLE = 0x2012E + CHAT_BUBBLE_2 = 0x2012F + CHAT_BUBBLE_2_FILL = 0x20130 + CHAT_BUBBLE_FILL = 0x20131 + CHAT_BUBBLE_TEXT = 0x20132 + CHAT_BUBBLE_TEXT_FILL = 0x20133 + CHECK_MARK = 0x20134 + CHECK_MARK_CIRCLED = 0x20135 + CHECK_MARK_CIRCLED_SOLID = 0x20136 + CHECKMARK = 0x20137 + CHECKMARK_ALT = 0x20138 + CHECKMARK_ALT_CIRCLE = 0x20139 + CHECKMARK_ALT_CIRCLE_FILL = 0x2013A + CHECKMARK_CIRCLE = 0x2013B + CHECKMARK_CIRCLE_FILL = 0x2013C + CHECKMARK_RECTANGLE = 0x2013D + CHECKMARK_RECTANGLE_FILL = 0x2013E + CHECKMARK_SEAL = 0x2013F + CHECKMARK_SEAL_FILL = 0x20140 + CHECKMARK_SHIELD = 0x20141 + CHECKMARK_SHIELD_FILL = 0x20142 + CHECKMARK_SQUARE = 0x20143 + CHECKMARK_SQUARE_FILL = 0x20144 + CHEVRON_BACK = 0x20145 + CHEVRON_COMPACT_DOWN = 0x20146 + CHEVRON_COMPACT_LEFT = 0x20147 + CHEVRON_COMPACT_RIGHT = 0x20148 + CHEVRON_COMPACT_UP = 0x20149 + CHEVRON_DOWN = 0x2014A + CHEVRON_DOWN_CIRCLE = 0x2014B + CHEVRON_DOWN_CIRCLE_FILL = 0x2014C + CHEVRON_DOWN_SQUARE = 0x2014D + CHEVRON_DOWN_SQUARE_FILL = 0x2014E + CHEVRON_FORWARD = 0x2014F + CHEVRON_LEFT = 0x20150 + CHEVRON_LEFT_2 = 0x20151 + CHEVRON_LEFT_CIRCLE = 0x20152 + CHEVRON_LEFT_CIRCLE_FILL = 0x20153 + CHEVRON_LEFT_SLASH_CHEVRON_RIGHT = 0x20154 + CHEVRON_LEFT_SQUARE = 0x20155 + CHEVRON_LEFT_SQUARE_FILL = 0x20156 + CHEVRON_RIGHT = 0x20157 + CHEVRON_RIGHT_2 = 0x20158 + CHEVRON_RIGHT_CIRCLE = 0x20159 + CHEVRON_RIGHT_CIRCLE_FILL = 0x2015A + CHEVRON_RIGHT_SQUARE = 0x2015B + CHEVRON_RIGHT_SQUARE_FILL = 0x2015C + CHEVRON_UP = 0x2015D + CHEVRON_UP_CHEVRON_DOWN = 0x2015E + CHEVRON_UP_CIRCLE = 0x2015F + CHEVRON_UP_CIRCLE_FILL = 0x20160 + CHEVRON_UP_SQUARE = 0x20161 + CHEVRON_UP_SQUARE_FILL = 0x20162 + CIRCLE = 0x20163 + CIRCLE_BOTTOMTHIRD_SPLIT = 0x20164 + CIRCLE_FILL = 0x20165 + CIRCLE_FILLED = 0x20166 + CIRCLE_GRID_3X3 = 0x20167 + CIRCLE_GRID_3X3_FILL = 0x20168 + CIRCLE_GRID_HEX = 0x20169 + CIRCLE_GRID_HEX_FILL = 0x2016A + CIRCLE_LEFTHALF_FILL = 0x2016B + CIRCLE_RIGHTHALF_FILL = 0x2016C + CLEAR = 0x2016D + CLEAR_CIRCLED = 0x2016E + CLEAR_CIRCLED_SOLID = 0x2016F + CLEAR_FILL = 0x20170 + CLEAR_THICK = 0x20171 + CLEAR_THICK_CIRCLED = 0x20172 + CLOCK = 0x20173 + CLOCK_FILL = 0x20174 + CLOCK_SOLID = 0x20175 + CLOUD = 0x20176 + CLOUD_BOLT = 0x20177 + CLOUD_BOLT_FILL = 0x20178 + CLOUD_BOLT_RAIN = 0x20179 + CLOUD_BOLT_RAIN_FILL = 0x2017A + CLOUD_DOWNLOAD = 0x2017B + CLOUD_DOWNLOAD_FILL = 0x2017C + CLOUD_DRIZZLE = 0x2017D + CLOUD_DRIZZLE_FILL = 0x2017E + CLOUD_FILL = 0x2017F + CLOUD_FOG = 0x20180 + CLOUD_FOG_FILL = 0x20181 + CLOUD_HAIL = 0x20182 + CLOUD_HAIL_FILL = 0x20183 + CLOUD_HEAVYRAIN = 0x20184 + CLOUD_HEAVYRAIN_FILL = 0x20185 + CLOUD_MOON = 0x20186 + CLOUD_MOON_BOLT = 0x20187 + CLOUD_MOON_BOLT_FILL = 0x20188 + CLOUD_MOON_FILL = 0x20189 + CLOUD_MOON_RAIN = 0x2018A + CLOUD_MOON_RAIN_FILL = 0x2018B + CLOUD_RAIN = 0x2018C + CLOUD_RAIN_FILL = 0x2018D + CLOUD_SLEET = 0x2018E + CLOUD_SLEET_FILL = 0x2018F + CLOUD_SNOW = 0x20190 + CLOUD_SNOW_FILL = 0x20191 + CLOUD_SUN = 0x20192 + CLOUD_SUN_BOLT = 0x20193 + CLOUD_SUN_BOLT_FILL = 0x20194 + CLOUD_SUN_FILL = 0x20195 + CLOUD_SUN_RAIN = 0x20196 + CLOUD_SUN_RAIN_FILL = 0x20197 + CLOUD_UPLOAD = 0x20198 + CLOUD_UPLOAD_FILL = 0x20199 + COLLECTIONS = 0x2019A + COLLECTIONS_SOLID = 0x2019B + COLOR_FILTER = 0x2019C + COLOR_FILTER_FILL = 0x2019D + COMMAND = 0x2019E + COMPASS = 0x2019F + COMPASS_FILL = 0x201A0 + CONTROL = 0x201A1 + CONVERSATION_BUBBLE = 0x201A2 + CREATE = 0x201A3 + CREATE_SOLID = 0x201A4 + CREDITCARD = 0x201A5 + CREDITCARD_FILL = 0x201A6 + CROP = 0x201A7 + CROP_ROTATE = 0x201A8 + CUBE = 0x201A9 + CUBE_BOX = 0x201AA + CUBE_BOX_FILL = 0x201AB + CUBE_FILL = 0x201AC + CURSOR_RAYS = 0x201AD + DECREASE_INDENT = 0x201AE + DECREASE_QUOTELEVEL = 0x201AF + DELETE = 0x201B0 + DELETE_LEFT = 0x201B1 + DELETE_LEFT_FILL = 0x201B2 + DELETE_RIGHT = 0x201B3 + DELETE_RIGHT_FILL = 0x201B4 + DELETE_SIMPLE = 0x201B5 + DELETE_SOLID = 0x201B6 + DESKTOPCOMPUTER = 0x201B7 + DEVICE_DESKTOP = 0x201B8 + DEVICE_LAPTOP = 0x201B9 + DEVICE_PHONE_LANDSCAPE = 0x201BA + DEVICE_PHONE_PORTRAIT = 0x201BB + DIAL = 0x201BC + DIAL_FILL = 0x201BD + DIVIDE = 0x201BE + DIVIDE_CIRCLE = 0x201BF + DIVIDE_CIRCLE_FILL = 0x201C0 + DIVIDE_SQUARE = 0x201C1 + DIVIDE_SQUARE_FILL = 0x201C2 + DOC = 0x201C3 + DOC_APPEND = 0x201C4 + DOC_CHART = 0x201C5 + DOC_CHART_FILL = 0x201C6 + DOC_CHECKMARK = 0x201C7 + DOC_CHECKMARK_FILL = 0x201C8 + DOC_CIRCLE = 0x201C9 + DOC_CIRCLE_FILL = 0x201CA + DOC_FILL = 0x201CB + DOC_ON_CLIPBOARD = 0x201CC + DOC_ON_CLIPBOARD_FILL = 0x201CD + DOC_ON_DOC = 0x201CE + DOC_ON_DOC_FILL = 0x201CF + DOC_PERSON = 0x201D0 + DOC_PERSON_FILL = 0x201D1 + DOC_PLAINTEXT = 0x201D2 + DOC_RICHTEXT = 0x201D3 + DOC_TEXT = 0x201D4 + DOC_TEXT_FILL = 0x201D5 + DOC_TEXT_SEARCH = 0x201D6 + DOC_TEXT_VIEWFINDER = 0x201D7 + DOT_RADIOWAVES_LEFT_RIGHT = 0x201D8 + DOT_RADIOWAVES_RIGHT = 0x201D9 + DOT_SQUARE = 0x201DA + DOT_SQUARE_FILL = 0x201DB + DOUBLE_MUSIC_NOTE = 0x201DC + DOWN_ARROW = 0x201DD + DOWNLOAD_CIRCLE = 0x201DE + DOWNLOAD_CIRCLE_FILL = 0x201DF + DROP = 0x201E0 + DROP_FILL = 0x201E1 + DROP_TRIANGLE = 0x201E2 + DROP_TRIANGLE_FILL = 0x201E3 + EAR = 0x201E4 + EJECT = 0x201E5 + EJECT_FILL = 0x201E6 + ELLIPSES_BUBBLE = 0x201E7 + ELLIPSES_BUBBLE_FILL = 0x201E8 + ELLIPSIS = 0x201E9 + ELLIPSIS_CIRCLE = 0x201EA + ELLIPSIS_CIRCLE_FILL = 0x201EB + ELLIPSIS_VERTICAL = 0x201EC + ELLIPSIS_VERTICAL_CIRCLE = 0x201ED + ELLIPSIS_VERTICAL_CIRCLE_FILL = 0x201EE + ENVELOPE = 0x201EF + ENVELOPE_BADGE = 0x201F0 + ENVELOPE_BADGE_FILL = 0x201F1 + ENVELOPE_CIRCLE = 0x201F2 + ENVELOPE_CIRCLE_FILL = 0x201F3 + ENVELOPE_FILL = 0x201F4 + ENVELOPE_OPEN = 0x201F5 + ENVELOPE_OPEN_FILL = 0x201F6 + EQUAL = 0x201F7 + EQUAL_CIRCLE = 0x201F8 + EQUAL_CIRCLE_FILL = 0x201F9 + EQUAL_SQUARE = 0x201FA + EQUAL_SQUARE_FILL = 0x201FB + ESCAPE = 0x201FC + EXCLAMATIONMARK = 0x201FD + EXCLAMATIONMARK_BUBBLE = 0x201FE + EXCLAMATIONMARK_BUBBLE_FILL = 0x201FF + EXCLAMATIONMARK_CIRCLE = 0x20200 + EXCLAMATIONMARK_CIRCLE_FILL = 0x20201 + EXCLAMATIONMARK_OCTAGON = 0x20202 + EXCLAMATIONMARK_OCTAGON_FILL = 0x20203 + EXCLAMATIONMARK_SHIELD = 0x20204 + EXCLAMATIONMARK_SHIELD_FILL = 0x20205 + EXCLAMATIONMARK_SQUARE = 0x20206 + EXCLAMATIONMARK_SQUARE_FILL = 0x20207 + EXCLAMATIONMARK_TRIANGLE = 0x20208 + EXCLAMATIONMARK_TRIANGLE_FILL = 0x20209 + EYE = 0x2020A + EYE_FILL = 0x2020B + EYE_SLASH = 0x2020C + EYE_SLASH_FILL = 0x2020D + EYE_SOLID = 0x2020E + EYEDROPPER = 0x2020F + EYEDROPPER_FULL = 0x20210 + EYEDROPPER_HALFFULL = 0x20211 + EYEGLASSES = 0x20212 + F_CURSIVE = 0x20213 + F_CURSIVE_CIRCLE = 0x20214 + F_CURSIVE_CIRCLE_FILL = 0x20215 + FILM = 0x20216 + FILM_FILL = 0x20217 + FLAG = 0x20218 + FLAG_CIRCLE = 0x20219 + FLAG_CIRCLE_FILL = 0x2021A + FLAG_FILL = 0x2021B + FLAG_SLASH = 0x2021C + FLAG_SLASH_FILL = 0x2021D + FLAME = 0x2021E + FLAME_FILL = 0x2021F + FLOPPY_DISK = 0x20220 + FLOWCHART = 0x20221 + FLOWCHART_FILL = 0x20222 + FOLDER = 0x20223 + FOLDER_BADGE_MINUS = 0x20224 + FOLDER_BADGE_PERSON_CROP = 0x20225 + FOLDER_BADGE_PLUS = 0x20226 + FOLDER_CIRCLE = 0x20227 + FOLDER_CIRCLE_FILL = 0x20228 + FOLDER_FILL = 0x20229 + FOLDER_FILL_BADGE_MINUS = 0x2022A + FOLDER_FILL_BADGE_PERSON_CROP = 0x2022B + FOLDER_FILL_BADGE_PLUS = 0x2022C + FOLDER_OPEN = 0x2022D + FOLDER_SOLID = 0x2022E + FORWARD = 0x2022F + FORWARD_END = 0x20230 + FORWARD_END_ALT = 0x20231 + FORWARD_END_ALT_FILL = 0x20232 + FORWARD_END_FILL = 0x20233 + FORWARD_FILL = 0x20234 + FULLSCREEN = 0x20235 + FULLSCREEN_EXIT = 0x20236 + FUNCTION = 0x20237 + FX = 0x20238 + GAME_CONTROLLER = 0x20239 + GAME_CONTROLLER_SOLID = 0x2023A + GAMECONTROLLER = 0x2023B + GAMECONTROLLER_ALT_FILL = 0x2023C + GAMECONTROLLER_FILL = 0x2023D + GAUGE = 0x2023E + GAUGE_BADGE_MINUS = 0x2023F + GAUGE_BADGE_PLUS = 0x20240 + GEAR = 0x20241 + GEAR_ALT = 0x20242 + GEAR_ALT_FILL = 0x20243 + GEAR_BIG = 0x20244 + GEAR_SOLID = 0x20245 + GIFT = 0x20246 + GIFT_ALT = 0x20247 + GIFT_ALT_FILL = 0x20248 + GIFT_FILL = 0x20249 + GLOBE = 0x2024A + GOBACKWARD = 0x2024B + GOBACKWARD_10 = 0x2024C + GOBACKWARD_15 = 0x2024D + GOBACKWARD_30 = 0x2024E + GOBACKWARD_45 = 0x2024F + GOBACKWARD_60 = 0x20250 + GOBACKWARD_75 = 0x20251 + GOBACKWARD_90 = 0x20252 + GOBACKWARD_MINUS = 0x20253 + GOFORWARD = 0x20254 + GOFORWARD_10 = 0x20255 + GOFORWARD_15 = 0x20256 + GOFORWARD_30 = 0x20257 + GOFORWARD_45 = 0x20258 + GOFORWARD_60 = 0x20259 + GOFORWARD_75 = 0x2025A + GOFORWARD_90 = 0x2025B + GOFORWARD_PLUS = 0x2025C + GRAPH_CIRCLE = 0x2025D + GRAPH_CIRCLE_FILL = 0x2025E + GRAPH_SQUARE = 0x2025F + GRAPH_SQUARE_FILL = 0x20260 + GREATERTHAN = 0x20261 + GREATERTHAN_CIRCLE = 0x20262 + GREATERTHAN_CIRCLE_FILL = 0x20263 + GREATERTHAN_SQUARE = 0x20264 + GREATERTHAN_SQUARE_FILL = 0x20265 + GRID = 0x20266 + GRID_CIRCLE = 0x20267 + GRID_CIRCLE_FILL = 0x20268 + GROUP = 0x20269 + GROUP_SOLID = 0x2026A + GUITARS = 0x2026B + HAMMER = 0x2026C + HAMMER_FILL = 0x2026D + HAND_DRAW = 0x2026E + HAND_DRAW_FILL = 0x2026F + HAND_POINT_LEFT = 0x20270 + HAND_POINT_LEFT_FILL = 0x20271 + HAND_POINT_RIGHT = 0x20272 + HAND_POINT_RIGHT_FILL = 0x20273 + HAND_RAISED = 0x20274 + HAND_RAISED_FILL = 0x20275 + HAND_RAISED_SLASH = 0x20276 + HAND_RAISED_SLASH_FILL = 0x20277 + HAND_THUMBSDOWN = 0x20278 + HAND_THUMBSDOWN_FILL = 0x20279 + HAND_THUMBSUP = 0x2027A + HAND_THUMBSUP_FILL = 0x2027B + HARE = 0x2027C + HARE_FILL = 0x2027D + HEADPHONES = 0x2027E + HEART = 0x2027F + HEART_CIRCLE = 0x20280 + HEART_CIRCLE_FILL = 0x20281 + HEART_FILL = 0x20282 + HEART_SLASH = 0x20283 + HEART_SLASH_CIRCLE = 0x20284 + HEART_SLASH_CIRCLE_FILL = 0x20285 + HEART_SLASH_FILL = 0x20286 + HEART_SOLID = 0x20287 + HELM = 0x20288 + HEXAGON = 0x20289 + HEXAGON_FILL = 0x2028A + HIFISPEAKER = 0x2028B + HIFISPEAKER_FILL = 0x2028C + HOME = 0x2028D + HOURGLASS = 0x2028E + HOURGLASS_BOTTOMHALF_FILL = 0x2028F + HOURGLASS_TOPHALF_FILL = 0x20290 + HOUSE = 0x20291 + HOUSE_ALT = 0x20292 + HOUSE_ALT_FILL = 0x20293 + HOUSE_FILL = 0x20294 + HURRICANE = 0x20295 + INCREASE_INDENT = 0x20296 + INCREASE_QUOTELEVEL = 0x20297 + INFINITE = 0x20298 + INFO = 0x20299 + INFO_CIRCLE = 0x2029A + INFO_CIRCLE_FILL = 0x2029B + ITALIC = 0x2029C + KEYBOARD = 0x2029D + KEYBOARD_CHEVRON_COMPACT_DOWN = 0x2029E + LAB_FLASK = 0x2029F + LAB_FLASK_SOLID = 0x202A0 + LARGECIRCLE_FILL_CIRCLE = 0x202A1 + LASSO = 0x202A2 + LAYERS = 0x202A3 + LAYERS_ALT = 0x202A4 + LAYERS_ALT_FILL = 0x202A5 + LAYERS_FILL = 0x202A6 + LEAF_ARROW_CIRCLEPATH = 0x202A7 + LEFT_CHEVRON = 0x202A8 + LESSTHAN = 0x202A9 + LESSTHAN_CIRCLE = 0x202AA + LESSTHAN_CIRCLE_FILL = 0x202AB + LESSTHAN_SQUARE = 0x202AC + LESSTHAN_SQUARE_FILL = 0x202AD + LIGHT_MAX = 0x202AE + LIGHT_MIN = 0x202AF + LIGHTBULB = 0x202B0 + LIGHTBULB_FILL = 0x202B1 + LIGHTBULB_SLASH = 0x202B2 + LIGHTBULB_SLASH_FILL = 0x202B3 + LINE_HORIZONTAL_3 = 0x202B4 + LINE_HORIZONTAL_3_DECREASE = 0x202B5 + LINE_HORIZONTAL_3_DECREASE_CIRCLE = 0x202B6 + LINE_HORIZONTAL_3_DECREASE_CIRCLE_FILL = 0x202B7 + LINK = 0x202B8 + LINK_CIRCLE = 0x202B9 + LINK_CIRCLE_FILL = 0x202BA + LIST_BULLET = 0x202BB + LIST_BULLET_BELOW_RECTANGLE = 0x202BC + LIST_BULLET_INDENT = 0x202BD + LIST_DASH = 0x202BE + LIST_NUMBER = 0x202BF + LIST_NUMBER_RTL = 0x202C0 + LOCATION = 0x202C1 + LOCATION_CIRCLE = 0x202C2 + LOCATION_CIRCLE_FILL = 0x202C3 + LOCATION_FILL = 0x202C4 + LOCATION_NORTH = 0x202C5 + LOCATION_NORTH_FILL = 0x202C6 + LOCATION_NORTH_LINE = 0x202C7 + LOCATION_NORTH_LINE_FILL = 0x202C8 + LOCATION_SLASH = 0x202C9 + LOCATION_SLASH_FILL = 0x202CA + LOCATION_SOLID = 0x202CB + LOCK = 0x202CC + LOCK_CIRCLE = 0x202CD + LOCK_CIRCLE_FILL = 0x202CE + LOCK_FILL = 0x202CF + LOCK_OPEN = 0x202D0 + LOCK_OPEN_FILL = 0x202D1 + LOCK_ROTATION = 0x202D2 + LOCK_ROTATION_OPEN = 0x202D3 + LOCK_SHIELD = 0x202D4 + LOCK_SHIELD_FILL = 0x202D5 + LOCK_SLASH = 0x202D6 + LOCK_SLASH_FILL = 0x202D7 + LOOP = 0x202D8 + LOOP_THICK = 0x202D9 + MACWINDOW = 0x202DA + MAIL = 0x202DB + MAIL_SOLID = 0x202DC + MAP = 0x202DD + MAP_FILL = 0x202DE + MAP_PIN = 0x202DF + MAP_PIN_ELLIPSE = 0x202E0 + MAP_PIN_SLASH = 0x202E1 + MEMORIES = 0x202E2 + MEMORIES_BADGE_MINUS = 0x202E3 + MEMORIES_BADGE_PLUS = 0x202E4 + METRONOME = 0x202E5 + MIC = 0x202E6 + MIC_CIRCLE = 0x202E7 + MIC_CIRCLE_FILL = 0x202E8 + MIC_FILL = 0x202E9 + MIC_OFF = 0x202EA + MIC_SLASH = 0x202EB + MIC_SLASH_FILL = 0x202EC + MIC_SOLID = 0x202ED + MINUS = 0x202EE + MINUS_CIRCLE = 0x202EF + MINUS_CIRCLE_FILL = 0x202F0 + MINUS_CIRCLED = 0x202F1 + MINUS_RECTANGLE = 0x202F2 + MINUS_RECTANGLE_FILL = 0x202F3 + MINUS_SLASH_PLUS = 0x202F4 + MINUS_SQUARE = 0x202F5 + MINUS_SQUARE_FILL = 0x202F6 + MONEY_DOLLAR = 0x202F7 + MONEY_DOLLAR_CIRCLE = 0x202F8 + MONEY_DOLLAR_CIRCLE_FILL = 0x202F9 + MONEY_EURO = 0x202FA + MONEY_EURO_CIRCLE = 0x202FB + MONEY_EURO_CIRCLE_FILL = 0x202FC + MONEY_POUND = 0x202FD + MONEY_POUND_CIRCLE = 0x202FE + MONEY_POUND_CIRCLE_FILL = 0x202FF + MONEY_RUBL = 0x20300 + MONEY_RUBL_CIRCLE = 0x20301 + MONEY_RUBL_CIRCLE_FILL = 0x20302 + MONEY_YEN = 0x20303 + MONEY_YEN_CIRCLE = 0x20304 + MONEY_YEN_CIRCLE_FILL = 0x20305 + MOON = 0x20306 + MOON_CIRCLE = 0x20307 + MOON_CIRCLE_FILL = 0x20308 + MOON_FILL = 0x20309 + MOON_STARS = 0x2030A + MOON_STARS_FILL = 0x2030B + MOON_ZZZ = 0x2030C + MOON_ZZZ_FILL = 0x2030D + MOVE = 0x2030E + MULTIPLY = 0x2030F + MULTIPLY_CIRCLE = 0x20310 + MULTIPLY_CIRCLE_FILL = 0x20311 + MULTIPLY_SQUARE = 0x20312 + MULTIPLY_SQUARE_FILL = 0x20313 + MUSIC_ALBUMS = 0x20314 + MUSIC_ALBUMS_FILL = 0x20315 + MUSIC_HOUSE = 0x20316 + MUSIC_HOUSE_FILL = 0x20317 + MUSIC_MIC = 0x20318 + MUSIC_NOTE = 0x20319 + MUSIC_NOTE_2 = 0x2031A + MUSIC_NOTE_LIST = 0x2031B + NEWS = 0x2031C + NEWS_SOLID = 0x2031D + NOSIGN = 0x2031E + NUMBER = 0x2031F + NUMBER_CIRCLE = 0x20320 + NUMBER_CIRCLE_FILL = 0x20321 + NUMBER_SQUARE = 0x20322 + NUMBER_SQUARE_FILL = 0x20323 + OPTION = 0x20324 + PADLOCK = 0x20325 + PADLOCK_SOLID = 0x20326 + PAINTBRUSH = 0x20327 + PAINTBRUSH_FILL = 0x20328 + PANO = 0x20329 + PANO_FILL = 0x2032A + PAPERCLIP = 0x2032B + PAPERPLANE = 0x2032C + PAPERPLANE_FILL = 0x2032D + PARAGRAPH = 0x2032E + PAUSE = 0x2032F + PAUSE_CIRCLE = 0x20330 + PAUSE_CIRCLE_FILL = 0x20331 + PAUSE_FILL = 0x20332 + PAUSE_RECTANGLE = 0x20333 + PAUSE_RECTANGLE_FILL = 0x20334 + PAUSE_SOLID = 0x20335 + PAW = 0x20336 + PAW_SOLID = 0x20337 + PEN = 0x20338 + PENCIL = 0x20339 + PENCIL_CIRCLE = 0x2033A + PENCIL_CIRCLE_FILL = 0x2033B + PENCIL_ELLIPSIS_RECTANGLE = 0x2033C + PENCIL_OUTLINE = 0x2033D + PENCIL_SLASH = 0x2033E + PERCENT = 0x2033F + PERSON = 0x20340 + PERSON_2 = 0x20341 + PERSON_2_ALT = 0x20342 + PERSON_2_FILL = 0x20343 + PERSON_2_SQUARE_STACK = 0x20344 + PERSON_2_SQUARE_STACK_FILL = 0x20345 + PERSON_3 = 0x20346 + PERSON_3_FILL = 0x20347 + PERSON_ADD = 0x20348 + PERSON_ADD_SOLID = 0x20349 + PERSON_ALT = 0x2034A + PERSON_ALT_CIRCLE = 0x2034B + PERSON_ALT_CIRCLE_FILL = 0x2034C + PERSON_BADGE_MINUS = 0x2034D + PERSON_BADGE_MINUS_FILL = 0x2034E + PERSON_BADGE_PLUS = 0x2034F + PERSON_BADGE_PLUS_FILL = 0x20350 + PERSON_CIRCLE = 0x20351 + PERSON_CIRCLE_FILL = 0x20352 + PERSON_CROP_CIRCLE = 0x20353 + PERSON_CROP_CIRCLE_BADGE_CHECKMARK = 0x20354 + PERSON_CROP_CIRCLE_BADGE_EXCLAM = 0x20355 + PERSON_CROP_CIRCLE_BADGE_MINUS = 0x20356 + PERSON_CROP_CIRCLE_BADGE_PLUS = 0x20357 + PERSON_CROP_CIRCLE_BADGE_XMARK = 0x20358 + PERSON_CROP_CIRCLE_FILL = 0x20359 + PERSON_CROP_CIRCLE_FILL_BADGE_CHECKMARK = 0x2035A + PERSON_CROP_CIRCLE_FILL_BADGE_EXCLAM = 0x2035B + PERSON_CROP_CIRCLE_FILL_BADGE_MINUS = 0x2035C + PERSON_CROP_CIRCLE_FILL_BADGE_PLUS = 0x2035D + PERSON_CROP_CIRCLE_FILL_BADGE_XMARK = 0x2035E + PERSON_CROP_RECTANGLE = 0x2035F + PERSON_CROP_RECTANGLE_FILL = 0x20360 + PERSON_CROP_SQUARE = 0x20361 + PERSON_CROP_SQUARE_FILL = 0x20362 + PERSON_FILL = 0x20363 + PERSON_SOLID = 0x20364 + PERSONALHOTSPOT = 0x20365 + PERSPECTIVE = 0x20366 + PHONE = 0x20367 + PHONE_ARROW_DOWN_LEFT = 0x20368 + PHONE_ARROW_RIGHT = 0x20369 + PHONE_ARROW_UP_RIGHT = 0x2036A + PHONE_BADGE_PLUS = 0x2036B + PHONE_CIRCLE = 0x2036C + PHONE_CIRCLE_FILL = 0x2036D + PHONE_DOWN = 0x2036E + PHONE_DOWN_CIRCLE = 0x2036F + PHONE_DOWN_CIRCLE_FILL = 0x20370 + PHONE_DOWN_FILL = 0x20371 + PHONE_FILL = 0x20372 + PHONE_FILL_ARROW_DOWN_LEFT = 0x20373 + PHONE_FILL_ARROW_RIGHT = 0x20374 + PHONE_FILL_ARROW_UP_RIGHT = 0x20375 + PHONE_FILL_BADGE_PLUS = 0x20376 + PHONE_SOLID = 0x20377 + PHOTO = 0x20378 + PHOTO_CAMERA = 0x20379 + PHOTO_CAMERA_SOLID = 0x2037A + PHOTO_FILL = 0x2037B + PHOTO_FILL_ON_RECTANGLE_FILL = 0x2037C + PHOTO_ON_RECTANGLE = 0x2037D + PIANO = 0x2037E + PIN = 0x2037F + PIN_FILL = 0x20380 + PIN_SLASH = 0x20381 + PIN_SLASH_FILL = 0x20382 + PLACEMARK = 0x20383 + PLACEMARK_FILL = 0x20384 + PLAY = 0x20385 + PLAY_ARROW = 0x20386 + PLAY_ARROW_SOLID = 0x20387 + PLAY_CIRCLE = 0x20388 + PLAY_CIRCLE_FILL = 0x20389 + PLAY_FILL = 0x2038A + PLAY_RECTANGLE = 0x2038B + PLAY_RECTANGLE_FILL = 0x2038C + PLAYPAUSE = 0x2038D + PLAYPAUSE_FILL = 0x2038E + PLUS = 0x2038F + PLUS_APP = 0x20390 + PLUS_APP_FILL = 0x20391 + PLUS_BUBBLE = 0x20392 + PLUS_BUBBLE_FILL = 0x20393 + PLUS_CIRCLE = 0x20394 + PLUS_CIRCLE_FILL = 0x20395 + PLUS_CIRCLED = 0x20396 + PLUS_RECTANGLE = 0x20397 + PLUS_RECTANGLE_FILL = 0x20398 + PLUS_RECTANGLE_FILL_ON_RECTANGLE_FILL = 0x20399 + PLUS_RECTANGLE_ON_RECTANGLE = 0x2039A + PLUS_SLASH_MINUS = 0x2039B + PLUS_SQUARE = 0x2039C + PLUS_SQUARE_FILL = 0x2039D + PLUS_SQUARE_FILL_ON_SQUARE_FILL = 0x2039E + PLUS_SQUARE_ON_SQUARE = 0x2039F + PLUSMINUS = 0x203A0 + PLUSMINUS_CIRCLE = 0x203A1 + PLUSMINUS_CIRCLE_FILL = 0x203A2 + POWER = 0x203A3 + PRINTER = 0x203A4 + PRINTER_FILL = 0x203A5 + PROFILE_CIRCLED = 0x203A6 + PROJECTIVE = 0x203A7 + PURCHASED = 0x203A8 + PURCHASED_CIRCLE = 0x203A9 + PURCHASED_CIRCLE_FILL = 0x203AA + QRCODE = 0x203AB + QRCODE_VIEWFINDER = 0x203AC + QUESTION = 0x203AD + QUESTION_CIRCLE = 0x203AE + QUESTION_CIRCLE_FILL = 0x203AF + QUESTION_DIAMOND = 0x203B0 + QUESTION_DIAMOND_FILL = 0x203B1 + QUESTION_SQUARE = 0x203B2 + QUESTION_SQUARE_FILL = 0x203B3 + QUOTE_BUBBLE = 0x203B4 + QUOTE_BUBBLE_FILL = 0x203B5 + RADIOWAVES_LEFT = 0x203B6 + RADIOWAVES_RIGHT = 0x203B7 + RAYS = 0x203B8 + RECORDINGTAPE = 0x203B9 + RECTANGLE = 0x203BA + RECTANGLE_3_OFFGRID = 0x203BB + RECTANGLE_3_OFFGRID_FILL = 0x203BC + RECTANGLE_ARROW_UP_RIGHT_ARROW_DOWN_LEFT = 0x203BD + RECTANGLE_ARROW_UP_RIGHT_ARROW_DOWN_LEFT_SLASH = 0x203BE + RECTANGLE_BADGE_CHECKMARK = 0x203BF + RECTANGLE_BADGE_XMARK = 0x203C0 + RECTANGLE_COMPRESS_VERTICAL = 0x203C1 + RECTANGLE_DOCK = 0x203C2 + RECTANGLE_EXPAND_VERTICAL = 0x203C3 + RECTANGLE_FILL = 0x203C4 + RECTANGLE_FILL_BADGE_CHECKMARK = 0x203C5 + RECTANGLE_FILL_BADGE_XMARK = 0x203C6 + RECTANGLE_FILL_ON_RECTANGLE_ANGLED_FILL = 0x203C7 + RECTANGLE_FILL_ON_RECTANGLE_FILL = 0x203C8 + RECTANGLE_GRID_1X2 = 0x203C9 + RECTANGLE_GRID_1X2_FILL = 0x203CA + RECTANGLE_GRID_2X2 = 0x203CB + RECTANGLE_GRID_2X2_FILL = 0x203CC + RECTANGLE_GRID_3X2 = 0x203CD + RECTANGLE_GRID_3X2_FILL = 0x203CE + RECTANGLE_ON_RECTANGLE = 0x203CF + RECTANGLE_ON_RECTANGLE_ANGLED = 0x203D0 + RECTANGLE_PAPERCLIP = 0x203D1 + RECTANGLE_SPLIT_3X1 = 0x203D2 + RECTANGLE_SPLIT_3X1_FILL = 0x203D3 + RECTANGLE_SPLIT_3X3 = 0x203D4 + RECTANGLE_SPLIT_3X3_FILL = 0x203D5 + RECTANGLE_STACK = 0x203D6 + RECTANGLE_STACK_BADGE_MINUS = 0x203D7 + RECTANGLE_STACK_BADGE_PERSON_CROP = 0x203D8 + RECTANGLE_STACK_BADGE_PLUS = 0x203D9 + RECTANGLE_STACK_FILL = 0x203DA + RECTANGLE_STACK_FILL_BADGE_MINUS = 0x203DB + RECTANGLE_STACK_FILL_BADGE_PERSON_CROP = 0x203DC + RECTANGLE_STACK_FILL_BADGE_PLUS = 0x203DD + RECTANGLE_STACK_PERSON_CROP = 0x203DE + RECTANGLE_STACK_PERSON_CROP_FILL = 0x203DF + REFRESH = 0x203E0 + REFRESH_BOLD = 0x203E1 + REFRESH_CIRCLED = 0x203E2 + REFRESH_CIRCLED_SOLID = 0x203E3 + REFRESH_THICK = 0x203E4 + REFRESH_THIN = 0x203E5 + REPEAT = 0x203E6 + REPEAT_1 = 0x203E7 + REPLY = 0x203E8 + REPLY_ALL = 0x203E9 + REPLY_THICK_SOLID = 0x203EA + RESIZE = 0x203EB + RESIZE_H = 0x203EC + RESIZE_V = 0x203ED + RESTART = 0x203EE + RETURN_ICON = 0x203EF + RHOMBUS = 0x203F0 + RHOMBUS_FILL = 0x203F1 + RIGHT_CHEVRON = 0x203F2 + ROCKET = 0x203F3 + ROCKET_FILL = 0x203F4 + ROSETTE = 0x203F5 + ROTATE_LEFT = 0x203F6 + ROTATE_LEFT_FILL = 0x203F7 + ROTATE_RIGHT = 0x203F8 + ROTATE_RIGHT_FILL = 0x203F9 + SCISSORS = 0x203FA + SCISSORS_ALT = 0x203FB + SCOPE = 0x203FC + SCRIBBLE = 0x203FD + SEARCH = 0x203FE + SEARCH_CIRCLE = 0x203FF + SEARCH_CIRCLE_FILL = 0x20400 + SELECTION_PIN_IN_OUT = 0x20401 + SETTINGS = 0x20402 + SETTINGS_SOLID = 0x20403 + SHARE = 0x20404 + SHARE_SOLID = 0x20405 + SHARE_UP = 0x20406 + SHIELD = 0x20407 + SHIELD_FILL = 0x20408 + SHIELD_LEFTHALF_FILL = 0x20409 + SHIELD_SLASH = 0x2040A + SHIELD_SLASH_FILL = 0x2040B + SHIFT = 0x2040C + SHIFT_FILL = 0x2040D + SHOPPING_CART = 0x2040E + SHUFFLE = 0x2040F + SHUFFLE_MEDIUM = 0x20410 + SHUFFLE_THICK = 0x20411 + SIDEBAR_LEFT = 0x20412 + SIDEBAR_RIGHT = 0x20413 + SIGNATURE = 0x20414 + SKEW = 0x20415 + SLASH_CIRCLE = 0x20416 + SLASH_CIRCLE_FILL = 0x20417 + SLIDER_HORIZONTAL_3 = 0x20418 + SLIDER_HORIZONTAL_BELOW_RECTANGLE = 0x20419 + SLOWMO = 0x2041A + SMALLCIRCLE_CIRCLE = 0x2041B + SMALLCIRCLE_CIRCLE_FILL = 0x2041C + SMALLCIRCLE_FILL_CIRCLE = 0x2041D + SMALLCIRCLE_FILL_CIRCLE_FILL = 0x2041E + SMILEY = 0x2041F + SMILEY_FILL = 0x20420 + SMOKE = 0x20421 + SMOKE_FILL = 0x20422 + SNOW = 0x20423 + SORT_DOWN = 0x20424 + SORT_DOWN_CIRCLE = 0x20425 + SORT_DOWN_CIRCLE_FILL = 0x20426 + SORT_UP = 0x20427 + SORT_UP_CIRCLE = 0x20428 + SORT_UP_CIRCLE_FILL = 0x20429 + SPARKLES = 0x2042A + SPEAKER = 0x2042B + SPEAKER_1 = 0x2042C + SPEAKER_1_FILL = 0x2042D + SPEAKER_2 = 0x2042E + SPEAKER_2_FILL = 0x2042F + SPEAKER_3 = 0x20430 + SPEAKER_3_FILL = 0x20431 + SPEAKER_FILL = 0x20432 + SPEAKER_SLASH = 0x20433 + SPEAKER_SLASH_FILL = 0x20434 + SPEAKER_SLASH_FILL_RTL = 0x20435 + SPEAKER_SLASH_RTL = 0x20436 + SPEAKER_ZZZ = 0x20437 + SPEAKER_ZZZ_FILL = 0x20438 + SPEAKER_ZZZ_FILL_RTL = 0x20439 + SPEAKER_ZZZ_RTL = 0x2043A + SPEEDOMETER = 0x2043B + SPORTSCOURT = 0x2043C + SPORTSCOURT_FILL = 0x2043D + SQUARE = 0x2043E + SQUARE_ARROW_DOWN = 0x2043F + SQUARE_ARROW_DOWN_FILL = 0x20440 + SQUARE_ARROW_DOWN_ON_SQUARE = 0x20441 + SQUARE_ARROW_DOWN_ON_SQUARE_FILL = 0x20442 + SQUARE_ARROW_LEFT = 0x20443 + SQUARE_ARROW_LEFT_FILL = 0x20444 + SQUARE_ARROW_RIGHT = 0x20445 + SQUARE_ARROW_RIGHT_FILL = 0x20446 + SQUARE_ARROW_UP = 0x20447 + SQUARE_ARROW_UP_FILL = 0x20448 + SQUARE_ARROW_UP_ON_SQUARE = 0x20449 + SQUARE_ARROW_UP_ON_SQUARE_FILL = 0x2044A + SQUARE_FAVORITES = 0x2044B + SQUARE_FAVORITES_ALT = 0x2044C + SQUARE_FAVORITES_ALT_FILL = 0x2044D + SQUARE_FAVORITES_FILL = 0x2044E + SQUARE_FILL = 0x2044F + SQUARE_FILL_LINE_VERTICAL_SQUARE = 0x20450 + SQUARE_FILL_LINE_VERTICAL_SQUARE_FILL = 0x20451 + SQUARE_FILL_ON_CIRCLE_FILL = 0x20452 + SQUARE_FILL_ON_SQUARE_FILL = 0x20453 + SQUARE_GRID_2X2 = 0x20454 + SQUARE_GRID_2X2_FILL = 0x20455 + SQUARE_GRID_3X2 = 0x20456 + SQUARE_GRID_3X2_FILL = 0x20457 + SQUARE_GRID_4X3_FILL = 0x20458 + SQUARE_LEFTHALF_FILL = 0x20459 + SQUARE_LINE_VERTICAL_SQUARE = 0x2045A + SQUARE_LINE_VERTICAL_SQUARE_FILL = 0x2045B + SQUARE_LIST = 0x2045C + SQUARE_LIST_FILL = 0x2045D + SQUARE_ON_CIRCLE = 0x2045E + SQUARE_ON_SQUARE = 0x2045F + SQUARE_PENCIL = 0x20460 + SQUARE_PENCIL_FILL = 0x20461 + SQUARE_RIGHTHALF_FILL = 0x20462 + SQUARE_SPLIT_1X2 = 0x20463 + SQUARE_SPLIT_1X2_FILL = 0x20464 + SQUARE_SPLIT_2X1 = 0x20465 + SQUARE_SPLIT_2X1_FILL = 0x20466 + SQUARE_SPLIT_2X2 = 0x20467 + SQUARE_SPLIT_2X2_FILL = 0x20468 + SQUARE_STACK = 0x20469 + SQUARE_STACK_3D_DOWN_DOTTEDLINE = 0x2046A + SQUARE_STACK_3D_DOWN_RIGHT = 0x2046B + SQUARE_STACK_3D_DOWN_RIGHT_FILL = 0x2046C + SQUARE_STACK_3D_UP = 0x2046D + SQUARE_STACK_3D_UP_FILL = 0x2046E + SQUARE_STACK_3D_UP_SLASH = 0x2046F + SQUARE_STACK_3D_UP_SLASH_FILL = 0x20470 + SQUARE_STACK_FILL = 0x20471 + SQUARES_BELOW_RECTANGLE = 0x20472 + STAR = 0x20473 + STAR_CIRCLE = 0x20474 + STAR_CIRCLE_FILL = 0x20475 + STAR_FILL = 0x20476 + STAR_LEFTHALF_FILL = 0x20477 + STAR_SLASH = 0x20478 + STAR_SLASH_FILL = 0x20479 + STAROFLIFE = 0x2047A + STAROFLIFE_FILL = 0x2047B + STOP = 0x2047C + STOP_CIRCLE = 0x2047D + STOP_CIRCLE_FILL = 0x2047E + STOP_FILL = 0x2047F + STOPWATCH = 0x20480 + STOPWATCH_FILL = 0x20481 + STRIKETHROUGH = 0x20482 + SUIT_CLUB = 0x20483 + SUIT_CLUB_FILL = 0x20484 + SUIT_DIAMOND = 0x20485 + SUIT_DIAMOND_FILL = 0x20486 + SUIT_HEART = 0x20487 + SUIT_HEART_FILL = 0x20488 + SUIT_SPADE = 0x20489 + SUIT_SPADE_FILL = 0x2048A + SUM = 0x2048B + SUN_DUST = 0x2048C + SUN_DUST_FILL = 0x2048D + SUN_HAZE = 0x2048E + SUN_HAZE_FILL = 0x2048F + SUN_MAX = 0x20490 + SUN_MAX_FILL = 0x20491 + SUN_MIN = 0x20492 + SUN_MIN_FILL = 0x20493 + SUNRISE = 0x20494 + SUNRISE_FILL = 0x20495 + SUNSET = 0x20496 + SUNSET_FILL = 0x20497 + SWITCH_CAMERA = 0x20498 + SWITCH_CAMERA_SOLID = 0x20499 + T_BUBBLE = 0x2049A + T_BUBBLE_FILL = 0x2049B + TABLE = 0x2049C + TABLE_BADGE_MORE = 0x2049D + TABLE_BADGE_MORE_FILL = 0x2049E + TABLE_FILL = 0x2049F + TAG = 0x204A0 + TAG_CIRCLE = 0x204A1 + TAG_CIRCLE_FILL = 0x204A2 + TAG_FILL = 0x204A3 + TAG_SOLID = 0x204A4 + TAGS = 0x204A5 + TAGS_SOLID = 0x204A6 + TEXT_ALIGNCENTER = 0x204A7 + TEXT_ALIGNLEFT = 0x204A8 + TEXT_ALIGNRIGHT = 0x204A9 + TEXT_APPEND = 0x204AA + TEXT_BADGE_CHECKMARK = 0x204AB + TEXT_BADGE_MINUS = 0x204AC + TEXT_BADGE_PLUS = 0x204AD + TEXT_BADGE_STAR = 0x204AE + TEXT_BADGE_XMARK = 0x204AF + TEXT_BUBBLE = 0x204B0 + TEXT_BUBBLE_FILL = 0x204B1 + TEXT_CURSOR = 0x204B2 + TEXT_INSERT = 0x204B3 + TEXT_JUSTIFY = 0x204B4 + TEXT_JUSTIFYLEFT = 0x204B5 + TEXT_JUSTIFYRIGHT = 0x204B6 + TEXT_QUOTE = 0x204B7 + TEXTBOX = 0x204B8 + TEXTFORMAT = 0x204B9 + TEXTFORMAT_123 = 0x204BA + TEXTFORMAT_ABC = 0x204BB + TEXTFORMAT_ABC_DOTTEDUNDERLINE = 0x204BC + TEXTFORMAT_ALT = 0x204BD + TEXTFORMAT_SIZE = 0x204BE + TEXTFORMAT_SUBSCRIPT = 0x204BF + TEXTFORMAT_SUPERSCRIPT = 0x204C0 + THERMOMETER = 0x204C1 + THERMOMETER_SNOWFLAKE = 0x204C2 + THERMOMETER_SUN = 0x204C3 + TICKET = 0x204C4 + TICKET_FILL = 0x204C5 + TICKETS = 0x204C6 + TICKETS_FILL = 0x204C7 + TIME = 0x204C8 + TIME_SOLID = 0x204C9 + TIMELAPSE = 0x204CA + TIMER = 0x204CB + TIMER_FILL = 0x204CC + TODAY = 0x204CD + TODAY_FILL = 0x204CE + TORNADO = 0x204CF + TORTOISE = 0x204D0 + TORTOISE_FILL = 0x204D1 + TRAIN_STYLE_ONE = 0x204D2 + TRAIN_STYLE_TWO = 0x204D3 + TRAM_FILL = 0x204D4 + TRASH = 0x204D5 + TRASH_CIRCLE = 0x204D6 + TRASH_CIRCLE_FILL = 0x204D7 + TRASH_FILL = 0x204D8 + TRASH_SLASH = 0x204D9 + TRASH_SLASH_FILL = 0x204DA + TRAY = 0x204DB + TRAY_2 = 0x204DC + TRAY_2_FILL = 0x204DD + TRAY_ARROW_DOWN = 0x204DE + TRAY_ARROW_DOWN_FILL = 0x204DF + TRAY_ARROW_UP = 0x204E0 + TRAY_ARROW_UP_FILL = 0x204E1 + TRAY_FILL = 0x204E2 + TRAY_FULL = 0x204E3 + TRAY_FULL_FILL = 0x204E4 + TREE = 0x204E5 + TRIANGLE = 0x204E6 + TRIANGLE_FILL = 0x204E7 + TRIANGLE_LEFTHALF_FILL = 0x204E8 + TRIANGLE_RIGHTHALF_FILL = 0x204E9 + TROPICALSTORM = 0x204EA + TUNINGFORK = 0x204EB + TV = 0x204EC + TV_CIRCLE = 0x204ED + TV_CIRCLE_FILL = 0x204EE + TV_FILL = 0x204EF + TV_MUSIC_NOTE = 0x204F0 + TV_MUSIC_NOTE_FILL = 0x204F1 + UIWINDOW_SPLIT_2X1 = 0x204F2 + UMBRELLA = 0x204F3 + UMBRELLA_FILL = 0x204F4 + UNDERLINE = 0x204F5 + UP_ARROW = 0x204F6 + UPLOAD_CIRCLE = 0x204F7 + UPLOAD_CIRCLE_FILL = 0x204F8 + VIDEO_CAMERA = 0x204F9 + VIDEO_CAMERA_SOLID = 0x204FA + VIDEOCAM = 0x204FB + VIDEOCAM_CIRCLE = 0x204FC + VIDEOCAM_CIRCLE_FILL = 0x204FD + VIDEOCAM_FILL = 0x204FE + VIEW_2D = 0x204FF + VIEW_3D = 0x20500 + VIEWFINDER = 0x20501 + VIEWFINDER_CIRCLE = 0x20502 + VIEWFINDER_CIRCLE_FILL = 0x20503 + VOLUME_DOWN = 0x20504 + VOLUME_MUTE = 0x20505 + VOLUME_OFF = 0x20506 + VOLUME_UP = 0x20507 + WAND_RAYS = 0x20508 + WAND_RAYS_INVERSE = 0x20509 + WAND_STARS = 0x2050A + WAND_STARS_INVERSE = 0x2050B + WAVEFORM = 0x2050C + WAVEFORM_CIRCLE = 0x2050D + WAVEFORM_CIRCLE_FILL = 0x2050E + WAVEFORM_PATH = 0x2050F + WAVEFORM_PATH_BADGE_MINUS = 0x20510 + WAVEFORM_PATH_BADGE_PLUS = 0x20511 + WAVEFORM_PATH_ECG = 0x20512 + WIFI = 0x20513 + WIFI_EXCLAMATIONMARK = 0x20514 + WIFI_SLASH = 0x20515 + WIND = 0x20516 + WIND_SNOW = 0x20517 + WRENCH = 0x20518 + WRENCH_FILL = 0x20519 + XMARK = 0x2051A + XMARK_CIRCLE = 0x2051B + XMARK_CIRCLE_FILL = 0x2051C + XMARK_OCTAGON = 0x2051D + XMARK_OCTAGON_FILL = 0x2051E + XMARK_RECTANGLE = 0x2051F + XMARK_RECTANGLE_FILL = 0x20520 + XMARK_SEAL = 0x20521 + XMARK_SEAL_FILL = 0x20522 + XMARK_SHIELD = 0x20523 + XMARK_SHIELD_FILL = 0x20524 + XMARK_SQUARE = 0x20525 + XMARK_SQUARE_FILL = 0x20526 + ZOOM_IN = 0x20527 + ZOOM_OUT = 0x20528 + ZZZ = 0x20529 diff --git a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_list_tile.py b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_list_tile.py index e2befc8827..29b25644bb 100644 --- a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_list_tile.py +++ b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_list_tile.py @@ -6,7 +6,7 @@ from flet.controls.padding import PaddingValue from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, UrlTarget, @@ -20,7 +20,8 @@ class CupertinoListTile(ConstrainedControl): """ An iOS-style list tile. - Can also serve as a cupertino equivalent of the Material [`ListTile`][flet.ListTile]. + Can also serve as a cupertino equivalent of the Material + [`ListTile`][flet.ListTile]. Raises: AssertionError: If [`title`][(c).] is neither a string nor a visible Control. @@ -40,12 +41,12 @@ class CupertinoListTile(ConstrainedControl): Typically a [`Text`][flet.Text] control. """ - leading: Optional[IconValueOrControl] = None + leading: Optional[IconDataOrControl] = None """ A control to display before the [`title`][flet.CupertinoListTile.title]. """ - trailing: Optional[IconValueOrControl] = None + trailing: Optional[IconDataOrControl] = None """ A control to display after the [`title`][flet.CupertinoListTile.title]. @@ -67,15 +68,17 @@ class CupertinoListTile(ConstrainedControl): """ The tile's internal padding. Insets a CupertinoListTile's contents: its [`leading`][flet.CupertinoListTile.leading], [`title`][flet.CupertinoListTile.title], - [`subtitle`][flet.CupertinoListTile.subtitle], [`additional_info`][flet.CupertinoListTile.additional_info] + [`subtitle`][flet.CupertinoListTile.subtitle], + [`additional_info`][flet.CupertinoListTile.additional_info] and [`trailing`][flet.CupertinoListTile.trailing] controls. - """ + """ # noqa: E501 url: Optional[str] = None """ The URL to open when the list tile is clicked. - If registered, [`on_click`][flet.CupertinoListTile.on_click] event is fired after that. + If registered, [`on_click`][flet.CupertinoListTile.on_click] event is fired after + that. """ url_target: UrlTarget = UrlTarget.BLANK @@ -92,18 +95,21 @@ class CupertinoListTile(ConstrainedControl): additional_info: Optional[StrOrControl] = None """ - A `Control` to display on the right of the list tile, before [`trailing`][flet.CupertinoListTile.trailing]. + A `Control` to display on the right of the list tile, before + [`trailing`][flet.CupertinoListTile.trailing]. Similar to [`subtitle`][flet.CupertinoListTile.subtitle], an - [`additional_info`][flet.CupertinoListTile.additional_info] is used to display additional - information. Typically a [`Text`][flet.Text] control. + [`additional_info`][flet.CupertinoListTile.additional_info] is used to display + additional information. Typically a [`Text`][flet.Text] control. """ leading_size: Optional[Number] = None """ - Used to constrain the width and height of [`leading`][flet.CupertinoListTile.leading] control. + Used to constrain the width and height of + [`leading`][flet.CupertinoListTile.leading] control. - Defaults to `30.0`, if [`notched=True`][flet.CupertinoListTile.notched], else `28.0`. + Defaults to `30.0`, if [`notched=True`][flet.CupertinoListTile.notched], + else `28.0`. """ leading_to_title: Optional[Number] = None @@ -111,7 +117,8 @@ class CupertinoListTile(ConstrainedControl): The horizontal space between [`leading`][flet.CupertinoListTile.leading] and `[`title`][flet.CupertinoListTile.title]. - Defaults to `12.0`, if [`notched=True`][flet.CupertinoListTile.notched], else `16.0`. + Defaults to `12.0`, if [`notched=True`][flet.CupertinoListTile.notched], + else `16.0`. """ notched: bool = False diff --git a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_navigation_bar.py b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_navigation_bar.py index dad98deb00..a1c866e0b5 100644 --- a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_navigation_bar.py +++ b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_navigation_bar.py @@ -23,7 +23,8 @@ class CupertinoNavigationBar(ConstrainedControl): destinations in an app. Raises: - AssertionError: If [`destinations`][(c).] does not contain at least two visible [`NavigationBarDestination`][flet.NavigationBarDestination]s. + AssertionError: If [`destinations`][(c).] does not contain at least two visible + [`NavigationBarDestination`][flet.NavigationBarDestination]s. IndexError: If [`selected_index`][(c).] is out of range. """ @@ -33,15 +34,15 @@ class CupertinoNavigationBar(ConstrainedControl): Note: Must be a list of two or more [`NavigationBarDestination`][flet.NavigationBarDestination]s. - """ + """ # noqa: E501 selected_index: int = 0 """ - The index into [`destinations`][flet.CupertinoNavigationBar.destinations] for the currently - selected [`NavigationBarDestination`][flet.NavigationBarDestination]. + The index into [`destinations`][flet.CupertinoNavigationBar.destinations] for the + currently selected [`NavigationBarDestination`][flet.NavigationBarDestination]. Note: - Must be a value between `0` and the length of visible + Must be a value between `0` and the length of visible [`destinations`][flet.CupertinoNavigationBar.destinations], inclusive. """ @@ -87,5 +88,6 @@ def before_update(self): if not (0 <= self.selected_index < visible_destinations_count): raise IndexError( f"selected_index ({self.selected_index}) is out of range. " - f"Expected a value between 0 and {visible_destinations_count - 1} inclusive." + f"Expected a value between 0 and {visible_destinations_count - 1} " + "inclusive." ) diff --git a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_switch.py b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_switch.py index dc9af72d12..ccd2b1e16d 100644 --- a/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_switch.py +++ b/sdk/python/packages/flet/src/flet/controls/cupertino/cupertino_switch.py @@ -6,7 +6,7 @@ from flet.controls.control_state import ControlStateValue from flet.controls.types import ( ColorValue, - IconValue, + IconData, LabelPosition, Number, ) @@ -91,8 +91,9 @@ class CupertinoSwitch(ConstrainedControl): The color to use on the thumb when this switch is off. - If `None`, defaults to [`thumb_color`][flet.CupertinoSwitch.thumb_color], and if this is also `None`, - defaults to [`CupertinoColors.WHITE`][flet.CupertinoColors.WHITE]. + If `None`, defaults to [`thumb_color`][flet.CupertinoSwitch.thumb_color], + and if this is also `None`, defaults to + [`CupertinoColors.WHITE`][flet.CupertinoColors.WHITE]. """ inactive_track_color: Optional[ColorValue] = None @@ -125,7 +126,7 @@ class CupertinoSwitch(ConstrainedControl): and [`ControlState.DEFAULT`][flet.ControlState.DEFAULT]. """ - thumb_icon: Optional[ControlStateValue[IconValue]] = None + thumb_icon: Optional[ControlStateValue[IconData]] = None """ The icon of this Switch's thumb in various [`ControlState`][flet.ControlState]s. @@ -156,4 +157,4 @@ class CupertinoSwitch(ConstrainedControl): """ Called when the image ([`active_thumb_image`][flet.CupertinoSwitch.active_thumb_image] or [`inactive_thumb_image`][flet.CupertinoSwitch.inactive_thumb_image]) fails to load. - """ + """ # noqa: E501 diff --git a/sdk/python/packages/flet/src/flet/controls/icon_data.py b/sdk/python/packages/flet/src/flet/controls/icon_data.py new file mode 100644 index 0000000000..78ee27e2da --- /dev/null +++ b/sdk/python/packages/flet/src/flet/controls/icon_data.py @@ -0,0 +1,78 @@ +import random +from enum import IntEnum +from typing import Optional, TypeVar + +__all__ = ["IconData"] + +T = TypeVar("T", bound="IconData") + + +class IconData(IntEnum): + """ + Represents an icon used in the UI. + + An icon can come from: + + - the Material icon set via the [`Icons`][flet.Icons] enum, + - the Cupertino icon set via the [`CupertinoIcons`][flet.CupertinoIcons] enum, + - or a custom icon set defined by the developer. + + Internally, an icon is stored as an integer that encodes icon's index + in its originating code set. + + Encoding structure: + + - Lower 16 bits (bits 0-15): the icon's index. + - Third byte (bits 16-24): the icon set identifier (set ID), + which distinguishes between icon sets like Material, Cupertino, etc. + + This encoding scheme allows a single integer to uniquely represent any icon + across multiple icon sets. + """ + + def __new__(cls, value): + """ + Create a new IconData enum member. + + Args: + value: The encoded integer representing the icon. + + Returns: + An instance of the enum with the encoded value. + """ + obj = int.__new__(cls, value) + obj._value_ = value + return obj + + @classmethod + def __init_subclass__(cls, **kwargs): + """ + Hook called when a subclass is defined. Used to attach metadata. + + Keyword Args: + package_name: The Flutter package where the icon set is defined. + class_name: The name of Flutter class with icon definitions. + """ + cls._package_name = kwargs.pop("package_name", "") + cls._class_name = kwargs.pop("class_name", "") + super().__init_subclass__(**kwargs) + + @classmethod + def random( + cls: type[T], + exclude: Optional[list[T]] = None, + weights: Optional[dict[T, int]] = None, + ) -> Optional[T]: + """ + Selects a random icon from the subclass enum, with optional + exclusions and weights. + """ + choices = list(cls) + if exclude: + choices = [member for member in choices if member not in exclude] + if not choices: + return None + if weights: + weights_list = [weights.get(c, 1) for c in choices] + return random.choices(choices, weights=weights_list)[0] + return random.choice(choices) diff --git a/sdk/python/packages/flet/src/flet/controls/material/banner.py b/sdk/python/packages/flet/src/flet/controls/material/banner.py index 4125d9ccc1..f7d6879357 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/banner.py +++ b/sdk/python/packages/flet/src/flet/controls/material/banner.py @@ -9,7 +9,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, ) @@ -30,7 +30,8 @@ class Banner(DialogControl): Raises: AssertionError: if [`content`][(c).] is not visible. AssertionError: if [`elevation`][(c).] is negative. - AssertionError: if [`actions`][(c).] does not contain at least one visible action Control. + AssertionError: if [`actions`][(c).] does not contain at least one visible + action Control. """ content: StrOrControl @@ -48,7 +49,7 @@ class Banner(DialogControl): controls. """ - leading: Optional[IconValueOrControl] = None + leading: Optional[IconDataOrControl] = None """ The leading Control of this banner. @@ -59,8 +60,8 @@ class Banner(DialogControl): """ The amount of space by which to inset the [`leading`][flet.Banner.leading] control. - Defaults to [`BannerTheme.leading_padding`][flet.BannerTheme.leading_padding], or if that is `None`, - falls back to `Padding.only(end=16)`. + Defaults to [`BannerTheme.leading_padding`][flet.BannerTheme.leading_padding], + or if that is `None`, falls back to `Padding.only(end=16)`. """ content_padding: Optional[PaddingValue] = None @@ -76,8 +77,8 @@ class Banner(DialogControl): force_actions_below: bool = False """ - An override to force the [`actions`][flet.Banner.actions] to be below the [`content`][flet.Banner.content] - regardless of how many there are. + An override to force the [`actions`][flet.Banner.actions] to be below the + [`content`][flet.Banner.content] regardless of how many there are. If this is `True`, the `actions` will be placed below the content. If this is `False`, the `actions` will be placed on the trailing side of the `content` if @@ -117,7 +118,8 @@ class Banner(DialogControl): content_text_style: Optional[TextStyle] = None """ - The style to be used for the [`Text`][flet.Text] controls in the [`content`][flet.Banner.content]. + The style to be used for the [`Text`][flet.Text] controls in the + [`content`][flet.Banner.content]. """ min_action_bar_height: Number = 52.0 diff --git a/sdk/python/packages/flet/src/flet/controls/material/date_picker.py b/sdk/python/packages/flet/src/flet/controls/material/date_picker.py index 311fe1afc7..f791c79d44 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/date_picker.py +++ b/sdk/python/packages/flet/src/flet/controls/material/date_picker.py @@ -14,14 +14,14 @@ from flet.controls.material.textfield import KeyboardType from flet.controls.types import ( ColorValue, - IconValue, + IconData, ) __all__ = [ "DatePicker", - "DatePickerMode", "DatePickerEntryMode", "DatePickerEntryModeChangeEvent", + "DatePickerMode", ] @@ -50,7 +50,7 @@ class DatePicker(DialogControl): It is added to [`Page.overlay`][flet.Page.overlay] and can be opened by calling [`Page.show_dialog()`][flet.Page.show_dialog] method. - Depending on the [`date_picker_entry_mode`][(c).], it will show either a Calendar + Depending on the [`date_picker_entry_mode`][(c).], it will show either a Calendar or an Input (TextField) for picking a date. """ @@ -150,7 +150,7 @@ class DatePicker(DialogControl): Defaults to `"Enter Date"`. """ - switch_to_calendar_icon: Optional[IconValue] = None + switch_to_calendar_icon: Optional[IconData] = None """ The name of the icon displayed in the corner of the dialog when [`date_picker_entry_mode`][flet.DatePicker.date_picker_entry_mode] @@ -162,7 +162,7 @@ class DatePicker(DialogControl): If `None`, [`Icons.CALENDAR_TODAY`][flet.Icons.CALENDAR_TODAY] is used. """ - switch_to_input_icon: Optional[IconValue] = None + switch_to_input_icon: Optional[IconData] = None """ The name of the icon displayed in the corner of the dialog when [`date_picker_entry_mode`][flet.DatePicker.date_picker_entry_mode] @@ -194,6 +194,6 @@ class DatePicker(DialogControl): on_entry_mode_change: Optional[EventHandler[DatePickerEntryModeChangeEvent]] = None """ - Called when the [`date_picker_entry_mode`][flet.DatePicker.date_picker_entry_mode] + Called when the [`date_picker_entry_mode`][flet.DatePicker.date_picker_entry_mode] is changed. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/dropdown.py b/sdk/python/packages/flet/src/flet/controls/material/dropdown.py index a54a8cd65e..083dbde3da 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/dropdown.py +++ b/sdk/python/packages/flet/src/flet/controls/material/dropdown.py @@ -15,7 +15,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, TextAlign, @@ -48,12 +48,12 @@ class DropdownOption(Control): fallback, else `text` will be ignored. """ - leading_icon: Optional[IconValueOrControl] = None + leading_icon: Optional[IconDataOrControl] = None """ An optional icon to display before the content or text. """ - trailing_icon: Optional[IconValueOrControl] = None + trailing_icon: Optional[IconDataOrControl] = None """ An optional icon to display after the content or text. """ @@ -163,12 +163,12 @@ class Dropdown(ConstrainedControl): TBD """ - trailing_icon: IconValueOrControl = Icons.ARROW_DROP_DOWN + trailing_icon: IconDataOrControl = Icons.ARROW_DROP_DOWN """ An icon to display at the end of the text field. """ - leading_icon: Optional[IconValueOrControl] = None + leading_icon: Optional[IconDataOrControl] = None """ An optional Icon at the front of the text input field inside the decoration box. @@ -176,7 +176,7 @@ class Dropdown(ConstrainedControl): be aligned with the text in the text field. """ - selected_trailing_icon: IconValueOrControl = Icons.ARROW_DROP_UP + selected_trailing_icon: IconDataOrControl = Icons.ARROW_DROP_UP """ An optional icon at the end of the text field to indicate that the text field is pressed. diff --git a/sdk/python/packages/flet/src/flet/controls/material/dropdownm2.py b/sdk/python/packages/flet/src/flet/controls/material/dropdownm2.py index 57f776f4d6..680165b76b 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/dropdownm2.py +++ b/sdk/python/packages/flet/src/flet/controls/material/dropdownm2.py @@ -9,7 +9,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, ) @@ -58,9 +58,9 @@ class Option(Control): def before_update(self): super().before_update() - assert ( - self.key is not None or self.text is not None - ), "key or text must be specified" + assert self.key is not None or self.text is not None, ( + "key or text must be specified" + ) @control("DropdownM2") @@ -99,11 +99,11 @@ class DropdownM2(FormFieldControl): `None`. """ - select_icon: Optional[IconValueOrControl] = None + select_icon: Optional[IconDataOrControl] = None """ The [name of the icon](https://flet.dev/docs/reference/icons) or `Control` to use - for the drop-down select button's icon. - + for the drop-down select button's icon. + Defaults to `Icon(ft.Icons.ARROW_DROP_DOWN)`. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/elevated_button.py b/sdk/python/packages/flet/src/flet/controls/material/elevated_button.py index 6d5e37ad0b..07bd166366 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/elevated_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/elevated_button.py @@ -10,7 +10,7 @@ from flet.controls.types import ( ClipBehavior, ColorValue, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, UrlTarget, @@ -36,7 +36,7 @@ class ElevatedButton(ConstrainedControl, AdaptiveControl): A Control representing custom button content. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ Icon shown in the button. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/expansion_tile.py b/sdk/python/packages/flet/src/flet/controls/material/expansion_tile.py index 8297db1eff..6e4e17f0d6 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/expansion_tile.py +++ b/sdk/python/packages/flet/src/flet/controls/material/expansion_tile.py @@ -13,7 +13,7 @@ ClipBehavior, ColorValue, CrossAxisAlignment, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, VisualDensity, @@ -56,12 +56,12 @@ class ExpansionTile(ConstrainedControl, AdaptiveControl): Typically a [`Text`][flet.Text] control. """ - leading: Optional[IconValueOrControl] = None + leading: Optional[IconDataOrControl] = None """ A `Control` to display before the title. """ - trailing: Optional[IconValueOrControl] = None + trailing: Optional[IconDataOrControl] = None """ A `Control` to display after the title. diff --git a/sdk/python/packages/flet/src/flet/controls/material/floating_action_button.py b/sdk/python/packages/flet/src/flet/controls/material/floating_action_button.py index 70a74a1a9b..c6f95f1930 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/floating_action_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/floating_action_button.py @@ -8,7 +8,7 @@ from flet.controls.types import ( ClipBehavior, ColorValue, - IconValueOrControl, + IconDataOrControl, MouseCursor, Number, StrOrControl, @@ -40,7 +40,7 @@ class FloatingActionButton(ConstrainedControl): The content of the button. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ Icon shown in the button. """ @@ -176,14 +176,18 @@ def before_update(self): f"elevation must be greater than or equal to 0, got {self.elevation}" ) assert self.disabled_elevation is None or self.disabled_elevation >= 0, ( - f"disabled_elevation must be greater than or equal to 0, got {self.disabled_elevation}" + "disabled_elevation must be greater than or equal to 0, " + f"got {self.disabled_elevation}" ) assert self.focus_elevation is None or self.focus_elevation >= 0, ( - f"focus_elevation must be greater than or equal to 0, got {self.focus_elevation}" + "focus_elevation must be greater than or equal to 0, " + f"got {self.focus_elevation}" ) assert self.highlight_elevation is None or self.highlight_elevation >= 0, ( - f"highlight_elevation must be greater than or equal to 0, got {self.highlight_elevation}" + "highlight_elevation must be greater than or equal to 0, " + f"got {self.highlight_elevation}" ) assert self.hover_elevation is None or self.hover_elevation >= 0, ( - f"hover_elevation must be greater than or equal to 0, got {self.hover_elevation}" + "hover_elevation must be greater than or equal to 0, " + f"got {self.hover_elevation}" ) diff --git a/sdk/python/packages/flet/src/flet/controls/material/form_field_control.py b/sdk/python/packages/flet/src/flet/controls/material/form_field_control.py index 39b75e42c2..67a1b1a15a 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/form_field_control.py +++ b/sdk/python/packages/flet/src/flet/controls/material/form_field_control.py @@ -11,7 +11,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, VerticalAlignment, @@ -63,7 +63,7 @@ class FormFieldControl(ConstrainedControl): `label`. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ The icon to show before the input field and outside of the decoration's container. """ @@ -254,7 +254,7 @@ class FormFieldControl(ConstrainedControl): The `prefix` appears after the `prefix_icon`, if both are specified. """ - prefix_icon: Optional[IconValueOrControl] = None + prefix_icon: Optional[IconDataOrControl] = None """ An icon that appears before the `prefix` or `prefix_text` and before the editable part of the text field, within the decoration's container. @@ -284,7 +284,7 @@ class FormFieldControl(ConstrainedControl): The `suffix` appears before the `suffix_icon`, if both are specified. """ - suffix_icon: Optional[IconValueOrControl] = None + suffix_icon: Optional[IconDataOrControl] = None """ An icon that appears after the editable part of the text field and after the `suffix` or `suffix_text`, within the decoration's container. diff --git a/sdk/python/packages/flet/src/flet/controls/material/icon_button.py b/sdk/python/packages/flet/src/flet/controls/material/icon_button.py index 9cadfb7bc8..07c98663be 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/icon_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/icon_button.py @@ -10,7 +10,7 @@ from flet.controls.padding import PaddingValue from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, MouseCursor, Number, UrlTarget, @@ -30,7 +30,7 @@ class IconButton(ConstrainedControl, AdaptiveControl): places as well. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ Icon shown in the button. """ @@ -58,7 +58,7 @@ class IconButton(ConstrainedControl, AdaptiveControl): If True, it will show `selected_icon`, if False it will show `icon`. """ - selected_icon: Optional[IconValueOrControl] = None + selected_icon: Optional[IconDataOrControl] = None """ Icon shown in the button in selected state. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/icons.py b/sdk/python/packages/flet/src/flet/controls/material/icons.py index 5dcb2f900d..a3d273342c 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/icons.py +++ b/sdk/python/packages/flet/src/flet/controls/material/icons.py @@ -1,8922 +1,8841 @@ """ Flet Material Icons -To generate/update these values run: +To generate/update this file run from the root of the repository: -sh ci/generate_material_icons_python.sh - ---- - -Code to sort the members: ``` -s = sorted(Icons, key=lambda i: i.name) -for i in s: - print(f"{i.name} = \"{i.value}\"") +uv run ci/generate_icons.py ``` """ -import random -from enum import Enum -from typing import Optional +from flet.controls.icon_data import IconData __all__ = ["Icons"] -class Icons(str, Enum): - def __eq__(self, other): - if isinstance(other, str): - return self.value.lower() == other.lower() - if isinstance(other, Enum): - return self.value.lower() == other.value.lower() - return NotImplemented - - def __hash__(self): - return hash(self.value.lower()) - - @staticmethod - def random( - exclude: Optional[list["Icons"]] = None, - weights: Optional[dict["Icons", int]] = None, - ) -> Optional["Icons"]: - """ - Selects a random icon, with optional exclusions and weights. - - Args: - exclude: A list of icons members to exclude from the selection. - weights: A dictionary mapping icon members to their respective weights for - weighted random selection. - - Returns: - A randomly selected icon, or `None` if all members are excluded. - - Examples: - >>> Icons.random(exclude=[Icons.FAVORITE], weights={Icons.SCHOOL: 150}) - Icons.SCHOOL - """ - choices = list(Icons) - if exclude: - choices = [member for member in choices if member not in exclude] - if not choices: - return None - if weights: - weights_list = [weights.get(c, 1) for c in choices] - return random.choices(choices, weights=weights_list)[0] - return random.choice(choices) - - ABC = "abc" - ABC_OUTLINED = "abc_outlined" - ABC_ROUNDED = "abc_rounded" - ABC_SHARP = "abc_sharp" - ACCESSIBILITY = "accessibility" - ACCESSIBILITY_NEW = "accessibility_new" - ACCESSIBILITY_NEW_OUTLINED = "accessibility_new_outlined" - ACCESSIBILITY_NEW_ROUNDED = "accessibility_new_rounded" - ACCESSIBILITY_NEW_SHARP = "accessibility_new_sharp" - ACCESSIBILITY_OUTLINED = "accessibility_outlined" - ACCESSIBILITY_ROUNDED = "accessibility_rounded" - ACCESSIBILITY_SHARP = "accessibility_sharp" - ACCESSIBLE = "accessible" - ACCESSIBLE_FORWARD = "accessible_forward" - ACCESSIBLE_FORWARD_OUTLINED = "accessible_forward_outlined" - ACCESSIBLE_FORWARD_ROUNDED = "accessible_forward_rounded" - ACCESSIBLE_FORWARD_SHARP = "accessible_forward_sharp" - ACCESSIBLE_OUTLINED = "accessible_outlined" - ACCESSIBLE_ROUNDED = "accessible_rounded" - ACCESSIBLE_SHARP = "accessible_sharp" - ACCESS_ALARM = "access_alarm" - ACCESS_ALARMS = "access_alarms" - ACCESS_ALARMS_OUTLINED = "access_alarms_outlined" - ACCESS_ALARMS_ROUNDED = "access_alarms_rounded" - ACCESS_ALARMS_SHARP = "access_alarms_sharp" - ACCESS_ALARM_OUTLINED = "access_alarm_outlined" - ACCESS_ALARM_ROUNDED = "access_alarm_rounded" - ACCESS_ALARM_SHARP = "access_alarm_sharp" - ACCESS_TIME = "access_time" - ACCESS_TIME_FILLED = "access_time_filled" - ACCESS_TIME_FILLED_OUTLINED = "access_time_filled_outlined" - ACCESS_TIME_FILLED_ROUNDED = "access_time_filled_rounded" - ACCESS_TIME_FILLED_SHARP = "access_time_filled_sharp" - ACCESS_TIME_OUTLINED = "access_time_outlined" - ACCESS_TIME_ROUNDED = "access_time_rounded" - ACCESS_TIME_SHARP = "access_time_sharp" - ACCOUNT_BALANCE = "account_balance" - ACCOUNT_BALANCE_OUTLINED = "account_balance_outlined" - ACCOUNT_BALANCE_ROUNDED = "account_balance_rounded" - ACCOUNT_BALANCE_SHARP = "account_balance_sharp" - ACCOUNT_BALANCE_WALLET = "account_balance_wallet" - ACCOUNT_BALANCE_WALLET_OUTLINED = "account_balance_wallet_outlined" - ACCOUNT_BALANCE_WALLET_ROUNDED = "account_balance_wallet_rounded" - ACCOUNT_BALANCE_WALLET_SHARP = "account_balance_wallet_sharp" - ACCOUNT_BOX = "account_box" - ACCOUNT_BOX_OUTLINED = "account_box_outlined" - ACCOUNT_BOX_ROUNDED = "account_box_rounded" - ACCOUNT_BOX_SHARP = "account_box_sharp" - ACCOUNT_CIRCLE = "account_circle" - ACCOUNT_CIRCLE_OUTLINED = "account_circle_outlined" - ACCOUNT_CIRCLE_ROUNDED = "account_circle_rounded" - ACCOUNT_CIRCLE_SHARP = "account_circle_sharp" - ACCOUNT_TREE = "account_tree" - ACCOUNT_TREE_OUTLINED = "account_tree_outlined" - ACCOUNT_TREE_ROUNDED = "account_tree_rounded" - ACCOUNT_TREE_SHARP = "account_tree_sharp" - AC_UNIT = "ac_unit" - AC_UNIT_OUTLINED = "ac_unit_outlined" - AC_UNIT_ROUNDED = "ac_unit_rounded" - AC_UNIT_SHARP = "ac_unit_sharp" - ADB = "adb" - ADB_OUTLINED = "adb_outlined" - ADB_ROUNDED = "adb_rounded" - ADB_SHARP = "adb_sharp" - ADD = "add" - ADDCHART = "addchart" - ADDCHART_OUTLINED = "addchart_outlined" - ADDCHART_ROUNDED = "addchart_rounded" - ADDCHART_SHARP = "addchart_sharp" - ADD_ALARM = "add_alarm" - ADD_ALARM_OUTLINED = "add_alarm_outlined" - ADD_ALARM_ROUNDED = "add_alarm_rounded" - ADD_ALARM_SHARP = "add_alarm_sharp" - ADD_ALERT = "add_alert" - ADD_ALERT_OUTLINED = "add_alert_outlined" - ADD_ALERT_ROUNDED = "add_alert_rounded" - ADD_ALERT_SHARP = "add_alert_sharp" - ADD_A_PHOTO = "add_a_photo" - ADD_A_PHOTO_OUTLINED = "add_a_photo_outlined" - ADD_A_PHOTO_ROUNDED = "add_a_photo_rounded" - ADD_A_PHOTO_SHARP = "add_a_photo_sharp" - ADD_BOX = "add_box" - ADD_BOX_OUTLINED = "add_box_outlined" - ADD_BOX_ROUNDED = "add_box_rounded" - ADD_BOX_SHARP = "add_box_sharp" - ADD_BUSINESS = "add_business" - ADD_BUSINESS_OUTLINED = "add_business_outlined" - ADD_BUSINESS_ROUNDED = "add_business_rounded" - ADD_BUSINESS_SHARP = "add_business_sharp" - ADD_CALL = "add_call" - ADD_CARD = "add_card" - ADD_CARD_OUTLINED = "add_card_outlined" - ADD_CARD_ROUNDED = "add_card_rounded" - ADD_CARD_SHARP = "add_card_sharp" - ADD_CHART = "add_chart" - ADD_CHART_OUTLINED = "add_chart_outlined" - ADD_CHART_ROUNDED = "add_chart_rounded" - ADD_CHART_SHARP = "add_chart_sharp" - ADD_CIRCLE = "add_circle" - ADD_CIRCLE_OUTLINE = "add_circle_outline" - ADD_CIRCLE_OUTLINED = "add_circle_outlined" - ADD_CIRCLE_OUTLINE_OUTLINED = "add_circle_outline_outlined" - ADD_CIRCLE_OUTLINE_ROUNDED = "add_circle_outline_rounded" - ADD_CIRCLE_OUTLINE_SHARP = "add_circle_outline_sharp" - ADD_CIRCLE_ROUNDED = "add_circle_rounded" - ADD_CIRCLE_SHARP = "add_circle_sharp" - ADD_COMMENT = "add_comment" - ADD_COMMENT_OUTLINED = "add_comment_outlined" - ADD_COMMENT_ROUNDED = "add_comment_rounded" - ADD_COMMENT_SHARP = "add_comment_sharp" - ADD_HOME = "add_home" - ADD_HOME_OUTLINED = "add_home_outlined" - ADD_HOME_ROUNDED = "add_home_rounded" - ADD_HOME_SHARP = "add_home_sharp" - ADD_HOME_WORK = "add_home_work" - ADD_HOME_WORK_OUTLINED = "add_home_work_outlined" - ADD_HOME_WORK_ROUNDED = "add_home_work_rounded" - ADD_HOME_WORK_SHARP = "add_home_work_sharp" - ADD_IC_CALL = "add_ic_call" - ADD_IC_CALL_OUTLINED = "add_ic_call_outlined" - ADD_IC_CALL_ROUNDED = "add_ic_call_rounded" - ADD_IC_CALL_SHARP = "add_ic_call_sharp" - ADD_LINK = "add_link" - ADD_LINK_OUTLINED = "add_link_outlined" - ADD_LINK_ROUNDED = "add_link_rounded" - ADD_LINK_SHARP = "add_link_sharp" - ADD_LOCATION = "add_location" - ADD_LOCATION_ALT = "add_location_alt" - ADD_LOCATION_ALT_OUTLINED = "add_location_alt_outlined" - ADD_LOCATION_ALT_ROUNDED = "add_location_alt_rounded" - ADD_LOCATION_ALT_SHARP = "add_location_alt_sharp" - ADD_LOCATION_OUTLINED = "add_location_outlined" - ADD_LOCATION_ROUNDED = "add_location_rounded" - ADD_LOCATION_SHARP = "add_location_sharp" - ADD_MODERATOR = "add_moderator" - ADD_MODERATOR_OUTLINED = "add_moderator_outlined" - ADD_MODERATOR_ROUNDED = "add_moderator_rounded" - ADD_MODERATOR_SHARP = "add_moderator_sharp" - ADD_OUTLINED = "add_outlined" - ADD_PHOTO_ALTERNATE = "add_photo_alternate" - ADD_PHOTO_ALTERNATE_OUTLINED = "add_photo_alternate_outlined" - ADD_PHOTO_ALTERNATE_ROUNDED = "add_photo_alternate_rounded" - ADD_PHOTO_ALTERNATE_SHARP = "add_photo_alternate_sharp" - ADD_REACTION = "add_reaction" - ADD_REACTION_OUTLINED = "add_reaction_outlined" - ADD_REACTION_ROUNDED = "add_reaction_rounded" - ADD_REACTION_SHARP = "add_reaction_sharp" - ADD_ROAD = "add_road" - ADD_ROAD_OUTLINED = "add_road_outlined" - ADD_ROAD_ROUNDED = "add_road_rounded" - ADD_ROAD_SHARP = "add_road_sharp" - ADD_ROUNDED = "add_rounded" - ADD_SHARP = "add_sharp" - ADD_SHOPPING_CART = "add_shopping_cart" - ADD_SHOPPING_CART_OUTLINED = "add_shopping_cart_outlined" - ADD_SHOPPING_CART_ROUNDED = "add_shopping_cart_rounded" - ADD_SHOPPING_CART_SHARP = "add_shopping_cart_sharp" - ADD_TASK = "add_task" - ADD_TASK_OUTLINED = "add_task_outlined" - ADD_TASK_ROUNDED = "add_task_rounded" - ADD_TASK_SHARP = "add_task_sharp" - ADD_TO_DRIVE = "add_to_drive" - ADD_TO_DRIVE_OUTLINED = "add_to_drive_outlined" - ADD_TO_DRIVE_ROUNDED = "add_to_drive_rounded" - ADD_TO_DRIVE_SHARP = "add_to_drive_sharp" - ADD_TO_HOME_SCREEN = "add_to_home_screen" - ADD_TO_HOME_SCREEN_OUTLINED = "add_to_home_screen_outlined" - ADD_TO_HOME_SCREEN_ROUNDED = "add_to_home_screen_rounded" - ADD_TO_HOME_SCREEN_SHARP = "add_to_home_screen_sharp" - ADD_TO_PHOTOS = "add_to_photos" - ADD_TO_PHOTOS_OUTLINED = "add_to_photos_outlined" - ADD_TO_PHOTOS_ROUNDED = "add_to_photos_rounded" - ADD_TO_PHOTOS_SHARP = "add_to_photos_sharp" - ADD_TO_QUEUE = "add_to_queue" - ADD_TO_QUEUE_OUTLINED = "add_to_queue_outlined" - ADD_TO_QUEUE_ROUNDED = "add_to_queue_rounded" - ADD_TO_QUEUE_SHARP = "add_to_queue_sharp" - ADF_SCANNER = "adf_scanner" - ADF_SCANNER_OUTLINED = "adf_scanner_outlined" - ADF_SCANNER_ROUNDED = "adf_scanner_rounded" - ADF_SCANNER_SHARP = "adf_scanner_sharp" - ADJUST = "adjust" - ADJUST_OUTLINED = "adjust_outlined" - ADJUST_ROUNDED = "adjust_rounded" - ADJUST_SHARP = "adjust_sharp" - ADMIN_PANEL_SETTINGS = "admin_panel_settings" - ADMIN_PANEL_SETTINGS_OUTLINED = "admin_panel_settings_outlined" - ADMIN_PANEL_SETTINGS_ROUNDED = "admin_panel_settings_rounded" - ADMIN_PANEL_SETTINGS_SHARP = "admin_panel_settings_sharp" - ADOBE = "adobe" - ADOBE_OUTLINED = "adobe_outlined" - ADOBE_ROUNDED = "adobe_rounded" - ADOBE_SHARP = "adobe_sharp" - ADS_CLICK = "ads_click" - ADS_CLICK_OUTLINED = "ads_click_outlined" - ADS_CLICK_ROUNDED = "ads_click_rounded" - ADS_CLICK_SHARP = "ads_click_sharp" - AD_UNITS = "ad_units" - AD_UNITS_OUTLINED = "ad_units_outlined" - AD_UNITS_ROUNDED = "ad_units_rounded" - AD_UNITS_SHARP = "ad_units_sharp" - AGRICULTURE = "agriculture" - AGRICULTURE_OUTLINED = "agriculture_outlined" - AGRICULTURE_ROUNDED = "agriculture_rounded" - AGRICULTURE_SHARP = "agriculture_sharp" - AIR = "air" - AIRLINES = "airlines" - AIRLINES_OUTLINED = "airlines_outlined" - AIRLINES_ROUNDED = "airlines_rounded" - AIRLINES_SHARP = "airlines_sharp" - AIRLINE_SEAT_FLAT = "airline_seat_flat" - AIRLINE_SEAT_FLAT_ANGLED = "airline_seat_flat_angled" - AIRLINE_SEAT_FLAT_ANGLED_OUTLINED = "airline_seat_flat_angled_outlined" - AIRLINE_SEAT_FLAT_ANGLED_ROUNDED = "airline_seat_flat_angled_rounded" - AIRLINE_SEAT_FLAT_ANGLED_SHARP = "airline_seat_flat_angled_sharp" - AIRLINE_SEAT_FLAT_OUTLINED = "airline_seat_flat_outlined" - AIRLINE_SEAT_FLAT_ROUNDED = "airline_seat_flat_rounded" - AIRLINE_SEAT_FLAT_SHARP = "airline_seat_flat_sharp" - AIRLINE_SEAT_INDIVIDUAL_SUITE = "airline_seat_individual_suite" - AIRLINE_SEAT_INDIVIDUAL_SUITE_OUTLINED = "airline_seat_individual_suite_outlined" - AIRLINE_SEAT_INDIVIDUAL_SUITE_ROUNDED = "airline_seat_individual_suite_rounded" - AIRLINE_SEAT_INDIVIDUAL_SUITE_SHARP = "airline_seat_individual_suite_sharp" - AIRLINE_SEAT_LEGROOM_EXTRA = "airline_seat_legroom_extra" - AIRLINE_SEAT_LEGROOM_EXTRA_OUTLINED = "airline_seat_legroom_extra_outlined" - AIRLINE_SEAT_LEGROOM_EXTRA_ROUNDED = "airline_seat_legroom_extra_rounded" - AIRLINE_SEAT_LEGROOM_EXTRA_SHARP = "airline_seat_legroom_extra_sharp" - AIRLINE_SEAT_LEGROOM_NORMAL = "airline_seat_legroom_normal" - AIRLINE_SEAT_LEGROOM_NORMAL_OUTLINED = "airline_seat_legroom_normal_outlined" - AIRLINE_SEAT_LEGROOM_NORMAL_ROUNDED = "airline_seat_legroom_normal_rounded" - AIRLINE_SEAT_LEGROOM_NORMAL_SHARP = "airline_seat_legroom_normal_sharp" - AIRLINE_SEAT_LEGROOM_REDUCED = "airline_seat_legroom_reduced" - AIRLINE_SEAT_LEGROOM_REDUCED_OUTLINED = "airline_seat_legroom_reduced_outlined" - AIRLINE_SEAT_LEGROOM_REDUCED_ROUNDED = "airline_seat_legroom_reduced_rounded" - AIRLINE_SEAT_LEGROOM_REDUCED_SHARP = "airline_seat_legroom_reduced_sharp" - AIRLINE_SEAT_RECLINE_EXTRA = "airline_seat_recline_extra" - AIRLINE_SEAT_RECLINE_EXTRA_OUTLINED = "airline_seat_recline_extra_outlined" - AIRLINE_SEAT_RECLINE_EXTRA_ROUNDED = "airline_seat_recline_extra_rounded" - AIRLINE_SEAT_RECLINE_EXTRA_SHARP = "airline_seat_recline_extra_sharp" - AIRLINE_SEAT_RECLINE_NORMAL = "airline_seat_recline_normal" - AIRLINE_SEAT_RECLINE_NORMAL_OUTLINED = "airline_seat_recline_normal_outlined" - AIRLINE_SEAT_RECLINE_NORMAL_ROUNDED = "airline_seat_recline_normal_rounded" - AIRLINE_SEAT_RECLINE_NORMAL_SHARP = "airline_seat_recline_normal_sharp" - AIRLINE_STOPS = "airline_stops" - AIRLINE_STOPS_OUTLINED = "airline_stops_outlined" - AIRLINE_STOPS_ROUNDED = "airline_stops_rounded" - AIRLINE_STOPS_SHARP = "airline_stops_sharp" - AIRPLANEMODE_ACTIVE = "airplanemode_active" - AIRPLANEMODE_ACTIVE_OUTLINED = "airplanemode_active_outlined" - AIRPLANEMODE_ACTIVE_ROUNDED = "airplanemode_active_rounded" - AIRPLANEMODE_ACTIVE_SHARP = "airplanemode_active_sharp" - AIRPLANEMODE_INACTIVE = "airplanemode_inactive" - AIRPLANEMODE_INACTIVE_OUTLINED = "airplanemode_inactive_outlined" - AIRPLANEMODE_INACTIVE_ROUNDED = "airplanemode_inactive_rounded" - AIRPLANEMODE_INACTIVE_SHARP = "airplanemode_inactive_sharp" - AIRPLANEMODE_OFF = "airplanemode_off" - AIRPLANEMODE_OFF_OUTLINED = "airplanemode_off_outlined" - AIRPLANEMODE_OFF_ROUNDED = "airplanemode_off_rounded" - AIRPLANEMODE_OFF_SHARP = "airplanemode_off_sharp" - AIRPLANEMODE_ON = "airplanemode_on" - AIRPLANEMODE_ON_OUTLINED = "airplanemode_on_outlined" - AIRPLANEMODE_ON_ROUNDED = "airplanemode_on_rounded" - AIRPLANEMODE_ON_SHARP = "airplanemode_on_sharp" - AIRPLANE_TICKET = "airplane_ticket" - AIRPLANE_TICKET_OUTLINED = "airplane_ticket_outlined" - AIRPLANE_TICKET_ROUNDED = "airplane_ticket_rounded" - AIRPLANE_TICKET_SHARP = "airplane_ticket_sharp" - AIRPLAY = "airplay" - AIRPLAY_OUTLINED = "airplay_outlined" - AIRPLAY_ROUNDED = "airplay_rounded" - AIRPLAY_SHARP = "airplay_sharp" - AIRPORT_SHUTTLE = "airport_shuttle" - AIRPORT_SHUTTLE_OUTLINED = "airport_shuttle_outlined" - AIRPORT_SHUTTLE_ROUNDED = "airport_shuttle_rounded" - AIRPORT_SHUTTLE_SHARP = "airport_shuttle_sharp" - AIR_OUTLINED = "air_outlined" - AIR_ROUNDED = "air_rounded" - AIR_SHARP = "air_sharp" - ALARM = "alarm" - ALARM_ADD = "alarm_add" - ALARM_ADD_OUTLINED = "alarm_add_outlined" - ALARM_ADD_ROUNDED = "alarm_add_rounded" - ALARM_ADD_SHARP = "alarm_add_sharp" - ALARM_OFF = "alarm_off" - ALARM_OFF_OUTLINED = "alarm_off_outlined" - ALARM_OFF_ROUNDED = "alarm_off_rounded" - ALARM_OFF_SHARP = "alarm_off_sharp" - ALARM_ON = "alarm_on" - ALARM_ON_OUTLINED = "alarm_on_outlined" - ALARM_ON_ROUNDED = "alarm_on_rounded" - ALARM_ON_SHARP = "alarm_on_sharp" - ALARM_OUTLINED = "alarm_outlined" - ALARM_ROUNDED = "alarm_rounded" - ALARM_SHARP = "alarm_sharp" - ALBUM = "album" - ALBUM_OUTLINED = "album_outlined" - ALBUM_ROUNDED = "album_rounded" - ALBUM_SHARP = "album_sharp" - ALIGN_HORIZONTAL_CENTER = "align_horizontal_center" - ALIGN_HORIZONTAL_CENTER_OUTLINED = "align_horizontal_center_outlined" - ALIGN_HORIZONTAL_CENTER_ROUNDED = "align_horizontal_center_rounded" - ALIGN_HORIZONTAL_CENTER_SHARP = "align_horizontal_center_sharp" - ALIGN_HORIZONTAL_LEFT = "align_horizontal_left" - ALIGN_HORIZONTAL_LEFT_OUTLINED = "align_horizontal_left_outlined" - ALIGN_HORIZONTAL_LEFT_ROUNDED = "align_horizontal_left_rounded" - ALIGN_HORIZONTAL_LEFT_SHARP = "align_horizontal_left_sharp" - ALIGN_HORIZONTAL_RIGHT = "align_horizontal_right" - ALIGN_HORIZONTAL_RIGHT_OUTLINED = "align_horizontal_right_outlined" - ALIGN_HORIZONTAL_RIGHT_ROUNDED = "align_horizontal_right_rounded" - ALIGN_HORIZONTAL_RIGHT_SHARP = "align_horizontal_right_sharp" - ALIGN_VERTICAL_BOTTOM = "align_vertical_bottom" - ALIGN_VERTICAL_BOTTOM_OUTLINED = "align_vertical_bottom_outlined" - ALIGN_VERTICAL_BOTTOM_ROUNDED = "align_vertical_bottom_rounded" - ALIGN_VERTICAL_BOTTOM_SHARP = "align_vertical_bottom_sharp" - ALIGN_VERTICAL_CENTER = "align_vertical_center" - ALIGN_VERTICAL_CENTER_OUTLINED = "align_vertical_center_outlined" - ALIGN_VERTICAL_CENTER_ROUNDED = "align_vertical_center_rounded" - ALIGN_VERTICAL_CENTER_SHARP = "align_vertical_center_sharp" - ALIGN_VERTICAL_TOP = "align_vertical_top" - ALIGN_VERTICAL_TOP_OUTLINED = "align_vertical_top_outlined" - ALIGN_VERTICAL_TOP_ROUNDED = "align_vertical_top_rounded" - ALIGN_VERTICAL_TOP_SHARP = "align_vertical_top_sharp" - ALL_INBOX = "all_inbox" - ALL_INBOX_OUTLINED = "all_inbox_outlined" - ALL_INBOX_ROUNDED = "all_inbox_rounded" - ALL_INBOX_SHARP = "all_inbox_sharp" - ALL_INCLUSIVE = "all_inclusive" - ALL_INCLUSIVE_OUTLINED = "all_inclusive_outlined" - ALL_INCLUSIVE_ROUNDED = "all_inclusive_rounded" - ALL_INCLUSIVE_SHARP = "all_inclusive_sharp" - ALL_OUT = "all_out" - ALL_OUT_OUTLINED = "all_out_outlined" - ALL_OUT_ROUNDED = "all_out_rounded" - ALL_OUT_SHARP = "all_out_sharp" - ALTERNATE_EMAIL = "alternate_email" - ALTERNATE_EMAIL_OUTLINED = "alternate_email_outlined" - ALTERNATE_EMAIL_ROUNDED = "alternate_email_rounded" - ALTERNATE_EMAIL_SHARP = "alternate_email_sharp" - ALT_ROUTE = "alt_route" - ALT_ROUTE_OUTLINED = "alt_route_outlined" - ALT_ROUTE_ROUNDED = "alt_route_rounded" - ALT_ROUTE_SHARP = "alt_route_sharp" - AMP_STORIES = "amp_stories" - AMP_STORIES_OUTLINED = "amp_stories_outlined" - AMP_STORIES_ROUNDED = "amp_stories_rounded" - AMP_STORIES_SHARP = "amp_stories_sharp" - ANALYTICS = "analytics" - ANALYTICS_OUTLINED = "analytics_outlined" - ANALYTICS_ROUNDED = "analytics_rounded" - ANALYTICS_SHARP = "analytics_sharp" - ANCHOR = "anchor" - ANCHOR_OUTLINED = "anchor_outlined" - ANCHOR_ROUNDED = "anchor_rounded" - ANCHOR_SHARP = "anchor_sharp" - ANDROID = "android" - ANDROID_OUTLINED = "android_outlined" - ANDROID_ROUNDED = "android_rounded" - ANDROID_SHARP = "android_sharp" - ANIMATION = "animation" - ANIMATION_OUTLINED = "animation_outlined" - ANIMATION_ROUNDED = "animation_rounded" - ANIMATION_SHARP = "animation_sharp" - ANNOUNCEMENT = "announcement" - ANNOUNCEMENT_OUTLINED = "announcement_outlined" - ANNOUNCEMENT_ROUNDED = "announcement_rounded" - ANNOUNCEMENT_SHARP = "announcement_sharp" - AOD = "aod" - AOD_OUTLINED = "aod_outlined" - AOD_ROUNDED = "aod_rounded" - AOD_SHARP = "aod_sharp" - APARTMENT = "apartment" - APARTMENT_OUTLINED = "apartment_outlined" - APARTMENT_ROUNDED = "apartment_rounded" - APARTMENT_SHARP = "apartment_sharp" - API = "api" - API_OUTLINED = "api_outlined" - API_ROUNDED = "api_rounded" - API_SHARP = "api_sharp" - APPLE = "apple" - APPLE_OUTLINED = "apple_outlined" - APPLE_ROUNDED = "apple_rounded" - APPLE_SHARP = "apple_sharp" - APPROVAL = "approval" - APPROVAL_OUTLINED = "approval_outlined" - APPROVAL_ROUNDED = "approval_rounded" - APPROVAL_SHARP = "approval_sharp" - APPS = "apps" - APPS_OUTAGE = "apps_outage" - APPS_OUTAGE_OUTLINED = "apps_outage_outlined" - APPS_OUTAGE_ROUNDED = "apps_outage_rounded" - APPS_OUTAGE_SHARP = "apps_outage_sharp" - APPS_OUTLINED = "apps_outlined" - APPS_ROUNDED = "apps_rounded" - APPS_SHARP = "apps_sharp" - APP_BLOCKING = "app_blocking" - APP_BLOCKING_OUTLINED = "app_blocking_outlined" - APP_BLOCKING_ROUNDED = "app_blocking_rounded" - APP_BLOCKING_SHARP = "app_blocking_sharp" - APP_REGISTRATION = "app_registration" - APP_REGISTRATION_OUTLINED = "app_registration_outlined" - APP_REGISTRATION_ROUNDED = "app_registration_rounded" - APP_REGISTRATION_SHARP = "app_registration_sharp" - APP_SETTINGS_ALT = "app_settings_alt" - APP_SETTINGS_ALT_OUTLINED = "app_settings_alt_outlined" - APP_SETTINGS_ALT_ROUNDED = "app_settings_alt_rounded" - APP_SETTINGS_ALT_SHARP = "app_settings_alt_sharp" - APP_SHORTCUT = "app_shortcut" - APP_SHORTCUT_OUTLINED = "app_shortcut_outlined" - APP_SHORTCUT_ROUNDED = "app_shortcut_rounded" - APP_SHORTCUT_SHARP = "app_shortcut_sharp" - ARCHITECTURE = "architecture" - ARCHITECTURE_OUTLINED = "architecture_outlined" - ARCHITECTURE_ROUNDED = "architecture_rounded" - ARCHITECTURE_SHARP = "architecture_sharp" - ARCHIVE = "archive" - ARCHIVE_OUTLINED = "archive_outlined" - ARCHIVE_ROUNDED = "archive_rounded" - ARCHIVE_SHARP = "archive_sharp" - AREA_CHART = "area_chart" - AREA_CHART_OUTLINED = "area_chart_outlined" - AREA_CHART_ROUNDED = "area_chart_rounded" - AREA_CHART_SHARP = "area_chart_sharp" - ARROW_BACK = "arrow_back" - ARROW_BACK_IOS = "arrow_back_ios" - ARROW_BACK_IOS_NEW = "arrow_back_ios_new" - ARROW_BACK_IOS_NEW_OUTLINED = "arrow_back_ios_new_outlined" - ARROW_BACK_IOS_NEW_ROUNDED = "arrow_back_ios_new_rounded" - ARROW_BACK_IOS_NEW_SHARP = "arrow_back_ios_new_sharp" - ARROW_BACK_IOS_OUTLINED = "arrow_back_ios_outlined" - ARROW_BACK_IOS_ROUNDED = "arrow_back_ios_rounded" - ARROW_BACK_IOS_SHARP = "arrow_back_ios_sharp" - ARROW_BACK_OUTLINED = "arrow_back_outlined" - ARROW_BACK_ROUNDED = "arrow_back_rounded" - ARROW_BACK_SHARP = "arrow_back_sharp" - ARROW_CIRCLE_DOWN = "arrow_circle_down" - ARROW_CIRCLE_DOWN_OUTLINED = "arrow_circle_down_outlined" - ARROW_CIRCLE_DOWN_ROUNDED = "arrow_circle_down_rounded" - ARROW_CIRCLE_DOWN_SHARP = "arrow_circle_down_sharp" - ARROW_CIRCLE_LEFT = "arrow_circle_left" - ARROW_CIRCLE_LEFT_OUTLINED = "arrow_circle_left_outlined" - ARROW_CIRCLE_LEFT_ROUNDED = "arrow_circle_left_rounded" - ARROW_CIRCLE_LEFT_SHARP = "arrow_circle_left_sharp" - ARROW_CIRCLE_RIGHT = "arrow_circle_right" - ARROW_CIRCLE_RIGHT_OUTLINED = "arrow_circle_right_outlined" - ARROW_CIRCLE_RIGHT_ROUNDED = "arrow_circle_right_rounded" - ARROW_CIRCLE_RIGHT_SHARP = "arrow_circle_right_sharp" - ARROW_CIRCLE_UP = "arrow_circle_up" - ARROW_CIRCLE_UP_OUTLINED = "arrow_circle_up_outlined" - ARROW_CIRCLE_UP_ROUNDED = "arrow_circle_up_rounded" - ARROW_CIRCLE_UP_SHARP = "arrow_circle_up_sharp" - ARROW_DOWNWARD = "arrow_downward" - ARROW_DOWNWARD_OUTLINED = "arrow_downward_outlined" - ARROW_DOWNWARD_ROUNDED = "arrow_downward_rounded" - ARROW_DOWNWARD_SHARP = "arrow_downward_sharp" - ARROW_DROP_DOWN = "arrow_drop_down" - ARROW_DROP_DOWN_CIRCLE = "arrow_drop_down_circle" - ARROW_DROP_DOWN_CIRCLE_OUTLINED = "arrow_drop_down_circle_outlined" - ARROW_DROP_DOWN_CIRCLE_ROUNDED = "arrow_drop_down_circle_rounded" - ARROW_DROP_DOWN_CIRCLE_SHARP = "arrow_drop_down_circle_sharp" - ARROW_DROP_DOWN_OUTLINED = "arrow_drop_down_outlined" - ARROW_DROP_DOWN_ROUNDED = "arrow_drop_down_rounded" - ARROW_DROP_DOWN_SHARP = "arrow_drop_down_sharp" - ARROW_DROP_UP = "arrow_drop_up" - ARROW_DROP_UP_OUTLINED = "arrow_drop_up_outlined" - ARROW_DROP_UP_ROUNDED = "arrow_drop_up_rounded" - ARROW_DROP_UP_SHARP = "arrow_drop_up_sharp" - ARROW_FORWARD = "arrow_forward" - ARROW_FORWARD_IOS = "arrow_forward_ios" - ARROW_FORWARD_IOS_OUTLINED = "arrow_forward_ios_outlined" - ARROW_FORWARD_IOS_ROUNDED = "arrow_forward_ios_rounded" - ARROW_FORWARD_IOS_SHARP = "arrow_forward_ios_sharp" - ARROW_FORWARD_OUTLINED = "arrow_forward_outlined" - ARROW_FORWARD_ROUNDED = "arrow_forward_rounded" - ARROW_FORWARD_SHARP = "arrow_forward_sharp" - ARROW_LEFT = "arrow_left" - ARROW_LEFT_OUTLINED = "arrow_left_outlined" - ARROW_LEFT_ROUNDED = "arrow_left_rounded" - ARROW_LEFT_SHARP = "arrow_left_sharp" - ARROW_OUTWARD = "arrow_outward" - ARROW_OUTWARD_OUTLINED = "arrow_outward_outlined" - ARROW_OUTWARD_ROUNDED = "arrow_outward_rounded" - ARROW_OUTWARD_SHARP = "arrow_outward_sharp" - ARROW_RIGHT = "arrow_right" - ARROW_RIGHT_ALT = "arrow_right_alt" - ARROW_RIGHT_ALT_OUTLINED = "arrow_right_alt_outlined" - ARROW_RIGHT_ALT_ROUNDED = "arrow_right_alt_rounded" - ARROW_RIGHT_ALT_SHARP = "arrow_right_alt_sharp" - ARROW_RIGHT_OUTLINED = "arrow_right_outlined" - ARROW_RIGHT_ROUNDED = "arrow_right_rounded" - ARROW_RIGHT_SHARP = "arrow_right_sharp" - ARROW_UPWARD = "arrow_upward" - ARROW_UPWARD_OUTLINED = "arrow_upward_outlined" - ARROW_UPWARD_ROUNDED = "arrow_upward_rounded" - ARROW_UPWARD_SHARP = "arrow_upward_sharp" - ARTICLE = "article" - ARTICLE_OUTLINED = "article_outlined" - ARTICLE_ROUNDED = "article_rounded" - ARTICLE_SHARP = "article_sharp" - ART_TRACK = "art_track" - ART_TRACK_OUTLINED = "art_track_outlined" - ART_TRACK_ROUNDED = "art_track_rounded" - ART_TRACK_SHARP = "art_track_sharp" - ASPECT_RATIO = "aspect_ratio" - ASPECT_RATIO_OUTLINED = "aspect_ratio_outlined" - ASPECT_RATIO_ROUNDED = "aspect_ratio_rounded" - ASPECT_RATIO_SHARP = "aspect_ratio_sharp" - ASSESSMENT = "assessment" - ASSESSMENT_OUTLINED = "assessment_outlined" - ASSESSMENT_ROUNDED = "assessment_rounded" - ASSESSMENT_SHARP = "assessment_sharp" - ASSIGNMENT = "assignment" - ASSIGNMENT_ADD = "assignment_add" - ASSIGNMENT_IND = "assignment_ind" - ASSIGNMENT_IND_OUTLINED = "assignment_ind_outlined" - ASSIGNMENT_IND_ROUNDED = "assignment_ind_rounded" - ASSIGNMENT_IND_SHARP = "assignment_ind_sharp" - ASSIGNMENT_LATE = "assignment_late" - ASSIGNMENT_LATE_OUTLINED = "assignment_late_outlined" - ASSIGNMENT_LATE_ROUNDED = "assignment_late_rounded" - ASSIGNMENT_LATE_SHARP = "assignment_late_sharp" - ASSIGNMENT_OUTLINED = "assignment_outlined" - ASSIGNMENT_RETURN = "assignment_return" - ASSIGNMENT_RETURNED = "assignment_returned" - ASSIGNMENT_RETURNED_OUTLINED = "assignment_returned_outlined" - ASSIGNMENT_RETURNED_ROUNDED = "assignment_returned_rounded" - ASSIGNMENT_RETURNED_SHARP = "assignment_returned_sharp" - ASSIGNMENT_RETURN_OUTLINED = "assignment_return_outlined" - ASSIGNMENT_RETURN_ROUNDED = "assignment_return_rounded" - ASSIGNMENT_RETURN_SHARP = "assignment_return_sharp" - ASSIGNMENT_ROUNDED = "assignment_rounded" - ASSIGNMENT_SHARP = "assignment_sharp" - ASSIGNMENT_TURNED_IN = "assignment_turned_in" - ASSIGNMENT_TURNED_IN_OUTLINED = "assignment_turned_in_outlined" - ASSIGNMENT_TURNED_IN_ROUNDED = "assignment_turned_in_rounded" - ASSIGNMENT_TURNED_IN_SHARP = "assignment_turned_in_sharp" - ASSISTANT = "assistant" - ASSISTANT_DIRECTION = "assistant_direction" - ASSISTANT_DIRECTION_OUTLINED = "assistant_direction_outlined" - ASSISTANT_DIRECTION_ROUNDED = "assistant_direction_rounded" - ASSISTANT_DIRECTION_SHARP = "assistant_direction_sharp" - ASSISTANT_NAVIGATION = "assistant_navigation" - ASSISTANT_OUTLINED = "assistant_outlined" - ASSISTANT_PHOTO = "assistant_photo" - ASSISTANT_PHOTO_OUTLINED = "assistant_photo_outlined" - ASSISTANT_PHOTO_ROUNDED = "assistant_photo_rounded" - ASSISTANT_PHOTO_SHARP = "assistant_photo_sharp" - ASSISTANT_ROUNDED = "assistant_rounded" - ASSISTANT_SHARP = "assistant_sharp" - ASSIST_WALKER = "assist_walker" - ASSIST_WALKER_OUTLINED = "assist_walker_outlined" - ASSIST_WALKER_ROUNDED = "assist_walker_rounded" - ASSIST_WALKER_SHARP = "assist_walker_sharp" - ASSURED_WORKLOAD = "assured_workload" - ASSURED_WORKLOAD_OUTLINED = "assured_workload_outlined" - ASSURED_WORKLOAD_ROUNDED = "assured_workload_rounded" - ASSURED_WORKLOAD_SHARP = "assured_workload_sharp" - ATM = "atm" - ATM_OUTLINED = "atm_outlined" - ATM_ROUNDED = "atm_rounded" - ATM_SHARP = "atm_sharp" - ATTACHMENT = "attachment" - ATTACHMENT_OUTLINED = "attachment_outlined" - ATTACHMENT_ROUNDED = "attachment_rounded" - ATTACHMENT_SHARP = "attachment_sharp" - ATTACH_EMAIL = "attach_email" - ATTACH_EMAIL_OUTLINED = "attach_email_outlined" - ATTACH_EMAIL_ROUNDED = "attach_email_rounded" - ATTACH_EMAIL_SHARP = "attach_email_sharp" - ATTACH_FILE = "attach_file" - ATTACH_FILE_OUTLINED = "attach_file_outlined" - ATTACH_FILE_ROUNDED = "attach_file_rounded" - ATTACH_FILE_SHARP = "attach_file_sharp" - ATTACH_MONEY = "attach_money" - ATTACH_MONEY_OUTLINED = "attach_money_outlined" - ATTACH_MONEY_ROUNDED = "attach_money_rounded" - ATTACH_MONEY_SHARP = "attach_money_sharp" - ATTRACTIONS = "attractions" - ATTRACTIONS_OUTLINED = "attractions_outlined" - ATTRACTIONS_ROUNDED = "attractions_rounded" - ATTRACTIONS_SHARP = "attractions_sharp" - ATTRIBUTION = "attribution" - ATTRIBUTION_OUTLINED = "attribution_outlined" - ATTRIBUTION_ROUNDED = "attribution_rounded" - ATTRIBUTION_SHARP = "attribution_sharp" - AUDIOTRACK = "audiotrack" - AUDIOTRACK_OUTLINED = "audiotrack_outlined" - AUDIOTRACK_ROUNDED = "audiotrack_rounded" - AUDIOTRACK_SHARP = "audiotrack_sharp" - AUDIO_FILE = "audio_file" - AUDIO_FILE_OUTLINED = "audio_file_outlined" - AUDIO_FILE_ROUNDED = "audio_file_rounded" - AUDIO_FILE_SHARP = "audio_file_sharp" - AUTOFPS_SELECT = "autofps_select" - AUTOFPS_SELECT_OUTLINED = "autofps_select_outlined" - AUTOFPS_SELECT_ROUNDED = "autofps_select_rounded" - AUTOFPS_SELECT_SHARP = "autofps_select_sharp" - AUTORENEW = "autorenew" - AUTORENEW_OUTLINED = "autorenew_outlined" - AUTORENEW_ROUNDED = "autorenew_rounded" - AUTORENEW_SHARP = "autorenew_sharp" - AUTO_AWESOME = "auto_awesome" - AUTO_AWESOME_MOSAIC = "auto_awesome_mosaic" - AUTO_AWESOME_MOSAIC_OUTLINED = "auto_awesome_mosaic_outlined" - AUTO_AWESOME_MOSAIC_ROUNDED = "auto_awesome_mosaic_rounded" - AUTO_AWESOME_MOSAIC_SHARP = "auto_awesome_mosaic_sharp" - AUTO_AWESOME_MOTION = "auto_awesome_motion" - AUTO_AWESOME_MOTION_OUTLINED = "auto_awesome_motion_outlined" - AUTO_AWESOME_MOTION_ROUNDED = "auto_awesome_motion_rounded" - AUTO_AWESOME_MOTION_SHARP = "auto_awesome_motion_sharp" - AUTO_AWESOME_OUTLINED = "auto_awesome_outlined" - AUTO_AWESOME_ROUNDED = "auto_awesome_rounded" - AUTO_AWESOME_SHARP = "auto_awesome_sharp" - AUTO_DELETE = "auto_delete" - AUTO_DELETE_OUTLINED = "auto_delete_outlined" - AUTO_DELETE_ROUNDED = "auto_delete_rounded" - AUTO_DELETE_SHARP = "auto_delete_sharp" - AUTO_FIX_HIGH = "auto_fix_high" - AUTO_FIX_HIGH_OUTLINED = "auto_fix_high_outlined" - AUTO_FIX_HIGH_ROUNDED = "auto_fix_high_rounded" - AUTO_FIX_HIGH_SHARP = "auto_fix_high_sharp" - AUTO_FIX_NORMAL = "auto_fix_normal" - AUTO_FIX_NORMAL_OUTLINED = "auto_fix_normal_outlined" - AUTO_FIX_NORMAL_ROUNDED = "auto_fix_normal_rounded" - AUTO_FIX_NORMAL_SHARP = "auto_fix_normal_sharp" - AUTO_FIX_OFF = "auto_fix_off" - AUTO_FIX_OFF_OUTLINED = "auto_fix_off_outlined" - AUTO_FIX_OFF_ROUNDED = "auto_fix_off_rounded" - AUTO_FIX_OFF_SHARP = "auto_fix_off_sharp" - AUTO_GRAPH = "auto_graph" - AUTO_GRAPH_OUTLINED = "auto_graph_outlined" - AUTO_GRAPH_ROUNDED = "auto_graph_rounded" - AUTO_GRAPH_SHARP = "auto_graph_sharp" - AUTO_MODE = "auto_mode" - AUTO_MODE_OUTLINED = "auto_mode_outlined" - AUTO_MODE_ROUNDED = "auto_mode_rounded" - AUTO_MODE_SHARP = "auto_mode_sharp" - AUTO_STORIES = "auto_stories" - AUTO_STORIES_OUTLINED = "auto_stories_outlined" - AUTO_STORIES_ROUNDED = "auto_stories_rounded" - AUTO_STORIES_SHARP = "auto_stories_sharp" - AV_TIMER = "av_timer" - AV_TIMER_OUTLINED = "av_timer_outlined" - AV_TIMER_ROUNDED = "av_timer_rounded" - AV_TIMER_SHARP = "av_timer_sharp" - BABY_CHANGING_STATION = "baby_changing_station" - BABY_CHANGING_STATION_OUTLINED = "baby_changing_station_outlined" - BABY_CHANGING_STATION_ROUNDED = "baby_changing_station_rounded" - BABY_CHANGING_STATION_SHARP = "baby_changing_station_sharp" - BACKPACK = "backpack" - BACKPACK_OUTLINED = "backpack_outlined" - BACKPACK_ROUNDED = "backpack_rounded" - BACKPACK_SHARP = "backpack_sharp" - BACKSPACE = "backspace" - BACKSPACE_OUTLINED = "backspace_outlined" - BACKSPACE_ROUNDED = "backspace_rounded" - BACKSPACE_SHARP = "backspace_sharp" - BACKUP = "backup" - BACKUP_OUTLINED = "backup_outlined" - BACKUP_ROUNDED = "backup_rounded" - BACKUP_SHARP = "backup_sharp" - BACKUP_TABLE = "backup_table" - BACKUP_TABLE_OUTLINED = "backup_table_outlined" - BACKUP_TABLE_ROUNDED = "backup_table_rounded" - BACKUP_TABLE_SHARP = "backup_table_sharp" - BACK_HAND = "back_hand" - BACK_HAND_OUTLINED = "back_hand_outlined" - BACK_HAND_ROUNDED = "back_hand_rounded" - BACK_HAND_SHARP = "back_hand_sharp" - BADGE = "badge" - BADGE_OUTLINED = "badge_outlined" - BADGE_ROUNDED = "badge_rounded" - BADGE_SHARP = "badge_sharp" - BAKERY_DINING = "bakery_dining" - BAKERY_DINING_OUTLINED = "bakery_dining_outlined" - BAKERY_DINING_ROUNDED = "bakery_dining_rounded" - BAKERY_DINING_SHARP = "bakery_dining_sharp" - BALANCE = "balance" - BALANCE_OUTLINED = "balance_outlined" - BALANCE_ROUNDED = "balance_rounded" - BALANCE_SHARP = "balance_sharp" - BALCONY = "balcony" - BALCONY_OUTLINED = "balcony_outlined" - BALCONY_ROUNDED = "balcony_rounded" - BALCONY_SHARP = "balcony_sharp" - BALLOT = "ballot" - BALLOT_OUTLINED = "ballot_outlined" - BALLOT_ROUNDED = "ballot_rounded" - BALLOT_SHARP = "ballot_sharp" - BARCODE_READER = "barcode_reader" - BAR_CHART = "bar_chart" - BAR_CHART_OUTLINED = "bar_chart_outlined" - BAR_CHART_ROUNDED = "bar_chart_rounded" - BAR_CHART_SHARP = "bar_chart_sharp" - BATCH_PREDICTION = "batch_prediction" - BATCH_PREDICTION_OUTLINED = "batch_prediction_outlined" - BATCH_PREDICTION_ROUNDED = "batch_prediction_rounded" - BATCH_PREDICTION_SHARP = "batch_prediction_sharp" - BATHROOM = "bathroom" - BATHROOM_OUTLINED = "bathroom_outlined" - BATHROOM_ROUNDED = "bathroom_rounded" - BATHROOM_SHARP = "bathroom_sharp" - BATHTUB = "bathtub" - BATHTUB_OUTLINED = "bathtub_outlined" - BATHTUB_ROUNDED = "bathtub_rounded" - BATHTUB_SHARP = "bathtub_sharp" - BATTERY_0_BAR = "battery_0_bar" - BATTERY_0_BAR_OUTLINED = "battery_0_bar_outlined" - BATTERY_0_BAR_ROUNDED = "battery_0_bar_rounded" - BATTERY_0_BAR_SHARP = "battery_0_bar_sharp" - BATTERY_1_BAR = "battery_1_bar" - BATTERY_1_BAR_OUTLINED = "battery_1_bar_outlined" - BATTERY_1_BAR_ROUNDED = "battery_1_bar_rounded" - BATTERY_1_BAR_SHARP = "battery_1_bar_sharp" - BATTERY_2_BAR = "battery_2_bar" - BATTERY_2_BAR_OUTLINED = "battery_2_bar_outlined" - BATTERY_2_BAR_ROUNDED = "battery_2_bar_rounded" - BATTERY_2_BAR_SHARP = "battery_2_bar_sharp" - BATTERY_3_BAR = "battery_3_bar" - BATTERY_3_BAR_OUTLINED = "battery_3_bar_outlined" - BATTERY_3_BAR_ROUNDED = "battery_3_bar_rounded" - BATTERY_3_BAR_SHARP = "battery_3_bar_sharp" - BATTERY_4_BAR = "battery_4_bar" - BATTERY_4_BAR_OUTLINED = "battery_4_bar_outlined" - BATTERY_4_BAR_ROUNDED = "battery_4_bar_rounded" - BATTERY_4_BAR_SHARP = "battery_4_bar_sharp" - BATTERY_5_BAR = "battery_5_bar" - BATTERY_5_BAR_OUTLINED = "battery_5_bar_outlined" - BATTERY_5_BAR_ROUNDED = "battery_5_bar_rounded" - BATTERY_5_BAR_SHARP = "battery_5_bar_sharp" - BATTERY_6_BAR = "battery_6_bar" - BATTERY_6_BAR_OUTLINED = "battery_6_bar_outlined" - BATTERY_6_BAR_ROUNDED = "battery_6_bar_rounded" - BATTERY_6_BAR_SHARP = "battery_6_bar_sharp" - BATTERY_ALERT = "battery_alert" - BATTERY_ALERT_OUTLINED = "battery_alert_outlined" - BATTERY_ALERT_ROUNDED = "battery_alert_rounded" - BATTERY_ALERT_SHARP = "battery_alert_sharp" - BATTERY_CHARGING_FULL = "battery_charging_full" - BATTERY_CHARGING_FULL_OUTLINED = "battery_charging_full_outlined" - BATTERY_CHARGING_FULL_ROUNDED = "battery_charging_full_rounded" - BATTERY_CHARGING_FULL_SHARP = "battery_charging_full_sharp" - BATTERY_FULL = "battery_full" - BATTERY_FULL_OUTLINED = "battery_full_outlined" - BATTERY_FULL_ROUNDED = "battery_full_rounded" - BATTERY_FULL_SHARP = "battery_full_sharp" - BATTERY_SAVER = "battery_saver" - BATTERY_SAVER_OUTLINED = "battery_saver_outlined" - BATTERY_SAVER_ROUNDED = "battery_saver_rounded" - BATTERY_SAVER_SHARP = "battery_saver_sharp" - BATTERY_STD = "battery_std" - BATTERY_STD_OUTLINED = "battery_std_outlined" - BATTERY_STD_ROUNDED = "battery_std_rounded" - BATTERY_STD_SHARP = "battery_std_sharp" - BATTERY_UNKNOWN = "battery_unknown" - BATTERY_UNKNOWN_OUTLINED = "battery_unknown_outlined" - BATTERY_UNKNOWN_ROUNDED = "battery_unknown_rounded" - BATTERY_UNKNOWN_SHARP = "battery_unknown_sharp" - BEACH_ACCESS = "beach_access" - BEACH_ACCESS_OUTLINED = "beach_access_outlined" - BEACH_ACCESS_ROUNDED = "beach_access_rounded" - BEACH_ACCESS_SHARP = "beach_access_sharp" - BED = "bed" - BEDROOM_BABY = "bedroom_baby" - BEDROOM_BABY_OUTLINED = "bedroom_baby_outlined" - BEDROOM_BABY_ROUNDED = "bedroom_baby_rounded" - BEDROOM_BABY_SHARP = "bedroom_baby_sharp" - BEDROOM_CHILD = "bedroom_child" - BEDROOM_CHILD_OUTLINED = "bedroom_child_outlined" - BEDROOM_CHILD_ROUNDED = "bedroom_child_rounded" - BEDROOM_CHILD_SHARP = "bedroom_child_sharp" - BEDROOM_PARENT = "bedroom_parent" - BEDROOM_PARENT_OUTLINED = "bedroom_parent_outlined" - BEDROOM_PARENT_ROUNDED = "bedroom_parent_rounded" - BEDROOM_PARENT_SHARP = "bedroom_parent_sharp" - BEDTIME = "bedtime" - BEDTIME_OFF = "bedtime_off" - BEDTIME_OFF_OUTLINED = "bedtime_off_outlined" - BEDTIME_OFF_ROUNDED = "bedtime_off_rounded" - BEDTIME_OFF_SHARP = "bedtime_off_sharp" - BEDTIME_OUTLINED = "bedtime_outlined" - BEDTIME_ROUNDED = "bedtime_rounded" - BEDTIME_SHARP = "bedtime_sharp" - BED_OUTLINED = "bed_outlined" - BED_ROUNDED = "bed_rounded" - BED_SHARP = "bed_sharp" - BEENHERE = "beenhere" - BEENHERE_OUTLINED = "beenhere_outlined" - BEENHERE_ROUNDED = "beenhere_rounded" - BEENHERE_SHARP = "beenhere_sharp" - BENTO = "bento" - BENTO_OUTLINED = "bento_outlined" - BENTO_ROUNDED = "bento_rounded" - BENTO_SHARP = "bento_sharp" - BIKE_SCOOTER = "bike_scooter" - BIKE_SCOOTER_OUTLINED = "bike_scooter_outlined" - BIKE_SCOOTER_ROUNDED = "bike_scooter_rounded" - BIKE_SCOOTER_SHARP = "bike_scooter_sharp" - BIOTECH = "biotech" - BIOTECH_OUTLINED = "biotech_outlined" - BIOTECH_ROUNDED = "biotech_rounded" - BIOTECH_SHARP = "biotech_sharp" - BLENDER = "blender" - BLENDER_OUTLINED = "blender_outlined" - BLENDER_ROUNDED = "blender_rounded" - BLENDER_SHARP = "blender_sharp" - BLIND = "blind" - BLINDS = "blinds" - BLINDS_CLOSED = "blinds_closed" - BLINDS_CLOSED_OUTLINED = "blinds_closed_outlined" - BLINDS_CLOSED_ROUNDED = "blinds_closed_rounded" - BLINDS_CLOSED_SHARP = "blinds_closed_sharp" - BLINDS_OUTLINED = "blinds_outlined" - BLINDS_ROUNDED = "blinds_rounded" - BLINDS_SHARP = "blinds_sharp" - BLIND_OUTLINED = "blind_outlined" - BLIND_ROUNDED = "blind_rounded" - BLIND_SHARP = "blind_sharp" - BLOCK = "block" - BLOCK_FLIPPED = "block_flipped" - BLOCK_OUTLINED = "block_outlined" - BLOCK_ROUNDED = "block_rounded" - BLOCK_SHARP = "block_sharp" - BLOODTYPE = "bloodtype" - BLOODTYPE_OUTLINED = "bloodtype_outlined" - BLOODTYPE_ROUNDED = "bloodtype_rounded" - BLOODTYPE_SHARP = "bloodtype_sharp" - BLUETOOTH = "bluetooth" - BLUETOOTH_AUDIO = "bluetooth_audio" - BLUETOOTH_AUDIO_OUTLINED = "bluetooth_audio_outlined" - BLUETOOTH_AUDIO_ROUNDED = "bluetooth_audio_rounded" - BLUETOOTH_AUDIO_SHARP = "bluetooth_audio_sharp" - BLUETOOTH_CONNECTED = "bluetooth_connected" - BLUETOOTH_CONNECTED_OUTLINED = "bluetooth_connected_outlined" - BLUETOOTH_CONNECTED_ROUNDED = "bluetooth_connected_rounded" - BLUETOOTH_CONNECTED_SHARP = "bluetooth_connected_sharp" - BLUETOOTH_DISABLED = "bluetooth_disabled" - BLUETOOTH_DISABLED_OUTLINED = "bluetooth_disabled_outlined" - BLUETOOTH_DISABLED_ROUNDED = "bluetooth_disabled_rounded" - BLUETOOTH_DISABLED_SHARP = "bluetooth_disabled_sharp" - BLUETOOTH_DRIVE = "bluetooth_drive" - BLUETOOTH_DRIVE_OUTLINED = "bluetooth_drive_outlined" - BLUETOOTH_DRIVE_ROUNDED = "bluetooth_drive_rounded" - BLUETOOTH_DRIVE_SHARP = "bluetooth_drive_sharp" - BLUETOOTH_OUTLINED = "bluetooth_outlined" - BLUETOOTH_ROUNDED = "bluetooth_rounded" - BLUETOOTH_SEARCHING = "bluetooth_searching" - BLUETOOTH_SEARCHING_OUTLINED = "bluetooth_searching_outlined" - BLUETOOTH_SEARCHING_ROUNDED = "bluetooth_searching_rounded" - BLUETOOTH_SEARCHING_SHARP = "bluetooth_searching_sharp" - BLUETOOTH_SHARP = "bluetooth_sharp" - BLUR_CIRCULAR = "blur_circular" - BLUR_CIRCULAR_OUTLINED = "blur_circular_outlined" - BLUR_CIRCULAR_ROUNDED = "blur_circular_rounded" - BLUR_CIRCULAR_SHARP = "blur_circular_sharp" - BLUR_LINEAR = "blur_linear" - BLUR_LINEAR_OUTLINED = "blur_linear_outlined" - BLUR_LINEAR_ROUNDED = "blur_linear_rounded" - BLUR_LINEAR_SHARP = "blur_linear_sharp" - BLUR_OFF = "blur_off" - BLUR_OFF_OUTLINED = "blur_off_outlined" - BLUR_OFF_ROUNDED = "blur_off_rounded" - BLUR_OFF_SHARP = "blur_off_sharp" - BLUR_ON = "blur_on" - BLUR_ON_OUTLINED = "blur_on_outlined" - BLUR_ON_ROUNDED = "blur_on_rounded" - BLUR_ON_SHARP = "blur_on_sharp" - BOLT = "bolt" - BOLT_OUTLINED = "bolt_outlined" - BOLT_ROUNDED = "bolt_rounded" - BOLT_SHARP = "bolt_sharp" - BOOK = "book" - BOOKMARK = "bookmark" - BOOKMARKS = "bookmarks" - BOOKMARKS_OUTLINED = "bookmarks_outlined" - BOOKMARKS_ROUNDED = "bookmarks_rounded" - BOOKMARKS_SHARP = "bookmarks_sharp" - BOOKMARK_ADD = "bookmark_add" - BOOKMARK_ADDED = "bookmark_added" - BOOKMARK_ADDED_OUTLINED = "bookmark_added_outlined" - BOOKMARK_ADDED_ROUNDED = "bookmark_added_rounded" - BOOKMARK_ADDED_SHARP = "bookmark_added_sharp" - BOOKMARK_ADD_OUTLINED = "bookmark_add_outlined" - BOOKMARK_ADD_ROUNDED = "bookmark_add_rounded" - BOOKMARK_ADD_SHARP = "bookmark_add_sharp" - BOOKMARK_BORDER = "bookmark_border" - BOOKMARK_BORDER_OUTLINED = "bookmark_border_outlined" - BOOKMARK_BORDER_ROUNDED = "bookmark_border_rounded" - BOOKMARK_BORDER_SHARP = "bookmark_border_sharp" - BOOKMARK_OUTLINE = "bookmark_outline" - BOOKMARK_OUTLINED = "bookmark_outlined" - BOOKMARK_OUTLINE_OUTLINED = "bookmark_outline_outlined" - BOOKMARK_OUTLINE_ROUNDED = "bookmark_outline_rounded" - BOOKMARK_OUTLINE_SHARP = "bookmark_outline_sharp" - BOOKMARK_REMOVE = "bookmark_remove" - BOOKMARK_REMOVE_OUTLINED = "bookmark_remove_outlined" - BOOKMARK_REMOVE_ROUNDED = "bookmark_remove_rounded" - BOOKMARK_REMOVE_SHARP = "bookmark_remove_sharp" - BOOKMARK_ROUNDED = "bookmark_rounded" - BOOKMARK_SHARP = "bookmark_sharp" - BOOK_ONLINE = "book_online" - BOOK_ONLINE_OUTLINED = "book_online_outlined" - BOOK_ONLINE_ROUNDED = "book_online_rounded" - BOOK_ONLINE_SHARP = "book_online_sharp" - BOOK_OUTLINED = "book_outlined" - BOOK_ROUNDED = "book_rounded" - BOOK_SHARP = "book_sharp" - BORDER_ALL = "border_all" - BORDER_ALL_OUTLINED = "border_all_outlined" - BORDER_ALL_ROUNDED = "border_all_rounded" - BORDER_ALL_SHARP = "border_all_sharp" - BORDER_BOTTOM = "border_bottom" - BORDER_BOTTOM_OUTLINED = "border_bottom_outlined" - BORDER_BOTTOM_ROUNDED = "border_bottom_rounded" - BORDER_BOTTOM_SHARP = "border_bottom_sharp" - BORDER_CLEAR = "border_clear" - BORDER_CLEAR_OUTLINED = "border_clear_outlined" - BORDER_CLEAR_ROUNDED = "border_clear_rounded" - BORDER_CLEAR_SHARP = "border_clear_sharp" - BORDER_COLOR = "border_color" - BORDER_COLOR_OUTLINED = "border_color_outlined" - BORDER_COLOR_ROUNDED = "border_color_rounded" - BORDER_COLOR_SHARP = "border_color_sharp" - BORDER_HORIZONTAL = "border_horizontal" - BORDER_HORIZONTAL_OUTLINED = "border_horizontal_outlined" - BORDER_HORIZONTAL_ROUNDED = "border_horizontal_rounded" - BORDER_HORIZONTAL_SHARP = "border_horizontal_sharp" - BORDER_INNER = "border_inner" - BORDER_INNER_OUTLINED = "border_inner_outlined" - BORDER_INNER_ROUNDED = "border_inner_rounded" - BORDER_INNER_SHARP = "border_inner_sharp" - BORDER_LEFT = "border_left" - BORDER_LEFT_OUTLINED = "border_left_outlined" - BORDER_LEFT_ROUNDED = "border_left_rounded" - BORDER_LEFT_SHARP = "border_left_sharp" - BORDER_OUTER = "border_outer" - BORDER_OUTER_OUTLINED = "border_outer_outlined" - BORDER_OUTER_ROUNDED = "border_outer_rounded" - BORDER_OUTER_SHARP = "border_outer_sharp" - BORDER_RIGHT = "border_right" - BORDER_RIGHT_OUTLINED = "border_right_outlined" - BORDER_RIGHT_ROUNDED = "border_right_rounded" - BORDER_RIGHT_SHARP = "border_right_sharp" - BORDER_STYLE = "border_style" - BORDER_STYLE_OUTLINED = "border_style_outlined" - BORDER_STYLE_ROUNDED = "border_style_rounded" - BORDER_STYLE_SHARP = "border_style_sharp" - BORDER_TOP = "border_top" - BORDER_TOP_OUTLINED = "border_top_outlined" - BORDER_TOP_ROUNDED = "border_top_rounded" - BORDER_TOP_SHARP = "border_top_sharp" - BORDER_VERTICAL = "border_vertical" - BORDER_VERTICAL_OUTLINED = "border_vertical_outlined" - BORDER_VERTICAL_ROUNDED = "border_vertical_rounded" - BORDER_VERTICAL_SHARP = "border_vertical_sharp" - BOY = "boy" - BOY_OUTLINED = "boy_outlined" - BOY_ROUNDED = "boy_rounded" - BOY_SHARP = "boy_sharp" - BRANDING_WATERMARK = "branding_watermark" - BRANDING_WATERMARK_OUTLINED = "branding_watermark_outlined" - BRANDING_WATERMARK_ROUNDED = "branding_watermark_rounded" - BRANDING_WATERMARK_SHARP = "branding_watermark_sharp" - BREAKFAST_DINING = "breakfast_dining" - BREAKFAST_DINING_OUTLINED = "breakfast_dining_outlined" - BREAKFAST_DINING_ROUNDED = "breakfast_dining_rounded" - BREAKFAST_DINING_SHARP = "breakfast_dining_sharp" - BRIGHTNESS_1 = "brightness_1" - BRIGHTNESS_1_OUTLINED = "brightness_1_outlined" - BRIGHTNESS_1_ROUNDED = "brightness_1_rounded" - BRIGHTNESS_1_SHARP = "brightness_1_sharp" - BRIGHTNESS_2 = "brightness_2" - BRIGHTNESS_2_OUTLINED = "brightness_2_outlined" - BRIGHTNESS_2_ROUNDED = "brightness_2_rounded" - BRIGHTNESS_2_SHARP = "brightness_2_sharp" - BRIGHTNESS_3 = "brightness_3" - BRIGHTNESS_3_OUTLINED = "brightness_3_outlined" - BRIGHTNESS_3_ROUNDED = "brightness_3_rounded" - BRIGHTNESS_3_SHARP = "brightness_3_sharp" - BRIGHTNESS_4 = "brightness_4" - BRIGHTNESS_4_OUTLINED = "brightness_4_outlined" - BRIGHTNESS_4_ROUNDED = "brightness_4_rounded" - BRIGHTNESS_4_SHARP = "brightness_4_sharp" - BRIGHTNESS_5 = "brightness_5" - BRIGHTNESS_5_OUTLINED = "brightness_5_outlined" - BRIGHTNESS_5_ROUNDED = "brightness_5_rounded" - BRIGHTNESS_5_SHARP = "brightness_5_sharp" - BRIGHTNESS_6 = "brightness_6" - BRIGHTNESS_6_OUTLINED = "brightness_6_outlined" - BRIGHTNESS_6_ROUNDED = "brightness_6_rounded" - BRIGHTNESS_6_SHARP = "brightness_6_sharp" - BRIGHTNESS_7 = "brightness_7" - BRIGHTNESS_7_OUTLINED = "brightness_7_outlined" - BRIGHTNESS_7_ROUNDED = "brightness_7_rounded" - BRIGHTNESS_7_SHARP = "brightness_7_sharp" - BRIGHTNESS_AUTO = "brightness_auto" - BRIGHTNESS_AUTO_OUTLINED = "brightness_auto_outlined" - BRIGHTNESS_AUTO_ROUNDED = "brightness_auto_rounded" - BRIGHTNESS_AUTO_SHARP = "brightness_auto_sharp" - BRIGHTNESS_HIGH = "brightness_high" - BRIGHTNESS_HIGH_OUTLINED = "brightness_high_outlined" - BRIGHTNESS_HIGH_ROUNDED = "brightness_high_rounded" - BRIGHTNESS_HIGH_SHARP = "brightness_high_sharp" - BRIGHTNESS_LOW = "brightness_low" - BRIGHTNESS_LOW_OUTLINED = "brightness_low_outlined" - BRIGHTNESS_LOW_ROUNDED = "brightness_low_rounded" - BRIGHTNESS_LOW_SHARP = "brightness_low_sharp" - BRIGHTNESS_MEDIUM = "brightness_medium" - BRIGHTNESS_MEDIUM_OUTLINED = "brightness_medium_outlined" - BRIGHTNESS_MEDIUM_ROUNDED = "brightness_medium_rounded" - BRIGHTNESS_MEDIUM_SHARP = "brightness_medium_sharp" - BROADCAST_ON_HOME = "broadcast_on_home" - BROADCAST_ON_HOME_OUTLINED = "broadcast_on_home_outlined" - BROADCAST_ON_HOME_ROUNDED = "broadcast_on_home_rounded" - BROADCAST_ON_HOME_SHARP = "broadcast_on_home_sharp" - BROADCAST_ON_PERSONAL = "broadcast_on_personal" - BROADCAST_ON_PERSONAL_OUTLINED = "broadcast_on_personal_outlined" - BROADCAST_ON_PERSONAL_ROUNDED = "broadcast_on_personal_rounded" - BROADCAST_ON_PERSONAL_SHARP = "broadcast_on_personal_sharp" - BROKEN_IMAGE = "broken_image" - BROKEN_IMAGE_OUTLINED = "broken_image_outlined" - BROKEN_IMAGE_ROUNDED = "broken_image_rounded" - BROKEN_IMAGE_SHARP = "broken_image_sharp" - BROWSER_NOT_SUPPORTED = "browser_not_supported" - BROWSER_NOT_SUPPORTED_OUTLINED = "browser_not_supported_outlined" - BROWSER_NOT_SUPPORTED_ROUNDED = "browser_not_supported_rounded" - BROWSER_NOT_SUPPORTED_SHARP = "browser_not_supported_sharp" - BROWSER_UPDATED = "browser_updated" - BROWSER_UPDATED_OUTLINED = "browser_updated_outlined" - BROWSER_UPDATED_ROUNDED = "browser_updated_rounded" - BROWSER_UPDATED_SHARP = "browser_updated_sharp" - BROWSE_GALLERY = "browse_gallery" - BROWSE_GALLERY_OUTLINED = "browse_gallery_outlined" - BROWSE_GALLERY_ROUNDED = "browse_gallery_rounded" - BROWSE_GALLERY_SHARP = "browse_gallery_sharp" - BRUNCH_DINING = "brunch_dining" - BRUNCH_DINING_OUTLINED = "brunch_dining_outlined" - BRUNCH_DINING_ROUNDED = "brunch_dining_rounded" - BRUNCH_DINING_SHARP = "brunch_dining_sharp" - BRUSH = "brush" - BRUSH_OUTLINED = "brush_outlined" - BRUSH_ROUNDED = "brush_rounded" - BRUSH_SHARP = "brush_sharp" - BUBBLE_CHART = "bubble_chart" - BUBBLE_CHART_OUTLINED = "bubble_chart_outlined" - BUBBLE_CHART_ROUNDED = "bubble_chart_rounded" - BUBBLE_CHART_SHARP = "bubble_chart_sharp" - BUG_REPORT = "bug_report" - BUG_REPORT_OUTLINED = "bug_report_outlined" - BUG_REPORT_ROUNDED = "bug_report_rounded" - BUG_REPORT_SHARP = "bug_report_sharp" - BUILD = "build" - BUILD_CIRCLE = "build_circle" - BUILD_CIRCLE_OUTLINED = "build_circle_outlined" - BUILD_CIRCLE_ROUNDED = "build_circle_rounded" - BUILD_CIRCLE_SHARP = "build_circle_sharp" - BUILD_OUTLINED = "build_outlined" - BUILD_ROUNDED = "build_rounded" - BUILD_SHARP = "build_sharp" - BUNGALOW = "bungalow" - BUNGALOW_OUTLINED = "bungalow_outlined" - BUNGALOW_ROUNDED = "bungalow_rounded" - BUNGALOW_SHARP = "bungalow_sharp" - BURST_MODE = "burst_mode" - BURST_MODE_OUTLINED = "burst_mode_outlined" - BURST_MODE_ROUNDED = "burst_mode_rounded" - BURST_MODE_SHARP = "burst_mode_sharp" - BUSINESS = "business" - BUSINESS_CENTER = "business_center" - BUSINESS_CENTER_OUTLINED = "business_center_outlined" - BUSINESS_CENTER_ROUNDED = "business_center_rounded" - BUSINESS_CENTER_SHARP = "business_center_sharp" - BUSINESS_OUTLINED = "business_outlined" - BUSINESS_ROUNDED = "business_rounded" - BUSINESS_SHARP = "business_sharp" - BUS_ALERT = "bus_alert" - BUS_ALERT_OUTLINED = "bus_alert_outlined" - BUS_ALERT_ROUNDED = "bus_alert_rounded" - BUS_ALERT_SHARP = "bus_alert_sharp" - CABIN = "cabin" - CABIN_OUTLINED = "cabin_outlined" - CABIN_ROUNDED = "cabin_rounded" - CABIN_SHARP = "cabin_sharp" - CABLE = "cable" - CABLE_OUTLINED = "cable_outlined" - CABLE_ROUNDED = "cable_rounded" - CABLE_SHARP = "cable_sharp" - CACHED = "cached" - CACHED_OUTLINED = "cached_outlined" - CACHED_ROUNDED = "cached_rounded" - CACHED_SHARP = "cached_sharp" - CAKE = "cake" - CAKE_OUTLINED = "cake_outlined" - CAKE_ROUNDED = "cake_rounded" - CAKE_SHARP = "cake_sharp" - CALCULATE = "calculate" - CALCULATE_OUTLINED = "calculate_outlined" - CALCULATE_ROUNDED = "calculate_rounded" - CALCULATE_SHARP = "calculate_sharp" - CALENDAR_MONTH = "calendar_month" - CALENDAR_MONTH_OUTLINED = "calendar_month_outlined" - CALENDAR_MONTH_ROUNDED = "calendar_month_rounded" - CALENDAR_MONTH_SHARP = "calendar_month_sharp" - CALENDAR_TODAY = "calendar_today" - CALENDAR_TODAY_OUTLINED = "calendar_today_outlined" - CALENDAR_TODAY_ROUNDED = "calendar_today_rounded" - CALENDAR_TODAY_SHARP = "calendar_today_sharp" - CALENDAR_VIEW_DAY = "calendar_view_day" - CALENDAR_VIEW_DAY_OUTLINED = "calendar_view_day_outlined" - CALENDAR_VIEW_DAY_ROUNDED = "calendar_view_day_rounded" - CALENDAR_VIEW_DAY_SHARP = "calendar_view_day_sharp" - CALENDAR_VIEW_MONTH = "calendar_view_month" - CALENDAR_VIEW_MONTH_OUTLINED = "calendar_view_month_outlined" - CALENDAR_VIEW_MONTH_ROUNDED = "calendar_view_month_rounded" - CALENDAR_VIEW_MONTH_SHARP = "calendar_view_month_sharp" - CALENDAR_VIEW_WEEK = "calendar_view_week" - CALENDAR_VIEW_WEEK_OUTLINED = "calendar_view_week_outlined" - CALENDAR_VIEW_WEEK_ROUNDED = "calendar_view_week_rounded" - CALENDAR_VIEW_WEEK_SHARP = "calendar_view_week_sharp" - CALL = "call" - CALL_END = "call_end" - CALL_END_OUTLINED = "call_end_outlined" - CALL_END_ROUNDED = "call_end_rounded" - CALL_END_SHARP = "call_end_sharp" - CALL_MADE = "call_made" - CALL_MADE_OUTLINED = "call_made_outlined" - CALL_MADE_ROUNDED = "call_made_rounded" - CALL_MADE_SHARP = "call_made_sharp" - CALL_MERGE = "call_merge" - CALL_MERGE_OUTLINED = "call_merge_outlined" - CALL_MERGE_ROUNDED = "call_merge_rounded" - CALL_MERGE_SHARP = "call_merge_sharp" - CALL_MISSED = "call_missed" - CALL_MISSED_OUTGOING = "call_missed_outgoing" - CALL_MISSED_OUTGOING_OUTLINED = "call_missed_outgoing_outlined" - CALL_MISSED_OUTGOING_ROUNDED = "call_missed_outgoing_rounded" - CALL_MISSED_OUTGOING_SHARP = "call_missed_outgoing_sharp" - CALL_MISSED_OUTLINED = "call_missed_outlined" - CALL_MISSED_ROUNDED = "call_missed_rounded" - CALL_MISSED_SHARP = "call_missed_sharp" - CALL_OUTLINED = "call_outlined" - CALL_RECEIVED = "call_received" - CALL_RECEIVED_OUTLINED = "call_received_outlined" - CALL_RECEIVED_ROUNDED = "call_received_rounded" - CALL_RECEIVED_SHARP = "call_received_sharp" - CALL_ROUNDED = "call_rounded" - CALL_SHARP = "call_sharp" - CALL_SPLIT = "call_split" - CALL_SPLIT_OUTLINED = "call_split_outlined" - CALL_SPLIT_ROUNDED = "call_split_rounded" - CALL_SPLIT_SHARP = "call_split_sharp" - CALL_TO_ACTION = "call_to_action" - CALL_TO_ACTION_OUTLINED = "call_to_action_outlined" - CALL_TO_ACTION_ROUNDED = "call_to_action_rounded" - CALL_TO_ACTION_SHARP = "call_to_action_sharp" - CAMERA = "camera" - CAMERASWITCH = "cameraswitch" - CAMERASWITCH_OUTLINED = "cameraswitch_outlined" - CAMERASWITCH_ROUNDED = "cameraswitch_rounded" - CAMERASWITCH_SHARP = "cameraswitch_sharp" - CAMERA_ALT = "camera_alt" - CAMERA_ALT_OUTLINED = "camera_alt_outlined" - CAMERA_ALT_ROUNDED = "camera_alt_rounded" - CAMERA_ALT_SHARP = "camera_alt_sharp" - CAMERA_ENHANCE = "camera_enhance" - CAMERA_ENHANCE_OUTLINED = "camera_enhance_outlined" - CAMERA_ENHANCE_ROUNDED = "camera_enhance_rounded" - CAMERA_ENHANCE_SHARP = "camera_enhance_sharp" - CAMERA_FRONT = "camera_front" - CAMERA_FRONT_OUTLINED = "camera_front_outlined" - CAMERA_FRONT_ROUNDED = "camera_front_rounded" - CAMERA_FRONT_SHARP = "camera_front_sharp" - CAMERA_INDOOR = "camera_indoor" - CAMERA_INDOOR_OUTLINED = "camera_indoor_outlined" - CAMERA_INDOOR_ROUNDED = "camera_indoor_rounded" - CAMERA_INDOOR_SHARP = "camera_indoor_sharp" - CAMERA_OUTDOOR = "camera_outdoor" - CAMERA_OUTDOOR_OUTLINED = "camera_outdoor_outlined" - CAMERA_OUTDOOR_ROUNDED = "camera_outdoor_rounded" - CAMERA_OUTDOOR_SHARP = "camera_outdoor_sharp" - CAMERA_OUTLINED = "camera_outlined" - CAMERA_REAR = "camera_rear" - CAMERA_REAR_OUTLINED = "camera_rear_outlined" - CAMERA_REAR_ROUNDED = "camera_rear_rounded" - CAMERA_REAR_SHARP = "camera_rear_sharp" - CAMERA_ROLL = "camera_roll" - CAMERA_ROLL_OUTLINED = "camera_roll_outlined" - CAMERA_ROLL_ROUNDED = "camera_roll_rounded" - CAMERA_ROLL_SHARP = "camera_roll_sharp" - CAMERA_ROUNDED = "camera_rounded" - CAMERA_SHARP = "camera_sharp" - CAMPAIGN = "campaign" - CAMPAIGN_OUTLINED = "campaign_outlined" - CAMPAIGN_ROUNDED = "campaign_rounded" - CAMPAIGN_SHARP = "campaign_sharp" - CANCEL = "cancel" - CANCEL_OUTLINED = "cancel_outlined" - CANCEL_PRESENTATION = "cancel_presentation" - CANCEL_PRESENTATION_OUTLINED = "cancel_presentation_outlined" - CANCEL_PRESENTATION_ROUNDED = "cancel_presentation_rounded" - CANCEL_PRESENTATION_SHARP = "cancel_presentation_sharp" - CANCEL_ROUNDED = "cancel_rounded" - CANCEL_SCHEDULE_SEND = "cancel_schedule_send" - CANCEL_SCHEDULE_SEND_OUTLINED = "cancel_schedule_send_outlined" - CANCEL_SCHEDULE_SEND_ROUNDED = "cancel_schedule_send_rounded" - CANCEL_SCHEDULE_SEND_SHARP = "cancel_schedule_send_sharp" - CANCEL_SHARP = "cancel_sharp" - CANDLESTICK_CHART = "candlestick_chart" - CANDLESTICK_CHART_OUTLINED = "candlestick_chart_outlined" - CANDLESTICK_CHART_ROUNDED = "candlestick_chart_rounded" - CANDLESTICK_CHART_SHARP = "candlestick_chart_sharp" - CARD_GIFTCARD = "card_giftcard" - CARD_GIFTCARD_OUTLINED = "card_giftcard_outlined" - CARD_GIFTCARD_ROUNDED = "card_giftcard_rounded" - CARD_GIFTCARD_SHARP = "card_giftcard_sharp" - CARD_MEMBERSHIP = "card_membership" - CARD_MEMBERSHIP_OUTLINED = "card_membership_outlined" - CARD_MEMBERSHIP_ROUNDED = "card_membership_rounded" - CARD_MEMBERSHIP_SHARP = "card_membership_sharp" - CARD_TRAVEL = "card_travel" - CARD_TRAVEL_OUTLINED = "card_travel_outlined" - CARD_TRAVEL_ROUNDED = "card_travel_rounded" - CARD_TRAVEL_SHARP = "card_travel_sharp" - CARPENTER = "carpenter" - CARPENTER_OUTLINED = "carpenter_outlined" - CARPENTER_ROUNDED = "carpenter_rounded" - CARPENTER_SHARP = "carpenter_sharp" - CAR_CRASH = "car_crash" - CAR_CRASH_OUTLINED = "car_crash_outlined" - CAR_CRASH_ROUNDED = "car_crash_rounded" - CAR_CRASH_SHARP = "car_crash_sharp" - CAR_RENTAL = "car_rental" - CAR_RENTAL_OUTLINED = "car_rental_outlined" - CAR_RENTAL_ROUNDED = "car_rental_rounded" - CAR_RENTAL_SHARP = "car_rental_sharp" - CAR_REPAIR = "car_repair" - CAR_REPAIR_OUTLINED = "car_repair_outlined" - CAR_REPAIR_ROUNDED = "car_repair_rounded" - CAR_REPAIR_SHARP = "car_repair_sharp" - CASES = "cases" - CASES_OUTLINED = "cases_outlined" - CASES_ROUNDED = "cases_rounded" - CASES_SHARP = "cases_sharp" - CASINO = "casino" - CASINO_OUTLINED = "casino_outlined" - CASINO_ROUNDED = "casino_rounded" - CASINO_SHARP = "casino_sharp" - CAST = "cast" - CASTLE = "castle" - CASTLE_OUTLINED = "castle_outlined" - CASTLE_ROUNDED = "castle_rounded" - CASTLE_SHARP = "castle_sharp" - CAST_CONNECTED = "cast_connected" - CAST_CONNECTED_OUTLINED = "cast_connected_outlined" - CAST_CONNECTED_ROUNDED = "cast_connected_rounded" - CAST_CONNECTED_SHARP = "cast_connected_sharp" - CAST_FOR_EDUCATION = "cast_for_education" - CAST_FOR_EDUCATION_OUTLINED = "cast_for_education_outlined" - CAST_FOR_EDUCATION_ROUNDED = "cast_for_education_rounded" - CAST_FOR_EDUCATION_SHARP = "cast_for_education_sharp" - CAST_OUTLINED = "cast_outlined" - CAST_ROUNDED = "cast_rounded" - CAST_SHARP = "cast_sharp" - CATCHING_POKEMON = "catching_pokemon" - CATCHING_POKEMON_OUTLINED = "catching_pokemon_outlined" - CATCHING_POKEMON_ROUNDED = "catching_pokemon_rounded" - CATCHING_POKEMON_SHARP = "catching_pokemon_sharp" - CATEGORY = "category" - CATEGORY_OUTLINED = "category_outlined" - CATEGORY_ROUNDED = "category_rounded" - CATEGORY_SHARP = "category_sharp" - CELEBRATION = "celebration" - CELEBRATION_OUTLINED = "celebration_outlined" - CELEBRATION_ROUNDED = "celebration_rounded" - CELEBRATION_SHARP = "celebration_sharp" - CELL_TOWER = "cell_tower" - CELL_TOWER_OUTLINED = "cell_tower_outlined" - CELL_TOWER_ROUNDED = "cell_tower_rounded" - CELL_TOWER_SHARP = "cell_tower_sharp" - CELL_WIFI = "cell_wifi" - CELL_WIFI_OUTLINED = "cell_wifi_outlined" - CELL_WIFI_ROUNDED = "cell_wifi_rounded" - CELL_WIFI_SHARP = "cell_wifi_sharp" - CENTER_FOCUS_STRONG = "center_focus_strong" - CENTER_FOCUS_STRONG_OUTLINED = "center_focus_strong_outlined" - CENTER_FOCUS_STRONG_ROUNDED = "center_focus_strong_rounded" - CENTER_FOCUS_STRONG_SHARP = "center_focus_strong_sharp" - CENTER_FOCUS_WEAK = "center_focus_weak" - CENTER_FOCUS_WEAK_OUTLINED = "center_focus_weak_outlined" - CENTER_FOCUS_WEAK_ROUNDED = "center_focus_weak_rounded" - CENTER_FOCUS_WEAK_SHARP = "center_focus_weak_sharp" - CHAIR = "chair" - CHAIR_ALT = "chair_alt" - CHAIR_ALT_OUTLINED = "chair_alt_outlined" - CHAIR_ALT_ROUNDED = "chair_alt_rounded" - CHAIR_ALT_SHARP = "chair_alt_sharp" - CHAIR_OUTLINED = "chair_outlined" - CHAIR_ROUNDED = "chair_rounded" - CHAIR_SHARP = "chair_sharp" - CHALET = "chalet" - CHALET_OUTLINED = "chalet_outlined" - CHALET_ROUNDED = "chalet_rounded" - CHALET_SHARP = "chalet_sharp" - CHANGE_CIRCLE = "change_circle" - CHANGE_CIRCLE_OUTLINED = "change_circle_outlined" - CHANGE_CIRCLE_ROUNDED = "change_circle_rounded" - CHANGE_CIRCLE_SHARP = "change_circle_sharp" - CHANGE_HISTORY = "change_history" - CHANGE_HISTORY_OUTLINED = "change_history_outlined" - CHANGE_HISTORY_ROUNDED = "change_history_rounded" - CHANGE_HISTORY_SHARP = "change_history_sharp" - CHARGING_STATION = "charging_station" - CHARGING_STATION_OUTLINED = "charging_station_outlined" - CHARGING_STATION_ROUNDED = "charging_station_rounded" - CHARGING_STATION_SHARP = "charging_station_sharp" - CHAT = "chat" - CHAT_BUBBLE = "chat_bubble" - CHAT_BUBBLE_OUTLINE = "chat_bubble_outline" - CHAT_BUBBLE_OUTLINED = "chat_bubble_outlined" - CHAT_BUBBLE_OUTLINE_OUTLINED = "chat_bubble_outline_outlined" - CHAT_BUBBLE_OUTLINE_ROUNDED = "chat_bubble_outline_rounded" - CHAT_BUBBLE_OUTLINE_SHARP = "chat_bubble_outline_sharp" - CHAT_BUBBLE_ROUNDED = "chat_bubble_rounded" - CHAT_BUBBLE_SHARP = "chat_bubble_sharp" - CHAT_OUTLINED = "chat_outlined" - CHAT_ROUNDED = "chat_rounded" - CHAT_SHARP = "chat_sharp" - CHECK = "check" - CHECKLIST = "checklist" - CHECKLIST_OUTLINED = "checklist_outlined" - CHECKLIST_ROUNDED = "checklist_rounded" - CHECKLIST_RTL = "checklist_rtl" - CHECKLIST_RTL_OUTLINED = "checklist_rtl_outlined" - CHECKLIST_RTL_ROUNDED = "checklist_rtl_rounded" - CHECKLIST_RTL_SHARP = "checklist_rtl_sharp" - CHECKLIST_SHARP = "checklist_sharp" - CHECKROOM = "checkroom" - CHECKROOM_OUTLINED = "checkroom_outlined" - CHECKROOM_ROUNDED = "checkroom_rounded" - CHECKROOM_SHARP = "checkroom_sharp" - CHECK_BOX = "check_box" - CHECK_BOX_OUTLINED = "check_box_outlined" - CHECK_BOX_OUTLINE_BLANK = "check_box_outline_blank" - CHECK_BOX_OUTLINE_BLANK_OUTLINED = "check_box_outline_blank_outlined" - CHECK_BOX_OUTLINE_BLANK_ROUNDED = "check_box_outline_blank_rounded" - CHECK_BOX_OUTLINE_BLANK_SHARP = "check_box_outline_blank_sharp" - CHECK_BOX_ROUNDED = "check_box_rounded" - CHECK_BOX_SHARP = "check_box_sharp" - CHECK_CIRCLE = "check_circle" - CHECK_CIRCLE_OUTLINE = "check_circle_outline" - CHECK_CIRCLE_OUTLINED = "check_circle_outlined" - CHECK_CIRCLE_OUTLINE_OUTLINED = "check_circle_outline_outlined" - CHECK_CIRCLE_OUTLINE_ROUNDED = "check_circle_outline_rounded" - CHECK_CIRCLE_OUTLINE_SHARP = "check_circle_outline_sharp" - CHECK_CIRCLE_ROUNDED = "check_circle_rounded" - CHECK_CIRCLE_SHARP = "check_circle_sharp" - CHECK_OUTLINED = "check_outlined" - CHECK_ROUNDED = "check_rounded" - CHECK_SHARP = "check_sharp" - CHEVRON_LEFT = "chevron_left" - CHEVRON_LEFT_OUTLINED = "chevron_left_outlined" - CHEVRON_LEFT_ROUNDED = "chevron_left_rounded" - CHEVRON_LEFT_SHARP = "chevron_left_sharp" - CHEVRON_RIGHT = "chevron_right" - CHEVRON_RIGHT_OUTLINED = "chevron_right_outlined" - CHEVRON_RIGHT_ROUNDED = "chevron_right_rounded" - CHEVRON_RIGHT_SHARP = "chevron_right_sharp" - CHILD_CARE = "child_care" - CHILD_CARE_OUTLINED = "child_care_outlined" - CHILD_CARE_ROUNDED = "child_care_rounded" - CHILD_CARE_SHARP = "child_care_sharp" - CHILD_FRIENDLY = "child_friendly" - CHILD_FRIENDLY_OUTLINED = "child_friendly_outlined" - CHILD_FRIENDLY_ROUNDED = "child_friendly_rounded" - CHILD_FRIENDLY_SHARP = "child_friendly_sharp" - CHROME_READER_MODE = "chrome_reader_mode" - CHROME_READER_MODE_OUTLINED = "chrome_reader_mode_outlined" - CHROME_READER_MODE_ROUNDED = "chrome_reader_mode_rounded" - CHROME_READER_MODE_SHARP = "chrome_reader_mode_sharp" - CHURCH = "church" - CHURCH_OUTLINED = "church_outlined" - CHURCH_ROUNDED = "church_rounded" - CHURCH_SHARP = "church_sharp" - CIRCLE = "circle" - CIRCLE_NOTIFICATIONS = "circle_notifications" - CIRCLE_NOTIFICATIONS_OUTLINED = "circle_notifications_outlined" - CIRCLE_NOTIFICATIONS_ROUNDED = "circle_notifications_rounded" - CIRCLE_NOTIFICATIONS_SHARP = "circle_notifications_sharp" - CIRCLE_OUTLINED = "circle_outlined" - CIRCLE_ROUNDED = "circle_rounded" - CIRCLE_SHARP = "circle_sharp" - CLASS_ = "class_" - CLASS_OUTLINED = "class_outlined" - CLASS_ROUNDED = "class_rounded" - CLASS_SHARP = "class_sharp" - CLEANING_SERVICES = "cleaning_services" - CLEANING_SERVICES_OUTLINED = "cleaning_services_outlined" - CLEANING_SERVICES_ROUNDED = "cleaning_services_rounded" - CLEANING_SERVICES_SHARP = "cleaning_services_sharp" - CLEAN_HANDS = "clean_hands" - CLEAN_HANDS_OUTLINED = "clean_hands_outlined" - CLEAN_HANDS_ROUNDED = "clean_hands_rounded" - CLEAN_HANDS_SHARP = "clean_hands_sharp" - CLEAR = "clear" - CLEAR_ALL = "clear_all" - CLEAR_ALL_OUTLINED = "clear_all_outlined" - CLEAR_ALL_ROUNDED = "clear_all_rounded" - CLEAR_ALL_SHARP = "clear_all_sharp" - CLEAR_OUTLINED = "clear_outlined" - CLEAR_ROUNDED = "clear_rounded" - CLEAR_SHARP = "clear_sharp" - CLOSE = "close" - CLOSED_CAPTION = "closed_caption" - CLOSED_CAPTION_DISABLED = "closed_caption_disabled" - CLOSED_CAPTION_DISABLED_OUTLINED = "closed_caption_disabled_outlined" - CLOSED_CAPTION_DISABLED_ROUNDED = "closed_caption_disabled_rounded" - CLOSED_CAPTION_DISABLED_SHARP = "closed_caption_disabled_sharp" - CLOSED_CAPTION_OFF = "closed_caption_off" - CLOSED_CAPTION_OFF_OUTLINED = "closed_caption_off_outlined" - CLOSED_CAPTION_OFF_ROUNDED = "closed_caption_off_rounded" - CLOSED_CAPTION_OFF_SHARP = "closed_caption_off_sharp" - CLOSED_CAPTION_OUTLINED = "closed_caption_outlined" - CLOSED_CAPTION_ROUNDED = "closed_caption_rounded" - CLOSED_CAPTION_SHARP = "closed_caption_sharp" - CLOSE_FULLSCREEN = "close_fullscreen" - CLOSE_FULLSCREEN_OUTLINED = "close_fullscreen_outlined" - CLOSE_FULLSCREEN_ROUNDED = "close_fullscreen_rounded" - CLOSE_FULLSCREEN_SHARP = "close_fullscreen_sharp" - CLOSE_OUTLINED = "close_outlined" - CLOSE_ROUNDED = "close_rounded" - CLOSE_SHARP = "close_sharp" - CLOUD = "cloud" - CLOUDY_SNOWING = "cloudy_snowing" - CLOUD_CIRCLE = "cloud_circle" - CLOUD_CIRCLE_OUTLINED = "cloud_circle_outlined" - CLOUD_CIRCLE_ROUNDED = "cloud_circle_rounded" - CLOUD_CIRCLE_SHARP = "cloud_circle_sharp" - CLOUD_DONE = "cloud_done" - CLOUD_DONE_OUTLINED = "cloud_done_outlined" - CLOUD_DONE_ROUNDED = "cloud_done_rounded" - CLOUD_DONE_SHARP = "cloud_done_sharp" - CLOUD_DOWNLOAD = "cloud_download" - CLOUD_DOWNLOAD_OUTLINED = "cloud_download_outlined" - CLOUD_DOWNLOAD_ROUNDED = "cloud_download_rounded" - CLOUD_DOWNLOAD_SHARP = "cloud_download_sharp" - CLOUD_OFF = "cloud_off" - CLOUD_OFF_OUTLINED = "cloud_off_outlined" - CLOUD_OFF_ROUNDED = "cloud_off_rounded" - CLOUD_OFF_SHARP = "cloud_off_sharp" - CLOUD_OUTLINED = "cloud_outlined" - CLOUD_QUEUE = "cloud_queue" - CLOUD_QUEUE_OUTLINED = "cloud_queue_outlined" - CLOUD_QUEUE_ROUNDED = "cloud_queue_rounded" - CLOUD_QUEUE_SHARP = "cloud_queue_sharp" - CLOUD_ROUNDED = "cloud_rounded" - CLOUD_SHARP = "cloud_sharp" - CLOUD_SYNC = "cloud_sync" - CLOUD_SYNC_OUTLINED = "cloud_sync_outlined" - CLOUD_SYNC_ROUNDED = "cloud_sync_rounded" - CLOUD_SYNC_SHARP = "cloud_sync_sharp" - CLOUD_UPLOAD = "cloud_upload" - CLOUD_UPLOAD_OUTLINED = "cloud_upload_outlined" - CLOUD_UPLOAD_ROUNDED = "cloud_upload_rounded" - CLOUD_UPLOAD_SHARP = "cloud_upload_sharp" - CO2 = "co2" - CO2_OUTLINED = "co2_outlined" - CO2_ROUNDED = "co2_rounded" - CO2_SHARP = "co2_sharp" - CODE = "code" - CODE_OFF = "code_off" - CODE_OFF_OUTLINED = "code_off_outlined" - CODE_OFF_ROUNDED = "code_off_rounded" - CODE_OFF_SHARP = "code_off_sharp" - CODE_OUTLINED = "code_outlined" - CODE_ROUNDED = "code_rounded" - CODE_SHARP = "code_sharp" - COFFEE = "coffee" - COFFEE_MAKER = "coffee_maker" - COFFEE_MAKER_OUTLINED = "coffee_maker_outlined" - COFFEE_MAKER_ROUNDED = "coffee_maker_rounded" - COFFEE_MAKER_SHARP = "coffee_maker_sharp" - COFFEE_OUTLINED = "coffee_outlined" - COFFEE_ROUNDED = "coffee_rounded" - COFFEE_SHARP = "coffee_sharp" - COLLECTIONS = "collections" - COLLECTIONS_BOOKMARK = "collections_bookmark" - COLLECTIONS_BOOKMARK_OUTLINED = "collections_bookmark_outlined" - COLLECTIONS_BOOKMARK_ROUNDED = "collections_bookmark_rounded" - COLLECTIONS_BOOKMARK_SHARP = "collections_bookmark_sharp" - COLLECTIONS_OUTLINED = "collections_outlined" - COLLECTIONS_ROUNDED = "collections_rounded" - COLLECTIONS_SHARP = "collections_sharp" - COLORIZE = "colorize" - COLORIZE_OUTLINED = "colorize_outlined" - COLORIZE_ROUNDED = "colorize_rounded" - COLORIZE_SHARP = "colorize_sharp" - COLOR_LENS = "color_lens" - COLOR_LENS_OUTLINED = "color_lens_outlined" - COLOR_LENS_ROUNDED = "color_lens_rounded" - COLOR_LENS_SHARP = "color_lens_sharp" - COMMENT = "comment" - COMMENTS_DISABLED = "comments_disabled" - COMMENTS_DISABLED_OUTLINED = "comments_disabled_outlined" - COMMENTS_DISABLED_ROUNDED = "comments_disabled_rounded" - COMMENTS_DISABLED_SHARP = "comments_disabled_sharp" - COMMENT_BANK = "comment_bank" - COMMENT_BANK_OUTLINED = "comment_bank_outlined" - COMMENT_BANK_ROUNDED = "comment_bank_rounded" - COMMENT_BANK_SHARP = "comment_bank_sharp" - COMMENT_OUTLINED = "comment_outlined" - COMMENT_ROUNDED = "comment_rounded" - COMMENT_SHARP = "comment_sharp" - COMMIT = "commit" - COMMIT_OUTLINED = "commit_outlined" - COMMIT_ROUNDED = "commit_rounded" - COMMIT_SHARP = "commit_sharp" - COMMUTE = "commute" - COMMUTE_OUTLINED = "commute_outlined" - COMMUTE_ROUNDED = "commute_rounded" - COMMUTE_SHARP = "commute_sharp" - COMPARE = "compare" - COMPARE_ARROWS = "compare_arrows" - COMPARE_ARROWS_OUTLINED = "compare_arrows_outlined" - COMPARE_ARROWS_ROUNDED = "compare_arrows_rounded" - COMPARE_ARROWS_SHARP = "compare_arrows_sharp" - COMPARE_OUTLINED = "compare_outlined" - COMPARE_ROUNDED = "compare_rounded" - COMPARE_SHARP = "compare_sharp" - COMPASS_CALIBRATION = "compass_calibration" - COMPASS_CALIBRATION_OUTLINED = "compass_calibration_outlined" - COMPASS_CALIBRATION_ROUNDED = "compass_calibration_rounded" - COMPASS_CALIBRATION_SHARP = "compass_calibration_sharp" - COMPOST = "compost" - COMPOST_OUTLINED = "compost_outlined" - COMPOST_ROUNDED = "compost_rounded" - COMPOST_SHARP = "compost_sharp" - COMPRESS = "compress" - COMPRESS_OUTLINED = "compress_outlined" - COMPRESS_ROUNDED = "compress_rounded" - COMPRESS_SHARP = "compress_sharp" - COMPUTER = "computer" - COMPUTER_OUTLINED = "computer_outlined" - COMPUTER_ROUNDED = "computer_rounded" - COMPUTER_SHARP = "computer_sharp" - CONFIRMATION_NUM = "confirmation_num" - CONFIRMATION_NUMBER = "confirmation_number" - CONFIRMATION_NUMBER_OUTLINED = "confirmation_number_outlined" - CONFIRMATION_NUMBER_ROUNDED = "confirmation_number_rounded" - CONFIRMATION_NUMBER_SHARP = "confirmation_number_sharp" - CONFIRMATION_NUM_OUTLINED = "confirmation_num_outlined" - CONFIRMATION_NUM_ROUNDED = "confirmation_num_rounded" - CONFIRMATION_NUM_SHARP = "confirmation_num_sharp" - CONNECTED_TV = "connected_tv" - CONNECTED_TV_OUTLINED = "connected_tv_outlined" - CONNECTED_TV_ROUNDED = "connected_tv_rounded" - CONNECTED_TV_SHARP = "connected_tv_sharp" - CONNECTING_AIRPORTS = "connecting_airports" - CONNECTING_AIRPORTS_OUTLINED = "connecting_airports_outlined" - CONNECTING_AIRPORTS_ROUNDED = "connecting_airports_rounded" - CONNECTING_AIRPORTS_SHARP = "connecting_airports_sharp" - CONNECT_WITHOUT_CONTACT = "connect_without_contact" - CONNECT_WITHOUT_CONTACT_OUTLINED = "connect_without_contact_outlined" - CONNECT_WITHOUT_CONTACT_ROUNDED = "connect_without_contact_rounded" - CONNECT_WITHOUT_CONTACT_SHARP = "connect_without_contact_sharp" - CONSTRUCTION = "construction" - CONSTRUCTION_OUTLINED = "construction_outlined" - CONSTRUCTION_ROUNDED = "construction_rounded" - CONSTRUCTION_SHARP = "construction_sharp" - CONTACTLESS = "contactless" - CONTACTLESS_OUTLINED = "contactless_outlined" - CONTACTLESS_ROUNDED = "contactless_rounded" - CONTACTLESS_SHARP = "contactless_sharp" - CONTACTS = "contacts" - CONTACTS_OUTLINED = "contacts_outlined" - CONTACTS_ROUNDED = "contacts_rounded" - CONTACTS_SHARP = "contacts_sharp" - CONTACT_EMERGENCY = "contact_emergency" - CONTACT_EMERGENCY_OUTLINED = "contact_emergency_outlined" - CONTACT_EMERGENCY_ROUNDED = "contact_emergency_rounded" - CONTACT_EMERGENCY_SHARP = "contact_emergency_sharp" - CONTACT_MAIL = "contact_mail" - CONTACT_MAIL_OUTLINED = "contact_mail_outlined" - CONTACT_MAIL_ROUNDED = "contact_mail_rounded" - CONTACT_MAIL_SHARP = "contact_mail_sharp" - CONTACT_PAGE = "contact_page" - CONTACT_PAGE_OUTLINED = "contact_page_outlined" - CONTACT_PAGE_ROUNDED = "contact_page_rounded" - CONTACT_PAGE_SHARP = "contact_page_sharp" - CONTACT_PHONE = "contact_phone" - CONTACT_PHONE_OUTLINED = "contact_phone_outlined" - CONTACT_PHONE_ROUNDED = "contact_phone_rounded" - CONTACT_PHONE_SHARP = "contact_phone_sharp" - CONTACT_SUPPORT = "contact_support" - CONTACT_SUPPORT_OUTLINED = "contact_support_outlined" - CONTACT_SUPPORT_ROUNDED = "contact_support_rounded" - CONTACT_SUPPORT_SHARP = "contact_support_sharp" - CONTENT_COPY = "content_copy" - CONTENT_COPY_OUTLINED = "content_copy_outlined" - CONTENT_COPY_ROUNDED = "content_copy_rounded" - CONTENT_COPY_SHARP = "content_copy_sharp" - CONTENT_CUT = "content_cut" - CONTENT_CUT_OUTLINED = "content_cut_outlined" - CONTENT_CUT_ROUNDED = "content_cut_rounded" - CONTENT_CUT_SHARP = "content_cut_sharp" - CONTENT_PASTE = "content_paste" - CONTENT_PASTE_GO = "content_paste_go" - CONTENT_PASTE_GO_OUTLINED = "content_paste_go_outlined" - CONTENT_PASTE_GO_ROUNDED = "content_paste_go_rounded" - CONTENT_PASTE_GO_SHARP = "content_paste_go_sharp" - CONTENT_PASTE_OFF = "content_paste_off" - CONTENT_PASTE_OFF_OUTLINED = "content_paste_off_outlined" - CONTENT_PASTE_OFF_ROUNDED = "content_paste_off_rounded" - CONTENT_PASTE_OFF_SHARP = "content_paste_off_sharp" - CONTENT_PASTE_OUTLINED = "content_paste_outlined" - CONTENT_PASTE_ROUNDED = "content_paste_rounded" - CONTENT_PASTE_SEARCH = "content_paste_search" - CONTENT_PASTE_SEARCH_OUTLINED = "content_paste_search_outlined" - CONTENT_PASTE_SEARCH_ROUNDED = "content_paste_search_rounded" - CONTENT_PASTE_SEARCH_SHARP = "content_paste_search_sharp" - CONTENT_PASTE_SHARP = "content_paste_sharp" - CONTRAST = "contrast" - CONTRAST_OUTLINED = "contrast_outlined" - CONTRAST_ROUNDED = "contrast_rounded" - CONTRAST_SHARP = "contrast_sharp" - CONTROL_CAMERA = "control_camera" - CONTROL_CAMERA_OUTLINED = "control_camera_outlined" - CONTROL_CAMERA_ROUNDED = "control_camera_rounded" - CONTROL_CAMERA_SHARP = "control_camera_sharp" - CONTROL_POINT = "control_point" - CONTROL_POINT_DUPLICATE = "control_point_duplicate" - CONTROL_POINT_DUPLICATE_OUTLINED = "control_point_duplicate_outlined" - CONTROL_POINT_DUPLICATE_ROUNDED = "control_point_duplicate_rounded" - CONTROL_POINT_DUPLICATE_SHARP = "control_point_duplicate_sharp" - CONTROL_POINT_OUTLINED = "control_point_outlined" - CONTROL_POINT_ROUNDED = "control_point_rounded" - CONTROL_POINT_SHARP = "control_point_sharp" - CONVEYOR_BELT = "conveyor_belt" - COOKIE = "cookie" - COOKIE_OUTLINED = "cookie_outlined" - COOKIE_ROUNDED = "cookie_rounded" - COOKIE_SHARP = "cookie_sharp" - COPY = "copy" - COPYRIGHT = "copyright" - COPYRIGHT_OUTLINED = "copyright_outlined" - COPYRIGHT_ROUNDED = "copyright_rounded" - COPYRIGHT_SHARP = "copyright_sharp" - COPY_ALL = "copy_all" - COPY_ALL_OUTLINED = "copy_all_outlined" - COPY_ALL_ROUNDED = "copy_all_rounded" - COPY_ALL_SHARP = "copy_all_sharp" - COPY_OUTLINED = "copy_outlined" - COPY_ROUNDED = "copy_rounded" - COPY_SHARP = "copy_sharp" - CORONAVIRUS = "coronavirus" - CORONAVIRUS_OUTLINED = "coronavirus_outlined" - CORONAVIRUS_ROUNDED = "coronavirus_rounded" - CORONAVIRUS_SHARP = "coronavirus_sharp" - CORPORATE_FARE = "corporate_fare" - CORPORATE_FARE_OUTLINED = "corporate_fare_outlined" - CORPORATE_FARE_ROUNDED = "corporate_fare_rounded" - CORPORATE_FARE_SHARP = "corporate_fare_sharp" - COTTAGE = "cottage" - COTTAGE_OUTLINED = "cottage_outlined" - COTTAGE_ROUNDED = "cottage_rounded" - COTTAGE_SHARP = "cottage_sharp" - COUNTERTOPS = "countertops" - COUNTERTOPS_OUTLINED = "countertops_outlined" - COUNTERTOPS_ROUNDED = "countertops_rounded" - COUNTERTOPS_SHARP = "countertops_sharp" - CO_PRESENT = "co_present" - CO_PRESENT_OUTLINED = "co_present_outlined" - CO_PRESENT_ROUNDED = "co_present_rounded" - CO_PRESENT_SHARP = "co_present_sharp" - CREATE = "create" - CREATE_NEW_FOLDER = "create_new_folder" - CREATE_NEW_FOLDER_OUTLINED = "create_new_folder_outlined" - CREATE_NEW_FOLDER_ROUNDED = "create_new_folder_rounded" - CREATE_NEW_FOLDER_SHARP = "create_new_folder_sharp" - CREATE_OUTLINED = "create_outlined" - CREATE_ROUNDED = "create_rounded" - CREATE_SHARP = "create_sharp" - CREDIT_CARD = "credit_card" - CREDIT_CARD_OFF = "credit_card_off" - CREDIT_CARD_OFF_OUTLINED = "credit_card_off_outlined" - CREDIT_CARD_OFF_ROUNDED = "credit_card_off_rounded" - CREDIT_CARD_OFF_SHARP = "credit_card_off_sharp" - CREDIT_CARD_OUTLINED = "credit_card_outlined" - CREDIT_CARD_ROUNDED = "credit_card_rounded" - CREDIT_CARD_SHARP = "credit_card_sharp" - CREDIT_SCORE = "credit_score" - CREDIT_SCORE_OUTLINED = "credit_score_outlined" - CREDIT_SCORE_ROUNDED = "credit_score_rounded" - CREDIT_SCORE_SHARP = "credit_score_sharp" - CRIB = "crib" - CRIB_OUTLINED = "crib_outlined" - CRIB_ROUNDED = "crib_rounded" - CRIB_SHARP = "crib_sharp" - CRISIS_ALERT = "crisis_alert" - CRISIS_ALERT_OUTLINED = "crisis_alert_outlined" - CRISIS_ALERT_ROUNDED = "crisis_alert_rounded" - CRISIS_ALERT_SHARP = "crisis_alert_sharp" - CROP = "crop" - CROP_16_9 = "crop_16_9" - CROP_16_9_OUTLINED = "crop_16_9_outlined" - CROP_16_9_ROUNDED = "crop_16_9_rounded" - CROP_16_9_SHARP = "crop_16_9_sharp" - CROP_3_2 = "crop_3_2" - CROP_3_2_OUTLINED = "crop_3_2_outlined" - CROP_3_2_ROUNDED = "crop_3_2_rounded" - CROP_3_2_SHARP = "crop_3_2_sharp" - CROP_5_4 = "crop_5_4" - CROP_5_4_OUTLINED = "crop_5_4_outlined" - CROP_5_4_ROUNDED = "crop_5_4_rounded" - CROP_5_4_SHARP = "crop_5_4_sharp" - CROP_7_5 = "crop_7_5" - CROP_7_5_OUTLINED = "crop_7_5_outlined" - CROP_7_5_ROUNDED = "crop_7_5_rounded" - CROP_7_5_SHARP = "crop_7_5_sharp" - CROP_DIN = "crop_din" - CROP_DIN_OUTLINED = "crop_din_outlined" - CROP_DIN_ROUNDED = "crop_din_rounded" - CROP_DIN_SHARP = "crop_din_sharp" - CROP_FREE = "crop_free" - CROP_FREE_OUTLINED = "crop_free_outlined" - CROP_FREE_ROUNDED = "crop_free_rounded" - CROP_FREE_SHARP = "crop_free_sharp" - CROP_LANDSCAPE = "crop_landscape" - CROP_LANDSCAPE_OUTLINED = "crop_landscape_outlined" - CROP_LANDSCAPE_ROUNDED = "crop_landscape_rounded" - CROP_LANDSCAPE_SHARP = "crop_landscape_sharp" - CROP_ORIGINAL = "crop_original" - CROP_ORIGINAL_OUTLINED = "crop_original_outlined" - CROP_ORIGINAL_ROUNDED = "crop_original_rounded" - CROP_ORIGINAL_SHARP = "crop_original_sharp" - CROP_OUTLINED = "crop_outlined" - CROP_PORTRAIT = "crop_portrait" - CROP_PORTRAIT_OUTLINED = "crop_portrait_outlined" - CROP_PORTRAIT_ROUNDED = "crop_portrait_rounded" - CROP_PORTRAIT_SHARP = "crop_portrait_sharp" - CROP_ROTATE = "crop_rotate" - CROP_ROTATE_OUTLINED = "crop_rotate_outlined" - CROP_ROTATE_ROUNDED = "crop_rotate_rounded" - CROP_ROTATE_SHARP = "crop_rotate_sharp" - CROP_ROUNDED = "crop_rounded" - CROP_SHARP = "crop_sharp" - CROP_SQUARE = "crop_square" - CROP_SQUARE_OUTLINED = "crop_square_outlined" - CROP_SQUARE_ROUNDED = "crop_square_rounded" - CROP_SQUARE_SHARP = "crop_square_sharp" - CRUELTY_FREE = "cruelty_free" - CRUELTY_FREE_OUTLINED = "cruelty_free_outlined" - CRUELTY_FREE_ROUNDED = "cruelty_free_rounded" - CRUELTY_FREE_SHARP = "cruelty_free_sharp" - CSS = "css" - CSS_OUTLINED = "css_outlined" - CSS_ROUNDED = "css_rounded" - CSS_SHARP = "css_sharp" - CURRENCY_BITCOIN = "currency_bitcoin" - CURRENCY_BITCOIN_OUTLINED = "currency_bitcoin_outlined" - CURRENCY_BITCOIN_ROUNDED = "currency_bitcoin_rounded" - CURRENCY_BITCOIN_SHARP = "currency_bitcoin_sharp" - CURRENCY_EXCHANGE = "currency_exchange" - CURRENCY_EXCHANGE_OUTLINED = "currency_exchange_outlined" - CURRENCY_EXCHANGE_ROUNDED = "currency_exchange_rounded" - CURRENCY_EXCHANGE_SHARP = "currency_exchange_sharp" - CURRENCY_FRANC = "currency_franc" - CURRENCY_FRANC_OUTLINED = "currency_franc_outlined" - CURRENCY_FRANC_ROUNDED = "currency_franc_rounded" - CURRENCY_FRANC_SHARP = "currency_franc_sharp" - CURRENCY_LIRA = "currency_lira" - CURRENCY_LIRA_OUTLINED = "currency_lira_outlined" - CURRENCY_LIRA_ROUNDED = "currency_lira_rounded" - CURRENCY_LIRA_SHARP = "currency_lira_sharp" - CURRENCY_POUND = "currency_pound" - CURRENCY_POUND_OUTLINED = "currency_pound_outlined" - CURRENCY_POUND_ROUNDED = "currency_pound_rounded" - CURRENCY_POUND_SHARP = "currency_pound_sharp" - CURRENCY_RUBLE = "currency_ruble" - CURRENCY_RUBLE_OUTLINED = "currency_ruble_outlined" - CURRENCY_RUBLE_ROUNDED = "currency_ruble_rounded" - CURRENCY_RUBLE_SHARP = "currency_ruble_sharp" - CURRENCY_RUPEE = "currency_rupee" - CURRENCY_RUPEE_OUTLINED = "currency_rupee_outlined" - CURRENCY_RUPEE_ROUNDED = "currency_rupee_rounded" - CURRENCY_RUPEE_SHARP = "currency_rupee_sharp" - CURRENCY_YEN = "currency_yen" - CURRENCY_YEN_OUTLINED = "currency_yen_outlined" - CURRENCY_YEN_ROUNDED = "currency_yen_rounded" - CURRENCY_YEN_SHARP = "currency_yen_sharp" - CURRENCY_YUAN = "currency_yuan" - CURRENCY_YUAN_OUTLINED = "currency_yuan_outlined" - CURRENCY_YUAN_ROUNDED = "currency_yuan_rounded" - CURRENCY_YUAN_SHARP = "currency_yuan_sharp" - CURTAINS = "curtains" - CURTAINS_CLOSED = "curtains_closed" - CURTAINS_CLOSED_OUTLINED = "curtains_closed_outlined" - CURTAINS_CLOSED_ROUNDED = "curtains_closed_rounded" - CURTAINS_CLOSED_SHARP = "curtains_closed_sharp" - CURTAINS_OUTLINED = "curtains_outlined" - CURTAINS_ROUNDED = "curtains_rounded" - CURTAINS_SHARP = "curtains_sharp" - CUT = "cut" - CUT_OUTLINED = "cut_outlined" - CUT_ROUNDED = "cut_rounded" - CUT_SHARP = "cut_sharp" - CYCLONE = "cyclone" - CYCLONE_OUTLINED = "cyclone_outlined" - CYCLONE_ROUNDED = "cyclone_rounded" - CYCLONE_SHARP = "cyclone_sharp" - DANGEROUS = "dangerous" - DANGEROUS_OUTLINED = "dangerous_outlined" - DANGEROUS_ROUNDED = "dangerous_rounded" - DANGEROUS_SHARP = "dangerous_sharp" - DARK_MODE = "dark_mode" - DARK_MODE_OUTLINED = "dark_mode_outlined" - DARK_MODE_ROUNDED = "dark_mode_rounded" - DARK_MODE_SHARP = "dark_mode_sharp" - DASHBOARD = "dashboard" - DASHBOARD_CUSTOMIZE = "dashboard_customize" - DASHBOARD_CUSTOMIZE_OUTLINED = "dashboard_customize_outlined" - DASHBOARD_CUSTOMIZE_ROUNDED = "dashboard_customize_rounded" - DASHBOARD_CUSTOMIZE_SHARP = "dashboard_customize_sharp" - DASHBOARD_OUTLINED = "dashboard_outlined" - DASHBOARD_ROUNDED = "dashboard_rounded" - DASHBOARD_SHARP = "dashboard_sharp" - DATASET = "dataset" - DATASET_LINKED = "dataset_linked" - DATASET_LINKED_OUTLINED = "dataset_linked_outlined" - DATASET_LINKED_ROUNDED = "dataset_linked_rounded" - DATASET_LINKED_SHARP = "dataset_linked_sharp" - DATASET_OUTLINED = "dataset_outlined" - DATASET_ROUNDED = "dataset_rounded" - DATASET_SHARP = "dataset_sharp" - DATA_ARRAY = "data_array" - DATA_ARRAY_OUTLINED = "data_array_outlined" - DATA_ARRAY_ROUNDED = "data_array_rounded" - DATA_ARRAY_SHARP = "data_array_sharp" - DATA_EXPLORATION = "data_exploration" - DATA_EXPLORATION_OUTLINED = "data_exploration_outlined" - DATA_EXPLORATION_ROUNDED = "data_exploration_rounded" - DATA_EXPLORATION_SHARP = "data_exploration_sharp" - DATA_OBJECT = "data_object" - DATA_OBJECT_OUTLINED = "data_object_outlined" - DATA_OBJECT_ROUNDED = "data_object_rounded" - DATA_OBJECT_SHARP = "data_object_sharp" - DATA_SAVER_OFF = "data_saver_off" - DATA_SAVER_OFF_OUTLINED = "data_saver_off_outlined" - DATA_SAVER_OFF_ROUNDED = "data_saver_off_rounded" - DATA_SAVER_OFF_SHARP = "data_saver_off_sharp" - DATA_SAVER_ON = "data_saver_on" - DATA_SAVER_ON_OUTLINED = "data_saver_on_outlined" - DATA_SAVER_ON_ROUNDED = "data_saver_on_rounded" - DATA_SAVER_ON_SHARP = "data_saver_on_sharp" - DATA_THRESHOLDING = "data_thresholding" - DATA_THRESHOLDING_OUTLINED = "data_thresholding_outlined" - DATA_THRESHOLDING_ROUNDED = "data_thresholding_rounded" - DATA_THRESHOLDING_SHARP = "data_thresholding_sharp" - DATA_USAGE = "data_usage" - DATA_USAGE_OUTLINED = "data_usage_outlined" - DATA_USAGE_ROUNDED = "data_usage_rounded" - DATA_USAGE_SHARP = "data_usage_sharp" - DATE_RANGE = "date_range" - DATE_RANGE_OUTLINED = "date_range_outlined" - DATE_RANGE_ROUNDED = "date_range_rounded" - DATE_RANGE_SHARP = "date_range_sharp" - DEBLUR = "deblur" - DEBLUR_OUTLINED = "deblur_outlined" - DEBLUR_ROUNDED = "deblur_rounded" - DEBLUR_SHARP = "deblur_sharp" - DECK = "deck" - DECK_OUTLINED = "deck_outlined" - DECK_ROUNDED = "deck_rounded" - DECK_SHARP = "deck_sharp" - DEHAZE = "dehaze" - DEHAZE_OUTLINED = "dehaze_outlined" - DEHAZE_ROUNDED = "dehaze_rounded" - DEHAZE_SHARP = "dehaze_sharp" - DELETE = "delete" - DELETE_FOREVER = "delete_forever" - DELETE_FOREVER_OUTLINED = "delete_forever_outlined" - DELETE_FOREVER_ROUNDED = "delete_forever_rounded" - DELETE_FOREVER_SHARP = "delete_forever_sharp" - DELETE_OUTLINE = "delete_outline" - DELETE_OUTLINED = "delete_outlined" - DELETE_OUTLINE_OUTLINED = "delete_outline_outlined" - DELETE_OUTLINE_ROUNDED = "delete_outline_rounded" - DELETE_OUTLINE_SHARP = "delete_outline_sharp" - DELETE_ROUNDED = "delete_rounded" - DELETE_SHARP = "delete_sharp" - DELETE_SWEEP = "delete_sweep" - DELETE_SWEEP_OUTLINED = "delete_sweep_outlined" - DELETE_SWEEP_ROUNDED = "delete_sweep_rounded" - DELETE_SWEEP_SHARP = "delete_sweep_sharp" - DELIVERY_DINING = "delivery_dining" - DELIVERY_DINING_OUTLINED = "delivery_dining_outlined" - DELIVERY_DINING_ROUNDED = "delivery_dining_rounded" - DELIVERY_DINING_SHARP = "delivery_dining_sharp" - DENSITY_LARGE = "density_large" - DENSITY_LARGE_OUTLINED = "density_large_outlined" - DENSITY_LARGE_ROUNDED = "density_large_rounded" - DENSITY_LARGE_SHARP = "density_large_sharp" - DENSITY_MEDIUM = "density_medium" - DENSITY_MEDIUM_OUTLINED = "density_medium_outlined" - DENSITY_MEDIUM_ROUNDED = "density_medium_rounded" - DENSITY_MEDIUM_SHARP = "density_medium_sharp" - DENSITY_SMALL = "density_small" - DENSITY_SMALL_OUTLINED = "density_small_outlined" - DENSITY_SMALL_ROUNDED = "density_small_rounded" - DENSITY_SMALL_SHARP = "density_small_sharp" - DEPARTURE_BOARD = "departure_board" - DEPARTURE_BOARD_OUTLINED = "departure_board_outlined" - DEPARTURE_BOARD_ROUNDED = "departure_board_rounded" - DEPARTURE_BOARD_SHARP = "departure_board_sharp" - DESCRIPTION = "description" - DESCRIPTION_OUTLINED = "description_outlined" - DESCRIPTION_ROUNDED = "description_rounded" - DESCRIPTION_SHARP = "description_sharp" - DESELECT = "deselect" - DESELECT_OUTLINED = "deselect_outlined" - DESELECT_ROUNDED = "deselect_rounded" - DESELECT_SHARP = "deselect_sharp" - DESIGN_SERVICES = "design_services" - DESIGN_SERVICES_OUTLINED = "design_services_outlined" - DESIGN_SERVICES_ROUNDED = "design_services_rounded" - DESIGN_SERVICES_SHARP = "design_services_sharp" - DESK = "desk" - DESKTOP_ACCESS_DISABLED = "desktop_access_disabled" - DESKTOP_ACCESS_DISABLED_OUTLINED = "desktop_access_disabled_outlined" - DESKTOP_ACCESS_DISABLED_ROUNDED = "desktop_access_disabled_rounded" - DESKTOP_ACCESS_DISABLED_SHARP = "desktop_access_disabled_sharp" - DESKTOP_MAC = "desktop_mac" - DESKTOP_MAC_OUTLINED = "desktop_mac_outlined" - DESKTOP_MAC_ROUNDED = "desktop_mac_rounded" - DESKTOP_MAC_SHARP = "desktop_mac_sharp" - DESKTOP_WINDOWS = "desktop_windows" - DESKTOP_WINDOWS_OUTLINED = "desktop_windows_outlined" - DESKTOP_WINDOWS_ROUNDED = "desktop_windows_rounded" - DESKTOP_WINDOWS_SHARP = "desktop_windows_sharp" - DESK_OUTLINED = "desk_outlined" - DESK_ROUNDED = "desk_rounded" - DESK_SHARP = "desk_sharp" - DETAILS = "details" - DETAILS_OUTLINED = "details_outlined" - DETAILS_ROUNDED = "details_rounded" - DETAILS_SHARP = "details_sharp" - DEVELOPER_BOARD = "developer_board" - DEVELOPER_BOARD_OFF = "developer_board_off" - DEVELOPER_BOARD_OFF_OUTLINED = "developer_board_off_outlined" - DEVELOPER_BOARD_OFF_ROUNDED = "developer_board_off_rounded" - DEVELOPER_BOARD_OFF_SHARP = "developer_board_off_sharp" - DEVELOPER_BOARD_OUTLINED = "developer_board_outlined" - DEVELOPER_BOARD_ROUNDED = "developer_board_rounded" - DEVELOPER_BOARD_SHARP = "developer_board_sharp" - DEVELOPER_MODE = "developer_mode" - DEVELOPER_MODE_OUTLINED = "developer_mode_outlined" - DEVELOPER_MODE_ROUNDED = "developer_mode_rounded" - DEVELOPER_MODE_SHARP = "developer_mode_sharp" - DEVICES = "devices" - DEVICES_FOLD = "devices_fold" - DEVICES_FOLD_OUTLINED = "devices_fold_outlined" - DEVICES_FOLD_ROUNDED = "devices_fold_rounded" - DEVICES_FOLD_SHARP = "devices_fold_sharp" - DEVICES_OTHER = "devices_other" - DEVICES_OTHER_OUTLINED = "devices_other_outlined" - DEVICES_OTHER_ROUNDED = "devices_other_rounded" - DEVICES_OTHER_SHARP = "devices_other_sharp" - DEVICES_OUTLINED = "devices_outlined" - DEVICES_ROUNDED = "devices_rounded" - DEVICES_SHARP = "devices_sharp" - DEVICE_HUB = "device_hub" - DEVICE_HUB_OUTLINED = "device_hub_outlined" - DEVICE_HUB_ROUNDED = "device_hub_rounded" - DEVICE_HUB_SHARP = "device_hub_sharp" - DEVICE_THERMOSTAT = "device_thermostat" - DEVICE_THERMOSTAT_OUTLINED = "device_thermostat_outlined" - DEVICE_THERMOSTAT_ROUNDED = "device_thermostat_rounded" - DEVICE_THERMOSTAT_SHARP = "device_thermostat_sharp" - DEVICE_UNKNOWN = "device_unknown" - DEVICE_UNKNOWN_OUTLINED = "device_unknown_outlined" - DEVICE_UNKNOWN_ROUNDED = "device_unknown_rounded" - DEVICE_UNKNOWN_SHARP = "device_unknown_sharp" - DEW_POINT = "dew_point" - DIALER_SIP = "dialer_sip" - DIALER_SIP_OUTLINED = "dialer_sip_outlined" - DIALER_SIP_ROUNDED = "dialer_sip_rounded" - DIALER_SIP_SHARP = "dialer_sip_sharp" - DIALPAD = "dialpad" - DIALPAD_OUTLINED = "dialpad_outlined" - DIALPAD_ROUNDED = "dialpad_rounded" - DIALPAD_SHARP = "dialpad_sharp" - DIAMOND = "diamond" - DIAMOND_OUTLINED = "diamond_outlined" - DIAMOND_ROUNDED = "diamond_rounded" - DIAMOND_SHARP = "diamond_sharp" - DIFFERENCE = "difference" - DIFFERENCE_OUTLINED = "difference_outlined" - DIFFERENCE_ROUNDED = "difference_rounded" - DIFFERENCE_SHARP = "difference_sharp" - DINING = "dining" - DINING_OUTLINED = "dining_outlined" - DINING_ROUNDED = "dining_rounded" - DINING_SHARP = "dining_sharp" - DINNER_DINING = "dinner_dining" - DINNER_DINING_OUTLINED = "dinner_dining_outlined" - DINNER_DINING_ROUNDED = "dinner_dining_rounded" - DINNER_DINING_SHARP = "dinner_dining_sharp" - DIRECTIONS = "directions" - DIRECTIONS_BIKE = "directions_bike" - DIRECTIONS_BIKE_OUTLINED = "directions_bike_outlined" - DIRECTIONS_BIKE_ROUNDED = "directions_bike_rounded" - DIRECTIONS_BIKE_SHARP = "directions_bike_sharp" - DIRECTIONS_BOAT = "directions_boat" - DIRECTIONS_BOAT_FILLED = "directions_boat_filled" - DIRECTIONS_BOAT_FILLED_OUTLINED = "directions_boat_filled_outlined" - DIRECTIONS_BOAT_FILLED_ROUNDED = "directions_boat_filled_rounded" - DIRECTIONS_BOAT_FILLED_SHARP = "directions_boat_filled_sharp" - DIRECTIONS_BOAT_OUTLINED = "directions_boat_outlined" - DIRECTIONS_BOAT_ROUNDED = "directions_boat_rounded" - DIRECTIONS_BOAT_SHARP = "directions_boat_sharp" - DIRECTIONS_BUS = "directions_bus" - DIRECTIONS_BUS_FILLED = "directions_bus_filled" - DIRECTIONS_BUS_FILLED_OUTLINED = "directions_bus_filled_outlined" - DIRECTIONS_BUS_FILLED_ROUNDED = "directions_bus_filled_rounded" - DIRECTIONS_BUS_FILLED_SHARP = "directions_bus_filled_sharp" - DIRECTIONS_BUS_OUTLINED = "directions_bus_outlined" - DIRECTIONS_BUS_ROUNDED = "directions_bus_rounded" - DIRECTIONS_BUS_SHARP = "directions_bus_sharp" - DIRECTIONS_CAR = "directions_car" - DIRECTIONS_CAR_FILLED = "directions_car_filled" - DIRECTIONS_CAR_FILLED_OUTLINED = "directions_car_filled_outlined" - DIRECTIONS_CAR_FILLED_ROUNDED = "directions_car_filled_rounded" - DIRECTIONS_CAR_FILLED_SHARP = "directions_car_filled_sharp" - DIRECTIONS_CAR_OUTLINED = "directions_car_outlined" - DIRECTIONS_CAR_ROUNDED = "directions_car_rounded" - DIRECTIONS_CAR_SHARP = "directions_car_sharp" - DIRECTIONS_FERRY = "directions_ferry" - DIRECTIONS_FERRY_OUTLINED = "directions_ferry_outlined" - DIRECTIONS_FERRY_ROUNDED = "directions_ferry_rounded" - DIRECTIONS_FERRY_SHARP = "directions_ferry_sharp" - DIRECTIONS_OFF = "directions_off" - DIRECTIONS_OFF_OUTLINED = "directions_off_outlined" - DIRECTIONS_OFF_ROUNDED = "directions_off_rounded" - DIRECTIONS_OFF_SHARP = "directions_off_sharp" - DIRECTIONS_OUTLINED = "directions_outlined" - DIRECTIONS_RAILWAY = "directions_railway" - DIRECTIONS_RAILWAY_FILLED = "directions_railway_filled" - DIRECTIONS_RAILWAY_FILLED_OUTLINED = "directions_railway_filled_outlined" - DIRECTIONS_RAILWAY_FILLED_ROUNDED = "directions_railway_filled_rounded" - DIRECTIONS_RAILWAY_FILLED_SHARP = "directions_railway_filled_sharp" - DIRECTIONS_RAILWAY_OUTLINED = "directions_railway_outlined" - DIRECTIONS_RAILWAY_ROUNDED = "directions_railway_rounded" - DIRECTIONS_RAILWAY_SHARP = "directions_railway_sharp" - DIRECTIONS_ROUNDED = "directions_rounded" - DIRECTIONS_RUN = "directions_run" - DIRECTIONS_RUN_OUTLINED = "directions_run_outlined" - DIRECTIONS_RUN_ROUNDED = "directions_run_rounded" - DIRECTIONS_RUN_SHARP = "directions_run_sharp" - DIRECTIONS_SHARP = "directions_sharp" - DIRECTIONS_SUBWAY = "directions_subway" - DIRECTIONS_SUBWAY_FILLED = "directions_subway_filled" - DIRECTIONS_SUBWAY_FILLED_OUTLINED = "directions_subway_filled_outlined" - DIRECTIONS_SUBWAY_FILLED_ROUNDED = "directions_subway_filled_rounded" - DIRECTIONS_SUBWAY_FILLED_SHARP = "directions_subway_filled_sharp" - DIRECTIONS_SUBWAY_OUTLINED = "directions_subway_outlined" - DIRECTIONS_SUBWAY_ROUNDED = "directions_subway_rounded" - DIRECTIONS_SUBWAY_SHARP = "directions_subway_sharp" - DIRECTIONS_TRAIN = "directions_train" - DIRECTIONS_TRAIN_OUTLINED = "directions_train_outlined" - DIRECTIONS_TRAIN_ROUNDED = "directions_train_rounded" - DIRECTIONS_TRAIN_SHARP = "directions_train_sharp" - DIRECTIONS_TRANSIT = "directions_transit" - DIRECTIONS_TRANSIT_FILLED = "directions_transit_filled" - DIRECTIONS_TRANSIT_FILLED_OUTLINED = "directions_transit_filled_outlined" - DIRECTIONS_TRANSIT_FILLED_ROUNDED = "directions_transit_filled_rounded" - DIRECTIONS_TRANSIT_FILLED_SHARP = "directions_transit_filled_sharp" - DIRECTIONS_TRANSIT_OUTLINED = "directions_transit_outlined" - DIRECTIONS_TRANSIT_ROUNDED = "directions_transit_rounded" - DIRECTIONS_TRANSIT_SHARP = "directions_transit_sharp" - DIRECTIONS_WALK = "directions_walk" - DIRECTIONS_WALK_OUTLINED = "directions_walk_outlined" - DIRECTIONS_WALK_ROUNDED = "directions_walk_rounded" - DIRECTIONS_WALK_SHARP = "directions_walk_sharp" - DIRTY_LENS = "dirty_lens" - DIRTY_LENS_OUTLINED = "dirty_lens_outlined" - DIRTY_LENS_ROUNDED = "dirty_lens_rounded" - DIRTY_LENS_SHARP = "dirty_lens_sharp" - DISABLED_BY_DEFAULT = "disabled_by_default" - DISABLED_BY_DEFAULT_OUTLINED = "disabled_by_default_outlined" - DISABLED_BY_DEFAULT_ROUNDED = "disabled_by_default_rounded" - DISABLED_BY_DEFAULT_SHARP = "disabled_by_default_sharp" - DISABLED_VISIBLE = "disabled_visible" - DISABLED_VISIBLE_OUTLINED = "disabled_visible_outlined" - DISABLED_VISIBLE_ROUNDED = "disabled_visible_rounded" - DISABLED_VISIBLE_SHARP = "disabled_visible_sharp" - DISCORD = "discord" - DISCORD_OUTLINED = "discord_outlined" - DISCORD_ROUNDED = "discord_rounded" - DISCORD_SHARP = "discord_sharp" - DISCOUNT = "discount" - DISCOUNT_OUTLINED = "discount_outlined" - DISCOUNT_ROUNDED = "discount_rounded" - DISCOUNT_SHARP = "discount_sharp" - DISC_FULL = "disc_full" - DISC_FULL_OUTLINED = "disc_full_outlined" - DISC_FULL_ROUNDED = "disc_full_rounded" - DISC_FULL_SHARP = "disc_full_sharp" - DISPLAY_SETTINGS = "display_settings" - DISPLAY_SETTINGS_OUTLINED = "display_settings_outlined" - DISPLAY_SETTINGS_ROUNDED = "display_settings_rounded" - DISPLAY_SETTINGS_SHARP = "display_settings_sharp" - DIVERSITY_1 = "diversity_1" - DIVERSITY_1_OUTLINED = "diversity_1_outlined" - DIVERSITY_1_ROUNDED = "diversity_1_rounded" - DIVERSITY_1_SHARP = "diversity_1_sharp" - DIVERSITY_2 = "diversity_2" - DIVERSITY_2_OUTLINED = "diversity_2_outlined" - DIVERSITY_2_ROUNDED = "diversity_2_rounded" - DIVERSITY_2_SHARP = "diversity_2_sharp" - DIVERSITY_3 = "diversity_3" - DIVERSITY_3_OUTLINED = "diversity_3_outlined" - DIVERSITY_3_ROUNDED = "diversity_3_rounded" - DIVERSITY_3_SHARP = "diversity_3_sharp" - DND_FORWARDSLASH = "dnd_forwardslash" - DND_FORWARDSLASH_OUTLINED = "dnd_forwardslash_outlined" - DND_FORWARDSLASH_ROUNDED = "dnd_forwardslash_rounded" - DND_FORWARDSLASH_SHARP = "dnd_forwardslash_sharp" - DNS = "dns" - DNS_OUTLINED = "dns_outlined" - DNS_ROUNDED = "dns_rounded" - DNS_SHARP = "dns_sharp" - DOCK = "dock" - DOCK_OUTLINED = "dock_outlined" - DOCK_ROUNDED = "dock_rounded" - DOCK_SHARP = "dock_sharp" - DOCUMENT_SCANNER = "document_scanner" - DOCUMENT_SCANNER_OUTLINED = "document_scanner_outlined" - DOCUMENT_SCANNER_ROUNDED = "document_scanner_rounded" - DOCUMENT_SCANNER_SHARP = "document_scanner_sharp" - DOMAIN = "domain" - DOMAIN_ADD = "domain_add" - DOMAIN_ADD_OUTLINED = "domain_add_outlined" - DOMAIN_ADD_ROUNDED = "domain_add_rounded" - DOMAIN_ADD_SHARP = "domain_add_sharp" - DOMAIN_DISABLED = "domain_disabled" - DOMAIN_DISABLED_OUTLINED = "domain_disabled_outlined" - DOMAIN_DISABLED_ROUNDED = "domain_disabled_rounded" - DOMAIN_DISABLED_SHARP = "domain_disabled_sharp" - DOMAIN_OUTLINED = "domain_outlined" - DOMAIN_ROUNDED = "domain_rounded" - DOMAIN_SHARP = "domain_sharp" - DOMAIN_VERIFICATION = "domain_verification" - DOMAIN_VERIFICATION_OUTLINED = "domain_verification_outlined" - DOMAIN_VERIFICATION_ROUNDED = "domain_verification_rounded" - DOMAIN_VERIFICATION_SHARP = "domain_verification_sharp" - DONE = "done" - DONE_ALL = "done_all" - DONE_ALL_OUTLINED = "done_all_outlined" - DONE_ALL_ROUNDED = "done_all_rounded" - DONE_ALL_SHARP = "done_all_sharp" - DONE_OUTLINE = "done_outline" - DONE_OUTLINED = "done_outlined" - DONE_OUTLINE_OUTLINED = "done_outline_outlined" - DONE_OUTLINE_ROUNDED = "done_outline_rounded" - DONE_OUTLINE_SHARP = "done_outline_sharp" - DONE_ROUNDED = "done_rounded" - DONE_SHARP = "done_sharp" - DONUT_LARGE = "donut_large" - DONUT_LARGE_OUTLINED = "donut_large_outlined" - DONUT_LARGE_ROUNDED = "donut_large_rounded" - DONUT_LARGE_SHARP = "donut_large_sharp" - DONUT_SMALL = "donut_small" - DONUT_SMALL_OUTLINED = "donut_small_outlined" - DONUT_SMALL_ROUNDED = "donut_small_rounded" - DONUT_SMALL_SHARP = "donut_small_sharp" - DOORBELL = "doorbell" - DOORBELL_OUTLINED = "doorbell_outlined" - DOORBELL_ROUNDED = "doorbell_rounded" - DOORBELL_SHARP = "doorbell_sharp" - DOOR_BACK_DOOR = "door_back_door" - DOOR_BACK_DOOR_OUTLINED = "door_back_door_outlined" - DOOR_BACK_DOOR_ROUNDED = "door_back_door_rounded" - DOOR_BACK_DOOR_SHARP = "door_back_door_sharp" - DOOR_FRONT_DOOR = "door_front_door" - DOOR_FRONT_DOOR_OUTLINED = "door_front_door_outlined" - DOOR_FRONT_DOOR_ROUNDED = "door_front_door_rounded" - DOOR_FRONT_DOOR_SHARP = "door_front_door_sharp" - DOOR_SLIDING = "door_sliding" - DOOR_SLIDING_OUTLINED = "door_sliding_outlined" - DOOR_SLIDING_ROUNDED = "door_sliding_rounded" - DOOR_SLIDING_SHARP = "door_sliding_sharp" - DOUBLE_ARROW = "double_arrow" - DOUBLE_ARROW_OUTLINED = "double_arrow_outlined" - DOUBLE_ARROW_ROUNDED = "double_arrow_rounded" - DOUBLE_ARROW_SHARP = "double_arrow_sharp" - DOWNHILL_SKIING = "downhill_skiing" - DOWNHILL_SKIING_OUTLINED = "downhill_skiing_outlined" - DOWNHILL_SKIING_ROUNDED = "downhill_skiing_rounded" - DOWNHILL_SKIING_SHARP = "downhill_skiing_sharp" - DOWNLOAD = "download" - DOWNLOADING = "downloading" - DOWNLOADING_OUTLINED = "downloading_outlined" - DOWNLOADING_ROUNDED = "downloading_rounded" - DOWNLOADING_SHARP = "downloading_sharp" - DOWNLOAD_DONE = "download_done" - DOWNLOAD_DONE_OUTLINED = "download_done_outlined" - DOWNLOAD_DONE_ROUNDED = "download_done_rounded" - DOWNLOAD_DONE_SHARP = "download_done_sharp" - DOWNLOAD_FOR_OFFLINE = "download_for_offline" - DOWNLOAD_FOR_OFFLINE_OUTLINED = "download_for_offline_outlined" - DOWNLOAD_FOR_OFFLINE_ROUNDED = "download_for_offline_rounded" - DOWNLOAD_FOR_OFFLINE_SHARP = "download_for_offline_sharp" - DOWNLOAD_OUTLINED = "download_outlined" - DOWNLOAD_ROUNDED = "download_rounded" - DOWNLOAD_SHARP = "download_sharp" - DO_DISTURB = "do_disturb" - DO_DISTURB_ALT = "do_disturb_alt" - DO_DISTURB_ALT_OUTLINED = "do_disturb_alt_outlined" - DO_DISTURB_ALT_ROUNDED = "do_disturb_alt_rounded" - DO_DISTURB_ALT_SHARP = "do_disturb_alt_sharp" - DO_DISTURB_OFF = "do_disturb_off" - DO_DISTURB_OFF_OUTLINED = "do_disturb_off_outlined" - DO_DISTURB_OFF_ROUNDED = "do_disturb_off_rounded" - DO_DISTURB_OFF_SHARP = "do_disturb_off_sharp" - DO_DISTURB_ON = "do_disturb_on" - DO_DISTURB_ON_OUTLINED = "do_disturb_on_outlined" - DO_DISTURB_ON_ROUNDED = "do_disturb_on_rounded" - DO_DISTURB_ON_SHARP = "do_disturb_on_sharp" - DO_DISTURB_OUTLINED = "do_disturb_outlined" - DO_DISTURB_ROUNDED = "do_disturb_rounded" - DO_DISTURB_SHARP = "do_disturb_sharp" - DO_NOT_DISTURB = "do_not_disturb" - DO_NOT_DISTURB_ALT = "do_not_disturb_alt" - DO_NOT_DISTURB_ALT_OUTLINED = "do_not_disturb_alt_outlined" - DO_NOT_DISTURB_ALT_ROUNDED = "do_not_disturb_alt_rounded" - DO_NOT_DISTURB_ALT_SHARP = "do_not_disturb_alt_sharp" - DO_NOT_DISTURB_OFF = "do_not_disturb_off" - DO_NOT_DISTURB_OFF_OUTLINED = "do_not_disturb_off_outlined" - DO_NOT_DISTURB_OFF_ROUNDED = "do_not_disturb_off_rounded" - DO_NOT_DISTURB_OFF_SHARP = "do_not_disturb_off_sharp" - DO_NOT_DISTURB_ON = "do_not_disturb_on" - DO_NOT_DISTURB_ON_OUTLINED = "do_not_disturb_on_outlined" - DO_NOT_DISTURB_ON_ROUNDED = "do_not_disturb_on_rounded" - DO_NOT_DISTURB_ON_SHARP = "do_not_disturb_on_sharp" - DO_NOT_DISTURB_ON_TOTAL_SILENCE = "do_not_disturb_on_total_silence" - DO_NOT_DISTURB_ON_TOTAL_SILENCE_OUTLINED = ( - "do_not_disturb_on_total_silence_outlined" - ) - DO_NOT_DISTURB_ON_TOTAL_SILENCE_ROUNDED = "do_not_disturb_on_total_silence_rounded" - DO_NOT_DISTURB_ON_TOTAL_SILENCE_SHARP = "do_not_disturb_on_total_silence_sharp" - DO_NOT_DISTURB_OUTLINED = "do_not_disturb_outlined" - DO_NOT_DISTURB_ROUNDED = "do_not_disturb_rounded" - DO_NOT_DISTURB_SHARP = "do_not_disturb_sharp" - DO_NOT_STEP = "do_not_step" - DO_NOT_STEP_OUTLINED = "do_not_step_outlined" - DO_NOT_STEP_ROUNDED = "do_not_step_rounded" - DO_NOT_STEP_SHARP = "do_not_step_sharp" - DO_NOT_TOUCH = "do_not_touch" - DO_NOT_TOUCH_OUTLINED = "do_not_touch_outlined" - DO_NOT_TOUCH_ROUNDED = "do_not_touch_rounded" - DO_NOT_TOUCH_SHARP = "do_not_touch_sharp" - DRAFTS = "drafts" - DRAFTS_OUTLINED = "drafts_outlined" - DRAFTS_ROUNDED = "drafts_rounded" - DRAFTS_SHARP = "drafts_sharp" - DRAG_HANDLE = "drag_handle" - DRAG_HANDLE_OUTLINED = "drag_handle_outlined" - DRAG_HANDLE_ROUNDED = "drag_handle_rounded" - DRAG_HANDLE_SHARP = "drag_handle_sharp" - DRAG_INDICATOR = "drag_indicator" - DRAG_INDICATOR_OUTLINED = "drag_indicator_outlined" - DRAG_INDICATOR_ROUNDED = "drag_indicator_rounded" - DRAG_INDICATOR_SHARP = "drag_indicator_sharp" - DRAW = "draw" - DRAW_OUTLINED = "draw_outlined" - DRAW_ROUNDED = "draw_rounded" - DRAW_SHARP = "draw_sharp" - DRIVE_ETA = "drive_eta" - DRIVE_ETA_OUTLINED = "drive_eta_outlined" - DRIVE_ETA_ROUNDED = "drive_eta_rounded" - DRIVE_ETA_SHARP = "drive_eta_sharp" - DRIVE_FILE_MOVE = "drive_file_move" - DRIVE_FILE_MOVE_OUTLINE = "drive_file_move_outline" - DRIVE_FILE_MOVE_OUTLINED = "drive_file_move_outlined" - DRIVE_FILE_MOVE_ROUNDED = "drive_file_move_rounded" - DRIVE_FILE_MOVE_RTL = "drive_file_move_rtl" - DRIVE_FILE_MOVE_RTL_OUTLINED = "drive_file_move_rtl_outlined" - DRIVE_FILE_MOVE_RTL_ROUNDED = "drive_file_move_rtl_rounded" - DRIVE_FILE_MOVE_RTL_SHARP = "drive_file_move_rtl_sharp" - DRIVE_FILE_MOVE_SHARP = "drive_file_move_sharp" - DRIVE_FILE_RENAME_OUTLINE = "drive_file_rename_outline" - DRIVE_FILE_RENAME_OUTLINE_OUTLINED = "drive_file_rename_outline_outlined" - DRIVE_FILE_RENAME_OUTLINE_ROUNDED = "drive_file_rename_outline_rounded" - DRIVE_FILE_RENAME_OUTLINE_SHARP = "drive_file_rename_outline_sharp" - DRIVE_FOLDER_UPLOAD = "drive_folder_upload" - DRIVE_FOLDER_UPLOAD_OUTLINED = "drive_folder_upload_outlined" - DRIVE_FOLDER_UPLOAD_ROUNDED = "drive_folder_upload_rounded" - DRIVE_FOLDER_UPLOAD_SHARP = "drive_folder_upload_sharp" - DRY = "dry" - DRY_CLEANING = "dry_cleaning" - DRY_CLEANING_OUTLINED = "dry_cleaning_outlined" - DRY_CLEANING_ROUNDED = "dry_cleaning_rounded" - DRY_CLEANING_SHARP = "dry_cleaning_sharp" - DRY_OUTLINED = "dry_outlined" - DRY_ROUNDED = "dry_rounded" - DRY_SHARP = "dry_sharp" - DUO = "duo" - DUO_OUTLINED = "duo_outlined" - DUO_ROUNDED = "duo_rounded" - DUO_SHARP = "duo_sharp" - DVR = "dvr" - DVR_OUTLINED = "dvr_outlined" - DVR_ROUNDED = "dvr_rounded" - DVR_SHARP = "dvr_sharp" - DYNAMIC_FEED = "dynamic_feed" - DYNAMIC_FEED_OUTLINED = "dynamic_feed_outlined" - DYNAMIC_FEED_ROUNDED = "dynamic_feed_rounded" - DYNAMIC_FEED_SHARP = "dynamic_feed_sharp" - DYNAMIC_FORM = "dynamic_form" - DYNAMIC_FORM_OUTLINED = "dynamic_form_outlined" - DYNAMIC_FORM_ROUNDED = "dynamic_form_rounded" - DYNAMIC_FORM_SHARP = "dynamic_form_sharp" - EARBUDS = "earbuds" - EARBUDS_BATTERY = "earbuds_battery" - EARBUDS_BATTERY_OUTLINED = "earbuds_battery_outlined" - EARBUDS_BATTERY_ROUNDED = "earbuds_battery_rounded" - EARBUDS_BATTERY_SHARP = "earbuds_battery_sharp" - EARBUDS_OUTLINED = "earbuds_outlined" - EARBUDS_ROUNDED = "earbuds_rounded" - EARBUDS_SHARP = "earbuds_sharp" - EAST = "east" - EAST_OUTLINED = "east_outlined" - EAST_ROUNDED = "east_rounded" - EAST_SHARP = "east_sharp" - ECO = "eco" - ECO_OUTLINED = "eco_outlined" - ECO_ROUNDED = "eco_rounded" - ECO_SHARP = "eco_sharp" - EDGESENSOR_HIGH = "edgesensor_high" - EDGESENSOR_HIGH_OUTLINED = "edgesensor_high_outlined" - EDGESENSOR_HIGH_ROUNDED = "edgesensor_high_rounded" - EDGESENSOR_HIGH_SHARP = "edgesensor_high_sharp" - EDGESENSOR_LOW = "edgesensor_low" - EDGESENSOR_LOW_OUTLINED = "edgesensor_low_outlined" - EDGESENSOR_LOW_ROUNDED = "edgesensor_low_rounded" - EDGESENSOR_LOW_SHARP = "edgesensor_low_sharp" - EDIT = "edit" - EDIT_ATTRIBUTES = "edit_attributes" - EDIT_ATTRIBUTES_OUTLINED = "edit_attributes_outlined" - EDIT_ATTRIBUTES_ROUNDED = "edit_attributes_rounded" - EDIT_ATTRIBUTES_SHARP = "edit_attributes_sharp" - EDIT_CALENDAR = "edit_calendar" - EDIT_CALENDAR_OUTLINED = "edit_calendar_outlined" - EDIT_CALENDAR_ROUNDED = "edit_calendar_rounded" - EDIT_CALENDAR_SHARP = "edit_calendar_sharp" - EDIT_DOCUMENT = "edit_document" - EDIT_LOCATION = "edit_location" - EDIT_LOCATION_ALT = "edit_location_alt" - EDIT_LOCATION_ALT_OUTLINED = "edit_location_alt_outlined" - EDIT_LOCATION_ALT_ROUNDED = "edit_location_alt_rounded" - EDIT_LOCATION_ALT_SHARP = "edit_location_alt_sharp" - EDIT_LOCATION_OUTLINED = "edit_location_outlined" - EDIT_LOCATION_ROUNDED = "edit_location_rounded" - EDIT_LOCATION_SHARP = "edit_location_sharp" - EDIT_NOTE = "edit_note" - EDIT_NOTE_OUTLINED = "edit_note_outlined" - EDIT_NOTE_ROUNDED = "edit_note_rounded" - EDIT_NOTE_SHARP = "edit_note_sharp" - EDIT_NOTIFICATIONS = "edit_notifications" - EDIT_NOTIFICATIONS_OUTLINED = "edit_notifications_outlined" - EDIT_NOTIFICATIONS_ROUNDED = "edit_notifications_rounded" - EDIT_NOTIFICATIONS_SHARP = "edit_notifications_sharp" - EDIT_OFF = "edit_off" - EDIT_OFF_OUTLINED = "edit_off_outlined" - EDIT_OFF_ROUNDED = "edit_off_rounded" - EDIT_OFF_SHARP = "edit_off_sharp" - EDIT_OUTLINED = "edit_outlined" - EDIT_ROAD = "edit_road" - EDIT_ROAD_OUTLINED = "edit_road_outlined" - EDIT_ROAD_ROUNDED = "edit_road_rounded" - EDIT_ROAD_SHARP = "edit_road_sharp" - EDIT_ROUNDED = "edit_rounded" - EDIT_SHARP = "edit_sharp" - EDIT_SQUARE = "edit_square" - EGG = "egg" - EGG_ALT = "egg_alt" - EGG_ALT_OUTLINED = "egg_alt_outlined" - EGG_ALT_ROUNDED = "egg_alt_rounded" - EGG_ALT_SHARP = "egg_alt_sharp" - EGG_OUTLINED = "egg_outlined" - EGG_ROUNDED = "egg_rounded" - EGG_SHARP = "egg_sharp" - EIGHTEEN_MP = "eighteen_mp" - EIGHTEEN_MP_OUTLINED = "eighteen_mp_outlined" - EIGHTEEN_MP_ROUNDED = "eighteen_mp_rounded" - EIGHTEEN_MP_SHARP = "eighteen_mp_sharp" - EIGHTEEN_UP_RATING = "eighteen_up_rating" - EIGHTEEN_UP_RATING_OUTLINED = "eighteen_up_rating_outlined" - EIGHTEEN_UP_RATING_ROUNDED = "eighteen_up_rating_rounded" - EIGHTEEN_UP_RATING_SHARP = "eighteen_up_rating_sharp" - EIGHT_K = "eight_k" - EIGHT_K_OUTLINED = "eight_k_outlined" - EIGHT_K_PLUS = "eight_k_plus" - EIGHT_K_PLUS_OUTLINED = "eight_k_plus_outlined" - EIGHT_K_PLUS_ROUNDED = "eight_k_plus_rounded" - EIGHT_K_PLUS_SHARP = "eight_k_plus_sharp" - EIGHT_K_ROUNDED = "eight_k_rounded" - EIGHT_K_SHARP = "eight_k_sharp" - EIGHT_MP = "eight_mp" - EIGHT_MP_OUTLINED = "eight_mp_outlined" - EIGHT_MP_ROUNDED = "eight_mp_rounded" - EIGHT_MP_SHARP = "eight_mp_sharp" - EJECT = "eject" - EJECT_OUTLINED = "eject_outlined" - EJECT_ROUNDED = "eject_rounded" - EJECT_SHARP = "eject_sharp" - ELDERLY = "elderly" - ELDERLY_OUTLINED = "elderly_outlined" - ELDERLY_ROUNDED = "elderly_rounded" - ELDERLY_SHARP = "elderly_sharp" - ELDERLY_WOMAN = "elderly_woman" - ELDERLY_WOMAN_OUTLINED = "elderly_woman_outlined" - ELDERLY_WOMAN_ROUNDED = "elderly_woman_rounded" - ELDERLY_WOMAN_SHARP = "elderly_woman_sharp" - ELECTRICAL_SERVICES = "electrical_services" - ELECTRICAL_SERVICES_OUTLINED = "electrical_services_outlined" - ELECTRICAL_SERVICES_ROUNDED = "electrical_services_rounded" - ELECTRICAL_SERVICES_SHARP = "electrical_services_sharp" - ELECTRIC_BIKE = "electric_bike" - ELECTRIC_BIKE_OUTLINED = "electric_bike_outlined" - ELECTRIC_BIKE_ROUNDED = "electric_bike_rounded" - ELECTRIC_BIKE_SHARP = "electric_bike_sharp" - ELECTRIC_BOLT = "electric_bolt" - ELECTRIC_BOLT_OUTLINED = "electric_bolt_outlined" - ELECTRIC_BOLT_ROUNDED = "electric_bolt_rounded" - ELECTRIC_BOLT_SHARP = "electric_bolt_sharp" - ELECTRIC_CAR = "electric_car" - ELECTRIC_CAR_OUTLINED = "electric_car_outlined" - ELECTRIC_CAR_ROUNDED = "electric_car_rounded" - ELECTRIC_CAR_SHARP = "electric_car_sharp" - ELECTRIC_METER = "electric_meter" - ELECTRIC_METER_OUTLINED = "electric_meter_outlined" - ELECTRIC_METER_ROUNDED = "electric_meter_rounded" - ELECTRIC_METER_SHARP = "electric_meter_sharp" - ELECTRIC_MOPED = "electric_moped" - ELECTRIC_MOPED_OUTLINED = "electric_moped_outlined" - ELECTRIC_MOPED_ROUNDED = "electric_moped_rounded" - ELECTRIC_MOPED_SHARP = "electric_moped_sharp" - ELECTRIC_RICKSHAW = "electric_rickshaw" - ELECTRIC_RICKSHAW_OUTLINED = "electric_rickshaw_outlined" - ELECTRIC_RICKSHAW_ROUNDED = "electric_rickshaw_rounded" - ELECTRIC_RICKSHAW_SHARP = "electric_rickshaw_sharp" - ELECTRIC_SCOOTER = "electric_scooter" - ELECTRIC_SCOOTER_OUTLINED = "electric_scooter_outlined" - ELECTRIC_SCOOTER_ROUNDED = "electric_scooter_rounded" - ELECTRIC_SCOOTER_SHARP = "electric_scooter_sharp" - ELEVATOR = "elevator" - ELEVATOR_OUTLINED = "elevator_outlined" - ELEVATOR_ROUNDED = "elevator_rounded" - ELEVATOR_SHARP = "elevator_sharp" - ELEVEN_MP = "eleven_mp" - ELEVEN_MP_OUTLINED = "eleven_mp_outlined" - ELEVEN_MP_ROUNDED = "eleven_mp_rounded" - ELEVEN_MP_SHARP = "eleven_mp_sharp" - EMAIL = "email" - EMAIL_OUTLINED = "email_outlined" - EMAIL_ROUNDED = "email_rounded" - EMAIL_SHARP = "email_sharp" - EMERGENCY = "emergency" - EMERGENCY_OUTLINED = "emergency_outlined" - EMERGENCY_RECORDING = "emergency_recording" - EMERGENCY_RECORDING_OUTLINED = "emergency_recording_outlined" - EMERGENCY_RECORDING_ROUNDED = "emergency_recording_rounded" - EMERGENCY_RECORDING_SHARP = "emergency_recording_sharp" - EMERGENCY_ROUNDED = "emergency_rounded" - EMERGENCY_SHARE = "emergency_share" - EMERGENCY_SHARE_OUTLINED = "emergency_share_outlined" - EMERGENCY_SHARE_ROUNDED = "emergency_share_rounded" - EMERGENCY_SHARE_SHARP = "emergency_share_sharp" - EMERGENCY_SHARP = "emergency_sharp" - EMOJI_EMOTIONS = "emoji_emotions" - EMOJI_EMOTIONS_OUTLINED = "emoji_emotions_outlined" - EMOJI_EMOTIONS_ROUNDED = "emoji_emotions_rounded" - EMOJI_EMOTIONS_SHARP = "emoji_emotions_sharp" - EMOJI_EVENTS = "emoji_events" - EMOJI_EVENTS_OUTLINED = "emoji_events_outlined" - EMOJI_EVENTS_ROUNDED = "emoji_events_rounded" - EMOJI_EVENTS_SHARP = "emoji_events_sharp" - EMOJI_FLAGS = "emoji_flags" - EMOJI_FLAGS_OUTLINED = "emoji_flags_outlined" - EMOJI_FLAGS_ROUNDED = "emoji_flags_rounded" - EMOJI_FLAGS_SHARP = "emoji_flags_sharp" - EMOJI_FOOD_BEVERAGE = "emoji_food_beverage" - EMOJI_FOOD_BEVERAGE_OUTLINED = "emoji_food_beverage_outlined" - EMOJI_FOOD_BEVERAGE_ROUNDED = "emoji_food_beverage_rounded" - EMOJI_FOOD_BEVERAGE_SHARP = "emoji_food_beverage_sharp" - EMOJI_NATURE = "emoji_nature" - EMOJI_NATURE_OUTLINED = "emoji_nature_outlined" - EMOJI_NATURE_ROUNDED = "emoji_nature_rounded" - EMOJI_NATURE_SHARP = "emoji_nature_sharp" - EMOJI_OBJECTS = "emoji_objects" - EMOJI_OBJECTS_OUTLINED = "emoji_objects_outlined" - EMOJI_OBJECTS_ROUNDED = "emoji_objects_rounded" - EMOJI_OBJECTS_SHARP = "emoji_objects_sharp" - EMOJI_PEOPLE = "emoji_people" - EMOJI_PEOPLE_OUTLINED = "emoji_people_outlined" - EMOJI_PEOPLE_ROUNDED = "emoji_people_rounded" - EMOJI_PEOPLE_SHARP = "emoji_people_sharp" - EMOJI_SYMBOLS = "emoji_symbols" - EMOJI_SYMBOLS_OUTLINED = "emoji_symbols_outlined" - EMOJI_SYMBOLS_ROUNDED = "emoji_symbols_rounded" - EMOJI_SYMBOLS_SHARP = "emoji_symbols_sharp" - EMOJI_TRANSPORTATION = "emoji_transportation" - EMOJI_TRANSPORTATION_OUTLINED = "emoji_transportation_outlined" - EMOJI_TRANSPORTATION_ROUNDED = "emoji_transportation_rounded" - EMOJI_TRANSPORTATION_SHARP = "emoji_transportation_sharp" - ENERGY_SAVINGS_LEAF = "energy_savings_leaf" - ENERGY_SAVINGS_LEAF_OUTLINED = "energy_savings_leaf_outlined" - ENERGY_SAVINGS_LEAF_ROUNDED = "energy_savings_leaf_rounded" - ENERGY_SAVINGS_LEAF_SHARP = "energy_savings_leaf_sharp" - ENGINEERING = "engineering" - ENGINEERING_OUTLINED = "engineering_outlined" - ENGINEERING_ROUNDED = "engineering_rounded" - ENGINEERING_SHARP = "engineering_sharp" - ENHANCED_ENCRYPTION = "enhanced_encryption" - ENHANCED_ENCRYPTION_OUTLINED = "enhanced_encryption_outlined" - ENHANCED_ENCRYPTION_ROUNDED = "enhanced_encryption_rounded" - ENHANCED_ENCRYPTION_SHARP = "enhanced_encryption_sharp" - ENHANCE_PHOTO_TRANSLATE = "enhance_photo_translate" - ENHANCE_PHOTO_TRANSLATE_OUTLINED = "enhance_photo_translate_outlined" - ENHANCE_PHOTO_TRANSLATE_ROUNDED = "enhance_photo_translate_rounded" - ENHANCE_PHOTO_TRANSLATE_SHARP = "enhance_photo_translate_sharp" - EQUALIZER = "equalizer" - EQUALIZER_OUTLINED = "equalizer_outlined" - EQUALIZER_ROUNDED = "equalizer_rounded" - EQUALIZER_SHARP = "equalizer_sharp" - ERROR = "error" - ERROR_OUTLINE = "error_outline" - ERROR_OUTLINED = "error_outlined" - ERROR_OUTLINE_OUTLINED = "error_outline_outlined" - ERROR_OUTLINE_ROUNDED = "error_outline_rounded" - ERROR_OUTLINE_SHARP = "error_outline_sharp" - ERROR_ROUNDED = "error_rounded" - ERROR_SHARP = "error_sharp" - ESCALATOR = "escalator" - ESCALATOR_OUTLINED = "escalator_outlined" - ESCALATOR_ROUNDED = "escalator_rounded" - ESCALATOR_SHARP = "escalator_sharp" - ESCALATOR_WARNING = "escalator_warning" - ESCALATOR_WARNING_OUTLINED = "escalator_warning_outlined" - ESCALATOR_WARNING_ROUNDED = "escalator_warning_rounded" - ESCALATOR_WARNING_SHARP = "escalator_warning_sharp" - EURO = "euro" - EURO_OUTLINED = "euro_outlined" - EURO_ROUNDED = "euro_rounded" - EURO_SHARP = "euro_sharp" - EURO_SYMBOL = "euro_symbol" - EURO_SYMBOL_OUTLINED = "euro_symbol_outlined" - EURO_SYMBOL_ROUNDED = "euro_symbol_rounded" - EURO_SYMBOL_SHARP = "euro_symbol_sharp" - EVENT = "event" - EVENT_AVAILABLE = "event_available" - EVENT_AVAILABLE_OUTLINED = "event_available_outlined" - EVENT_AVAILABLE_ROUNDED = "event_available_rounded" - EVENT_AVAILABLE_SHARP = "event_available_sharp" - EVENT_BUSY = "event_busy" - EVENT_BUSY_OUTLINED = "event_busy_outlined" - EVENT_BUSY_ROUNDED = "event_busy_rounded" - EVENT_BUSY_SHARP = "event_busy_sharp" - EVENT_NOTE = "event_note" - EVENT_NOTE_OUTLINED = "event_note_outlined" - EVENT_NOTE_ROUNDED = "event_note_rounded" - EVENT_NOTE_SHARP = "event_note_sharp" - EVENT_OUTLINED = "event_outlined" - EVENT_REPEAT = "event_repeat" - EVENT_REPEAT_OUTLINED = "event_repeat_outlined" - EVENT_REPEAT_ROUNDED = "event_repeat_rounded" - EVENT_REPEAT_SHARP = "event_repeat_sharp" - EVENT_ROUNDED = "event_rounded" - EVENT_SEAT = "event_seat" - EVENT_SEAT_OUTLINED = "event_seat_outlined" - EVENT_SEAT_ROUNDED = "event_seat_rounded" - EVENT_SEAT_SHARP = "event_seat_sharp" - EVENT_SHARP = "event_sharp" - EV_STATION = "ev_station" - EV_STATION_OUTLINED = "ev_station_outlined" - EV_STATION_ROUNDED = "ev_station_rounded" - EV_STATION_SHARP = "ev_station_sharp" - EXIT_TO_APP = "exit_to_app" - EXIT_TO_APP_OUTLINED = "exit_to_app_outlined" - EXIT_TO_APP_ROUNDED = "exit_to_app_rounded" - EXIT_TO_APP_SHARP = "exit_to_app_sharp" - EXPAND = "expand" - EXPAND_CIRCLE_DOWN = "expand_circle_down" - EXPAND_CIRCLE_DOWN_OUTLINED = "expand_circle_down_outlined" - EXPAND_CIRCLE_DOWN_ROUNDED = "expand_circle_down_rounded" - EXPAND_CIRCLE_DOWN_SHARP = "expand_circle_down_sharp" - EXPAND_LESS = "expand_less" - EXPAND_LESS_OUTLINED = "expand_less_outlined" - EXPAND_LESS_ROUNDED = "expand_less_rounded" - EXPAND_LESS_SHARP = "expand_less_sharp" - EXPAND_MORE = "expand_more" - EXPAND_MORE_OUTLINED = "expand_more_outlined" - EXPAND_MORE_ROUNDED = "expand_more_rounded" - EXPAND_MORE_SHARP = "expand_more_sharp" - EXPAND_OUTLINED = "expand_outlined" - EXPAND_ROUNDED = "expand_rounded" - EXPAND_SHARP = "expand_sharp" - EXPLICIT = "explicit" - EXPLICIT_OUTLINED = "explicit_outlined" - EXPLICIT_ROUNDED = "explicit_rounded" - EXPLICIT_SHARP = "explicit_sharp" - EXPLORE = "explore" - EXPLORE_OFF = "explore_off" - EXPLORE_OFF_OUTLINED = "explore_off_outlined" - EXPLORE_OFF_ROUNDED = "explore_off_rounded" - EXPLORE_OFF_SHARP = "explore_off_sharp" - EXPLORE_OUTLINED = "explore_outlined" - EXPLORE_ROUNDED = "explore_rounded" - EXPLORE_SHARP = "explore_sharp" - EXPOSURE = "exposure" - EXPOSURE_MINUS_1 = "exposure_minus_1" - EXPOSURE_MINUS_1_OUTLINED = "exposure_minus_1_outlined" - EXPOSURE_MINUS_1_ROUNDED = "exposure_minus_1_rounded" - EXPOSURE_MINUS_1_SHARP = "exposure_minus_1_sharp" - EXPOSURE_MINUS_2 = "exposure_minus_2" - EXPOSURE_MINUS_2_OUTLINED = "exposure_minus_2_outlined" - EXPOSURE_MINUS_2_ROUNDED = "exposure_minus_2_rounded" - EXPOSURE_MINUS_2_SHARP = "exposure_minus_2_sharp" - EXPOSURE_NEG_1 = "exposure_neg_1" - EXPOSURE_NEG_1_OUTLINED = "exposure_neg_1_outlined" - EXPOSURE_NEG_1_ROUNDED = "exposure_neg_1_rounded" - EXPOSURE_NEG_1_SHARP = "exposure_neg_1_sharp" - EXPOSURE_NEG_2 = "exposure_neg_2" - EXPOSURE_NEG_2_OUTLINED = "exposure_neg_2_outlined" - EXPOSURE_NEG_2_ROUNDED = "exposure_neg_2_rounded" - EXPOSURE_NEG_2_SHARP = "exposure_neg_2_sharp" - EXPOSURE_OUTLINED = "exposure_outlined" - EXPOSURE_PLUS_1 = "exposure_plus_1" - EXPOSURE_PLUS_1_OUTLINED = "exposure_plus_1_outlined" - EXPOSURE_PLUS_1_ROUNDED = "exposure_plus_1_rounded" - EXPOSURE_PLUS_1_SHARP = "exposure_plus_1_sharp" - EXPOSURE_PLUS_2 = "exposure_plus_2" - EXPOSURE_PLUS_2_OUTLINED = "exposure_plus_2_outlined" - EXPOSURE_PLUS_2_ROUNDED = "exposure_plus_2_rounded" - EXPOSURE_PLUS_2_SHARP = "exposure_plus_2_sharp" - EXPOSURE_ROUNDED = "exposure_rounded" - EXPOSURE_SHARP = "exposure_sharp" - EXPOSURE_ZERO = "exposure_zero" - EXPOSURE_ZERO_OUTLINED = "exposure_zero_outlined" - EXPOSURE_ZERO_ROUNDED = "exposure_zero_rounded" - EXPOSURE_ZERO_SHARP = "exposure_zero_sharp" - EXTENSION = "extension" - EXTENSION_OFF = "extension_off" - EXTENSION_OFF_OUTLINED = "extension_off_outlined" - EXTENSION_OFF_ROUNDED = "extension_off_rounded" - EXTENSION_OFF_SHARP = "extension_off_sharp" - EXTENSION_OUTLINED = "extension_outlined" - EXTENSION_ROUNDED = "extension_rounded" - EXTENSION_SHARP = "extension_sharp" - E_MOBILEDATA = "e_mobiledata" - E_MOBILEDATA_OUTLINED = "e_mobiledata_outlined" - E_MOBILEDATA_ROUNDED = "e_mobiledata_rounded" - E_MOBILEDATA_SHARP = "e_mobiledata_sharp" - FACE = "face" - FACEBOOK = "facebook" - FACEBOOK_OUTLINED = "facebook_outlined" - FACEBOOK_ROUNDED = "facebook_rounded" - FACEBOOK_SHARP = "facebook_sharp" - FACE_2 = "face_2" - FACE_2_OUTLINED = "face_2_outlined" - FACE_2_ROUNDED = "face_2_rounded" - FACE_2_SHARP = "face_2_sharp" - FACE_3 = "face_3" - FACE_3_OUTLINED = "face_3_outlined" - FACE_3_ROUNDED = "face_3_rounded" - FACE_3_SHARP = "face_3_sharp" - FACE_4 = "face_4" - FACE_4_OUTLINED = "face_4_outlined" - FACE_4_ROUNDED = "face_4_rounded" - FACE_4_SHARP = "face_4_sharp" - FACE_5 = "face_5" - FACE_5_OUTLINED = "face_5_outlined" - FACE_5_ROUNDED = "face_5_rounded" - FACE_5_SHARP = "face_5_sharp" - FACE_6 = "face_6" - FACE_6_OUTLINED = "face_6_outlined" - FACE_6_ROUNDED = "face_6_rounded" - FACE_6_SHARP = "face_6_sharp" - FACE_OUTLINED = "face_outlined" - FACE_RETOUCHING_NATURAL = "face_retouching_natural" - FACE_RETOUCHING_NATURAL_OUTLINED = "face_retouching_natural_outlined" - FACE_RETOUCHING_NATURAL_ROUNDED = "face_retouching_natural_rounded" - FACE_RETOUCHING_NATURAL_SHARP = "face_retouching_natural_sharp" - FACE_RETOUCHING_OFF = "face_retouching_off" - FACE_RETOUCHING_OFF_OUTLINED = "face_retouching_off_outlined" - FACE_RETOUCHING_OFF_ROUNDED = "face_retouching_off_rounded" - FACE_RETOUCHING_OFF_SHARP = "face_retouching_off_sharp" - FACE_ROUNDED = "face_rounded" - FACE_SHARP = "face_sharp" - FACE_UNLOCK_OUTLINED = "face_unlock_outlined" - FACE_UNLOCK_ROUNDED = "face_unlock_rounded" - FACE_UNLOCK_SHARP = "face_unlock_sharp" - FACTORY = "factory" - FACTORY_OUTLINED = "factory_outlined" - FACTORY_ROUNDED = "factory_rounded" - FACTORY_SHARP = "factory_sharp" - FACT_CHECK = "fact_check" - FACT_CHECK_OUTLINED = "fact_check_outlined" - FACT_CHECK_ROUNDED = "fact_check_rounded" - FACT_CHECK_SHARP = "fact_check_sharp" - FAMILY_RESTROOM = "family_restroom" - FAMILY_RESTROOM_OUTLINED = "family_restroom_outlined" - FAMILY_RESTROOM_ROUNDED = "family_restroom_rounded" - FAMILY_RESTROOM_SHARP = "family_restroom_sharp" - FASTFOOD = "fastfood" - FASTFOOD_OUTLINED = "fastfood_outlined" - FASTFOOD_ROUNDED = "fastfood_rounded" - FASTFOOD_SHARP = "fastfood_sharp" - FAST_FORWARD = "fast_forward" - FAST_FORWARD_OUTLINED = "fast_forward_outlined" - FAST_FORWARD_ROUNDED = "fast_forward_rounded" - FAST_FORWARD_SHARP = "fast_forward_sharp" - FAST_REWIND = "fast_rewind" - FAST_REWIND_OUTLINED = "fast_rewind_outlined" - FAST_REWIND_ROUNDED = "fast_rewind_rounded" - FAST_REWIND_SHARP = "fast_rewind_sharp" - FAVORITE = "favorite" - FAVORITE_BORDER = "favorite_border" - FAVORITE_BORDER_OUTLINED = "favorite_border_outlined" - FAVORITE_BORDER_ROUNDED = "favorite_border_rounded" - FAVORITE_BORDER_SHARP = "favorite_border_sharp" - FAVORITE_OUTLINE = "favorite_outline" - FAVORITE_OUTLINED = "favorite_outlined" - FAVORITE_OUTLINE_OUTLINED = "favorite_outline_outlined" - FAVORITE_OUTLINE_ROUNDED = "favorite_outline_rounded" - FAVORITE_OUTLINE_SHARP = "favorite_outline_sharp" - FAVORITE_ROUNDED = "favorite_rounded" - FAVORITE_SHARP = "favorite_sharp" - FAX = "fax" - FAX_OUTLINED = "fax_outlined" - FAX_ROUNDED = "fax_rounded" - FAX_SHARP = "fax_sharp" - FEATURED_PLAY_LIST = "featured_play_list" - FEATURED_PLAY_LIST_OUTLINED = "featured_play_list_outlined" - FEATURED_PLAY_LIST_ROUNDED = "featured_play_list_rounded" - FEATURED_PLAY_LIST_SHARP = "featured_play_list_sharp" - FEATURED_VIDEO = "featured_video" - FEATURED_VIDEO_OUTLINED = "featured_video_outlined" - FEATURED_VIDEO_ROUNDED = "featured_video_rounded" - FEATURED_VIDEO_SHARP = "featured_video_sharp" - FEED = "feed" - FEEDBACK = "feedback" - FEEDBACK_OUTLINED = "feedback_outlined" - FEEDBACK_ROUNDED = "feedback_rounded" - FEEDBACK_SHARP = "feedback_sharp" - FEED_OUTLINED = "feed_outlined" - FEED_ROUNDED = "feed_rounded" - FEED_SHARP = "feed_sharp" - FEMALE = "female" - FEMALE_OUTLINED = "female_outlined" - FEMALE_ROUNDED = "female_rounded" - FEMALE_SHARP = "female_sharp" - FENCE = "fence" - FENCE_OUTLINED = "fence_outlined" - FENCE_ROUNDED = "fence_rounded" - FENCE_SHARP = "fence_sharp" - FESTIVAL = "festival" - FESTIVAL_OUTLINED = "festival_outlined" - FESTIVAL_ROUNDED = "festival_rounded" - FESTIVAL_SHARP = "festival_sharp" - FIBER_DVR = "fiber_dvr" - FIBER_DVR_OUTLINED = "fiber_dvr_outlined" - FIBER_DVR_ROUNDED = "fiber_dvr_rounded" - FIBER_DVR_SHARP = "fiber_dvr_sharp" - FIBER_MANUAL_RECORD = "fiber_manual_record" - FIBER_MANUAL_RECORD_OUTLINED = "fiber_manual_record_outlined" - FIBER_MANUAL_RECORD_ROUNDED = "fiber_manual_record_rounded" - FIBER_MANUAL_RECORD_SHARP = "fiber_manual_record_sharp" - FIBER_NEW = "fiber_new" - FIBER_NEW_OUTLINED = "fiber_new_outlined" - FIBER_NEW_ROUNDED = "fiber_new_rounded" - FIBER_NEW_SHARP = "fiber_new_sharp" - FIBER_PIN = "fiber_pin" - FIBER_PIN_OUTLINED = "fiber_pin_outlined" - FIBER_PIN_ROUNDED = "fiber_pin_rounded" - FIBER_PIN_SHARP = "fiber_pin_sharp" - FIBER_SMART_RECORD = "fiber_smart_record" - FIBER_SMART_RECORD_OUTLINED = "fiber_smart_record_outlined" - FIBER_SMART_RECORD_ROUNDED = "fiber_smart_record_rounded" - FIBER_SMART_RECORD_SHARP = "fiber_smart_record_sharp" - FIFTEEN_MP = "fifteen_mp" - FIFTEEN_MP_OUTLINED = "fifteen_mp_outlined" - FIFTEEN_MP_ROUNDED = "fifteen_mp_rounded" - FIFTEEN_MP_SHARP = "fifteen_mp_sharp" - FILE_COPY = "file_copy" - FILE_COPY_OUTLINED = "file_copy_outlined" - FILE_COPY_ROUNDED = "file_copy_rounded" - FILE_COPY_SHARP = "file_copy_sharp" - FILE_DOWNLOAD = "file_download" - FILE_DOWNLOAD_DONE = "file_download_done" - FILE_DOWNLOAD_DONE_OUTLINED = "file_download_done_outlined" - FILE_DOWNLOAD_DONE_ROUNDED = "file_download_done_rounded" - FILE_DOWNLOAD_DONE_SHARP = "file_download_done_sharp" - FILE_DOWNLOAD_OFF = "file_download_off" - FILE_DOWNLOAD_OFF_OUTLINED = "file_download_off_outlined" - FILE_DOWNLOAD_OFF_ROUNDED = "file_download_off_rounded" - FILE_DOWNLOAD_OFF_SHARP = "file_download_off_sharp" - FILE_DOWNLOAD_OUTLINED = "file_download_outlined" - FILE_DOWNLOAD_ROUNDED = "file_download_rounded" - FILE_DOWNLOAD_SHARP = "file_download_sharp" - FILE_OPEN = "file_open" - FILE_OPEN_OUTLINED = "file_open_outlined" - FILE_OPEN_ROUNDED = "file_open_rounded" - FILE_OPEN_SHARP = "file_open_sharp" - FILE_PRESENT = "file_present" - FILE_PRESENT_OUTLINED = "file_present_outlined" - FILE_PRESENT_ROUNDED = "file_present_rounded" - FILE_PRESENT_SHARP = "file_present_sharp" - FILE_UPLOAD = "file_upload" - FILE_UPLOAD_OFF = "file_upload_off" - FILE_UPLOAD_OUTLINED = "file_upload_outlined" - FILE_UPLOAD_ROUNDED = "file_upload_rounded" - FILE_UPLOAD_SHARP = "file_upload_sharp" - FILTER = "filter" - FILTER_1 = "filter_1" - FILTER_1_OUTLINED = "filter_1_outlined" - FILTER_1_ROUNDED = "filter_1_rounded" - FILTER_1_SHARP = "filter_1_sharp" - FILTER_2 = "filter_2" - FILTER_2_OUTLINED = "filter_2_outlined" - FILTER_2_ROUNDED = "filter_2_rounded" - FILTER_2_SHARP = "filter_2_sharp" - FILTER_3 = "filter_3" - FILTER_3_OUTLINED = "filter_3_outlined" - FILTER_3_ROUNDED = "filter_3_rounded" - FILTER_3_SHARP = "filter_3_sharp" - FILTER_4 = "filter_4" - FILTER_4_OUTLINED = "filter_4_outlined" - FILTER_4_ROUNDED = "filter_4_rounded" - FILTER_4_SHARP = "filter_4_sharp" - FILTER_5 = "filter_5" - FILTER_5_OUTLINED = "filter_5_outlined" - FILTER_5_ROUNDED = "filter_5_rounded" - FILTER_5_SHARP = "filter_5_sharp" - FILTER_6 = "filter_6" - FILTER_6_OUTLINED = "filter_6_outlined" - FILTER_6_ROUNDED = "filter_6_rounded" - FILTER_6_SHARP = "filter_6_sharp" - FILTER_7 = "filter_7" - FILTER_7_OUTLINED = "filter_7_outlined" - FILTER_7_ROUNDED = "filter_7_rounded" - FILTER_7_SHARP = "filter_7_sharp" - FILTER_8 = "filter_8" - FILTER_8_OUTLINED = "filter_8_outlined" - FILTER_8_ROUNDED = "filter_8_rounded" - FILTER_8_SHARP = "filter_8_sharp" - FILTER_9 = "filter_9" - FILTER_9_OUTLINED = "filter_9_outlined" - FILTER_9_PLUS = "filter_9_plus" - FILTER_9_PLUS_OUTLINED = "filter_9_plus_outlined" - FILTER_9_PLUS_ROUNDED = "filter_9_plus_rounded" - FILTER_9_PLUS_SHARP = "filter_9_plus_sharp" - FILTER_9_ROUNDED = "filter_9_rounded" - FILTER_9_SHARP = "filter_9_sharp" - FILTER_ALT = "filter_alt" - FILTER_ALT_OFF = "filter_alt_off" - FILTER_ALT_OFF_OUTLINED = "filter_alt_off_outlined" - FILTER_ALT_OFF_ROUNDED = "filter_alt_off_rounded" - FILTER_ALT_OFF_SHARP = "filter_alt_off_sharp" - FILTER_ALT_OUTLINED = "filter_alt_outlined" - FILTER_ALT_ROUNDED = "filter_alt_rounded" - FILTER_ALT_SHARP = "filter_alt_sharp" - FILTER_B_AND_W = "filter_b_and_w" - FILTER_B_AND_W_OUTLINED = "filter_b_and_w_outlined" - FILTER_B_AND_W_ROUNDED = "filter_b_and_w_rounded" - FILTER_B_AND_W_SHARP = "filter_b_and_w_sharp" - FILTER_CENTER_FOCUS = "filter_center_focus" - FILTER_CENTER_FOCUS_OUTLINED = "filter_center_focus_outlined" - FILTER_CENTER_FOCUS_ROUNDED = "filter_center_focus_rounded" - FILTER_CENTER_FOCUS_SHARP = "filter_center_focus_sharp" - FILTER_DRAMA = "filter_drama" - FILTER_DRAMA_OUTLINED = "filter_drama_outlined" - FILTER_DRAMA_ROUNDED = "filter_drama_rounded" - FILTER_DRAMA_SHARP = "filter_drama_sharp" - FILTER_FRAMES = "filter_frames" - FILTER_FRAMES_OUTLINED = "filter_frames_outlined" - FILTER_FRAMES_ROUNDED = "filter_frames_rounded" - FILTER_FRAMES_SHARP = "filter_frames_sharp" - FILTER_HDR = "filter_hdr" - FILTER_HDR_OUTLINED = "filter_hdr_outlined" - FILTER_HDR_ROUNDED = "filter_hdr_rounded" - FILTER_HDR_SHARP = "filter_hdr_sharp" - FILTER_LIST = "filter_list" - FILTER_LIST_ALT = "filter_list_alt" - FILTER_LIST_OFF = "filter_list_off" - FILTER_LIST_OFF_OUTLINED = "filter_list_off_outlined" - FILTER_LIST_OFF_ROUNDED = "filter_list_off_rounded" - FILTER_LIST_OFF_SHARP = "filter_list_off_sharp" - FILTER_LIST_OUTLINED = "filter_list_outlined" - FILTER_LIST_ROUNDED = "filter_list_rounded" - FILTER_LIST_SHARP = "filter_list_sharp" - FILTER_NONE = "filter_none" - FILTER_NONE_OUTLINED = "filter_none_outlined" - FILTER_NONE_ROUNDED = "filter_none_rounded" - FILTER_NONE_SHARP = "filter_none_sharp" - FILTER_OUTLINED = "filter_outlined" - FILTER_ROUNDED = "filter_rounded" - FILTER_SHARP = "filter_sharp" - FILTER_TILT_SHIFT = "filter_tilt_shift" - FILTER_TILT_SHIFT_OUTLINED = "filter_tilt_shift_outlined" - FILTER_TILT_SHIFT_ROUNDED = "filter_tilt_shift_rounded" - FILTER_TILT_SHIFT_SHARP = "filter_tilt_shift_sharp" - FILTER_VINTAGE = "filter_vintage" - FILTER_VINTAGE_OUTLINED = "filter_vintage_outlined" - FILTER_VINTAGE_ROUNDED = "filter_vintage_rounded" - FILTER_VINTAGE_SHARP = "filter_vintage_sharp" - FIND_IN_PAGE = "find_in_page" - FIND_IN_PAGE_OUTLINED = "find_in_page_outlined" - FIND_IN_PAGE_ROUNDED = "find_in_page_rounded" - FIND_IN_PAGE_SHARP = "find_in_page_sharp" - FIND_REPLACE = "find_replace" - FIND_REPLACE_OUTLINED = "find_replace_outlined" - FIND_REPLACE_ROUNDED = "find_replace_rounded" - FIND_REPLACE_SHARP = "find_replace_sharp" - FINGERPRINT = "fingerprint" - FINGERPRINT_OUTLINED = "fingerprint_outlined" - FINGERPRINT_ROUNDED = "fingerprint_rounded" - FINGERPRINT_SHARP = "fingerprint_sharp" - FIREPLACE = "fireplace" - FIREPLACE_OUTLINED = "fireplace_outlined" - FIREPLACE_ROUNDED = "fireplace_rounded" - FIREPLACE_SHARP = "fireplace_sharp" - FIRE_EXTINGUISHER = "fire_extinguisher" - FIRE_EXTINGUISHER_OUTLINED = "fire_extinguisher_outlined" - FIRE_EXTINGUISHER_ROUNDED = "fire_extinguisher_rounded" - FIRE_EXTINGUISHER_SHARP = "fire_extinguisher_sharp" - FIRE_HYDRANT = "fire_hydrant" - FIRE_HYDRANT_ALT = "fire_hydrant_alt" - FIRE_HYDRANT_ALT_OUTLINED = "fire_hydrant_alt_outlined" - FIRE_HYDRANT_ALT_ROUNDED = "fire_hydrant_alt_rounded" - FIRE_HYDRANT_ALT_SHARP = "fire_hydrant_alt_sharp" - FIRE_TRUCK = "fire_truck" - FIRE_TRUCK_OUTLINED = "fire_truck_outlined" - FIRE_TRUCK_ROUNDED = "fire_truck_rounded" - FIRE_TRUCK_SHARP = "fire_truck_sharp" - FIRST_PAGE = "first_page" - FIRST_PAGE_OUTLINED = "first_page_outlined" - FIRST_PAGE_ROUNDED = "first_page_rounded" - FIRST_PAGE_SHARP = "first_page_sharp" - FITBIT = "fitbit" - FITBIT_OUTLINED = "fitbit_outlined" - FITBIT_ROUNDED = "fitbit_rounded" - FITBIT_SHARP = "fitbit_sharp" - FITNESS_CENTER = "fitness_center" - FITNESS_CENTER_OUTLINED = "fitness_center_outlined" - FITNESS_CENTER_ROUNDED = "fitness_center_rounded" - FITNESS_CENTER_SHARP = "fitness_center_sharp" - FIT_SCREEN = "fit_screen" - FIT_SCREEN_OUTLINED = "fit_screen_outlined" - FIT_SCREEN_ROUNDED = "fit_screen_rounded" - FIT_SCREEN_SHARP = "fit_screen_sharp" - FIVE_G = "five_g" - FIVE_G_OUTLINED = "five_g_outlined" - FIVE_G_ROUNDED = "five_g_rounded" - FIVE_G_SHARP = "five_g_sharp" - FIVE_K = "five_k" - FIVE_K_OUTLINED = "five_k_outlined" - FIVE_K_PLUS = "five_k_plus" - FIVE_K_PLUS_OUTLINED = "five_k_plus_outlined" - FIVE_K_PLUS_ROUNDED = "five_k_plus_rounded" - FIVE_K_PLUS_SHARP = "five_k_plus_sharp" - FIVE_K_ROUNDED = "five_k_rounded" - FIVE_K_SHARP = "five_k_sharp" - FIVE_MP = "five_mp" - FIVE_MP_OUTLINED = "five_mp_outlined" - FIVE_MP_ROUNDED = "five_mp_rounded" - FIVE_MP_SHARP = "five_mp_sharp" - FLAG = "flag" - FLAG_CIRCLE = "flag_circle" - FLAG_CIRCLE_OUTLINED = "flag_circle_outlined" - FLAG_CIRCLE_ROUNDED = "flag_circle_rounded" - FLAG_CIRCLE_SHARP = "flag_circle_sharp" - FLAG_OUTLINED = "flag_outlined" - FLAG_ROUNDED = "flag_rounded" - FLAG_SHARP = "flag_sharp" - FLAKY = "flaky" - FLAKY_OUTLINED = "flaky_outlined" - FLAKY_ROUNDED = "flaky_rounded" - FLAKY_SHARP = "flaky_sharp" - FLARE = "flare" - FLARE_OUTLINED = "flare_outlined" - FLARE_ROUNDED = "flare_rounded" - FLARE_SHARP = "flare_sharp" - FLASHLIGHT_OFF = "flashlight_off" - FLASHLIGHT_OFF_OUTLINED = "flashlight_off_outlined" - FLASHLIGHT_OFF_ROUNDED = "flashlight_off_rounded" - FLASHLIGHT_OFF_SHARP = "flashlight_off_sharp" - FLASHLIGHT_ON = "flashlight_on" - FLASHLIGHT_ON_OUTLINED = "flashlight_on_outlined" - FLASHLIGHT_ON_ROUNDED = "flashlight_on_rounded" - FLASHLIGHT_ON_SHARP = "flashlight_on_sharp" - FLASH_AUTO = "flash_auto" - FLASH_AUTO_OUTLINED = "flash_auto_outlined" - FLASH_AUTO_ROUNDED = "flash_auto_rounded" - FLASH_AUTO_SHARP = "flash_auto_sharp" - FLASH_OFF = "flash_off" - FLASH_OFF_OUTLINED = "flash_off_outlined" - FLASH_OFF_ROUNDED = "flash_off_rounded" - FLASH_OFF_SHARP = "flash_off_sharp" - FLASH_ON = "flash_on" - FLASH_ON_OUTLINED = "flash_on_outlined" - FLASH_ON_ROUNDED = "flash_on_rounded" - FLASH_ON_SHARP = "flash_on_sharp" - FLATWARE = "flatware" - FLATWARE_OUTLINED = "flatware_outlined" - FLATWARE_ROUNDED = "flatware_rounded" - FLATWARE_SHARP = "flatware_sharp" - FLIGHT = "flight" - FLIGHT_CLASS = "flight_class" - FLIGHT_CLASS_OUTLINED = "flight_class_outlined" - FLIGHT_CLASS_ROUNDED = "flight_class_rounded" - FLIGHT_CLASS_SHARP = "flight_class_sharp" - FLIGHT_LAND = "flight_land" - FLIGHT_LAND_OUTLINED = "flight_land_outlined" - FLIGHT_LAND_ROUNDED = "flight_land_rounded" - FLIGHT_LAND_SHARP = "flight_land_sharp" - FLIGHT_OUTLINED = "flight_outlined" - FLIGHT_ROUNDED = "flight_rounded" - FLIGHT_SHARP = "flight_sharp" - FLIGHT_TAKEOFF = "flight_takeoff" - FLIGHT_TAKEOFF_OUTLINED = "flight_takeoff_outlined" - FLIGHT_TAKEOFF_ROUNDED = "flight_takeoff_rounded" - FLIGHT_TAKEOFF_SHARP = "flight_takeoff_sharp" - FLIP = "flip" - FLIP_CAMERA_ANDROID = "flip_camera_android" - FLIP_CAMERA_ANDROID_OUTLINED = "flip_camera_android_outlined" - FLIP_CAMERA_ANDROID_ROUNDED = "flip_camera_android_rounded" - FLIP_CAMERA_ANDROID_SHARP = "flip_camera_android_sharp" - FLIP_CAMERA_IOS = "flip_camera_ios" - FLIP_CAMERA_IOS_OUTLINED = "flip_camera_ios_outlined" - FLIP_CAMERA_IOS_ROUNDED = "flip_camera_ios_rounded" - FLIP_CAMERA_IOS_SHARP = "flip_camera_ios_sharp" - FLIP_OUTLINED = "flip_outlined" - FLIP_ROUNDED = "flip_rounded" - FLIP_SHARP = "flip_sharp" - FLIP_TO_BACK = "flip_to_back" - FLIP_TO_BACK_OUTLINED = "flip_to_back_outlined" - FLIP_TO_BACK_ROUNDED = "flip_to_back_rounded" - FLIP_TO_BACK_SHARP = "flip_to_back_sharp" - FLIP_TO_FRONT = "flip_to_front" - FLIP_TO_FRONT_OUTLINED = "flip_to_front_outlined" - FLIP_TO_FRONT_ROUNDED = "flip_to_front_rounded" - FLIP_TO_FRONT_SHARP = "flip_to_front_sharp" - FLOOD = "flood" - FLOOD_OUTLINED = "flood_outlined" - FLOOD_ROUNDED = "flood_rounded" - FLOOD_SHARP = "flood_sharp" - FLOURESCENT = "flourescent" - FLOURESCENT_OUTLINED = "flourescent_outlined" - FLOURESCENT_ROUNDED = "flourescent_rounded" - FLOURESCENT_SHARP = "flourescent_sharp" - FLUORESCENT = "fluorescent" - FLUORESCENT_OUTLINED = "fluorescent_outlined" - FLUORESCENT_ROUNDED = "fluorescent_rounded" - FLUORESCENT_SHARP = "fluorescent_sharp" - FLUTTER_DASH = "flutter_dash" - FLUTTER_DASH_OUTLINED = "flutter_dash_outlined" - FLUTTER_DASH_ROUNDED = "flutter_dash_rounded" - FLUTTER_DASH_SHARP = "flutter_dash_sharp" - FMD_BAD = "fmd_bad" - FMD_BAD_OUTLINED = "fmd_bad_outlined" - FMD_BAD_ROUNDED = "fmd_bad_rounded" - FMD_BAD_SHARP = "fmd_bad_sharp" - FMD_GOOD = "fmd_good" - FMD_GOOD_OUTLINED = "fmd_good_outlined" - FMD_GOOD_ROUNDED = "fmd_good_rounded" - FMD_GOOD_SHARP = "fmd_good_sharp" - FOGGY = "foggy" - FOLDER = "folder" - FOLDER_COPY = "folder_copy" - FOLDER_COPY_OUTLINED = "folder_copy_outlined" - FOLDER_COPY_ROUNDED = "folder_copy_rounded" - FOLDER_COPY_SHARP = "folder_copy_sharp" - FOLDER_DELETE = "folder_delete" - FOLDER_DELETE_OUTLINED = "folder_delete_outlined" - FOLDER_DELETE_ROUNDED = "folder_delete_rounded" - FOLDER_DELETE_SHARP = "folder_delete_sharp" - FOLDER_OFF = "folder_off" - FOLDER_OFF_OUTLINED = "folder_off_outlined" - FOLDER_OFF_ROUNDED = "folder_off_rounded" - FOLDER_OFF_SHARP = "folder_off_sharp" - FOLDER_OPEN = "folder_open" - FOLDER_OPEN_OUTLINED = "folder_open_outlined" - FOLDER_OPEN_ROUNDED = "folder_open_rounded" - FOLDER_OPEN_SHARP = "folder_open_sharp" - FOLDER_OUTLINED = "folder_outlined" - FOLDER_ROUNDED = "folder_rounded" - FOLDER_SHARED = "folder_shared" - FOLDER_SHARED_OUTLINED = "folder_shared_outlined" - FOLDER_SHARED_ROUNDED = "folder_shared_rounded" - FOLDER_SHARED_SHARP = "folder_shared_sharp" - FOLDER_SHARP = "folder_sharp" - FOLDER_SPECIAL = "folder_special" - FOLDER_SPECIAL_OUTLINED = "folder_special_outlined" - FOLDER_SPECIAL_ROUNDED = "folder_special_rounded" - FOLDER_SPECIAL_SHARP = "folder_special_sharp" - FOLDER_ZIP = "folder_zip" - FOLDER_ZIP_OUTLINED = "folder_zip_outlined" - FOLDER_ZIP_ROUNDED = "folder_zip_rounded" - FOLDER_ZIP_SHARP = "folder_zip_sharp" - FOLLOW_THE_SIGNS = "follow_the_signs" - FOLLOW_THE_SIGNS_OUTLINED = "follow_the_signs_outlined" - FOLLOW_THE_SIGNS_ROUNDED = "follow_the_signs_rounded" - FOLLOW_THE_SIGNS_SHARP = "follow_the_signs_sharp" - FONT_DOWNLOAD = "font_download" - FONT_DOWNLOAD_OFF = "font_download_off" - FONT_DOWNLOAD_OFF_OUTLINED = "font_download_off_outlined" - FONT_DOWNLOAD_OFF_ROUNDED = "font_download_off_rounded" - FONT_DOWNLOAD_OFF_SHARP = "font_download_off_sharp" - FONT_DOWNLOAD_OUTLINED = "font_download_outlined" - FONT_DOWNLOAD_ROUNDED = "font_download_rounded" - FONT_DOWNLOAD_SHARP = "font_download_sharp" - FOOD_BANK = "food_bank" - FOOD_BANK_OUTLINED = "food_bank_outlined" - FOOD_BANK_ROUNDED = "food_bank_rounded" - FOOD_BANK_SHARP = "food_bank_sharp" - FOREST = "forest" - FOREST_OUTLINED = "forest_outlined" - FOREST_ROUNDED = "forest_rounded" - FOREST_SHARP = "forest_sharp" - FORKLIFT = "forklift" - FORK_LEFT = "fork_left" - FORK_LEFT_OUTLINED = "fork_left_outlined" - FORK_LEFT_ROUNDED = "fork_left_rounded" - FORK_LEFT_SHARP = "fork_left_sharp" - FORK_RIGHT = "fork_right" - FORK_RIGHT_OUTLINED = "fork_right_outlined" - FORK_RIGHT_ROUNDED = "fork_right_rounded" - FORK_RIGHT_SHARP = "fork_right_sharp" - FORMAT_ALIGN_CENTER = "format_align_center" - FORMAT_ALIGN_CENTER_OUTLINED = "format_align_center_outlined" - FORMAT_ALIGN_CENTER_ROUNDED = "format_align_center_rounded" - FORMAT_ALIGN_CENTER_SHARP = "format_align_center_sharp" - FORMAT_ALIGN_JUSTIFY = "format_align_justify" - FORMAT_ALIGN_JUSTIFY_OUTLINED = "format_align_justify_outlined" - FORMAT_ALIGN_JUSTIFY_ROUNDED = "format_align_justify_rounded" - FORMAT_ALIGN_JUSTIFY_SHARP = "format_align_justify_sharp" - FORMAT_ALIGN_LEFT = "format_align_left" - FORMAT_ALIGN_LEFT_OUTLINED = "format_align_left_outlined" - FORMAT_ALIGN_LEFT_ROUNDED = "format_align_left_rounded" - FORMAT_ALIGN_LEFT_SHARP = "format_align_left_sharp" - FORMAT_ALIGN_RIGHT = "format_align_right" - FORMAT_ALIGN_RIGHT_OUTLINED = "format_align_right_outlined" - FORMAT_ALIGN_RIGHT_ROUNDED = "format_align_right_rounded" - FORMAT_ALIGN_RIGHT_SHARP = "format_align_right_sharp" - FORMAT_BOLD = "format_bold" - FORMAT_BOLD_OUTLINED = "format_bold_outlined" - FORMAT_BOLD_ROUNDED = "format_bold_rounded" - FORMAT_BOLD_SHARP = "format_bold_sharp" - FORMAT_CLEAR = "format_clear" - FORMAT_CLEAR_OUTLINED = "format_clear_outlined" - FORMAT_CLEAR_ROUNDED = "format_clear_rounded" - FORMAT_CLEAR_SHARP = "format_clear_sharp" - FORMAT_COLOR_FILL = "format_color_fill" - FORMAT_COLOR_FILL_OUTLINED = "format_color_fill_outlined" - FORMAT_COLOR_FILL_ROUNDED = "format_color_fill_rounded" - FORMAT_COLOR_FILL_SHARP = "format_color_fill_sharp" - FORMAT_COLOR_RESET = "format_color_reset" - FORMAT_COLOR_RESET_OUTLINED = "format_color_reset_outlined" - FORMAT_COLOR_RESET_ROUNDED = "format_color_reset_rounded" - FORMAT_COLOR_RESET_SHARP = "format_color_reset_sharp" - FORMAT_COLOR_TEXT = "format_color_text" - FORMAT_COLOR_TEXT_OUTLINED = "format_color_text_outlined" - FORMAT_COLOR_TEXT_ROUNDED = "format_color_text_rounded" - FORMAT_COLOR_TEXT_SHARP = "format_color_text_sharp" - FORMAT_INDENT_DECREASE = "format_indent_decrease" - FORMAT_INDENT_DECREASE_OUTLINED = "format_indent_decrease_outlined" - FORMAT_INDENT_DECREASE_ROUNDED = "format_indent_decrease_rounded" - FORMAT_INDENT_DECREASE_SHARP = "format_indent_decrease_sharp" - FORMAT_INDENT_INCREASE = "format_indent_increase" - FORMAT_INDENT_INCREASE_OUTLINED = "format_indent_increase_outlined" - FORMAT_INDENT_INCREASE_ROUNDED = "format_indent_increase_rounded" - FORMAT_INDENT_INCREASE_SHARP = "format_indent_increase_sharp" - FORMAT_ITALIC = "format_italic" - FORMAT_ITALIC_OUTLINED = "format_italic_outlined" - FORMAT_ITALIC_ROUNDED = "format_italic_rounded" - FORMAT_ITALIC_SHARP = "format_italic_sharp" - FORMAT_LINE_SPACING = "format_line_spacing" - FORMAT_LINE_SPACING_OUTLINED = "format_line_spacing_outlined" - FORMAT_LINE_SPACING_ROUNDED = "format_line_spacing_rounded" - FORMAT_LINE_SPACING_SHARP = "format_line_spacing_sharp" - FORMAT_LIST_BULLETED = "format_list_bulleted" - FORMAT_LIST_BULLETED_ADD = "format_list_bulleted_add" - FORMAT_LIST_BULLETED_OUTLINED = "format_list_bulleted_outlined" - FORMAT_LIST_BULLETED_ROUNDED = "format_list_bulleted_rounded" - FORMAT_LIST_BULLETED_SHARP = "format_list_bulleted_sharp" - FORMAT_LIST_NUMBERED = "format_list_numbered" - FORMAT_LIST_NUMBERED_OUTLINED = "format_list_numbered_outlined" - FORMAT_LIST_NUMBERED_ROUNDED = "format_list_numbered_rounded" - FORMAT_LIST_NUMBERED_RTL = "format_list_numbered_rtl" - FORMAT_LIST_NUMBERED_RTL_OUTLINED = "format_list_numbered_rtl_outlined" - FORMAT_LIST_NUMBERED_RTL_ROUNDED = "format_list_numbered_rtl_rounded" - FORMAT_LIST_NUMBERED_RTL_SHARP = "format_list_numbered_rtl_sharp" - FORMAT_LIST_NUMBERED_SHARP = "format_list_numbered_sharp" - FORMAT_OVERLINE = "format_overline" - FORMAT_OVERLINE_OUTLINED = "format_overline_outlined" - FORMAT_OVERLINE_ROUNDED = "format_overline_rounded" - FORMAT_OVERLINE_SHARP = "format_overline_sharp" - FORMAT_PAINT = "format_paint" - FORMAT_PAINT_OUTLINED = "format_paint_outlined" - FORMAT_PAINT_ROUNDED = "format_paint_rounded" - FORMAT_PAINT_SHARP = "format_paint_sharp" - FORMAT_QUOTE = "format_quote" - FORMAT_QUOTE_OUTLINED = "format_quote_outlined" - FORMAT_QUOTE_ROUNDED = "format_quote_rounded" - FORMAT_QUOTE_SHARP = "format_quote_sharp" - FORMAT_SHAPES = "format_shapes" - FORMAT_SHAPES_OUTLINED = "format_shapes_outlined" - FORMAT_SHAPES_ROUNDED = "format_shapes_rounded" - FORMAT_SHAPES_SHARP = "format_shapes_sharp" - FORMAT_SIZE = "format_size" - FORMAT_SIZE_OUTLINED = "format_size_outlined" - FORMAT_SIZE_ROUNDED = "format_size_rounded" - FORMAT_SIZE_SHARP = "format_size_sharp" - FORMAT_STRIKETHROUGH = "format_strikethrough" - FORMAT_STRIKETHROUGH_OUTLINED = "format_strikethrough_outlined" - FORMAT_STRIKETHROUGH_ROUNDED = "format_strikethrough_rounded" - FORMAT_STRIKETHROUGH_SHARP = "format_strikethrough_sharp" - FORMAT_TEXTDIRECTION_L_TO_R = "format_textdirection_l_to_r" - FORMAT_TEXTDIRECTION_L_TO_R_OUTLINED = "format_textdirection_l_to_r_outlined" - FORMAT_TEXTDIRECTION_L_TO_R_ROUNDED = "format_textdirection_l_to_r_rounded" - FORMAT_TEXTDIRECTION_L_TO_R_SHARP = "format_textdirection_l_to_r_sharp" - FORMAT_TEXTDIRECTION_R_TO_L = "format_textdirection_r_to_l" - FORMAT_TEXTDIRECTION_R_TO_L_OUTLINED = "format_textdirection_r_to_l_outlined" - FORMAT_TEXTDIRECTION_R_TO_L_ROUNDED = "format_textdirection_r_to_l_rounded" - FORMAT_TEXTDIRECTION_R_TO_L_SHARP = "format_textdirection_r_to_l_sharp" - FORMAT_UNDERLINE = "format_underline" - FORMAT_UNDERLINED = "format_underlined" - FORMAT_UNDERLINED_OUTLINED = "format_underlined_outlined" - FORMAT_UNDERLINED_ROUNDED = "format_underlined_rounded" - FORMAT_UNDERLINED_SHARP = "format_underlined_sharp" - FORMAT_UNDERLINE_OUTLINED = "format_underline_outlined" - FORMAT_UNDERLINE_ROUNDED = "format_underline_rounded" - FORMAT_UNDERLINE_SHARP = "format_underline_sharp" - FORT = "fort" - FORT_OUTLINED = "fort_outlined" - FORT_ROUNDED = "fort_rounded" - FORT_SHARP = "fort_sharp" - FORUM = "forum" - FORUM_OUTLINED = "forum_outlined" - FORUM_ROUNDED = "forum_rounded" - FORUM_SHARP = "forum_sharp" - FORWARD = "forward" - FORWARD_10 = "forward_10" - FORWARD_10_OUTLINED = "forward_10_outlined" - FORWARD_10_ROUNDED = "forward_10_rounded" - FORWARD_10_SHARP = "forward_10_sharp" - FORWARD_30 = "forward_30" - FORWARD_30_OUTLINED = "forward_30_outlined" - FORWARD_30_ROUNDED = "forward_30_rounded" - FORWARD_30_SHARP = "forward_30_sharp" - FORWARD_5 = "forward_5" - FORWARD_5_OUTLINED = "forward_5_outlined" - FORWARD_5_ROUNDED = "forward_5_rounded" - FORWARD_5_SHARP = "forward_5_sharp" - FORWARD_OUTLINED = "forward_outlined" - FORWARD_ROUNDED = "forward_rounded" - FORWARD_SHARP = "forward_sharp" - FORWARD_TO_INBOX = "forward_to_inbox" - FORWARD_TO_INBOX_OUTLINED = "forward_to_inbox_outlined" - FORWARD_TO_INBOX_ROUNDED = "forward_to_inbox_rounded" - FORWARD_TO_INBOX_SHARP = "forward_to_inbox_sharp" - FOUNDATION = "foundation" - FOUNDATION_OUTLINED = "foundation_outlined" - FOUNDATION_ROUNDED = "foundation_rounded" - FOUNDATION_SHARP = "foundation_sharp" - FOURTEEN_MP = "fourteen_mp" - FOURTEEN_MP_OUTLINED = "fourteen_mp_outlined" - FOURTEEN_MP_ROUNDED = "fourteen_mp_rounded" - FOURTEEN_MP_SHARP = "fourteen_mp_sharp" - FOUR_G_MOBILEDATA = "four_g_mobiledata" - FOUR_G_MOBILEDATA_OUTLINED = "four_g_mobiledata_outlined" - FOUR_G_MOBILEDATA_ROUNDED = "four_g_mobiledata_rounded" - FOUR_G_MOBILEDATA_SHARP = "four_g_mobiledata_sharp" - FOUR_G_PLUS_MOBILEDATA = "four_g_plus_mobiledata" - FOUR_G_PLUS_MOBILEDATA_OUTLINED = "four_g_plus_mobiledata_outlined" - FOUR_G_PLUS_MOBILEDATA_ROUNDED = "four_g_plus_mobiledata_rounded" - FOUR_G_PLUS_MOBILEDATA_SHARP = "four_g_plus_mobiledata_sharp" - FOUR_K = "four_k" - FOUR_K_OUTLINED = "four_k_outlined" - FOUR_K_PLUS = "four_k_plus" - FOUR_K_PLUS_OUTLINED = "four_k_plus_outlined" - FOUR_K_PLUS_ROUNDED = "four_k_plus_rounded" - FOUR_K_PLUS_SHARP = "four_k_plus_sharp" - FOUR_K_ROUNDED = "four_k_rounded" - FOUR_K_SHARP = "four_k_sharp" - FOUR_MP = "four_mp" - FOUR_MP_OUTLINED = "four_mp_outlined" - FOUR_MP_ROUNDED = "four_mp_rounded" - FOUR_MP_SHARP = "four_mp_sharp" - FREE_BREAKFAST = "free_breakfast" - FREE_BREAKFAST_OUTLINED = "free_breakfast_outlined" - FREE_BREAKFAST_ROUNDED = "free_breakfast_rounded" - FREE_BREAKFAST_SHARP = "free_breakfast_sharp" - FREE_CANCELLATION = "free_cancellation" - FREE_CANCELLATION_OUTLINED = "free_cancellation_outlined" - FREE_CANCELLATION_ROUNDED = "free_cancellation_rounded" - FREE_CANCELLATION_SHARP = "free_cancellation_sharp" - FRONT_HAND = "front_hand" - FRONT_HAND_OUTLINED = "front_hand_outlined" - FRONT_HAND_ROUNDED = "front_hand_rounded" - FRONT_HAND_SHARP = "front_hand_sharp" - FRONT_LOADER = "front_loader" - FULLSCREEN = "fullscreen" - FULLSCREEN_EXIT = "fullscreen_exit" - FULLSCREEN_EXIT_OUTLINED = "fullscreen_exit_outlined" - FULLSCREEN_EXIT_ROUNDED = "fullscreen_exit_rounded" - FULLSCREEN_EXIT_SHARP = "fullscreen_exit_sharp" - FULLSCREEN_OUTLINED = "fullscreen_outlined" - FULLSCREEN_ROUNDED = "fullscreen_rounded" - FULLSCREEN_SHARP = "fullscreen_sharp" - FUNCTIONS = "functions" - FUNCTIONS_OUTLINED = "functions_outlined" - FUNCTIONS_ROUNDED = "functions_rounded" - FUNCTIONS_SHARP = "functions_sharp" - GAMEPAD = "gamepad" - GAMEPAD_OUTLINED = "gamepad_outlined" - GAMEPAD_ROUNDED = "gamepad_rounded" - GAMEPAD_SHARP = "gamepad_sharp" - GAMES = "games" - GAMES_OUTLINED = "games_outlined" - GAMES_ROUNDED = "games_rounded" - GAMES_SHARP = "games_sharp" - GARAGE = "garage" - GARAGE_OUTLINED = "garage_outlined" - GARAGE_ROUNDED = "garage_rounded" - GARAGE_SHARP = "garage_sharp" - GAS_METER = "gas_meter" - GAS_METER_OUTLINED = "gas_meter_outlined" - GAS_METER_ROUNDED = "gas_meter_rounded" - GAS_METER_SHARP = "gas_meter_sharp" - GAVEL = "gavel" - GAVEL_OUTLINED = "gavel_outlined" - GAVEL_ROUNDED = "gavel_rounded" - GAVEL_SHARP = "gavel_sharp" - GENERATING_TOKENS = "generating_tokens" - GENERATING_TOKENS_OUTLINED = "generating_tokens_outlined" - GENERATING_TOKENS_ROUNDED = "generating_tokens_rounded" - GENERATING_TOKENS_SHARP = "generating_tokens_sharp" - GESTURE = "gesture" - GESTURE_OUTLINED = "gesture_outlined" - GESTURE_ROUNDED = "gesture_rounded" - GESTURE_SHARP = "gesture_sharp" - GET_APP = "get_app" - GET_APP_OUTLINED = "get_app_outlined" - GET_APP_ROUNDED = "get_app_rounded" - GET_APP_SHARP = "get_app_sharp" - GIF = "gif" - GIF_BOX = "gif_box" - GIF_BOX_OUTLINED = "gif_box_outlined" - GIF_BOX_ROUNDED = "gif_box_rounded" - GIF_BOX_SHARP = "gif_box_sharp" - GIF_OUTLINED = "gif_outlined" - GIF_ROUNDED = "gif_rounded" - GIF_SHARP = "gif_sharp" - GIRL = "girl" - GIRL_OUTLINED = "girl_outlined" - GIRL_ROUNDED = "girl_rounded" - GIRL_SHARP = "girl_sharp" - GITE = "gite" - GITE_OUTLINED = "gite_outlined" - GITE_ROUNDED = "gite_rounded" - GITE_SHARP = "gite_sharp" - GOLF_COURSE = "golf_course" - GOLF_COURSE_OUTLINED = "golf_course_outlined" - GOLF_COURSE_ROUNDED = "golf_course_rounded" - GOLF_COURSE_SHARP = "golf_course_sharp" - GPP_BAD = "gpp_bad" - GPP_BAD_OUTLINED = "gpp_bad_outlined" - GPP_BAD_ROUNDED = "gpp_bad_rounded" - GPP_BAD_SHARP = "gpp_bad_sharp" - GPP_GOOD = "gpp_good" - GPP_GOOD_OUTLINED = "gpp_good_outlined" - GPP_GOOD_ROUNDED = "gpp_good_rounded" - GPP_GOOD_SHARP = "gpp_good_sharp" - GPP_MAYBE = "gpp_maybe" - GPP_MAYBE_OUTLINED = "gpp_maybe_outlined" - GPP_MAYBE_ROUNDED = "gpp_maybe_rounded" - GPP_MAYBE_SHARP = "gpp_maybe_sharp" - GPS_FIXED = "gps_fixed" - GPS_FIXED_OUTLINED = "gps_fixed_outlined" - GPS_FIXED_ROUNDED = "gps_fixed_rounded" - GPS_FIXED_SHARP = "gps_fixed_sharp" - GPS_NOT_FIXED = "gps_not_fixed" - GPS_NOT_FIXED_OUTLINED = "gps_not_fixed_outlined" - GPS_NOT_FIXED_ROUNDED = "gps_not_fixed_rounded" - GPS_NOT_FIXED_SHARP = "gps_not_fixed_sharp" - GPS_OFF = "gps_off" - GPS_OFF_OUTLINED = "gps_off_outlined" - GPS_OFF_ROUNDED = "gps_off_rounded" - GPS_OFF_SHARP = "gps_off_sharp" - GRADE = "grade" - GRADE_OUTLINED = "grade_outlined" - GRADE_ROUNDED = "grade_rounded" - GRADE_SHARP = "grade_sharp" - GRADIENT = "gradient" - GRADIENT_OUTLINED = "gradient_outlined" - GRADIENT_ROUNDED = "gradient_rounded" - GRADIENT_SHARP = "gradient_sharp" - GRADING = "grading" - GRADING_OUTLINED = "grading_outlined" - GRADING_ROUNDED = "grading_rounded" - GRADING_SHARP = "grading_sharp" - GRAIN = "grain" - GRAIN_OUTLINED = "grain_outlined" - GRAIN_ROUNDED = "grain_rounded" - GRAIN_SHARP = "grain_sharp" - GRAPHIC_EQ = "graphic_eq" - GRAPHIC_EQ_OUTLINED = "graphic_eq_outlined" - GRAPHIC_EQ_ROUNDED = "graphic_eq_rounded" - GRAPHIC_EQ_SHARP = "graphic_eq_sharp" - GRASS = "grass" - GRASS_OUTLINED = "grass_outlined" - GRASS_ROUNDED = "grass_rounded" - GRASS_SHARP = "grass_sharp" - GRID_3X3 = "grid_3x3" - GRID_3X3_OUTLINED = "grid_3x3_outlined" - GRID_3X3_ROUNDED = "grid_3x3_rounded" - GRID_3X3_SHARP = "grid_3x3_sharp" - GRID_4X4 = "grid_4x4" - GRID_4X4_OUTLINED = "grid_4x4_outlined" - GRID_4X4_ROUNDED = "grid_4x4_rounded" - GRID_4X4_SHARP = "grid_4x4_sharp" - GRID_GOLDENRATIO = "grid_goldenratio" - GRID_GOLDENRATIO_OUTLINED = "grid_goldenratio_outlined" - GRID_GOLDENRATIO_ROUNDED = "grid_goldenratio_rounded" - GRID_GOLDENRATIO_SHARP = "grid_goldenratio_sharp" - GRID_OFF = "grid_off" - GRID_OFF_OUTLINED = "grid_off_outlined" - GRID_OFF_ROUNDED = "grid_off_rounded" - GRID_OFF_SHARP = "grid_off_sharp" - GRID_ON = "grid_on" - GRID_ON_OUTLINED = "grid_on_outlined" - GRID_ON_ROUNDED = "grid_on_rounded" - GRID_ON_SHARP = "grid_on_sharp" - GRID_VIEW = "grid_view" - GRID_VIEW_OUTLINED = "grid_view_outlined" - GRID_VIEW_ROUNDED = "grid_view_rounded" - GRID_VIEW_SHARP = "grid_view_sharp" - GROUP = "group" - GROUPS = "groups" - GROUPS_2 = "groups_2" - GROUPS_2_OUTLINED = "groups_2_outlined" - GROUPS_2_ROUNDED = "groups_2_rounded" - GROUPS_2_SHARP = "groups_2_sharp" - GROUPS_3 = "groups_3" - GROUPS_3_OUTLINED = "groups_3_outlined" - GROUPS_3_ROUNDED = "groups_3_rounded" - GROUPS_3_SHARP = "groups_3_sharp" - GROUPS_OUTLINED = "groups_outlined" - GROUPS_ROUNDED = "groups_rounded" - GROUPS_SHARP = "groups_sharp" - GROUP_ADD = "group_add" - GROUP_ADD_OUTLINED = "group_add_outlined" - GROUP_ADD_ROUNDED = "group_add_rounded" - GROUP_ADD_SHARP = "group_add_sharp" - GROUP_OFF = "group_off" - GROUP_OFF_OUTLINED = "group_off_outlined" - GROUP_OFF_ROUNDED = "group_off_rounded" - GROUP_OFF_SHARP = "group_off_sharp" - GROUP_OUTLINED = "group_outlined" - GROUP_REMOVE = "group_remove" - GROUP_REMOVE_OUTLINED = "group_remove_outlined" - GROUP_REMOVE_ROUNDED = "group_remove_rounded" - GROUP_REMOVE_SHARP = "group_remove_sharp" - GROUP_ROUNDED = "group_rounded" - GROUP_SHARP = "group_sharp" - GROUP_WORK = "group_work" - GROUP_WORK_OUTLINED = "group_work_outlined" - GROUP_WORK_ROUNDED = "group_work_rounded" - GROUP_WORK_SHARP = "group_work_sharp" - G_MOBILEDATA = "g_mobiledata" - G_MOBILEDATA_OUTLINED = "g_mobiledata_outlined" - G_MOBILEDATA_ROUNDED = "g_mobiledata_rounded" - G_MOBILEDATA_SHARP = "g_mobiledata_sharp" - G_TRANSLATE = "g_translate" - G_TRANSLATE_OUTLINED = "g_translate_outlined" - G_TRANSLATE_ROUNDED = "g_translate_rounded" - G_TRANSLATE_SHARP = "g_translate_sharp" - HAIL = "hail" - HAIL_OUTLINED = "hail_outlined" - HAIL_ROUNDED = "hail_rounded" - HAIL_SHARP = "hail_sharp" - HANDSHAKE = "handshake" - HANDSHAKE_OUTLINED = "handshake_outlined" - HANDSHAKE_ROUNDED = "handshake_rounded" - HANDSHAKE_SHARP = "handshake_sharp" - HANDYMAN = "handyman" - HANDYMAN_OUTLINED = "handyman_outlined" - HANDYMAN_ROUNDED = "handyman_rounded" - HANDYMAN_SHARP = "handyman_sharp" - HARDWARE = "hardware" - HARDWARE_OUTLINED = "hardware_outlined" - HARDWARE_ROUNDED = "hardware_rounded" - HARDWARE_SHARP = "hardware_sharp" - HD = "hd" - HDR_AUTO = "hdr_auto" - HDR_AUTO_OUTLINED = "hdr_auto_outlined" - HDR_AUTO_ROUNDED = "hdr_auto_rounded" - HDR_AUTO_SELECT = "hdr_auto_select" - HDR_AUTO_SELECT_OUTLINED = "hdr_auto_select_outlined" - HDR_AUTO_SELECT_ROUNDED = "hdr_auto_select_rounded" - HDR_AUTO_SELECT_SHARP = "hdr_auto_select_sharp" - HDR_AUTO_SHARP = "hdr_auto_sharp" - HDR_ENHANCED_SELECT = "hdr_enhanced_select" - HDR_ENHANCED_SELECT_OUTLINED = "hdr_enhanced_select_outlined" - HDR_ENHANCED_SELECT_ROUNDED = "hdr_enhanced_select_rounded" - HDR_ENHANCED_SELECT_SHARP = "hdr_enhanced_select_sharp" - HDR_OFF = "hdr_off" - HDR_OFF_OUTLINED = "hdr_off_outlined" - HDR_OFF_ROUNDED = "hdr_off_rounded" - HDR_OFF_SELECT = "hdr_off_select" - HDR_OFF_SELECT_OUTLINED = "hdr_off_select_outlined" - HDR_OFF_SELECT_ROUNDED = "hdr_off_select_rounded" - HDR_OFF_SELECT_SHARP = "hdr_off_select_sharp" - HDR_OFF_SHARP = "hdr_off_sharp" - HDR_ON = "hdr_on" - HDR_ON_OUTLINED = "hdr_on_outlined" - HDR_ON_ROUNDED = "hdr_on_rounded" - HDR_ON_SELECT = "hdr_on_select" - HDR_ON_SELECT_OUTLINED = "hdr_on_select_outlined" - HDR_ON_SELECT_ROUNDED = "hdr_on_select_rounded" - HDR_ON_SELECT_SHARP = "hdr_on_select_sharp" - HDR_ON_SHARP = "hdr_on_sharp" - HDR_PLUS = "hdr_plus" - HDR_PLUS_OUTLINED = "hdr_plus_outlined" - HDR_PLUS_ROUNDED = "hdr_plus_rounded" - HDR_PLUS_SHARP = "hdr_plus_sharp" - HDR_STRONG = "hdr_strong" - HDR_STRONG_OUTLINED = "hdr_strong_outlined" - HDR_STRONG_ROUNDED = "hdr_strong_rounded" - HDR_STRONG_SHARP = "hdr_strong_sharp" - HDR_WEAK = "hdr_weak" - HDR_WEAK_OUTLINED = "hdr_weak_outlined" - HDR_WEAK_ROUNDED = "hdr_weak_rounded" - HDR_WEAK_SHARP = "hdr_weak_sharp" - HD_OUTLINED = "hd_outlined" - HD_ROUNDED = "hd_rounded" - HD_SHARP = "hd_sharp" - HEADPHONES = "headphones" - HEADPHONES_BATTERY = "headphones_battery" - HEADPHONES_BATTERY_OUTLINED = "headphones_battery_outlined" - HEADPHONES_BATTERY_ROUNDED = "headphones_battery_rounded" - HEADPHONES_BATTERY_SHARP = "headphones_battery_sharp" - HEADPHONES_OUTLINED = "headphones_outlined" - HEADPHONES_ROUNDED = "headphones_rounded" - HEADPHONES_SHARP = "headphones_sharp" - HEADSET = "headset" - HEADSET_MIC = "headset_mic" - HEADSET_MIC_OUTLINED = "headset_mic_outlined" - HEADSET_MIC_ROUNDED = "headset_mic_rounded" - HEADSET_MIC_SHARP = "headset_mic_sharp" - HEADSET_OFF = "headset_off" - HEADSET_OFF_OUTLINED = "headset_off_outlined" - HEADSET_OFF_ROUNDED = "headset_off_rounded" - HEADSET_OFF_SHARP = "headset_off_sharp" - HEADSET_OUTLINED = "headset_outlined" - HEADSET_ROUNDED = "headset_rounded" - HEADSET_SHARP = "headset_sharp" - HEALING = "healing" - HEALING_OUTLINED = "healing_outlined" - HEALING_ROUNDED = "healing_rounded" - HEALING_SHARP = "healing_sharp" - HEALTH_AND_SAFETY = "health_and_safety" - HEALTH_AND_SAFETY_OUTLINED = "health_and_safety_outlined" - HEALTH_AND_SAFETY_ROUNDED = "health_and_safety_rounded" - HEALTH_AND_SAFETY_SHARP = "health_and_safety_sharp" - HEARING = "hearing" - HEARING_DISABLED = "hearing_disabled" - HEARING_DISABLED_OUTLINED = "hearing_disabled_outlined" - HEARING_DISABLED_ROUNDED = "hearing_disabled_rounded" - HEARING_DISABLED_SHARP = "hearing_disabled_sharp" - HEARING_OUTLINED = "hearing_outlined" - HEARING_ROUNDED = "hearing_rounded" - HEARING_SHARP = "hearing_sharp" - HEART_BROKEN = "heart_broken" - HEART_BROKEN_OUTLINED = "heart_broken_outlined" - HEART_BROKEN_ROUNDED = "heart_broken_rounded" - HEART_BROKEN_SHARP = "heart_broken_sharp" - HEAT_PUMP = "heat_pump" - HEAT_PUMP_OUTLINED = "heat_pump_outlined" - HEAT_PUMP_ROUNDED = "heat_pump_rounded" - HEAT_PUMP_SHARP = "heat_pump_sharp" - HEIGHT = "height" - HEIGHT_OUTLINED = "height_outlined" - HEIGHT_ROUNDED = "height_rounded" - HEIGHT_SHARP = "height_sharp" - HELP = "help" - HELP_CENTER = "help_center" - HELP_CENTER_OUTLINED = "help_center_outlined" - HELP_CENTER_ROUNDED = "help_center_rounded" - HELP_CENTER_SHARP = "help_center_sharp" - HELP_OUTLINE = "help_outline" - HELP_OUTLINED = "help_outlined" - HELP_OUTLINE_OUTLINED = "help_outline_outlined" - HELP_OUTLINE_ROUNDED = "help_outline_rounded" - HELP_OUTLINE_SHARP = "help_outline_sharp" - HELP_ROUNDED = "help_rounded" - HELP_SHARP = "help_sharp" - HEVC = "hevc" - HEVC_OUTLINED = "hevc_outlined" - HEVC_ROUNDED = "hevc_rounded" - HEVC_SHARP = "hevc_sharp" - HEXAGON = "hexagon" - HEXAGON_OUTLINED = "hexagon_outlined" - HEXAGON_ROUNDED = "hexagon_rounded" - HEXAGON_SHARP = "hexagon_sharp" - HIDE_IMAGE = "hide_image" - HIDE_IMAGE_OUTLINED = "hide_image_outlined" - HIDE_IMAGE_ROUNDED = "hide_image_rounded" - HIDE_IMAGE_SHARP = "hide_image_sharp" - HIDE_SOURCE = "hide_source" - HIDE_SOURCE_OUTLINED = "hide_source_outlined" - HIDE_SOURCE_ROUNDED = "hide_source_rounded" - HIDE_SOURCE_SHARP = "hide_source_sharp" - HIGHLIGHT = "highlight" - HIGHLIGHT_ALT = "highlight_alt" - HIGHLIGHT_ALT_OUTLINED = "highlight_alt_outlined" - HIGHLIGHT_ALT_ROUNDED = "highlight_alt_rounded" - HIGHLIGHT_ALT_SHARP = "highlight_alt_sharp" - HIGHLIGHT_OFF = "highlight_off" - HIGHLIGHT_OFF_OUTLINED = "highlight_off_outlined" - HIGHLIGHT_OFF_ROUNDED = "highlight_off_rounded" - HIGHLIGHT_OFF_SHARP = "highlight_off_sharp" - HIGHLIGHT_OUTLINED = "highlight_outlined" - HIGHLIGHT_REMOVE = "highlight_remove" - HIGHLIGHT_REMOVE_OUTLINED = "highlight_remove_outlined" - HIGHLIGHT_REMOVE_ROUNDED = "highlight_remove_rounded" - HIGHLIGHT_REMOVE_SHARP = "highlight_remove_sharp" - HIGHLIGHT_ROUNDED = "highlight_rounded" - HIGHLIGHT_SHARP = "highlight_sharp" - HIGH_QUALITY = "high_quality" - HIGH_QUALITY_OUTLINED = "high_quality_outlined" - HIGH_QUALITY_ROUNDED = "high_quality_rounded" - HIGH_QUALITY_SHARP = "high_quality_sharp" - HIKING = "hiking" - HIKING_OUTLINED = "hiking_outlined" - HIKING_ROUNDED = "hiking_rounded" - HIKING_SHARP = "hiking_sharp" - HISTORY = "history" - HISTORY_EDU = "history_edu" - HISTORY_EDU_OUTLINED = "history_edu_outlined" - HISTORY_EDU_ROUNDED = "history_edu_rounded" - HISTORY_EDU_SHARP = "history_edu_sharp" - HISTORY_OUTLINED = "history_outlined" - HISTORY_ROUNDED = "history_rounded" - HISTORY_SHARP = "history_sharp" - HISTORY_TOGGLE_OFF = "history_toggle_off" - HISTORY_TOGGLE_OFF_OUTLINED = "history_toggle_off_outlined" - HISTORY_TOGGLE_OFF_ROUNDED = "history_toggle_off_rounded" - HISTORY_TOGGLE_OFF_SHARP = "history_toggle_off_sharp" - HIVE = "hive" - HIVE_OUTLINED = "hive_outlined" - HIVE_ROUNDED = "hive_rounded" - HIVE_SHARP = "hive_sharp" - HLS = "hls" - HLS_OFF = "hls_off" - HLS_OFF_OUTLINED = "hls_off_outlined" - HLS_OFF_ROUNDED = "hls_off_rounded" - HLS_OFF_SHARP = "hls_off_sharp" - HLS_OUTLINED = "hls_outlined" - HLS_ROUNDED = "hls_rounded" - HLS_SHARP = "hls_sharp" - HOLIDAY_VILLAGE = "holiday_village" - HOLIDAY_VILLAGE_OUTLINED = "holiday_village_outlined" - HOLIDAY_VILLAGE_ROUNDED = "holiday_village_rounded" - HOLIDAY_VILLAGE_SHARP = "holiday_village_sharp" - HOME = "home" - HOME_FILLED = "home_filled" - HOME_MAX = "home_max" - HOME_MAX_OUTLINED = "home_max_outlined" - HOME_MAX_ROUNDED = "home_max_rounded" - HOME_MAX_SHARP = "home_max_sharp" - HOME_MINI = "home_mini" - HOME_MINI_OUTLINED = "home_mini_outlined" - HOME_MINI_ROUNDED = "home_mini_rounded" - HOME_MINI_SHARP = "home_mini_sharp" - HOME_OUTLINED = "home_outlined" - HOME_REPAIR_SERVICE = "home_repair_service" - HOME_REPAIR_SERVICE_OUTLINED = "home_repair_service_outlined" - HOME_REPAIR_SERVICE_ROUNDED = "home_repair_service_rounded" - HOME_REPAIR_SERVICE_SHARP = "home_repair_service_sharp" - HOME_ROUNDED = "home_rounded" - HOME_SHARP = "home_sharp" - HOME_WORK = "home_work" - HOME_WORK_OUTLINED = "home_work_outlined" - HOME_WORK_ROUNDED = "home_work_rounded" - HOME_WORK_SHARP = "home_work_sharp" - HORIZONTAL_DISTRIBUTE = "horizontal_distribute" - HORIZONTAL_DISTRIBUTE_OUTLINED = "horizontal_distribute_outlined" - HORIZONTAL_DISTRIBUTE_ROUNDED = "horizontal_distribute_rounded" - HORIZONTAL_DISTRIBUTE_SHARP = "horizontal_distribute_sharp" - HORIZONTAL_RULE = "horizontal_rule" - HORIZONTAL_RULE_OUTLINED = "horizontal_rule_outlined" - HORIZONTAL_RULE_ROUNDED = "horizontal_rule_rounded" - HORIZONTAL_RULE_SHARP = "horizontal_rule_sharp" - HORIZONTAL_SPLIT = "horizontal_split" - HORIZONTAL_SPLIT_OUTLINED = "horizontal_split_outlined" - HORIZONTAL_SPLIT_ROUNDED = "horizontal_split_rounded" - HORIZONTAL_SPLIT_SHARP = "horizontal_split_sharp" - HOTEL = "hotel" - HOTEL_CLASS = "hotel_class" - HOTEL_CLASS_OUTLINED = "hotel_class_outlined" - HOTEL_CLASS_ROUNDED = "hotel_class_rounded" - HOTEL_CLASS_SHARP = "hotel_class_sharp" - HOTEL_OUTLINED = "hotel_outlined" - HOTEL_ROUNDED = "hotel_rounded" - HOTEL_SHARP = "hotel_sharp" - HOT_TUB = "hot_tub" - HOT_TUB_OUTLINED = "hot_tub_outlined" - HOT_TUB_ROUNDED = "hot_tub_rounded" - HOT_TUB_SHARP = "hot_tub_sharp" - HOURGLASS_BOTTOM = "hourglass_bottom" - HOURGLASS_BOTTOM_OUTLINED = "hourglass_bottom_outlined" - HOURGLASS_BOTTOM_ROUNDED = "hourglass_bottom_rounded" - HOURGLASS_BOTTOM_SHARP = "hourglass_bottom_sharp" - HOURGLASS_DISABLED = "hourglass_disabled" - HOURGLASS_DISABLED_OUTLINED = "hourglass_disabled_outlined" - HOURGLASS_DISABLED_ROUNDED = "hourglass_disabled_rounded" - HOURGLASS_DISABLED_SHARP = "hourglass_disabled_sharp" - HOURGLASS_EMPTY = "hourglass_empty" - HOURGLASS_EMPTY_OUTLINED = "hourglass_empty_outlined" - HOURGLASS_EMPTY_ROUNDED = "hourglass_empty_rounded" - HOURGLASS_EMPTY_SHARP = "hourglass_empty_sharp" - HOURGLASS_FULL = "hourglass_full" - HOURGLASS_FULL_OUTLINED = "hourglass_full_outlined" - HOURGLASS_FULL_ROUNDED = "hourglass_full_rounded" - HOURGLASS_FULL_SHARP = "hourglass_full_sharp" - HOURGLASS_TOP = "hourglass_top" - HOURGLASS_TOP_OUTLINED = "hourglass_top_outlined" - HOURGLASS_TOP_ROUNDED = "hourglass_top_rounded" - HOURGLASS_TOP_SHARP = "hourglass_top_sharp" - HOUSE = "house" - HOUSEBOAT = "houseboat" - HOUSEBOAT_OUTLINED = "houseboat_outlined" - HOUSEBOAT_ROUNDED = "houseboat_rounded" - HOUSEBOAT_SHARP = "houseboat_sharp" - HOUSE_OUTLINED = "house_outlined" - HOUSE_ROUNDED = "house_rounded" - HOUSE_SHARP = "house_sharp" - HOUSE_SIDING = "house_siding" - HOUSE_SIDING_OUTLINED = "house_siding_outlined" - HOUSE_SIDING_ROUNDED = "house_siding_rounded" - HOUSE_SIDING_SHARP = "house_siding_sharp" - HOW_TO_REG = "how_to_reg" - HOW_TO_REG_OUTLINED = "how_to_reg_outlined" - HOW_TO_REG_ROUNDED = "how_to_reg_rounded" - HOW_TO_REG_SHARP = "how_to_reg_sharp" - HOW_TO_VOTE = "how_to_vote" - HOW_TO_VOTE_OUTLINED = "how_to_vote_outlined" - HOW_TO_VOTE_ROUNDED = "how_to_vote_rounded" - HOW_TO_VOTE_SHARP = "how_to_vote_sharp" - HTML = "html" - HTML_OUTLINED = "html_outlined" - HTML_ROUNDED = "html_rounded" - HTML_SHARP = "html_sharp" - HTTP = "http" - HTTPS = "https" - HTTPS_OUTLINED = "https_outlined" - HTTPS_ROUNDED = "https_rounded" - HTTPS_SHARP = "https_sharp" - HTTP_OUTLINED = "http_outlined" - HTTP_ROUNDED = "http_rounded" - HTTP_SHARP = "http_sharp" - HUB = "hub" - HUB_OUTLINED = "hub_outlined" - HUB_ROUNDED = "hub_rounded" - HUB_SHARP = "hub_sharp" - HVAC = "hvac" - HVAC_OUTLINED = "hvac_outlined" - HVAC_ROUNDED = "hvac_rounded" - HVAC_SHARP = "hvac_sharp" - H_MOBILEDATA = "h_mobiledata" - H_MOBILEDATA_OUTLINED = "h_mobiledata_outlined" - H_MOBILEDATA_ROUNDED = "h_mobiledata_rounded" - H_MOBILEDATA_SHARP = "h_mobiledata_sharp" - H_PLUS_MOBILEDATA = "h_plus_mobiledata" - H_PLUS_MOBILEDATA_OUTLINED = "h_plus_mobiledata_outlined" - H_PLUS_MOBILEDATA_ROUNDED = "h_plus_mobiledata_rounded" - H_PLUS_MOBILEDATA_SHARP = "h_plus_mobiledata_sharp" - ICECREAM = "icecream" - ICECREAM_OUTLINED = "icecream_outlined" - ICECREAM_ROUNDED = "icecream_rounded" - ICECREAM_SHARP = "icecream_sharp" - ICE_SKATING = "ice_skating" - ICE_SKATING_OUTLINED = "ice_skating_outlined" - ICE_SKATING_ROUNDED = "ice_skating_rounded" - ICE_SKATING_SHARP = "ice_skating_sharp" - IMAGE = "image" - IMAGESEARCH_ROLLER = "imagesearch_roller" - IMAGESEARCH_ROLLER_OUTLINED = "imagesearch_roller_outlined" - IMAGESEARCH_ROLLER_ROUNDED = "imagesearch_roller_rounded" - IMAGESEARCH_ROLLER_SHARP = "imagesearch_roller_sharp" - IMAGE_ASPECT_RATIO = "image_aspect_ratio" - IMAGE_ASPECT_RATIO_OUTLINED = "image_aspect_ratio_outlined" - IMAGE_ASPECT_RATIO_ROUNDED = "image_aspect_ratio_rounded" - IMAGE_ASPECT_RATIO_SHARP = "image_aspect_ratio_sharp" - IMAGE_NOT_SUPPORTED = "image_not_supported" - IMAGE_NOT_SUPPORTED_OUTLINED = "image_not_supported_outlined" - IMAGE_NOT_SUPPORTED_ROUNDED = "image_not_supported_rounded" - IMAGE_NOT_SUPPORTED_SHARP = "image_not_supported_sharp" - IMAGE_OUTLINED = "image_outlined" - IMAGE_ROUNDED = "image_rounded" - IMAGE_SEARCH = "image_search" - IMAGE_SEARCH_OUTLINED = "image_search_outlined" - IMAGE_SEARCH_ROUNDED = "image_search_rounded" - IMAGE_SEARCH_SHARP = "image_search_sharp" - IMAGE_SHARP = "image_sharp" - IMPORTANT_DEVICES = "important_devices" - IMPORTANT_DEVICES_OUTLINED = "important_devices_outlined" - IMPORTANT_DEVICES_ROUNDED = "important_devices_rounded" - IMPORTANT_DEVICES_SHARP = "important_devices_sharp" - IMPORT_CONTACTS = "import_contacts" - IMPORT_CONTACTS_OUTLINED = "import_contacts_outlined" - IMPORT_CONTACTS_ROUNDED = "import_contacts_rounded" - IMPORT_CONTACTS_SHARP = "import_contacts_sharp" - IMPORT_EXPORT = "import_export" - IMPORT_EXPORT_OUTLINED = "import_export_outlined" - IMPORT_EXPORT_ROUNDED = "import_export_rounded" - IMPORT_EXPORT_SHARP = "import_export_sharp" - INBOX = "inbox" - INBOX_OUTLINED = "inbox_outlined" - INBOX_ROUNDED = "inbox_rounded" - INBOX_SHARP = "inbox_sharp" - INCOMPLETE_CIRCLE = "incomplete_circle" - INCOMPLETE_CIRCLE_OUTLINED = "incomplete_circle_outlined" - INCOMPLETE_CIRCLE_ROUNDED = "incomplete_circle_rounded" - INCOMPLETE_CIRCLE_SHARP = "incomplete_circle_sharp" - INDETERMINATE_CHECK_BOX = "indeterminate_check_box" - INDETERMINATE_CHECK_BOX_OUTLINED = "indeterminate_check_box_outlined" - INDETERMINATE_CHECK_BOX_ROUNDED = "indeterminate_check_box_rounded" - INDETERMINATE_CHECK_BOX_SHARP = "indeterminate_check_box_sharp" - INFO = "info" - INFO_OUTLINE = "info_outline" - INFO_OUTLINED = "info_outlined" - INFO_OUTLINE_ROUNDED = "info_outline_rounded" - INFO_OUTLINE_SHARP = "info_outline_sharp" - INFO_ROUNDED = "info_rounded" - INFO_SHARP = "info_sharp" - INPUT = "input" - INPUT_OUTLINED = "input_outlined" - INPUT_ROUNDED = "input_rounded" - INPUT_SHARP = "input_sharp" - INSERT_CHART = "insert_chart" - INSERT_CHART_OUTLINED = "insert_chart_outlined" - INSERT_CHART_OUTLINED_OUTLINED = "insert_chart_outlined_outlined" - INSERT_CHART_OUTLINED_ROUNDED = "insert_chart_outlined_rounded" - INSERT_CHART_OUTLINED_SHARP = "insert_chart_outlined_sharp" - INSERT_CHART_ROUNDED = "insert_chart_rounded" - INSERT_CHART_SHARP = "insert_chart_sharp" - INSERT_COMMENT = "insert_comment" - INSERT_COMMENT_OUTLINED = "insert_comment_outlined" - INSERT_COMMENT_ROUNDED = "insert_comment_rounded" - INSERT_COMMENT_SHARP = "insert_comment_sharp" - INSERT_DRIVE_FILE = "insert_drive_file" - INSERT_DRIVE_FILE_OUTLINED = "insert_drive_file_outlined" - INSERT_DRIVE_FILE_ROUNDED = "insert_drive_file_rounded" - INSERT_DRIVE_FILE_SHARP = "insert_drive_file_sharp" - INSERT_EMOTICON = "insert_emoticon" - INSERT_EMOTICON_OUTLINED = "insert_emoticon_outlined" - INSERT_EMOTICON_ROUNDED = "insert_emoticon_rounded" - INSERT_EMOTICON_SHARP = "insert_emoticon_sharp" - INSERT_INVITATION = "insert_invitation" - INSERT_INVITATION_OUTLINED = "insert_invitation_outlined" - INSERT_INVITATION_ROUNDED = "insert_invitation_rounded" - INSERT_INVITATION_SHARP = "insert_invitation_sharp" - INSERT_LINK = "insert_link" - INSERT_LINK_OUTLINED = "insert_link_outlined" - INSERT_LINK_ROUNDED = "insert_link_rounded" - INSERT_LINK_SHARP = "insert_link_sharp" - INSERT_PAGE_BREAK = "insert_page_break" - INSERT_PAGE_BREAK_OUTLINED = "insert_page_break_outlined" - INSERT_PAGE_BREAK_ROUNDED = "insert_page_break_rounded" - INSERT_PAGE_BREAK_SHARP = "insert_page_break_sharp" - INSERT_PHOTO = "insert_photo" - INSERT_PHOTO_OUTLINED = "insert_photo_outlined" - INSERT_PHOTO_ROUNDED = "insert_photo_rounded" - INSERT_PHOTO_SHARP = "insert_photo_sharp" - INSIGHTS = "insights" - INSIGHTS_OUTLINED = "insights_outlined" - INSIGHTS_ROUNDED = "insights_rounded" - INSIGHTS_SHARP = "insights_sharp" - INSTALL_DESKTOP = "install_desktop" - INSTALL_DESKTOP_OUTLINED = "install_desktop_outlined" - INSTALL_DESKTOP_ROUNDED = "install_desktop_rounded" - INSTALL_DESKTOP_SHARP = "install_desktop_sharp" - INSTALL_MOBILE = "install_mobile" - INSTALL_MOBILE_OUTLINED = "install_mobile_outlined" - INSTALL_MOBILE_ROUNDED = "install_mobile_rounded" - INSTALL_MOBILE_SHARP = "install_mobile_sharp" - INTEGRATION_INSTRUCTIONS = "integration_instructions" - INTEGRATION_INSTRUCTIONS_OUTLINED = "integration_instructions_outlined" - INTEGRATION_INSTRUCTIONS_ROUNDED = "integration_instructions_rounded" - INTEGRATION_INSTRUCTIONS_SHARP = "integration_instructions_sharp" - INTERESTS = "interests" - INTERESTS_OUTLINED = "interests_outlined" - INTERESTS_ROUNDED = "interests_rounded" - INTERESTS_SHARP = "interests_sharp" - INTERPRETER_MODE = "interpreter_mode" - INTERPRETER_MODE_OUTLINED = "interpreter_mode_outlined" - INTERPRETER_MODE_ROUNDED = "interpreter_mode_rounded" - INTERPRETER_MODE_SHARP = "interpreter_mode_sharp" - INVENTORY = "inventory" - INVENTORY_2 = "inventory_2" - INVENTORY_2_OUTLINED = "inventory_2_outlined" - INVENTORY_2_ROUNDED = "inventory_2_rounded" - INVENTORY_2_SHARP = "inventory_2_sharp" - INVENTORY_OUTLINED = "inventory_outlined" - INVENTORY_ROUNDED = "inventory_rounded" - INVENTORY_SHARP = "inventory_sharp" - INVERT_COLORS = "invert_colors" - INVERT_COLORS_OFF = "invert_colors_off" - INVERT_COLORS_OFF_OUTLINED = "invert_colors_off_outlined" - INVERT_COLORS_OFF_ROUNDED = "invert_colors_off_rounded" - INVERT_COLORS_OFF_SHARP = "invert_colors_off_sharp" - INVERT_COLORS_ON = "invert_colors_on" - INVERT_COLORS_ON_OUTLINED = "invert_colors_on_outlined" - INVERT_COLORS_ON_ROUNDED = "invert_colors_on_rounded" - INVERT_COLORS_ON_SHARP = "invert_colors_on_sharp" - INVERT_COLORS_OUTLINED = "invert_colors_outlined" - INVERT_COLORS_ROUNDED = "invert_colors_rounded" - INVERT_COLORS_SHARP = "invert_colors_sharp" - IOS_SHARE = "ios_share" - IOS_SHARE_OUTLINED = "ios_share_outlined" - IOS_SHARE_ROUNDED = "ios_share_rounded" - IOS_SHARE_SHARP = "ios_share_sharp" - IRON = "iron" - IRON_OUTLINED = "iron_outlined" - IRON_ROUNDED = "iron_rounded" - IRON_SHARP = "iron_sharp" - ISO = "iso" - ISO_OUTLINED = "iso_outlined" - ISO_ROUNDED = "iso_rounded" - ISO_SHARP = "iso_sharp" - JAVASCRIPT = "javascript" - JAVASCRIPT_OUTLINED = "javascript_outlined" - JAVASCRIPT_ROUNDED = "javascript_rounded" - JAVASCRIPT_SHARP = "javascript_sharp" - JOIN_FULL = "join_full" - JOIN_FULL_OUTLINED = "join_full_outlined" - JOIN_FULL_ROUNDED = "join_full_rounded" - JOIN_FULL_SHARP = "join_full_sharp" - JOIN_INNER = "join_inner" - JOIN_INNER_OUTLINED = "join_inner_outlined" - JOIN_INNER_ROUNDED = "join_inner_rounded" - JOIN_INNER_SHARP = "join_inner_sharp" - JOIN_LEFT = "join_left" - JOIN_LEFT_OUTLINED = "join_left_outlined" - JOIN_LEFT_ROUNDED = "join_left_rounded" - JOIN_LEFT_SHARP = "join_left_sharp" - JOIN_RIGHT = "join_right" - JOIN_RIGHT_OUTLINED = "join_right_outlined" - JOIN_RIGHT_ROUNDED = "join_right_rounded" - JOIN_RIGHT_SHARP = "join_right_sharp" - KAYAKING = "kayaking" - KAYAKING_OUTLINED = "kayaking_outlined" - KAYAKING_ROUNDED = "kayaking_rounded" - KAYAKING_SHARP = "kayaking_sharp" - KEBAB_DINING = "kebab_dining" - KEBAB_DINING_OUTLINED = "kebab_dining_outlined" - KEBAB_DINING_ROUNDED = "kebab_dining_rounded" - KEBAB_DINING_SHARP = "kebab_dining_sharp" - KEY = "key" - KEYBOARD = "keyboard" - KEYBOARD_ALT = "keyboard_alt" - KEYBOARD_ALT_OUTLINED = "keyboard_alt_outlined" - KEYBOARD_ALT_ROUNDED = "keyboard_alt_rounded" - KEYBOARD_ALT_SHARP = "keyboard_alt_sharp" - KEYBOARD_ARROW_DOWN = "keyboard_arrow_down" - KEYBOARD_ARROW_DOWN_OUTLINED = "keyboard_arrow_down_outlined" - KEYBOARD_ARROW_DOWN_ROUNDED = "keyboard_arrow_down_rounded" - KEYBOARD_ARROW_DOWN_SHARP = "keyboard_arrow_down_sharp" - KEYBOARD_ARROW_LEFT = "keyboard_arrow_left" - KEYBOARD_ARROW_LEFT_OUTLINED = "keyboard_arrow_left_outlined" - KEYBOARD_ARROW_LEFT_ROUNDED = "keyboard_arrow_left_rounded" - KEYBOARD_ARROW_LEFT_SHARP = "keyboard_arrow_left_sharp" - KEYBOARD_ARROW_RIGHT = "keyboard_arrow_right" - KEYBOARD_ARROW_RIGHT_OUTLINED = "keyboard_arrow_right_outlined" - KEYBOARD_ARROW_RIGHT_ROUNDED = "keyboard_arrow_right_rounded" - KEYBOARD_ARROW_RIGHT_SHARP = "keyboard_arrow_right_sharp" - KEYBOARD_ARROW_UP = "keyboard_arrow_up" - KEYBOARD_ARROW_UP_OUTLINED = "keyboard_arrow_up_outlined" - KEYBOARD_ARROW_UP_ROUNDED = "keyboard_arrow_up_rounded" - KEYBOARD_ARROW_UP_SHARP = "keyboard_arrow_up_sharp" - KEYBOARD_BACKSPACE = "keyboard_backspace" - KEYBOARD_BACKSPACE_OUTLINED = "keyboard_backspace_outlined" - KEYBOARD_BACKSPACE_ROUNDED = "keyboard_backspace_rounded" - KEYBOARD_BACKSPACE_SHARP = "keyboard_backspace_sharp" - KEYBOARD_CAPSLOCK = "keyboard_capslock" - KEYBOARD_CAPSLOCK_OUTLINED = "keyboard_capslock_outlined" - KEYBOARD_CAPSLOCK_ROUNDED = "keyboard_capslock_rounded" - KEYBOARD_CAPSLOCK_SHARP = "keyboard_capslock_sharp" - KEYBOARD_COMMAND_KEY = "keyboard_command_key" - KEYBOARD_COMMAND_KEY_OUTLINED = "keyboard_command_key_outlined" - KEYBOARD_COMMAND_KEY_ROUNDED = "keyboard_command_key_rounded" - KEYBOARD_COMMAND_KEY_SHARP = "keyboard_command_key_sharp" - KEYBOARD_CONTROL = "keyboard_control" - KEYBOARD_CONTROL_KEY = "keyboard_control_key" - KEYBOARD_CONTROL_KEY_OUTLINED = "keyboard_control_key_outlined" - KEYBOARD_CONTROL_KEY_ROUNDED = "keyboard_control_key_rounded" - KEYBOARD_CONTROL_KEY_SHARP = "keyboard_control_key_sharp" - KEYBOARD_CONTROL_OUTLINED = "keyboard_control_outlined" - KEYBOARD_CONTROL_ROUNDED = "keyboard_control_rounded" - KEYBOARD_CONTROL_SHARP = "keyboard_control_sharp" - KEYBOARD_DOUBLE_ARROW_DOWN = "keyboard_double_arrow_down" - KEYBOARD_DOUBLE_ARROW_DOWN_OUTLINED = "keyboard_double_arrow_down_outlined" - KEYBOARD_DOUBLE_ARROW_DOWN_ROUNDED = "keyboard_double_arrow_down_rounded" - KEYBOARD_DOUBLE_ARROW_DOWN_SHARP = "keyboard_double_arrow_down_sharp" - KEYBOARD_DOUBLE_ARROW_LEFT = "keyboard_double_arrow_left" - KEYBOARD_DOUBLE_ARROW_LEFT_OUTLINED = "keyboard_double_arrow_left_outlined" - KEYBOARD_DOUBLE_ARROW_LEFT_ROUNDED = "keyboard_double_arrow_left_rounded" - KEYBOARD_DOUBLE_ARROW_LEFT_SHARP = "keyboard_double_arrow_left_sharp" - KEYBOARD_DOUBLE_ARROW_RIGHT = "keyboard_double_arrow_right" - KEYBOARD_DOUBLE_ARROW_RIGHT_OUTLINED = "keyboard_double_arrow_right_outlined" - KEYBOARD_DOUBLE_ARROW_RIGHT_ROUNDED = "keyboard_double_arrow_right_rounded" - KEYBOARD_DOUBLE_ARROW_RIGHT_SHARP = "keyboard_double_arrow_right_sharp" - KEYBOARD_DOUBLE_ARROW_UP = "keyboard_double_arrow_up" - KEYBOARD_DOUBLE_ARROW_UP_OUTLINED = "keyboard_double_arrow_up_outlined" - KEYBOARD_DOUBLE_ARROW_UP_ROUNDED = "keyboard_double_arrow_up_rounded" - KEYBOARD_DOUBLE_ARROW_UP_SHARP = "keyboard_double_arrow_up_sharp" - KEYBOARD_HIDE = "keyboard_hide" - KEYBOARD_HIDE_OUTLINED = "keyboard_hide_outlined" - KEYBOARD_HIDE_ROUNDED = "keyboard_hide_rounded" - KEYBOARD_HIDE_SHARP = "keyboard_hide_sharp" - KEYBOARD_OPTION_KEY = "keyboard_option_key" - KEYBOARD_OPTION_KEY_OUTLINED = "keyboard_option_key_outlined" - KEYBOARD_OPTION_KEY_ROUNDED = "keyboard_option_key_rounded" - KEYBOARD_OPTION_KEY_SHARP = "keyboard_option_key_sharp" - KEYBOARD_OUTLINED = "keyboard_outlined" - KEYBOARD_RETURN = "keyboard_return" - KEYBOARD_RETURN_OUTLINED = "keyboard_return_outlined" - KEYBOARD_RETURN_ROUNDED = "keyboard_return_rounded" - KEYBOARD_RETURN_SHARP = "keyboard_return_sharp" - KEYBOARD_ROUNDED = "keyboard_rounded" - KEYBOARD_SHARP = "keyboard_sharp" - KEYBOARD_TAB = "keyboard_tab" - KEYBOARD_TAB_OUTLINED = "keyboard_tab_outlined" - KEYBOARD_TAB_ROUNDED = "keyboard_tab_rounded" - KEYBOARD_TAB_SHARP = "keyboard_tab_sharp" - KEYBOARD_VOICE = "keyboard_voice" - KEYBOARD_VOICE_OUTLINED = "keyboard_voice_outlined" - KEYBOARD_VOICE_ROUNDED = "keyboard_voice_rounded" - KEYBOARD_VOICE_SHARP = "keyboard_voice_sharp" - KEY_OFF = "key_off" - KEY_OFF_OUTLINED = "key_off_outlined" - KEY_OFF_ROUNDED = "key_off_rounded" - KEY_OFF_SHARP = "key_off_sharp" - KEY_OUTLINED = "key_outlined" - KEY_ROUNDED = "key_rounded" - KEY_SHARP = "key_sharp" - KING_BED = "king_bed" - KING_BED_OUTLINED = "king_bed_outlined" - KING_BED_ROUNDED = "king_bed_rounded" - KING_BED_SHARP = "king_bed_sharp" - KITCHEN = "kitchen" - KITCHEN_OUTLINED = "kitchen_outlined" - KITCHEN_ROUNDED = "kitchen_rounded" - KITCHEN_SHARP = "kitchen_sharp" - KITESURFING = "kitesurfing" - KITESURFING_OUTLINED = "kitesurfing_outlined" - KITESURFING_ROUNDED = "kitesurfing_rounded" - KITESURFING_SHARP = "kitesurfing_sharp" - LABEL = "label" - LABEL_IMPORTANT = "label_important" - LABEL_IMPORTANT_OUTLINE = "label_important_outline" - LABEL_IMPORTANT_OUTLINED = "label_important_outlined" - LABEL_IMPORTANT_OUTLINE_ROUNDED = "label_important_outline_rounded" - LABEL_IMPORTANT_OUTLINE_SHARP = "label_important_outline_sharp" - LABEL_IMPORTANT_ROUNDED = "label_important_rounded" - LABEL_IMPORTANT_SHARP = "label_important_sharp" - LABEL_OFF = "label_off" - LABEL_OFF_OUTLINED = "label_off_outlined" - LABEL_OFF_ROUNDED = "label_off_rounded" - LABEL_OFF_SHARP = "label_off_sharp" - LABEL_OUTLINE = "label_outline" - LABEL_OUTLINED = "label_outlined" - LABEL_OUTLINE_ROUNDED = "label_outline_rounded" - LABEL_OUTLINE_SHARP = "label_outline_sharp" - LABEL_ROUNDED = "label_rounded" - LABEL_SHARP = "label_sharp" - LAN = "lan" - LANDSCAPE = "landscape" - LANDSCAPE_OUTLINED = "landscape_outlined" - LANDSCAPE_ROUNDED = "landscape_rounded" - LANDSCAPE_SHARP = "landscape_sharp" - LANDSLIDE = "landslide" - LANDSLIDE_OUTLINED = "landslide_outlined" - LANDSLIDE_ROUNDED = "landslide_rounded" - LANDSLIDE_SHARP = "landslide_sharp" - LANGUAGE = "language" - LANGUAGE_OUTLINED = "language_outlined" - LANGUAGE_ROUNDED = "language_rounded" - LANGUAGE_SHARP = "language_sharp" - LAN_OUTLINED = "lan_outlined" - LAN_ROUNDED = "lan_rounded" - LAN_SHARP = "lan_sharp" - LAPTOP = "laptop" - LAPTOP_CHROMEBOOK = "laptop_chromebook" - LAPTOP_CHROMEBOOK_OUTLINED = "laptop_chromebook_outlined" - LAPTOP_CHROMEBOOK_ROUNDED = "laptop_chromebook_rounded" - LAPTOP_CHROMEBOOK_SHARP = "laptop_chromebook_sharp" - LAPTOP_MAC = "laptop_mac" - LAPTOP_MAC_OUTLINED = "laptop_mac_outlined" - LAPTOP_MAC_ROUNDED = "laptop_mac_rounded" - LAPTOP_MAC_SHARP = "laptop_mac_sharp" - LAPTOP_OUTLINED = "laptop_outlined" - LAPTOP_ROUNDED = "laptop_rounded" - LAPTOP_SHARP = "laptop_sharp" - LAPTOP_WINDOWS = "laptop_windows" - LAPTOP_WINDOWS_OUTLINED = "laptop_windows_outlined" - LAPTOP_WINDOWS_ROUNDED = "laptop_windows_rounded" - LAPTOP_WINDOWS_SHARP = "laptop_windows_sharp" - LAST_PAGE = "last_page" - LAST_PAGE_OUTLINED = "last_page_outlined" - LAST_PAGE_ROUNDED = "last_page_rounded" - LAST_PAGE_SHARP = "last_page_sharp" - LAUNCH = "launch" - LAUNCH_OUTLINED = "launch_outlined" - LAUNCH_ROUNDED = "launch_rounded" - LAUNCH_SHARP = "launch_sharp" - LAYERS = "layers" - LAYERS_CLEAR = "layers_clear" - LAYERS_CLEAR_OUTLINED = "layers_clear_outlined" - LAYERS_CLEAR_ROUNDED = "layers_clear_rounded" - LAYERS_CLEAR_SHARP = "layers_clear_sharp" - LAYERS_OUTLINED = "layers_outlined" - LAYERS_ROUNDED = "layers_rounded" - LAYERS_SHARP = "layers_sharp" - LEADERBOARD = "leaderboard" - LEADERBOARD_OUTLINED = "leaderboard_outlined" - LEADERBOARD_ROUNDED = "leaderboard_rounded" - LEADERBOARD_SHARP = "leaderboard_sharp" - LEAK_ADD = "leak_add" - LEAK_ADD_OUTLINED = "leak_add_outlined" - LEAK_ADD_ROUNDED = "leak_add_rounded" - LEAK_ADD_SHARP = "leak_add_sharp" - LEAK_REMOVE = "leak_remove" - LEAK_REMOVE_OUTLINED = "leak_remove_outlined" - LEAK_REMOVE_ROUNDED = "leak_remove_rounded" - LEAK_REMOVE_SHARP = "leak_remove_sharp" - LEAVE_BAGS_AT_HOME = "leave_bags_at_home" - LEAVE_BAGS_AT_HOME_OUTLINED = "leave_bags_at_home_outlined" - LEAVE_BAGS_AT_HOME_ROUNDED = "leave_bags_at_home_rounded" - LEAVE_BAGS_AT_HOME_SHARP = "leave_bags_at_home_sharp" - LEGEND_TOGGLE = "legend_toggle" - LEGEND_TOGGLE_OUTLINED = "legend_toggle_outlined" - LEGEND_TOGGLE_ROUNDED = "legend_toggle_rounded" - LEGEND_TOGGLE_SHARP = "legend_toggle_sharp" - LENS = "lens" - LENS_BLUR = "lens_blur" - LENS_BLUR_OUTLINED = "lens_blur_outlined" - LENS_BLUR_ROUNDED = "lens_blur_rounded" - LENS_BLUR_SHARP = "lens_blur_sharp" - LENS_OUTLINED = "lens_outlined" - LENS_ROUNDED = "lens_rounded" - LENS_SHARP = "lens_sharp" - LIBRARY_ADD = "library_add" - LIBRARY_ADD_CHECK = "library_add_check" - LIBRARY_ADD_CHECK_OUTLINED = "library_add_check_outlined" - LIBRARY_ADD_CHECK_ROUNDED = "library_add_check_rounded" - LIBRARY_ADD_CHECK_SHARP = "library_add_check_sharp" - LIBRARY_ADD_OUTLINED = "library_add_outlined" - LIBRARY_ADD_ROUNDED = "library_add_rounded" - LIBRARY_ADD_SHARP = "library_add_sharp" - LIBRARY_BOOKS = "library_books" - LIBRARY_BOOKS_OUTLINED = "library_books_outlined" - LIBRARY_BOOKS_ROUNDED = "library_books_rounded" - LIBRARY_BOOKS_SHARP = "library_books_sharp" - LIBRARY_MUSIC = "library_music" - LIBRARY_MUSIC_OUTLINED = "library_music_outlined" - LIBRARY_MUSIC_ROUNDED = "library_music_rounded" - LIBRARY_MUSIC_SHARP = "library_music_sharp" - LIGHT = "light" - LIGHTBULB = "lightbulb" - LIGHTBULB_CIRCLE = "lightbulb_circle" - LIGHTBULB_CIRCLE_OUTLINED = "lightbulb_circle_outlined" - LIGHTBULB_CIRCLE_ROUNDED = "lightbulb_circle_rounded" - LIGHTBULB_CIRCLE_SHARP = "lightbulb_circle_sharp" - LIGHTBULB_OUTLINE = "lightbulb_outline" - LIGHTBULB_OUTLINED = "lightbulb_outlined" - LIGHTBULB_OUTLINE_ROUNDED = "lightbulb_outline_rounded" - LIGHTBULB_OUTLINE_SHARP = "lightbulb_outline_sharp" - LIGHTBULB_ROUNDED = "lightbulb_rounded" - LIGHTBULB_SHARP = "lightbulb_sharp" - LIGHT_MODE = "light_mode" - LIGHT_MODE_OUTLINED = "light_mode_outlined" - LIGHT_MODE_ROUNDED = "light_mode_rounded" - LIGHT_MODE_SHARP = "light_mode_sharp" - LIGHT_OUTLINED = "light_outlined" - LIGHT_ROUNDED = "light_rounded" - LIGHT_SHARP = "light_sharp" - LINEAR_SCALE = "linear_scale" - LINEAR_SCALE_OUTLINED = "linear_scale_outlined" - LINEAR_SCALE_ROUNDED = "linear_scale_rounded" - LINEAR_SCALE_SHARP = "linear_scale_sharp" - LINE_AXIS = "line_axis" - LINE_AXIS_OUTLINED = "line_axis_outlined" - LINE_AXIS_ROUNDED = "line_axis_rounded" - LINE_AXIS_SHARP = "line_axis_sharp" - LINE_STYLE = "line_style" - LINE_STYLE_OUTLINED = "line_style_outlined" - LINE_STYLE_ROUNDED = "line_style_rounded" - LINE_STYLE_SHARP = "line_style_sharp" - LINE_WEIGHT = "line_weight" - LINE_WEIGHT_OUTLINED = "line_weight_outlined" - LINE_WEIGHT_ROUNDED = "line_weight_rounded" - LINE_WEIGHT_SHARP = "line_weight_sharp" - LINK = "link" - LINKED_CAMERA = "linked_camera" - LINKED_CAMERA_OUTLINED = "linked_camera_outlined" - LINKED_CAMERA_ROUNDED = "linked_camera_rounded" - LINKED_CAMERA_SHARP = "linked_camera_sharp" - LINK_OFF = "link_off" - LINK_OFF_OUTLINED = "link_off_outlined" - LINK_OFF_ROUNDED = "link_off_rounded" - LINK_OFF_SHARP = "link_off_sharp" - LINK_OUTLINED = "link_outlined" - LINK_ROUNDED = "link_rounded" - LINK_SHARP = "link_sharp" - LIQUOR = "liquor" - LIQUOR_OUTLINED = "liquor_outlined" - LIQUOR_ROUNDED = "liquor_rounded" - LIQUOR_SHARP = "liquor_sharp" - LIST = "list" - LIST_ALT = "list_alt" - LIST_ALT_OUTLINED = "list_alt_outlined" - LIST_ALT_ROUNDED = "list_alt_rounded" - LIST_ALT_SHARP = "list_alt_sharp" - LIST_OUTLINED = "list_outlined" - LIST_ROUNDED = "list_rounded" - LIST_SHARP = "list_sharp" - LIVE_HELP = "live_help" - LIVE_HELP_OUTLINED = "live_help_outlined" - LIVE_HELP_ROUNDED = "live_help_rounded" - LIVE_HELP_SHARP = "live_help_sharp" - LIVE_TV = "live_tv" - LIVE_TV_OUTLINED = "live_tv_outlined" - LIVE_TV_ROUNDED = "live_tv_rounded" - LIVE_TV_SHARP = "live_tv_sharp" - LIVING = "living" - LIVING_OUTLINED = "living_outlined" - LIVING_ROUNDED = "living_rounded" - LIVING_SHARP = "living_sharp" - LOCAL_ACTIVITY = "local_activity" - LOCAL_ACTIVITY_OUTLINED = "local_activity_outlined" - LOCAL_ACTIVITY_ROUNDED = "local_activity_rounded" - LOCAL_ACTIVITY_SHARP = "local_activity_sharp" - LOCAL_AIRPORT = "local_airport" - LOCAL_AIRPORT_OUTLINED = "local_airport_outlined" - LOCAL_AIRPORT_ROUNDED = "local_airport_rounded" - LOCAL_AIRPORT_SHARP = "local_airport_sharp" - LOCAL_ATM = "local_atm" - LOCAL_ATM_OUTLINED = "local_atm_outlined" - LOCAL_ATM_ROUNDED = "local_atm_rounded" - LOCAL_ATM_SHARP = "local_atm_sharp" - LOCAL_ATTRACTION = "local_attraction" - LOCAL_ATTRACTION_OUTLINED = "local_attraction_outlined" - LOCAL_ATTRACTION_ROUNDED = "local_attraction_rounded" - LOCAL_ATTRACTION_SHARP = "local_attraction_sharp" - LOCAL_BAR = "local_bar" - LOCAL_BAR_OUTLINED = "local_bar_outlined" - LOCAL_BAR_ROUNDED = "local_bar_rounded" - LOCAL_BAR_SHARP = "local_bar_sharp" - LOCAL_CAFE = "local_cafe" - LOCAL_CAFE_OUTLINED = "local_cafe_outlined" - LOCAL_CAFE_ROUNDED = "local_cafe_rounded" - LOCAL_CAFE_SHARP = "local_cafe_sharp" - LOCAL_CAR_WASH = "local_car_wash" - LOCAL_CAR_WASH_OUTLINED = "local_car_wash_outlined" - LOCAL_CAR_WASH_ROUNDED = "local_car_wash_rounded" - LOCAL_CAR_WASH_SHARP = "local_car_wash_sharp" - LOCAL_CONVENIENCE_STORE = "local_convenience_store" - LOCAL_CONVENIENCE_STORE_OUTLINED = "local_convenience_store_outlined" - LOCAL_CONVENIENCE_STORE_ROUNDED = "local_convenience_store_rounded" - LOCAL_CONVENIENCE_STORE_SHARP = "local_convenience_store_sharp" - LOCAL_DINING = "local_dining" - LOCAL_DINING_OUTLINED = "local_dining_outlined" - LOCAL_DINING_ROUNDED = "local_dining_rounded" - LOCAL_DINING_SHARP = "local_dining_sharp" - LOCAL_DRINK = "local_drink" - LOCAL_DRINK_OUTLINED = "local_drink_outlined" - LOCAL_DRINK_ROUNDED = "local_drink_rounded" - LOCAL_DRINK_SHARP = "local_drink_sharp" - LOCAL_FIRE_DEPARTMENT = "local_fire_department" - LOCAL_FIRE_DEPARTMENT_OUTLINED = "local_fire_department_outlined" - LOCAL_FIRE_DEPARTMENT_ROUNDED = "local_fire_department_rounded" - LOCAL_FIRE_DEPARTMENT_SHARP = "local_fire_department_sharp" - LOCAL_FLORIST = "local_florist" - LOCAL_FLORIST_OUTLINED = "local_florist_outlined" - LOCAL_FLORIST_ROUNDED = "local_florist_rounded" - LOCAL_FLORIST_SHARP = "local_florist_sharp" - LOCAL_GAS_STATION = "local_gas_station" - LOCAL_GAS_STATION_OUTLINED = "local_gas_station_outlined" - LOCAL_GAS_STATION_ROUNDED = "local_gas_station_rounded" - LOCAL_GAS_STATION_SHARP = "local_gas_station_sharp" - LOCAL_GROCERY_STORE = "local_grocery_store" - LOCAL_GROCERY_STORE_OUTLINED = "local_grocery_store_outlined" - LOCAL_GROCERY_STORE_ROUNDED = "local_grocery_store_rounded" - LOCAL_GROCERY_STORE_SHARP = "local_grocery_store_sharp" - LOCAL_HOSPITAL = "local_hospital" - LOCAL_HOSPITAL_OUTLINED = "local_hospital_outlined" - LOCAL_HOSPITAL_ROUNDED = "local_hospital_rounded" - LOCAL_HOSPITAL_SHARP = "local_hospital_sharp" - LOCAL_HOTEL = "local_hotel" - LOCAL_HOTEL_OUTLINED = "local_hotel_outlined" - LOCAL_HOTEL_ROUNDED = "local_hotel_rounded" - LOCAL_HOTEL_SHARP = "local_hotel_sharp" - LOCAL_LAUNDRY_SERVICE = "local_laundry_service" - LOCAL_LAUNDRY_SERVICE_OUTLINED = "local_laundry_service_outlined" - LOCAL_LAUNDRY_SERVICE_ROUNDED = "local_laundry_service_rounded" - LOCAL_LAUNDRY_SERVICE_SHARP = "local_laundry_service_sharp" - LOCAL_LIBRARY = "local_library" - LOCAL_LIBRARY_OUTLINED = "local_library_outlined" - LOCAL_LIBRARY_ROUNDED = "local_library_rounded" - LOCAL_LIBRARY_SHARP = "local_library_sharp" - LOCAL_MALL = "local_mall" - LOCAL_MALL_OUTLINED = "local_mall_outlined" - LOCAL_MALL_ROUNDED = "local_mall_rounded" - LOCAL_MALL_SHARP = "local_mall_sharp" - LOCAL_MOVIES = "local_movies" - LOCAL_MOVIES_OUTLINED = "local_movies_outlined" - LOCAL_MOVIES_ROUNDED = "local_movies_rounded" - LOCAL_MOVIES_SHARP = "local_movies_sharp" - LOCAL_OFFER = "local_offer" - LOCAL_OFFER_OUTLINED = "local_offer_outlined" - LOCAL_OFFER_ROUNDED = "local_offer_rounded" - LOCAL_OFFER_SHARP = "local_offer_sharp" - LOCAL_PARKING = "local_parking" - LOCAL_PARKING_OUTLINED = "local_parking_outlined" - LOCAL_PARKING_ROUNDED = "local_parking_rounded" - LOCAL_PARKING_SHARP = "local_parking_sharp" - LOCAL_PHARMACY = "local_pharmacy" - LOCAL_PHARMACY_OUTLINED = "local_pharmacy_outlined" - LOCAL_PHARMACY_ROUNDED = "local_pharmacy_rounded" - LOCAL_PHARMACY_SHARP = "local_pharmacy_sharp" - LOCAL_PHONE = "local_phone" - LOCAL_PHONE_OUTLINED = "local_phone_outlined" - LOCAL_PHONE_ROUNDED = "local_phone_rounded" - LOCAL_PHONE_SHARP = "local_phone_sharp" - LOCAL_PIZZA = "local_pizza" - LOCAL_PIZZA_OUTLINED = "local_pizza_outlined" - LOCAL_PIZZA_ROUNDED = "local_pizza_rounded" - LOCAL_PIZZA_SHARP = "local_pizza_sharp" - LOCAL_PLAY = "local_play" - LOCAL_PLAY_OUTLINED = "local_play_outlined" - LOCAL_PLAY_ROUNDED = "local_play_rounded" - LOCAL_PLAY_SHARP = "local_play_sharp" - LOCAL_POLICE = "local_police" - LOCAL_POLICE_OUTLINED = "local_police_outlined" - LOCAL_POLICE_ROUNDED = "local_police_rounded" - LOCAL_POLICE_SHARP = "local_police_sharp" - LOCAL_POST_OFFICE = "local_post_office" - LOCAL_POST_OFFICE_OUTLINED = "local_post_office_outlined" - LOCAL_POST_OFFICE_ROUNDED = "local_post_office_rounded" - LOCAL_POST_OFFICE_SHARP = "local_post_office_sharp" - LOCAL_PRINTSHOP = "local_printshop" - LOCAL_PRINTSHOP_OUTLINED = "local_printshop_outlined" - LOCAL_PRINTSHOP_ROUNDED = "local_printshop_rounded" - LOCAL_PRINTSHOP_SHARP = "local_printshop_sharp" - LOCAL_PRINT_SHOP = "local_print_shop" - LOCAL_PRINT_SHOP_OUTLINED = "local_print_shop_outlined" - LOCAL_PRINT_SHOP_ROUNDED = "local_print_shop_rounded" - LOCAL_PRINT_SHOP_SHARP = "local_print_shop_sharp" - LOCAL_RESTAURANT = "local_restaurant" - LOCAL_RESTAURANT_OUTLINED = "local_restaurant_outlined" - LOCAL_RESTAURANT_ROUNDED = "local_restaurant_rounded" - LOCAL_RESTAURANT_SHARP = "local_restaurant_sharp" - LOCAL_SEE = "local_see" - LOCAL_SEE_OUTLINED = "local_see_outlined" - LOCAL_SEE_ROUNDED = "local_see_rounded" - LOCAL_SEE_SHARP = "local_see_sharp" - LOCAL_SHIPPING = "local_shipping" - LOCAL_SHIPPING_OUTLINED = "local_shipping_outlined" - LOCAL_SHIPPING_ROUNDED = "local_shipping_rounded" - LOCAL_SHIPPING_SHARP = "local_shipping_sharp" - LOCAL_TAXI = "local_taxi" - LOCAL_TAXI_OUTLINED = "local_taxi_outlined" - LOCAL_TAXI_ROUNDED = "local_taxi_rounded" - LOCAL_TAXI_SHARP = "local_taxi_sharp" - LOCATION_CITY = "location_city" - LOCATION_CITY_OUTLINED = "location_city_outlined" - LOCATION_CITY_ROUNDED = "location_city_rounded" - LOCATION_CITY_SHARP = "location_city_sharp" - LOCATION_DISABLED = "location_disabled" - LOCATION_DISABLED_OUTLINED = "location_disabled_outlined" - LOCATION_DISABLED_ROUNDED = "location_disabled_rounded" - LOCATION_DISABLED_SHARP = "location_disabled_sharp" - LOCATION_HISTORY = "location_history" - LOCATION_HISTORY_OUTLINED = "location_history_outlined" - LOCATION_HISTORY_ROUNDED = "location_history_rounded" - LOCATION_HISTORY_SHARP = "location_history_sharp" - LOCATION_OFF = "location_off" - LOCATION_OFF_OUTLINED = "location_off_outlined" - LOCATION_OFF_ROUNDED = "location_off_rounded" - LOCATION_OFF_SHARP = "location_off_sharp" - LOCATION_ON = "location_on" - LOCATION_ON_OUTLINED = "location_on_outlined" - LOCATION_ON_ROUNDED = "location_on_rounded" - LOCATION_ON_SHARP = "location_on_sharp" - LOCATION_PIN = "location_pin" - LOCATION_SEARCHING = "location_searching" - LOCATION_SEARCHING_OUTLINED = "location_searching_outlined" - LOCATION_SEARCHING_ROUNDED = "location_searching_rounded" - LOCATION_SEARCHING_SHARP = "location_searching_sharp" - LOCK = "lock" - LOCK_CLOCK = "lock_clock" - LOCK_CLOCK_OUTLINED = "lock_clock_outlined" - LOCK_CLOCK_ROUNDED = "lock_clock_rounded" - LOCK_CLOCK_SHARP = "lock_clock_sharp" - LOCK_OPEN = "lock_open" - LOCK_OPEN_OUTLINED = "lock_open_outlined" - LOCK_OPEN_ROUNDED = "lock_open_rounded" - LOCK_OPEN_SHARP = "lock_open_sharp" - LOCK_OUTLINE = "lock_outline" - LOCK_OUTLINED = "lock_outlined" - LOCK_OUTLINE_ROUNDED = "lock_outline_rounded" - LOCK_OUTLINE_SHARP = "lock_outline_sharp" - LOCK_PERSON = "lock_person" - LOCK_PERSON_OUTLINED = "lock_person_outlined" - LOCK_PERSON_ROUNDED = "lock_person_rounded" - LOCK_PERSON_SHARP = "lock_person_sharp" - LOCK_RESET = "lock_reset" - LOCK_RESET_OUTLINED = "lock_reset_outlined" - LOCK_RESET_ROUNDED = "lock_reset_rounded" - LOCK_RESET_SHARP = "lock_reset_sharp" - LOCK_ROUNDED = "lock_rounded" - LOCK_SHARP = "lock_sharp" - LOGIN = "login" - LOGIN_OUTLINED = "login_outlined" - LOGIN_ROUNDED = "login_rounded" - LOGIN_SHARP = "login_sharp" - LOGOUT = "logout" - LOGOUT_OUTLINED = "logout_outlined" - LOGOUT_ROUNDED = "logout_rounded" - LOGOUT_SHARP = "logout_sharp" - LOGO_DEV = "logo_dev" - LOGO_DEV_OUTLINED = "logo_dev_outlined" - LOGO_DEV_ROUNDED = "logo_dev_rounded" - LOGO_DEV_SHARP = "logo_dev_sharp" - LOOKS = "looks" - LOOKS_3 = "looks_3" - LOOKS_3_OUTLINED = "looks_3_outlined" - LOOKS_3_ROUNDED = "looks_3_rounded" - LOOKS_3_SHARP = "looks_3_sharp" - LOOKS_4 = "looks_4" - LOOKS_4_OUTLINED = "looks_4_outlined" - LOOKS_4_ROUNDED = "looks_4_rounded" - LOOKS_4_SHARP = "looks_4_sharp" - LOOKS_5 = "looks_5" - LOOKS_5_OUTLINED = "looks_5_outlined" - LOOKS_5_ROUNDED = "looks_5_rounded" - LOOKS_5_SHARP = "looks_5_sharp" - LOOKS_6 = "looks_6" - LOOKS_6_OUTLINED = "looks_6_outlined" - LOOKS_6_ROUNDED = "looks_6_rounded" - LOOKS_6_SHARP = "looks_6_sharp" - LOOKS_ONE = "looks_one" - LOOKS_ONE_OUTLINED = "looks_one_outlined" - LOOKS_ONE_ROUNDED = "looks_one_rounded" - LOOKS_ONE_SHARP = "looks_one_sharp" - LOOKS_OUTLINED = "looks_outlined" - LOOKS_ROUNDED = "looks_rounded" - LOOKS_SHARP = "looks_sharp" - LOOKS_TWO = "looks_two" - LOOKS_TWO_OUTLINED = "looks_two_outlined" - LOOKS_TWO_ROUNDED = "looks_two_rounded" - LOOKS_TWO_SHARP = "looks_two_sharp" - LOOP = "loop" - LOOP_OUTLINED = "loop_outlined" - LOOP_ROUNDED = "loop_rounded" - LOOP_SHARP = "loop_sharp" - LOUPE = "loupe" - LOUPE_OUTLINED = "loupe_outlined" - LOUPE_ROUNDED = "loupe_rounded" - LOUPE_SHARP = "loupe_sharp" - LOW_PRIORITY = "low_priority" - LOW_PRIORITY_OUTLINED = "low_priority_outlined" - LOW_PRIORITY_ROUNDED = "low_priority_rounded" - LOW_PRIORITY_SHARP = "low_priority_sharp" - LOYALTY = "loyalty" - LOYALTY_OUTLINED = "loyalty_outlined" - LOYALTY_ROUNDED = "loyalty_rounded" - LOYALTY_SHARP = "loyalty_sharp" - LTE_MOBILEDATA = "lte_mobiledata" - LTE_MOBILEDATA_OUTLINED = "lte_mobiledata_outlined" - LTE_MOBILEDATA_ROUNDED = "lte_mobiledata_rounded" - LTE_MOBILEDATA_SHARP = "lte_mobiledata_sharp" - LTE_PLUS_MOBILEDATA = "lte_plus_mobiledata" - LTE_PLUS_MOBILEDATA_OUTLINED = "lte_plus_mobiledata_outlined" - LTE_PLUS_MOBILEDATA_ROUNDED = "lte_plus_mobiledata_rounded" - LTE_PLUS_MOBILEDATA_SHARP = "lte_plus_mobiledata_sharp" - LUGGAGE = "luggage" - LUGGAGE_OUTLINED = "luggage_outlined" - LUGGAGE_ROUNDED = "luggage_rounded" - LUGGAGE_SHARP = "luggage_sharp" - LUNCH_DINING = "lunch_dining" - LUNCH_DINING_OUTLINED = "lunch_dining_outlined" - LUNCH_DINING_ROUNDED = "lunch_dining_rounded" - LUNCH_DINING_SHARP = "lunch_dining_sharp" - LYRICS = "lyrics" - LYRICS_OUTLINED = "lyrics_outlined" - LYRICS_ROUNDED = "lyrics_rounded" - LYRICS_SHARP = "lyrics_sharp" - MACRO_OFF = "macro_off" - MACRO_OFF_OUTLINED = "macro_off_outlined" - MACRO_OFF_ROUNDED = "macro_off_rounded" - MACRO_OFF_SHARP = "macro_off_sharp" - MAIL = "mail" - MAIL_LOCK = "mail_lock" - MAIL_LOCK_OUTLINED = "mail_lock_outlined" - MAIL_LOCK_ROUNDED = "mail_lock_rounded" - MAIL_LOCK_SHARP = "mail_lock_sharp" - MAIL_OUTLINE = "mail_outline" - MAIL_OUTLINED = "mail_outlined" - MAIL_OUTLINE_OUTLINED = "mail_outline_outlined" - MAIL_OUTLINE_ROUNDED = "mail_outline_rounded" - MAIL_OUTLINE_SHARP = "mail_outline_sharp" - MAIL_ROUNDED = "mail_rounded" - MAIL_SHARP = "mail_sharp" - MALE = "male" - MALE_OUTLINED = "male_outlined" - MALE_ROUNDED = "male_rounded" - MALE_SHARP = "male_sharp" - MAN = "man" - MANAGE_ACCOUNTS = "manage_accounts" - MANAGE_ACCOUNTS_OUTLINED = "manage_accounts_outlined" - MANAGE_ACCOUNTS_ROUNDED = "manage_accounts_rounded" - MANAGE_ACCOUNTS_SHARP = "manage_accounts_sharp" - MANAGE_HISTORY = "manage_history" - MANAGE_HISTORY_OUTLINED = "manage_history_outlined" - MANAGE_HISTORY_ROUNDED = "manage_history_rounded" - MANAGE_HISTORY_SHARP = "manage_history_sharp" - MANAGE_SEARCH = "manage_search" - MANAGE_SEARCH_OUTLINED = "manage_search_outlined" - MANAGE_SEARCH_ROUNDED = "manage_search_rounded" - MANAGE_SEARCH_SHARP = "manage_search_sharp" - MAN_2 = "man_2" - MAN_2_OUTLINED = "man_2_outlined" - MAN_2_ROUNDED = "man_2_rounded" - MAN_2_SHARP = "man_2_sharp" - MAN_3 = "man_3" - MAN_3_OUTLINED = "man_3_outlined" - MAN_3_ROUNDED = "man_3_rounded" - MAN_3_SHARP = "man_3_sharp" - MAN_4 = "man_4" - MAN_4_OUTLINED = "man_4_outlined" - MAN_4_ROUNDED = "man_4_rounded" - MAN_4_SHARP = "man_4_sharp" - MAN_OUTLINED = "man_outlined" - MAN_ROUNDED = "man_rounded" - MAN_SHARP = "man_sharp" - MAP = "map" - MAPS_HOME_WORK = "maps_home_work" - MAPS_HOME_WORK_OUTLINED = "maps_home_work_outlined" - MAPS_HOME_WORK_ROUNDED = "maps_home_work_rounded" - MAPS_HOME_WORK_SHARP = "maps_home_work_sharp" - MAPS_UGC = "maps_ugc" - MAPS_UGC_OUTLINED = "maps_ugc_outlined" - MAPS_UGC_ROUNDED = "maps_ugc_rounded" - MAPS_UGC_SHARP = "maps_ugc_sharp" - MAP_OUTLINED = "map_outlined" - MAP_ROUNDED = "map_rounded" - MAP_SHARP = "map_sharp" - MARGIN = "margin" - MARGIN_OUTLINED = "margin_outlined" - MARGIN_ROUNDED = "margin_rounded" - MARGIN_SHARP = "margin_sharp" - MARKUNREAD = "markunread" - MARKUNREAD_MAILBOX = "markunread_mailbox" - MARKUNREAD_MAILBOX_OUTLINED = "markunread_mailbox_outlined" - MARKUNREAD_MAILBOX_ROUNDED = "markunread_mailbox_rounded" - MARKUNREAD_MAILBOX_SHARP = "markunread_mailbox_sharp" - MARKUNREAD_OUTLINED = "markunread_outlined" - MARKUNREAD_ROUNDED = "markunread_rounded" - MARKUNREAD_SHARP = "markunread_sharp" - MARK_AS_UNREAD = "mark_as_unread" - MARK_AS_UNREAD_OUTLINED = "mark_as_unread_outlined" - MARK_AS_UNREAD_ROUNDED = "mark_as_unread_rounded" - MARK_AS_UNREAD_SHARP = "mark_as_unread_sharp" - MARK_CHAT_READ = "mark_chat_read" - MARK_CHAT_READ_OUTLINED = "mark_chat_read_outlined" - MARK_CHAT_READ_ROUNDED = "mark_chat_read_rounded" - MARK_CHAT_READ_SHARP = "mark_chat_read_sharp" - MARK_CHAT_UNREAD = "mark_chat_unread" - MARK_CHAT_UNREAD_OUTLINED = "mark_chat_unread_outlined" - MARK_CHAT_UNREAD_ROUNDED = "mark_chat_unread_rounded" - MARK_CHAT_UNREAD_SHARP = "mark_chat_unread_sharp" - MARK_EMAIL_READ = "mark_email_read" - MARK_EMAIL_READ_OUTLINED = "mark_email_read_outlined" - MARK_EMAIL_READ_ROUNDED = "mark_email_read_rounded" - MARK_EMAIL_READ_SHARP = "mark_email_read_sharp" - MARK_EMAIL_UNREAD = "mark_email_unread" - MARK_EMAIL_UNREAD_OUTLINED = "mark_email_unread_outlined" - MARK_EMAIL_UNREAD_ROUNDED = "mark_email_unread_rounded" - MARK_EMAIL_UNREAD_SHARP = "mark_email_unread_sharp" - MARK_UNREAD_CHAT_ALT = "mark_unread_chat_alt" - MARK_UNREAD_CHAT_ALT_OUTLINED = "mark_unread_chat_alt_outlined" - MARK_UNREAD_CHAT_ALT_ROUNDED = "mark_unread_chat_alt_rounded" - MARK_UNREAD_CHAT_ALT_SHARP = "mark_unread_chat_alt_sharp" - MASKS = "masks" - MASKS_OUTLINED = "masks_outlined" - MASKS_ROUNDED = "masks_rounded" - MASKS_SHARP = "masks_sharp" - MAXIMIZE = "maximize" - MAXIMIZE_OUTLINED = "maximize_outlined" - MAXIMIZE_ROUNDED = "maximize_rounded" - MAXIMIZE_SHARP = "maximize_sharp" - MEDIATION = "mediation" - MEDIATION_OUTLINED = "mediation_outlined" - MEDIATION_ROUNDED = "mediation_rounded" - MEDIATION_SHARP = "mediation_sharp" - MEDIA_BLUETOOTH_OFF = "media_bluetooth_off" - MEDIA_BLUETOOTH_OFF_OUTLINED = "media_bluetooth_off_outlined" - MEDIA_BLUETOOTH_OFF_ROUNDED = "media_bluetooth_off_rounded" - MEDIA_BLUETOOTH_OFF_SHARP = "media_bluetooth_off_sharp" - MEDIA_BLUETOOTH_ON = "media_bluetooth_on" - MEDIA_BLUETOOTH_ON_OUTLINED = "media_bluetooth_on_outlined" - MEDIA_BLUETOOTH_ON_ROUNDED = "media_bluetooth_on_rounded" - MEDIA_BLUETOOTH_ON_SHARP = "media_bluetooth_on_sharp" - MEDICAL_INFORMATION = "medical_information" - MEDICAL_INFORMATION_OUTLINED = "medical_information_outlined" - MEDICAL_INFORMATION_ROUNDED = "medical_information_rounded" - MEDICAL_INFORMATION_SHARP = "medical_information_sharp" - MEDICAL_SERVICES = "medical_services" - MEDICAL_SERVICES_OUTLINED = "medical_services_outlined" - MEDICAL_SERVICES_ROUNDED = "medical_services_rounded" - MEDICAL_SERVICES_SHARP = "medical_services_sharp" - MEDICATION = "medication" - MEDICATION_LIQUID = "medication_liquid" - MEDICATION_LIQUID_OUTLINED = "medication_liquid_outlined" - MEDICATION_LIQUID_ROUNDED = "medication_liquid_rounded" - MEDICATION_LIQUID_SHARP = "medication_liquid_sharp" - MEDICATION_OUTLINED = "medication_outlined" - MEDICATION_ROUNDED = "medication_rounded" - MEDICATION_SHARP = "medication_sharp" - MEETING_ROOM = "meeting_room" - MEETING_ROOM_OUTLINED = "meeting_room_outlined" - MEETING_ROOM_ROUNDED = "meeting_room_rounded" - MEETING_ROOM_SHARP = "meeting_room_sharp" - MEMORY = "memory" - MEMORY_OUTLINED = "memory_outlined" - MEMORY_ROUNDED = "memory_rounded" - MEMORY_SHARP = "memory_sharp" - MENU = "menu" - MENU_BOOK = "menu_book" - MENU_BOOK_OUTLINED = "menu_book_outlined" - MENU_BOOK_ROUNDED = "menu_book_rounded" - MENU_BOOK_SHARP = "menu_book_sharp" - MENU_OPEN = "menu_open" - MENU_OPEN_OUTLINED = "menu_open_outlined" - MENU_OPEN_ROUNDED = "menu_open_rounded" - MENU_OPEN_SHARP = "menu_open_sharp" - MENU_OUTLINED = "menu_outlined" - MENU_ROUNDED = "menu_rounded" - MENU_SHARP = "menu_sharp" - MERGE = "merge" - MERGE_OUTLINED = "merge_outlined" - MERGE_ROUNDED = "merge_rounded" - MERGE_SHARP = "merge_sharp" - MERGE_TYPE = "merge_type" - MERGE_TYPE_OUTLINED = "merge_type_outlined" - MERGE_TYPE_ROUNDED = "merge_type_rounded" - MERGE_TYPE_SHARP = "merge_type_sharp" - MESSAGE = "message" - MESSAGE_OUTLINED = "message_outlined" - MESSAGE_ROUNDED = "message_rounded" - MESSAGE_SHARP = "message_sharp" - MESSENGER = "messenger" - MESSENGER_OUTLINE = "messenger_outline" - MESSENGER_OUTLINED = "messenger_outlined" - MESSENGER_OUTLINE_OUTLINED = "messenger_outline_outlined" - MESSENGER_OUTLINE_ROUNDED = "messenger_outline_rounded" - MESSENGER_OUTLINE_SHARP = "messenger_outline_sharp" - MESSENGER_ROUNDED = "messenger_rounded" - MESSENGER_SHARP = "messenger_sharp" - MIC = "mic" - MICROWAVE = "microwave" - MICROWAVE_OUTLINED = "microwave_outlined" - MICROWAVE_ROUNDED = "microwave_rounded" - MICROWAVE_SHARP = "microwave_sharp" - MIC_EXTERNAL_OFF = "mic_external_off" - MIC_EXTERNAL_OFF_OUTLINED = "mic_external_off_outlined" - MIC_EXTERNAL_OFF_ROUNDED = "mic_external_off_rounded" - MIC_EXTERNAL_OFF_SHARP = "mic_external_off_sharp" - MIC_EXTERNAL_ON = "mic_external_on" - MIC_EXTERNAL_ON_OUTLINED = "mic_external_on_outlined" - MIC_EXTERNAL_ON_ROUNDED = "mic_external_on_rounded" - MIC_EXTERNAL_ON_SHARP = "mic_external_on_sharp" - MIC_NONE = "mic_none" - MIC_NONE_OUTLINED = "mic_none_outlined" - MIC_NONE_ROUNDED = "mic_none_rounded" - MIC_NONE_SHARP = "mic_none_sharp" - MIC_OFF = "mic_off" - MIC_OFF_OUTLINED = "mic_off_outlined" - MIC_OFF_ROUNDED = "mic_off_rounded" - MIC_OFF_SHARP = "mic_off_sharp" - MIC_OUTLINED = "mic_outlined" - MIC_ROUNDED = "mic_rounded" - MIC_SHARP = "mic_sharp" - MILITARY_TECH = "military_tech" - MILITARY_TECH_OUTLINED = "military_tech_outlined" - MILITARY_TECH_ROUNDED = "military_tech_rounded" - MILITARY_TECH_SHARP = "military_tech_sharp" - MINIMIZE = "minimize" - MINIMIZE_OUTLINED = "minimize_outlined" - MINIMIZE_ROUNDED = "minimize_rounded" - MINIMIZE_SHARP = "minimize_sharp" - MINOR_CRASH = "minor_crash" - MINOR_CRASH_OUTLINED = "minor_crash_outlined" - MINOR_CRASH_ROUNDED = "minor_crash_rounded" - MINOR_CRASH_SHARP = "minor_crash_sharp" - MISCELLANEOUS_SERVICES = "miscellaneous_services" - MISCELLANEOUS_SERVICES_OUTLINED = "miscellaneous_services_outlined" - MISCELLANEOUS_SERVICES_ROUNDED = "miscellaneous_services_rounded" - MISCELLANEOUS_SERVICES_SHARP = "miscellaneous_services_sharp" - MISSED_VIDEO_CALL = "missed_video_call" - MISSED_VIDEO_CALL_OUTLINED = "missed_video_call_outlined" - MISSED_VIDEO_CALL_ROUNDED = "missed_video_call_rounded" - MISSED_VIDEO_CALL_SHARP = "missed_video_call_sharp" - MMS = "mms" - MMS_OUTLINED = "mms_outlined" - MMS_ROUNDED = "mms_rounded" - MMS_SHARP = "mms_sharp" - MOBILEDATA_OFF = "mobiledata_off" - MOBILEDATA_OFF_OUTLINED = "mobiledata_off_outlined" - MOBILEDATA_OFF_ROUNDED = "mobiledata_off_rounded" - MOBILEDATA_OFF_SHARP = "mobiledata_off_sharp" - MOBILE_FRIENDLY = "mobile_friendly" - MOBILE_FRIENDLY_OUTLINED = "mobile_friendly_outlined" - MOBILE_FRIENDLY_ROUNDED = "mobile_friendly_rounded" - MOBILE_FRIENDLY_SHARP = "mobile_friendly_sharp" - MOBILE_OFF = "mobile_off" - MOBILE_OFF_OUTLINED = "mobile_off_outlined" - MOBILE_OFF_ROUNDED = "mobile_off_rounded" - MOBILE_OFF_SHARP = "mobile_off_sharp" - MOBILE_SCREEN_SHARE = "mobile_screen_share" - MOBILE_SCREEN_SHARE_OUTLINED = "mobile_screen_share_outlined" - MOBILE_SCREEN_SHARE_ROUNDED = "mobile_screen_share_rounded" - MOBILE_SCREEN_SHARE_SHARP = "mobile_screen_share_sharp" - MODE = "mode" - MODEL_TRAINING = "model_training" - MODEL_TRAINING_OUTLINED = "model_training_outlined" - MODEL_TRAINING_ROUNDED = "model_training_rounded" - MODEL_TRAINING_SHARP = "model_training_sharp" - MODE_COMMENT = "mode_comment" - MODE_COMMENT_OUTLINED = "mode_comment_outlined" - MODE_COMMENT_ROUNDED = "mode_comment_rounded" - MODE_COMMENT_SHARP = "mode_comment_sharp" - MODE_EDIT = "mode_edit" - MODE_EDIT_OUTLINE = "mode_edit_outline" - MODE_EDIT_OUTLINED = "mode_edit_outlined" - MODE_EDIT_OUTLINE_OUTLINED = "mode_edit_outline_outlined" - MODE_EDIT_OUTLINE_ROUNDED = "mode_edit_outline_rounded" - MODE_EDIT_OUTLINE_SHARP = "mode_edit_outline_sharp" - MODE_EDIT_ROUNDED = "mode_edit_rounded" - MODE_EDIT_SHARP = "mode_edit_sharp" - MODE_FAN_OFF = "mode_fan_off" - MODE_FAN_OFF_OUTLINED = "mode_fan_off_outlined" - MODE_FAN_OFF_ROUNDED = "mode_fan_off_rounded" - MODE_FAN_OFF_SHARP = "mode_fan_off_sharp" - MODE_NIGHT = "mode_night" - MODE_NIGHT_OUTLINED = "mode_night_outlined" - MODE_NIGHT_ROUNDED = "mode_night_rounded" - MODE_NIGHT_SHARP = "mode_night_sharp" - MODE_OF_TRAVEL = "mode_of_travel" - MODE_OF_TRAVEL_OUTLINED = "mode_of_travel_outlined" - MODE_OF_TRAVEL_ROUNDED = "mode_of_travel_rounded" - MODE_OF_TRAVEL_SHARP = "mode_of_travel_sharp" - MODE_OUTLINED = "mode_outlined" - MODE_ROUNDED = "mode_rounded" - MODE_SHARP = "mode_sharp" - MODE_STANDBY = "mode_standby" - MODE_STANDBY_OUTLINED = "mode_standby_outlined" - MODE_STANDBY_ROUNDED = "mode_standby_rounded" - MODE_STANDBY_SHARP = "mode_standby_sharp" - MONETIZATION_ON = "monetization_on" - MONETIZATION_ON_OUTLINED = "monetization_on_outlined" - MONETIZATION_ON_ROUNDED = "monetization_on_rounded" - MONETIZATION_ON_SHARP = "monetization_on_sharp" - MONEY = "money" - MONEY_OFF = "money_off" - MONEY_OFF_CSRED = "money_off_csred" - MONEY_OFF_CSRED_OUTLINED = "money_off_csred_outlined" - MONEY_OFF_CSRED_ROUNDED = "money_off_csred_rounded" - MONEY_OFF_CSRED_SHARP = "money_off_csred_sharp" - MONEY_OFF_OUTLINED = "money_off_outlined" - MONEY_OFF_ROUNDED = "money_off_rounded" - MONEY_OFF_SHARP = "money_off_sharp" - MONEY_OUTLINED = "money_outlined" - MONEY_ROUNDED = "money_rounded" - MONEY_SHARP = "money_sharp" - MONITOR = "monitor" - MONITOR_HEART = "monitor_heart" - MONITOR_HEART_OUTLINED = "monitor_heart_outlined" - MONITOR_HEART_ROUNDED = "monitor_heart_rounded" - MONITOR_HEART_SHARP = "monitor_heart_sharp" - MONITOR_OUTLINED = "monitor_outlined" - MONITOR_ROUNDED = "monitor_rounded" - MONITOR_SHARP = "monitor_sharp" - MONITOR_WEIGHT = "monitor_weight" - MONITOR_WEIGHT_OUTLINED = "monitor_weight_outlined" - MONITOR_WEIGHT_ROUNDED = "monitor_weight_rounded" - MONITOR_WEIGHT_SHARP = "monitor_weight_sharp" - MONOCHROME_PHOTOS = "monochrome_photos" - MONOCHROME_PHOTOS_OUTLINED = "monochrome_photos_outlined" - MONOCHROME_PHOTOS_ROUNDED = "monochrome_photos_rounded" - MONOCHROME_PHOTOS_SHARP = "monochrome_photos_sharp" - MOOD = "mood" - MOOD_BAD = "mood_bad" - MOOD_BAD_OUTLINED = "mood_bad_outlined" - MOOD_BAD_ROUNDED = "mood_bad_rounded" - MOOD_BAD_SHARP = "mood_bad_sharp" - MOOD_OUTLINED = "mood_outlined" - MOOD_ROUNDED = "mood_rounded" - MOOD_SHARP = "mood_sharp" - MOPED = "moped" - MOPED_OUTLINED = "moped_outlined" - MOPED_ROUNDED = "moped_rounded" - MOPED_SHARP = "moped_sharp" - MORE = "more" - MORE_HORIZ = "more_horiz" - MORE_HORIZ_OUTLINED = "more_horiz_outlined" - MORE_HORIZ_ROUNDED = "more_horiz_rounded" - MORE_HORIZ_SHARP = "more_horiz_sharp" - MORE_OUTLINED = "more_outlined" - MORE_ROUNDED = "more_rounded" - MORE_SHARP = "more_sharp" - MORE_TIME = "more_time" - MORE_TIME_OUTLINED = "more_time_outlined" - MORE_TIME_ROUNDED = "more_time_rounded" - MORE_TIME_SHARP = "more_time_sharp" - MORE_VERT = "more_vert" - MORE_VERT_OUTLINED = "more_vert_outlined" - MORE_VERT_ROUNDED = "more_vert_rounded" - MORE_VERT_SHARP = "more_vert_sharp" - MOSQUE = "mosque" - MOSQUE_OUTLINED = "mosque_outlined" - MOSQUE_ROUNDED = "mosque_rounded" - MOSQUE_SHARP = "mosque_sharp" - MOTION_PHOTOS_AUTO = "motion_photos_auto" - MOTION_PHOTOS_AUTO_OUTLINED = "motion_photos_auto_outlined" - MOTION_PHOTOS_AUTO_ROUNDED = "motion_photos_auto_rounded" - MOTION_PHOTOS_AUTO_SHARP = "motion_photos_auto_sharp" - MOTION_PHOTOS_OFF = "motion_photos_off" - MOTION_PHOTOS_OFF_OUTLINED = "motion_photos_off_outlined" - MOTION_PHOTOS_OFF_ROUNDED = "motion_photos_off_rounded" - MOTION_PHOTOS_OFF_SHARP = "motion_photos_off_sharp" - MOTION_PHOTOS_ON = "motion_photos_on" - MOTION_PHOTOS_ON_OUTLINED = "motion_photos_on_outlined" - MOTION_PHOTOS_ON_ROUNDED = "motion_photos_on_rounded" - MOTION_PHOTOS_ON_SHARP = "motion_photos_on_sharp" - MOTION_PHOTOS_PAUSE = "motion_photos_pause" - MOTION_PHOTOS_PAUSED = "motion_photos_paused" - MOTION_PHOTOS_PAUSED_OUTLINED = "motion_photos_paused_outlined" - MOTION_PHOTOS_PAUSED_ROUNDED = "motion_photos_paused_rounded" - MOTION_PHOTOS_PAUSED_SHARP = "motion_photos_paused_sharp" - MOTION_PHOTOS_PAUSE_OUTLINED = "motion_photos_pause_outlined" - MOTION_PHOTOS_PAUSE_ROUNDED = "motion_photos_pause_rounded" - MOTION_PHOTOS_PAUSE_SHARP = "motion_photos_pause_sharp" - MOTORCYCLE = "motorcycle" - MOTORCYCLE_OUTLINED = "motorcycle_outlined" - MOTORCYCLE_ROUNDED = "motorcycle_rounded" - MOTORCYCLE_SHARP = "motorcycle_sharp" - MOUSE = "mouse" - MOUSE_OUTLINED = "mouse_outlined" - MOUSE_ROUNDED = "mouse_rounded" - MOUSE_SHARP = "mouse_sharp" - MOVE_DOWN = "move_down" - MOVE_DOWN_OUTLINED = "move_down_outlined" - MOVE_DOWN_ROUNDED = "move_down_rounded" - MOVE_DOWN_SHARP = "move_down_sharp" - MOVE_TO_INBOX = "move_to_inbox" - MOVE_TO_INBOX_OUTLINED = "move_to_inbox_outlined" - MOVE_TO_INBOX_ROUNDED = "move_to_inbox_rounded" - MOVE_TO_INBOX_SHARP = "move_to_inbox_sharp" - MOVE_UP = "move_up" - MOVE_UP_OUTLINED = "move_up_outlined" - MOVE_UP_ROUNDED = "move_up_rounded" - MOVE_UP_SHARP = "move_up_sharp" - MOVIE = "movie" - MOVIE_CREATION = "movie_creation" - MOVIE_CREATION_OUTLINED = "movie_creation_outlined" - MOVIE_CREATION_ROUNDED = "movie_creation_rounded" - MOVIE_CREATION_SHARP = "movie_creation_sharp" - MOVIE_EDIT = "movie_edit" - MOVIE_FILTER = "movie_filter" - MOVIE_FILTER_OUTLINED = "movie_filter_outlined" - MOVIE_FILTER_ROUNDED = "movie_filter_rounded" - MOVIE_FILTER_SHARP = "movie_filter_sharp" - MOVIE_OUTLINED = "movie_outlined" - MOVIE_ROUNDED = "movie_rounded" - MOVIE_SHARP = "movie_sharp" - MOVING = "moving" - MOVING_OUTLINED = "moving_outlined" - MOVING_ROUNDED = "moving_rounded" - MOVING_SHARP = "moving_sharp" - MP = "mp" - MP_OUTLINED = "mp_outlined" - MP_ROUNDED = "mp_rounded" - MP_SHARP = "mp_sharp" - MULTILINE_CHART = "multiline_chart" - MULTILINE_CHART_OUTLINED = "multiline_chart_outlined" - MULTILINE_CHART_ROUNDED = "multiline_chart_rounded" - MULTILINE_CHART_SHARP = "multiline_chart_sharp" - MULTIPLE_STOP = "multiple_stop" - MULTIPLE_STOP_OUTLINED = "multiple_stop_outlined" - MULTIPLE_STOP_ROUNDED = "multiple_stop_rounded" - MULTIPLE_STOP_SHARP = "multiple_stop_sharp" - MULTITRACK_AUDIO = "multitrack_audio" - MULTITRACK_AUDIO_OUTLINED = "multitrack_audio_outlined" - MULTITRACK_AUDIO_ROUNDED = "multitrack_audio_rounded" - MULTITRACK_AUDIO_SHARP = "multitrack_audio_sharp" - MUSEUM = "museum" - MUSEUM_OUTLINED = "museum_outlined" - MUSEUM_ROUNDED = "museum_rounded" - MUSEUM_SHARP = "museum_sharp" - MUSIC_NOTE = "music_note" - MUSIC_NOTE_OUTLINED = "music_note_outlined" - MUSIC_NOTE_ROUNDED = "music_note_rounded" - MUSIC_NOTE_SHARP = "music_note_sharp" - MUSIC_OFF = "music_off" - MUSIC_OFF_OUTLINED = "music_off_outlined" - MUSIC_OFF_ROUNDED = "music_off_rounded" - MUSIC_OFF_SHARP = "music_off_sharp" - MUSIC_VIDEO = "music_video" - MUSIC_VIDEO_OUTLINED = "music_video_outlined" - MUSIC_VIDEO_ROUNDED = "music_video_rounded" - MUSIC_VIDEO_SHARP = "music_video_sharp" - MY_LIBRARY_ADD = "my_library_add" - MY_LIBRARY_ADD_OUTLINED = "my_library_add_outlined" - MY_LIBRARY_ADD_ROUNDED = "my_library_add_rounded" - MY_LIBRARY_ADD_SHARP = "my_library_add_sharp" - MY_LIBRARY_BOOKS = "my_library_books" - MY_LIBRARY_BOOKS_OUTLINED = "my_library_books_outlined" - MY_LIBRARY_BOOKS_ROUNDED = "my_library_books_rounded" - MY_LIBRARY_BOOKS_SHARP = "my_library_books_sharp" - MY_LIBRARY_MUSIC = "my_library_music" - MY_LIBRARY_MUSIC_OUTLINED = "my_library_music_outlined" - MY_LIBRARY_MUSIC_ROUNDED = "my_library_music_rounded" - MY_LIBRARY_MUSIC_SHARP = "my_library_music_sharp" - MY_LOCATION = "my_location" - MY_LOCATION_OUTLINED = "my_location_outlined" - MY_LOCATION_ROUNDED = "my_location_rounded" - MY_LOCATION_SHARP = "my_location_sharp" - NAT = "nat" - NATURE = "nature" - NATURE_OUTLINED = "nature_outlined" - NATURE_PEOPLE = "nature_people" - NATURE_PEOPLE_OUTLINED = "nature_people_outlined" - NATURE_PEOPLE_ROUNDED = "nature_people_rounded" - NATURE_PEOPLE_SHARP = "nature_people_sharp" - NATURE_ROUNDED = "nature_rounded" - NATURE_SHARP = "nature_sharp" - NAT_OUTLINED = "nat_outlined" - NAT_ROUNDED = "nat_rounded" - NAT_SHARP = "nat_sharp" - NAVIGATE_BEFORE = "navigate_before" - NAVIGATE_BEFORE_OUTLINED = "navigate_before_outlined" - NAVIGATE_BEFORE_ROUNDED = "navigate_before_rounded" - NAVIGATE_BEFORE_SHARP = "navigate_before_sharp" - NAVIGATE_NEXT = "navigate_next" - NAVIGATE_NEXT_OUTLINED = "navigate_next_outlined" - NAVIGATE_NEXT_ROUNDED = "navigate_next_rounded" - NAVIGATE_NEXT_SHARP = "navigate_next_sharp" - NAVIGATION = "navigation" - NAVIGATION_OUTLINED = "navigation_outlined" - NAVIGATION_ROUNDED = "navigation_rounded" - NAVIGATION_SHARP = "navigation_sharp" - NEARBY_ERROR = "nearby_error" - NEARBY_ERROR_OUTLINED = "nearby_error_outlined" - NEARBY_ERROR_ROUNDED = "nearby_error_rounded" - NEARBY_ERROR_SHARP = "nearby_error_sharp" - NEARBY_OFF = "nearby_off" - NEARBY_OFF_OUTLINED = "nearby_off_outlined" - NEARBY_OFF_ROUNDED = "nearby_off_rounded" - NEARBY_OFF_SHARP = "nearby_off_sharp" - NEAR_ME = "near_me" - NEAR_ME_DISABLED = "near_me_disabled" - NEAR_ME_DISABLED_OUTLINED = "near_me_disabled_outlined" - NEAR_ME_DISABLED_ROUNDED = "near_me_disabled_rounded" - NEAR_ME_DISABLED_SHARP = "near_me_disabled_sharp" - NEAR_ME_OUTLINED = "near_me_outlined" - NEAR_ME_ROUNDED = "near_me_rounded" - NEAR_ME_SHARP = "near_me_sharp" - NEST_CAM_WIRED_STAND = "nest_cam_wired_stand" - NEST_CAM_WIRED_STAND_OUTLINED = "nest_cam_wired_stand_outlined" - NEST_CAM_WIRED_STAND_ROUNDED = "nest_cam_wired_stand_rounded" - NEST_CAM_WIRED_STAND_SHARP = "nest_cam_wired_stand_sharp" - NETWORK_CELL = "network_cell" - NETWORK_CELL_OUTLINED = "network_cell_outlined" - NETWORK_CELL_ROUNDED = "network_cell_rounded" - NETWORK_CELL_SHARP = "network_cell_sharp" - NETWORK_CHECK = "network_check" - NETWORK_CHECK_OUTLINED = "network_check_outlined" - NETWORK_CHECK_ROUNDED = "network_check_rounded" - NETWORK_CHECK_SHARP = "network_check_sharp" - NETWORK_LOCKED = "network_locked" - NETWORK_LOCKED_OUTLINED = "network_locked_outlined" - NETWORK_LOCKED_ROUNDED = "network_locked_rounded" - NETWORK_LOCKED_SHARP = "network_locked_sharp" - NETWORK_PING = "network_ping" - NETWORK_PING_OUTLINED = "network_ping_outlined" - NETWORK_PING_ROUNDED = "network_ping_rounded" - NETWORK_PING_SHARP = "network_ping_sharp" - NETWORK_WIFI = "network_wifi" - NETWORK_WIFI_1_BAR = "network_wifi_1_bar" - NETWORK_WIFI_1_BAR_OUTLINED = "network_wifi_1_bar_outlined" - NETWORK_WIFI_1_BAR_ROUNDED = "network_wifi_1_bar_rounded" - NETWORK_WIFI_1_BAR_SHARP = "network_wifi_1_bar_sharp" - NETWORK_WIFI_2_BAR = "network_wifi_2_bar" - NETWORK_WIFI_2_BAR_OUTLINED = "network_wifi_2_bar_outlined" - NETWORK_WIFI_2_BAR_ROUNDED = "network_wifi_2_bar_rounded" - NETWORK_WIFI_2_BAR_SHARP = "network_wifi_2_bar_sharp" - NETWORK_WIFI_3_BAR = "network_wifi_3_bar" - NETWORK_WIFI_3_BAR_OUTLINED = "network_wifi_3_bar_outlined" - NETWORK_WIFI_3_BAR_ROUNDED = "network_wifi_3_bar_rounded" - NETWORK_WIFI_3_BAR_SHARP = "network_wifi_3_bar_sharp" - NETWORK_WIFI_OUTLINED = "network_wifi_outlined" - NETWORK_WIFI_ROUNDED = "network_wifi_rounded" - NETWORK_WIFI_SHARP = "network_wifi_sharp" - NEWSPAPER = "newspaper" - NEWSPAPER_OUTLINED = "newspaper_outlined" - NEWSPAPER_ROUNDED = "newspaper_rounded" - NEWSPAPER_SHARP = "newspaper_sharp" - NEW_LABEL = "new_label" - NEW_LABEL_OUTLINED = "new_label_outlined" - NEW_LABEL_ROUNDED = "new_label_rounded" - NEW_LABEL_SHARP = "new_label_sharp" - NEW_RELEASES = "new_releases" - NEW_RELEASES_OUTLINED = "new_releases_outlined" - NEW_RELEASES_ROUNDED = "new_releases_rounded" - NEW_RELEASES_SHARP = "new_releases_sharp" - NEXT_PLAN = "next_plan" - NEXT_PLAN_OUTLINED = "next_plan_outlined" - NEXT_PLAN_ROUNDED = "next_plan_rounded" - NEXT_PLAN_SHARP = "next_plan_sharp" - NEXT_WEEK = "next_week" - NEXT_WEEK_OUTLINED = "next_week_outlined" - NEXT_WEEK_ROUNDED = "next_week_rounded" - NEXT_WEEK_SHARP = "next_week_sharp" - NFC = "nfc" - NFC_OUTLINED = "nfc_outlined" - NFC_ROUNDED = "nfc_rounded" - NFC_SHARP = "nfc_sharp" - NIGHTLIFE = "nightlife" - NIGHTLIFE_OUTLINED = "nightlife_outlined" - NIGHTLIFE_ROUNDED = "nightlife_rounded" - NIGHTLIFE_SHARP = "nightlife_sharp" - NIGHTLIGHT = "nightlight" - NIGHTLIGHT_OUTLINED = "nightlight_outlined" - NIGHTLIGHT_ROUND = "nightlight_round" - NIGHTLIGHT_ROUNDED = "nightlight_rounded" - NIGHTLIGHT_ROUND_OUTLINED = "nightlight_round_outlined" - NIGHTLIGHT_ROUND_ROUNDED = "nightlight_round_rounded" - NIGHTLIGHT_ROUND_SHARP = "nightlight_round_sharp" - NIGHTLIGHT_SHARP = "nightlight_sharp" - NIGHTS_STAY = "nights_stay" - NIGHTS_STAY_OUTLINED = "nights_stay_outlined" - NIGHTS_STAY_ROUNDED = "nights_stay_rounded" - NIGHTS_STAY_SHARP = "nights_stay_sharp" - NIGHT_SHELTER = "night_shelter" - NIGHT_SHELTER_OUTLINED = "night_shelter_outlined" - NIGHT_SHELTER_ROUNDED = "night_shelter_rounded" - NIGHT_SHELTER_SHARP = "night_shelter_sharp" - NINETEEN_MP = "nineteen_mp" - NINETEEN_MP_OUTLINED = "nineteen_mp_outlined" - NINETEEN_MP_ROUNDED = "nineteen_mp_rounded" - NINETEEN_MP_SHARP = "nineteen_mp_sharp" - NINE_K = "nine_k" - NINE_K_OUTLINED = "nine_k_outlined" - NINE_K_PLUS = "nine_k_plus" - NINE_K_PLUS_OUTLINED = "nine_k_plus_outlined" - NINE_K_PLUS_ROUNDED = "nine_k_plus_rounded" - NINE_K_PLUS_SHARP = "nine_k_plus_sharp" - NINE_K_ROUNDED = "nine_k_rounded" - NINE_K_SHARP = "nine_k_sharp" - NINE_MP = "nine_mp" - NINE_MP_OUTLINED = "nine_mp_outlined" - NINE_MP_ROUNDED = "nine_mp_rounded" - NINE_MP_SHARP = "nine_mp_sharp" - NOISE_AWARE = "noise_aware" - NOISE_AWARE_OUTLINED = "noise_aware_outlined" - NOISE_AWARE_ROUNDED = "noise_aware_rounded" - NOISE_AWARE_SHARP = "noise_aware_sharp" - NOISE_CONTROL_OFF = "noise_control_off" - NOISE_CONTROL_OFF_OUTLINED = "noise_control_off_outlined" - NOISE_CONTROL_OFF_ROUNDED = "noise_control_off_rounded" - NOISE_CONTROL_OFF_SHARP = "noise_control_off_sharp" - NORDIC_WALKING = "nordic_walking" - NORDIC_WALKING_OUTLINED = "nordic_walking_outlined" - NORDIC_WALKING_ROUNDED = "nordic_walking_rounded" - NORDIC_WALKING_SHARP = "nordic_walking_sharp" - NORTH = "north" - NORTH_EAST = "north_east" - NORTH_EAST_OUTLINED = "north_east_outlined" - NORTH_EAST_ROUNDED = "north_east_rounded" - NORTH_EAST_SHARP = "north_east_sharp" - NORTH_OUTLINED = "north_outlined" - NORTH_ROUNDED = "north_rounded" - NORTH_SHARP = "north_sharp" - NORTH_WEST = "north_west" - NORTH_WEST_OUTLINED = "north_west_outlined" - NORTH_WEST_ROUNDED = "north_west_rounded" - NORTH_WEST_SHARP = "north_west_sharp" - NOTE = "note" - NOTES = "notes" - NOTES_OUTLINED = "notes_outlined" - NOTES_ROUNDED = "notes_rounded" - NOTES_SHARP = "notes_sharp" - NOTE_ADD = "note_add" - NOTE_ADD_OUTLINED = "note_add_outlined" - NOTE_ADD_ROUNDED = "note_add_rounded" - NOTE_ADD_SHARP = "note_add_sharp" - NOTE_ALT = "note_alt" - NOTE_ALT_OUTLINED = "note_alt_outlined" - NOTE_ALT_ROUNDED = "note_alt_rounded" - NOTE_ALT_SHARP = "note_alt_sharp" - NOTE_OUTLINED = "note_outlined" - NOTE_ROUNDED = "note_rounded" - NOTE_SHARP = "note_sharp" - NOTIFICATIONS = "notifications" - NOTIFICATIONS_ACTIVE = "notifications_active" - NOTIFICATIONS_ACTIVE_OUTLINED = "notifications_active_outlined" - NOTIFICATIONS_ACTIVE_ROUNDED = "notifications_active_rounded" - NOTIFICATIONS_ACTIVE_SHARP = "notifications_active_sharp" - NOTIFICATIONS_NONE = "notifications_none" - NOTIFICATIONS_NONE_OUTLINED = "notifications_none_outlined" - NOTIFICATIONS_NONE_ROUNDED = "notifications_none_rounded" - NOTIFICATIONS_NONE_SHARP = "notifications_none_sharp" - NOTIFICATIONS_OFF = "notifications_off" - NOTIFICATIONS_OFF_OUTLINED = "notifications_off_outlined" - NOTIFICATIONS_OFF_ROUNDED = "notifications_off_rounded" - NOTIFICATIONS_OFF_SHARP = "notifications_off_sharp" - NOTIFICATIONS_ON = "notifications_on" - NOTIFICATIONS_ON_OUTLINED = "notifications_on_outlined" - NOTIFICATIONS_ON_ROUNDED = "notifications_on_rounded" - NOTIFICATIONS_ON_SHARP = "notifications_on_sharp" - NOTIFICATIONS_OUTLINED = "notifications_outlined" - NOTIFICATIONS_PAUSED = "notifications_paused" - NOTIFICATIONS_PAUSED_OUTLINED = "notifications_paused_outlined" - NOTIFICATIONS_PAUSED_ROUNDED = "notifications_paused_rounded" - NOTIFICATIONS_PAUSED_SHARP = "notifications_paused_sharp" - NOTIFICATIONS_ROUNDED = "notifications_rounded" - NOTIFICATIONS_SHARP = "notifications_sharp" - NOTIFICATION_ADD = "notification_add" - NOTIFICATION_ADD_OUTLINED = "notification_add_outlined" - NOTIFICATION_ADD_ROUNDED = "notification_add_rounded" - NOTIFICATION_ADD_SHARP = "notification_add_sharp" - NOTIFICATION_IMPORTANT = "notification_important" - NOTIFICATION_IMPORTANT_OUTLINED = "notification_important_outlined" - NOTIFICATION_IMPORTANT_ROUNDED = "notification_important_rounded" - NOTIFICATION_IMPORTANT_SHARP = "notification_important_sharp" - NOT_ACCESSIBLE = "not_accessible" - NOT_ACCESSIBLE_OUTLINED = "not_accessible_outlined" - NOT_ACCESSIBLE_ROUNDED = "not_accessible_rounded" - NOT_ACCESSIBLE_SHARP = "not_accessible_sharp" - NOT_INTERESTED = "not_interested" - NOT_INTERESTED_OUTLINED = "not_interested_outlined" - NOT_INTERESTED_ROUNDED = "not_interested_rounded" - NOT_INTERESTED_SHARP = "not_interested_sharp" - NOT_LISTED_LOCATION = "not_listed_location" - NOT_LISTED_LOCATION_OUTLINED = "not_listed_location_outlined" - NOT_LISTED_LOCATION_ROUNDED = "not_listed_location_rounded" - NOT_LISTED_LOCATION_SHARP = "not_listed_location_sharp" - NOT_STARTED = "not_started" - NOT_STARTED_OUTLINED = "not_started_outlined" - NOT_STARTED_ROUNDED = "not_started_rounded" - NOT_STARTED_SHARP = "not_started_sharp" - NOW_WALLPAPER = "now_wallpaper" - NOW_WALLPAPER_OUTLINED = "now_wallpaper_outlined" - NOW_WALLPAPER_ROUNDED = "now_wallpaper_rounded" - NOW_WALLPAPER_SHARP = "now_wallpaper_sharp" - NOW_WIDGETS = "now_widgets" - NOW_WIDGETS_OUTLINED = "now_widgets_outlined" - NOW_WIDGETS_ROUNDED = "now_widgets_rounded" - NOW_WIDGETS_SHARP = "now_widgets_sharp" - NO_ACCOUNTS = "no_accounts" - NO_ACCOUNTS_OUTLINED = "no_accounts_outlined" - NO_ACCOUNTS_ROUNDED = "no_accounts_rounded" - NO_ACCOUNTS_SHARP = "no_accounts_sharp" - NO_ADULT_CONTENT = "no_adult_content" - NO_ADULT_CONTENT_OUTLINED = "no_adult_content_outlined" - NO_ADULT_CONTENT_ROUNDED = "no_adult_content_rounded" - NO_ADULT_CONTENT_SHARP = "no_adult_content_sharp" - NO_BACKPACK = "no_backpack" - NO_BACKPACK_OUTLINED = "no_backpack_outlined" - NO_BACKPACK_ROUNDED = "no_backpack_rounded" - NO_BACKPACK_SHARP = "no_backpack_sharp" - NO_CELL = "no_cell" - NO_CELL_OUTLINED = "no_cell_outlined" - NO_CELL_ROUNDED = "no_cell_rounded" - NO_CELL_SHARP = "no_cell_sharp" - NO_CRASH = "no_crash" - NO_CRASH_OUTLINED = "no_crash_outlined" - NO_CRASH_ROUNDED = "no_crash_rounded" - NO_CRASH_SHARP = "no_crash_sharp" - NO_DRINKS = "no_drinks" - NO_DRINKS_OUTLINED = "no_drinks_outlined" - NO_DRINKS_ROUNDED = "no_drinks_rounded" - NO_DRINKS_SHARP = "no_drinks_sharp" - NO_ENCRYPTION = "no_encryption" - NO_ENCRYPTION_GMAILERRORRED = "no_encryption_gmailerrorred" - NO_ENCRYPTION_GMAILERRORRED_OUTLINED = "no_encryption_gmailerrorred_outlined" - NO_ENCRYPTION_GMAILERRORRED_ROUNDED = "no_encryption_gmailerrorred_rounded" - NO_ENCRYPTION_GMAILERRORRED_SHARP = "no_encryption_gmailerrorred_sharp" - NO_ENCRYPTION_OUTLINED = "no_encryption_outlined" - NO_ENCRYPTION_ROUNDED = "no_encryption_rounded" - NO_ENCRYPTION_SHARP = "no_encryption_sharp" - NO_FLASH = "no_flash" - NO_FLASH_OUTLINED = "no_flash_outlined" - NO_FLASH_ROUNDED = "no_flash_rounded" - NO_FLASH_SHARP = "no_flash_sharp" - NO_FOOD = "no_food" - NO_FOOD_OUTLINED = "no_food_outlined" - NO_FOOD_ROUNDED = "no_food_rounded" - NO_FOOD_SHARP = "no_food_sharp" - NO_LUGGAGE = "no_luggage" - NO_LUGGAGE_OUTLINED = "no_luggage_outlined" - NO_LUGGAGE_ROUNDED = "no_luggage_rounded" - NO_LUGGAGE_SHARP = "no_luggage_sharp" - NO_MEALS = "no_meals" - NO_MEALS_OULINE = "no_meals_ouline" - NO_MEALS_OUTLINED = "no_meals_outlined" - NO_MEALS_ROUNDED = "no_meals_rounded" - NO_MEALS_SHARP = "no_meals_sharp" - NO_MEETING_ROOM = "no_meeting_room" - NO_MEETING_ROOM_OUTLINED = "no_meeting_room_outlined" - NO_MEETING_ROOM_ROUNDED = "no_meeting_room_rounded" - NO_MEETING_ROOM_SHARP = "no_meeting_room_sharp" - NO_PHOTOGRAPHY = "no_photography" - NO_PHOTOGRAPHY_OUTLINED = "no_photography_outlined" - NO_PHOTOGRAPHY_ROUNDED = "no_photography_rounded" - NO_PHOTOGRAPHY_SHARP = "no_photography_sharp" - NO_SIM = "no_sim" - NO_SIM_OUTLINED = "no_sim_outlined" - NO_SIM_ROUNDED = "no_sim_rounded" - NO_SIM_SHARP = "no_sim_sharp" - NO_STROLLER = "no_stroller" - NO_STROLLER_OUTLINED = "no_stroller_outlined" - NO_STROLLER_ROUNDED = "no_stroller_rounded" - NO_STROLLER_SHARP = "no_stroller_sharp" - NO_TRANSFER = "no_transfer" - NO_TRANSFER_OUTLINED = "no_transfer_outlined" - NO_TRANSFER_ROUNDED = "no_transfer_rounded" - NO_TRANSFER_SHARP = "no_transfer_sharp" - NUMBERS = "numbers" - NUMBERS_OUTLINED = "numbers_outlined" - NUMBERS_ROUNDED = "numbers_rounded" - NUMBERS_SHARP = "numbers_sharp" - OFFLINE_BOLT = "offline_bolt" - OFFLINE_BOLT_OUTLINED = "offline_bolt_outlined" - OFFLINE_BOLT_ROUNDED = "offline_bolt_rounded" - OFFLINE_BOLT_SHARP = "offline_bolt_sharp" - OFFLINE_PIN = "offline_pin" - OFFLINE_PIN_OUTLINED = "offline_pin_outlined" - OFFLINE_PIN_ROUNDED = "offline_pin_rounded" - OFFLINE_PIN_SHARP = "offline_pin_sharp" - OFFLINE_SHARE = "offline_share" - OFFLINE_SHARE_OUTLINED = "offline_share_outlined" - OFFLINE_SHARE_ROUNDED = "offline_share_rounded" - OFFLINE_SHARE_SHARP = "offline_share_sharp" - OIL_BARREL = "oil_barrel" - OIL_BARREL_OUTLINED = "oil_barrel_outlined" - OIL_BARREL_ROUNDED = "oil_barrel_rounded" - OIL_BARREL_SHARP = "oil_barrel_sharp" - ONDEMAND_VIDEO = "ondemand_video" - ONDEMAND_VIDEO_OUTLINED = "ondemand_video_outlined" - ONDEMAND_VIDEO_ROUNDED = "ondemand_video_rounded" - ONDEMAND_VIDEO_SHARP = "ondemand_video_sharp" - ONETWOTHREE = "onetwothree" - ONETWOTHREE_OUTLINED = "onetwothree_outlined" - ONETWOTHREE_ROUNDED = "onetwothree_rounded" - ONETWOTHREE_SHARP = "onetwothree_sharp" - ONE_K = "one_k" - ONE_K_OUTLINED = "one_k_outlined" - ONE_K_PLUS = "one_k_plus" - ONE_K_PLUS_OUTLINED = "one_k_plus_outlined" - ONE_K_PLUS_ROUNDED = "one_k_plus_rounded" - ONE_K_PLUS_SHARP = "one_k_plus_sharp" - ONE_K_ROUNDED = "one_k_rounded" - ONE_K_SHARP = "one_k_sharp" - ONE_X_MOBILEDATA = "one_x_mobiledata" - ONE_X_MOBILEDATA_OUTLINED = "one_x_mobiledata_outlined" - ONE_X_MOBILEDATA_ROUNDED = "one_x_mobiledata_rounded" - ONE_X_MOBILEDATA_SHARP = "one_x_mobiledata_sharp" - ONLINE_PREDICTION = "online_prediction" - ONLINE_PREDICTION_OUTLINED = "online_prediction_outlined" - ONLINE_PREDICTION_ROUNDED = "online_prediction_rounded" - ONLINE_PREDICTION_SHARP = "online_prediction_sharp" - ON_DEVICE_TRAINING = "on_device_training" - ON_DEVICE_TRAINING_OUTLINED = "on_device_training_outlined" - ON_DEVICE_TRAINING_ROUNDED = "on_device_training_rounded" - ON_DEVICE_TRAINING_SHARP = "on_device_training_sharp" - OPACITY = "opacity" - OPACITY_OUTLINED = "opacity_outlined" - OPACITY_ROUNDED = "opacity_rounded" - OPACITY_SHARP = "opacity_sharp" - OPEN_IN_BROWSER = "open_in_browser" - OPEN_IN_BROWSER_OUTLINED = "open_in_browser_outlined" - OPEN_IN_BROWSER_ROUNDED = "open_in_browser_rounded" - OPEN_IN_BROWSER_SHARP = "open_in_browser_sharp" - OPEN_IN_FULL = "open_in_full" - OPEN_IN_FULL_OUTLINED = "open_in_full_outlined" - OPEN_IN_FULL_ROUNDED = "open_in_full_rounded" - OPEN_IN_FULL_SHARP = "open_in_full_sharp" - OPEN_IN_NEW = "open_in_new" - OPEN_IN_NEW_OFF = "open_in_new_off" - OPEN_IN_NEW_OFF_OUTLINED = "open_in_new_off_outlined" - OPEN_IN_NEW_OFF_ROUNDED = "open_in_new_off_rounded" - OPEN_IN_NEW_OFF_SHARP = "open_in_new_off_sharp" - OPEN_IN_NEW_OUTLINED = "open_in_new_outlined" - OPEN_IN_NEW_ROUNDED = "open_in_new_rounded" - OPEN_IN_NEW_SHARP = "open_in_new_sharp" - OPEN_WITH = "open_with" - OPEN_WITH_OUTLINED = "open_with_outlined" - OPEN_WITH_ROUNDED = "open_with_rounded" - OPEN_WITH_SHARP = "open_with_sharp" - OTHER_HOUSES = "other_houses" - OTHER_HOUSES_OUTLINED = "other_houses_outlined" - OTHER_HOUSES_ROUNDED = "other_houses_rounded" - OTHER_HOUSES_SHARP = "other_houses_sharp" - OUTBOND = "outbond" - OUTBOND_OUTLINED = "outbond_outlined" - OUTBOND_ROUNDED = "outbond_rounded" - OUTBOND_SHARP = "outbond_sharp" - OUTBOUND = "outbound" - OUTBOUND_OUTLINED = "outbound_outlined" - OUTBOUND_ROUNDED = "outbound_rounded" - OUTBOUND_SHARP = "outbound_sharp" - OUTBOX = "outbox" - OUTBOX_OUTLINED = "outbox_outlined" - OUTBOX_ROUNDED = "outbox_rounded" - OUTBOX_SHARP = "outbox_sharp" - OUTDOOR_GRILL = "outdoor_grill" - OUTDOOR_GRILL_OUTLINED = "outdoor_grill_outlined" - OUTDOOR_GRILL_ROUNDED = "outdoor_grill_rounded" - OUTDOOR_GRILL_SHARP = "outdoor_grill_sharp" - OUTGOING_MAIL = "outgoing_mail" - OUTLET = "outlet" - OUTLET_OUTLINED = "outlet_outlined" - OUTLET_ROUNDED = "outlet_rounded" - OUTLET_SHARP = "outlet_sharp" - OUTLINED_FLAG = "outlined_flag" - OUTLINED_FLAG_OUTLINED = "outlined_flag_outlined" - OUTLINED_FLAG_ROUNDED = "outlined_flag_rounded" - OUTLINED_FLAG_SHARP = "outlined_flag_sharp" - OUTPUT = "output" - OUTPUT_OUTLINED = "output_outlined" - OUTPUT_ROUNDED = "output_rounded" - OUTPUT_SHARP = "output_sharp" - PADDING = "padding" - PADDING_OUTLINED = "padding_outlined" - PADDING_ROUNDED = "padding_rounded" - PADDING_SHARP = "padding_sharp" - PAGES = "pages" - PAGES_OUTLINED = "pages_outlined" - PAGES_ROUNDED = "pages_rounded" - PAGES_SHARP = "pages_sharp" - PAGEVIEW = "pageview" - PAGEVIEW_OUTLINED = "pageview_outlined" - PAGEVIEW_ROUNDED = "pageview_rounded" - PAGEVIEW_SHARP = "pageview_sharp" - PAID = "paid" - PAID_OUTLINED = "paid_outlined" - PAID_ROUNDED = "paid_rounded" - PAID_SHARP = "paid_sharp" - PALETTE = "palette" - PALETTE_OUTLINED = "palette_outlined" - PALETTE_ROUNDED = "palette_rounded" - PALETTE_SHARP = "palette_sharp" - PALLET = "pallet" - PANORAMA = "panorama" - PANORAMA_FISHEYE = "panorama_fisheye" - PANORAMA_FISHEYE_OUTLINED = "panorama_fisheye_outlined" - PANORAMA_FISHEYE_ROUNDED = "panorama_fisheye_rounded" - PANORAMA_FISHEYE_SHARP = "panorama_fisheye_sharp" - PANORAMA_FISH_EYE = "panorama_fish_eye" - PANORAMA_FISH_EYE_OUTLINED = "panorama_fish_eye_outlined" - PANORAMA_FISH_EYE_ROUNDED = "panorama_fish_eye_rounded" - PANORAMA_FISH_EYE_SHARP = "panorama_fish_eye_sharp" - PANORAMA_HORIZONTAL = "panorama_horizontal" - PANORAMA_HORIZONTAL_OUTLINED = "panorama_horizontal_outlined" - PANORAMA_HORIZONTAL_ROUNDED = "panorama_horizontal_rounded" - PANORAMA_HORIZONTAL_SELECT = "panorama_horizontal_select" - PANORAMA_HORIZONTAL_SELECT_OUTLINED = "panorama_horizontal_select_outlined" - PANORAMA_HORIZONTAL_SELECT_ROUNDED = "panorama_horizontal_select_rounded" - PANORAMA_HORIZONTAL_SELECT_SHARP = "panorama_horizontal_select_sharp" - PANORAMA_HORIZONTAL_SHARP = "panorama_horizontal_sharp" - PANORAMA_OUTLINED = "panorama_outlined" - PANORAMA_PHOTOSPHERE = "panorama_photosphere" - PANORAMA_PHOTOSPHERE_OUTLINED = "panorama_photosphere_outlined" - PANORAMA_PHOTOSPHERE_ROUNDED = "panorama_photosphere_rounded" - PANORAMA_PHOTOSPHERE_SELECT = "panorama_photosphere_select" - PANORAMA_PHOTOSPHERE_SELECT_OUTLINED = "panorama_photosphere_select_outlined" - PANORAMA_PHOTOSPHERE_SELECT_ROUNDED = "panorama_photosphere_select_rounded" - PANORAMA_PHOTOSPHERE_SELECT_SHARP = "panorama_photosphere_select_sharp" - PANORAMA_PHOTOSPHERE_SHARP = "panorama_photosphere_sharp" - PANORAMA_ROUNDED = "panorama_rounded" - PANORAMA_SHARP = "panorama_sharp" - PANORAMA_VERTICAL = "panorama_vertical" - PANORAMA_VERTICAL_OUTLINED = "panorama_vertical_outlined" - PANORAMA_VERTICAL_ROUNDED = "panorama_vertical_rounded" - PANORAMA_VERTICAL_SELECT = "panorama_vertical_select" - PANORAMA_VERTICAL_SELECT_OUTLINED = "panorama_vertical_select_outlined" - PANORAMA_VERTICAL_SELECT_ROUNDED = "panorama_vertical_select_rounded" - PANORAMA_VERTICAL_SELECT_SHARP = "panorama_vertical_select_sharp" - PANORAMA_VERTICAL_SHARP = "panorama_vertical_sharp" - PANORAMA_WIDE_ANGLE = "panorama_wide_angle" - PANORAMA_WIDE_ANGLE_OUTLINED = "panorama_wide_angle_outlined" - PANORAMA_WIDE_ANGLE_ROUNDED = "panorama_wide_angle_rounded" - PANORAMA_WIDE_ANGLE_SELECT = "panorama_wide_angle_select" - PANORAMA_WIDE_ANGLE_SELECT_OUTLINED = "panorama_wide_angle_select_outlined" - PANORAMA_WIDE_ANGLE_SELECT_ROUNDED = "panorama_wide_angle_select_rounded" - PANORAMA_WIDE_ANGLE_SELECT_SHARP = "panorama_wide_angle_select_sharp" - PANORAMA_WIDE_ANGLE_SHARP = "panorama_wide_angle_sharp" - PAN_TOOL = "pan_tool" - PAN_TOOL_ALT = "pan_tool_alt" - PAN_TOOL_ALT_OUTLINED = "pan_tool_alt_outlined" - PAN_TOOL_ALT_ROUNDED = "pan_tool_alt_rounded" - PAN_TOOL_ALT_SHARP = "pan_tool_alt_sharp" - PAN_TOOL_OUTLINED = "pan_tool_outlined" - PAN_TOOL_ROUNDED = "pan_tool_rounded" - PAN_TOOL_SHARP = "pan_tool_sharp" - PARAGLIDING = "paragliding" - PARAGLIDING_OUTLINED = "paragliding_outlined" - PARAGLIDING_ROUNDED = "paragliding_rounded" - PARAGLIDING_SHARP = "paragliding_sharp" - PARK = "park" - PARK_OUTLINED = "park_outlined" - PARK_ROUNDED = "park_rounded" - PARK_SHARP = "park_sharp" - PARTY_MODE = "party_mode" - PARTY_MODE_OUTLINED = "party_mode_outlined" - PARTY_MODE_ROUNDED = "party_mode_rounded" - PARTY_MODE_SHARP = "party_mode_sharp" - PASSWORD = "password" - PASSWORD_OUTLINED = "password_outlined" - PASSWORD_ROUNDED = "password_rounded" - PASSWORD_SHARP = "password_sharp" - PASTE = "paste" - PASTE_OUTLINED = "paste_outlined" - PASTE_ROUNDED = "paste_rounded" - PASTE_SHARP = "paste_sharp" - PATTERN = "pattern" - PATTERN_OUTLINED = "pattern_outlined" - PATTERN_ROUNDED = "pattern_rounded" - PATTERN_SHARP = "pattern_sharp" - PAUSE = "pause" - PAUSE_CIRCLE = "pause_circle" - PAUSE_CIRCLE_FILLED = "pause_circle_filled" - PAUSE_CIRCLE_FILLED_OUTLINED = "pause_circle_filled_outlined" - PAUSE_CIRCLE_FILLED_ROUNDED = "pause_circle_filled_rounded" - PAUSE_CIRCLE_FILLED_SHARP = "pause_circle_filled_sharp" - PAUSE_CIRCLE_OUTLINE = "pause_circle_outline" - PAUSE_CIRCLE_OUTLINED = "pause_circle_outlined" - PAUSE_CIRCLE_OUTLINE_OUTLINED = "pause_circle_outline_outlined" - PAUSE_CIRCLE_OUTLINE_ROUNDED = "pause_circle_outline_rounded" - PAUSE_CIRCLE_OUTLINE_SHARP = "pause_circle_outline_sharp" - PAUSE_CIRCLE_ROUNDED = "pause_circle_rounded" - PAUSE_CIRCLE_SHARP = "pause_circle_sharp" - PAUSE_OUTLINED = "pause_outlined" - PAUSE_PRESENTATION = "pause_presentation" - PAUSE_PRESENTATION_OUTLINED = "pause_presentation_outlined" - PAUSE_PRESENTATION_ROUNDED = "pause_presentation_rounded" - PAUSE_PRESENTATION_SHARP = "pause_presentation_sharp" - PAUSE_ROUNDED = "pause_rounded" - PAUSE_SHARP = "pause_sharp" - PAYMENT = "payment" - PAYMENTS = "payments" - PAYMENTS_OUTLINED = "payments_outlined" - PAYMENTS_ROUNDED = "payments_rounded" - PAYMENTS_SHARP = "payments_sharp" - PAYMENT_OUTLINED = "payment_outlined" - PAYMENT_ROUNDED = "payment_rounded" - PAYMENT_SHARP = "payment_sharp" - PAYPAL = "paypal" - PAYPAL_OUTLINED = "paypal_outlined" - PAYPAL_ROUNDED = "paypal_rounded" - PAYPAL_SHARP = "paypal_sharp" - PEDAL_BIKE = "pedal_bike" - PEDAL_BIKE_OUTLINED = "pedal_bike_outlined" - PEDAL_BIKE_ROUNDED = "pedal_bike_rounded" - PEDAL_BIKE_SHARP = "pedal_bike_sharp" - PENDING = "pending" - PENDING_ACTIONS = "pending_actions" - PENDING_ACTIONS_OUTLINED = "pending_actions_outlined" - PENDING_ACTIONS_ROUNDED = "pending_actions_rounded" - PENDING_ACTIONS_SHARP = "pending_actions_sharp" - PENDING_OUTLINED = "pending_outlined" - PENDING_ROUNDED = "pending_rounded" - PENDING_SHARP = "pending_sharp" - PENTAGON = "pentagon" - PENTAGON_OUTLINED = "pentagon_outlined" - PENTAGON_ROUNDED = "pentagon_rounded" - PENTAGON_SHARP = "pentagon_sharp" - PEOPLE = "people" - PEOPLE_ALT = "people_alt" - PEOPLE_ALT_OUTLINED = "people_alt_outlined" - PEOPLE_ALT_ROUNDED = "people_alt_rounded" - PEOPLE_ALT_SHARP = "people_alt_sharp" - PEOPLE_OUTLINE = "people_outline" - PEOPLE_OUTLINED = "people_outlined" - PEOPLE_OUTLINE_OUTLINED = "people_outline_outlined" - PEOPLE_OUTLINE_ROUNDED = "people_outline_rounded" - PEOPLE_OUTLINE_SHARP = "people_outline_sharp" - PEOPLE_ROUNDED = "people_rounded" - PEOPLE_SHARP = "people_sharp" - PERCENT = "percent" - PERCENT_OUTLINED = "percent_outlined" - PERCENT_ROUNDED = "percent_rounded" - PERCENT_SHARP = "percent_sharp" - PERM_CAMERA_MIC = "perm_camera_mic" - PERM_CAMERA_MIC_OUTLINED = "perm_camera_mic_outlined" - PERM_CAMERA_MIC_ROUNDED = "perm_camera_mic_rounded" - PERM_CAMERA_MIC_SHARP = "perm_camera_mic_sharp" - PERM_CONTACT_CAL = "perm_contact_cal" - PERM_CONTACT_CALENDAR = "perm_contact_calendar" - PERM_CONTACT_CALENDAR_OUTLINED = "perm_contact_calendar_outlined" - PERM_CONTACT_CALENDAR_ROUNDED = "perm_contact_calendar_rounded" - PERM_CONTACT_CALENDAR_SHARP = "perm_contact_calendar_sharp" - PERM_CONTACT_CAL_OUTLINED = "perm_contact_cal_outlined" - PERM_CONTACT_CAL_ROUNDED = "perm_contact_cal_rounded" - PERM_CONTACT_CAL_SHARP = "perm_contact_cal_sharp" - PERM_DATA_SETTING = "perm_data_setting" - PERM_DATA_SETTING_OUTLINED = "perm_data_setting_outlined" - PERM_DATA_SETTING_ROUNDED = "perm_data_setting_rounded" - PERM_DATA_SETTING_SHARP = "perm_data_setting_sharp" - PERM_DEVICE_INFO = "perm_device_info" - PERM_DEVICE_INFORMATION = "perm_device_information" - PERM_DEVICE_INFORMATION_OUTLINED = "perm_device_information_outlined" - PERM_DEVICE_INFORMATION_ROUNDED = "perm_device_information_rounded" - PERM_DEVICE_INFORMATION_SHARP = "perm_device_information_sharp" - PERM_DEVICE_INFO_OUTLINED = "perm_device_info_outlined" - PERM_DEVICE_INFO_ROUNDED = "perm_device_info_rounded" - PERM_DEVICE_INFO_SHARP = "perm_device_info_sharp" - PERM_IDENTITY = "perm_identity" - PERM_IDENTITY_OUTLINED = "perm_identity_outlined" - PERM_IDENTITY_ROUNDED = "perm_identity_rounded" - PERM_IDENTITY_SHARP = "perm_identity_sharp" - PERM_MEDIA = "perm_media" - PERM_MEDIA_OUTLINED = "perm_media_outlined" - PERM_MEDIA_ROUNDED = "perm_media_rounded" - PERM_MEDIA_SHARP = "perm_media_sharp" - PERM_PHONE_MSG = "perm_phone_msg" - PERM_PHONE_MSG_OUTLINED = "perm_phone_msg_outlined" - PERM_PHONE_MSG_ROUNDED = "perm_phone_msg_rounded" - PERM_PHONE_MSG_SHARP = "perm_phone_msg_sharp" - PERM_SCAN_WIFI = "perm_scan_wifi" - PERM_SCAN_WIFI_OUTLINED = "perm_scan_wifi_outlined" - PERM_SCAN_WIFI_ROUNDED = "perm_scan_wifi_rounded" - PERM_SCAN_WIFI_SHARP = "perm_scan_wifi_sharp" - PERSON = "person" - PERSONAL_INJURY = "personal_injury" - PERSONAL_INJURY_OUTLINED = "personal_injury_outlined" - PERSONAL_INJURY_ROUNDED = "personal_injury_rounded" - PERSONAL_INJURY_SHARP = "personal_injury_sharp" - PERSONAL_VIDEO = "personal_video" - PERSONAL_VIDEO_OUTLINED = "personal_video_outlined" - PERSONAL_VIDEO_ROUNDED = "personal_video_rounded" - PERSONAL_VIDEO_SHARP = "personal_video_sharp" - PERSON_2 = "person_2" - PERSON_2_OUTLINED = "person_2_outlined" - PERSON_2_ROUNDED = "person_2_rounded" - PERSON_2_SHARP = "person_2_sharp" - PERSON_3 = "person_3" - PERSON_3_OUTLINED = "person_3_outlined" - PERSON_3_ROUNDED = "person_3_rounded" - PERSON_3_SHARP = "person_3_sharp" - PERSON_4 = "person_4" - PERSON_4_OUTLINED = "person_4_outlined" - PERSON_4_ROUNDED = "person_4_rounded" - PERSON_4_SHARP = "person_4_sharp" - PERSON_ADD = "person_add" - PERSON_ADD_ALT = "person_add_alt" - PERSON_ADD_ALT_1 = "person_add_alt_1" - PERSON_ADD_ALT_1_OUTLINED = "person_add_alt_1_outlined" - PERSON_ADD_ALT_1_ROUNDED = "person_add_alt_1_rounded" - PERSON_ADD_ALT_1_SHARP = "person_add_alt_1_sharp" - PERSON_ADD_ALT_OUTLINED = "person_add_alt_outlined" - PERSON_ADD_ALT_ROUNDED = "person_add_alt_rounded" - PERSON_ADD_ALT_SHARP = "person_add_alt_sharp" - PERSON_ADD_DISABLED = "person_add_disabled" - PERSON_ADD_DISABLED_OUTLINED = "person_add_disabled_outlined" - PERSON_ADD_DISABLED_ROUNDED = "person_add_disabled_rounded" - PERSON_ADD_DISABLED_SHARP = "person_add_disabled_sharp" - PERSON_ADD_OUTLINED = "person_add_outlined" - PERSON_ADD_ROUNDED = "person_add_rounded" - PERSON_ADD_SHARP = "person_add_sharp" - PERSON_OFF = "person_off" - PERSON_OFF_OUTLINED = "person_off_outlined" - PERSON_OFF_ROUNDED = "person_off_rounded" - PERSON_OFF_SHARP = "person_off_sharp" - PERSON_OUTLINE = "person_outline" - PERSON_OUTLINED = "person_outlined" - PERSON_OUTLINE_OUTLINED = "person_outline_outlined" - PERSON_OUTLINE_ROUNDED = "person_outline_rounded" - PERSON_OUTLINE_SHARP = "person_outline_sharp" - PERSON_PIN = "person_pin" - PERSON_PIN_CIRCLE = "person_pin_circle" - PERSON_PIN_CIRCLE_OUTLINED = "person_pin_circle_outlined" - PERSON_PIN_CIRCLE_ROUNDED = "person_pin_circle_rounded" - PERSON_PIN_CIRCLE_SHARP = "person_pin_circle_sharp" - PERSON_PIN_OUTLINED = "person_pin_outlined" - PERSON_PIN_ROUNDED = "person_pin_rounded" - PERSON_PIN_SHARP = "person_pin_sharp" - PERSON_REMOVE = "person_remove" - PERSON_REMOVE_ALT_1 = "person_remove_alt_1" - PERSON_REMOVE_ALT_1_OUTLINED = "person_remove_alt_1_outlined" - PERSON_REMOVE_ALT_1_ROUNDED = "person_remove_alt_1_rounded" - PERSON_REMOVE_ALT_1_SHARP = "person_remove_alt_1_sharp" - PERSON_REMOVE_OUTLINED = "person_remove_outlined" - PERSON_REMOVE_ROUNDED = "person_remove_rounded" - PERSON_REMOVE_SHARP = "person_remove_sharp" - PERSON_ROUNDED = "person_rounded" - PERSON_SEARCH = "person_search" - PERSON_SEARCH_OUTLINED = "person_search_outlined" - PERSON_SEARCH_ROUNDED = "person_search_rounded" - PERSON_SEARCH_SHARP = "person_search_sharp" - PERSON_SHARP = "person_sharp" - PEST_CONTROL = "pest_control" - PEST_CONTROL_OUTLINED = "pest_control_outlined" - PEST_CONTROL_RODENT = "pest_control_rodent" - PEST_CONTROL_RODENT_OUTLINED = "pest_control_rodent_outlined" - PEST_CONTROL_RODENT_ROUNDED = "pest_control_rodent_rounded" - PEST_CONTROL_RODENT_SHARP = "pest_control_rodent_sharp" - PEST_CONTROL_ROUNDED = "pest_control_rounded" - PEST_CONTROL_SHARP = "pest_control_sharp" - PETS = "pets" - PETS_OUTLINED = "pets_outlined" - PETS_ROUNDED = "pets_rounded" - PETS_SHARP = "pets_sharp" - PHISHING = "phishing" - PHISHING_OUTLINED = "phishing_outlined" - PHISHING_ROUNDED = "phishing_rounded" - PHISHING_SHARP = "phishing_sharp" - PHONE = "phone" - PHONELINK = "phonelink" - PHONELINK_ERASE = "phonelink_erase" - PHONELINK_ERASE_OUTLINED = "phonelink_erase_outlined" - PHONELINK_ERASE_ROUNDED = "phonelink_erase_rounded" - PHONELINK_ERASE_SHARP = "phonelink_erase_sharp" - PHONELINK_LOCK = "phonelink_lock" - PHONELINK_LOCK_OUTLINED = "phonelink_lock_outlined" - PHONELINK_LOCK_ROUNDED = "phonelink_lock_rounded" - PHONELINK_LOCK_SHARP = "phonelink_lock_sharp" - PHONELINK_OFF = "phonelink_off" - PHONELINK_OFF_OUTLINED = "phonelink_off_outlined" - PHONELINK_OFF_ROUNDED = "phonelink_off_rounded" - PHONELINK_OFF_SHARP = "phonelink_off_sharp" - PHONELINK_OUTLINED = "phonelink_outlined" - PHONELINK_RING = "phonelink_ring" - PHONELINK_RING_OUTLINED = "phonelink_ring_outlined" - PHONELINK_RING_ROUNDED = "phonelink_ring_rounded" - PHONELINK_RING_SHARP = "phonelink_ring_sharp" - PHONELINK_ROUNDED = "phonelink_rounded" - PHONELINK_SETUP = "phonelink_setup" - PHONELINK_SETUP_OUTLINED = "phonelink_setup_outlined" - PHONELINK_SETUP_ROUNDED = "phonelink_setup_rounded" - PHONELINK_SETUP_SHARP = "phonelink_setup_sharp" - PHONELINK_SHARP = "phonelink_sharp" - PHONE_ANDROID = "phone_android" - PHONE_ANDROID_OUTLINED = "phone_android_outlined" - PHONE_ANDROID_ROUNDED = "phone_android_rounded" - PHONE_ANDROID_SHARP = "phone_android_sharp" - PHONE_BLUETOOTH_SPEAKER = "phone_bluetooth_speaker" - PHONE_BLUETOOTH_SPEAKER_OUTLINED = "phone_bluetooth_speaker_outlined" - PHONE_BLUETOOTH_SPEAKER_ROUNDED = "phone_bluetooth_speaker_rounded" - PHONE_BLUETOOTH_SPEAKER_SHARP = "phone_bluetooth_speaker_sharp" - PHONE_CALLBACK = "phone_callback" - PHONE_CALLBACK_OUTLINED = "phone_callback_outlined" - PHONE_CALLBACK_ROUNDED = "phone_callback_rounded" - PHONE_CALLBACK_SHARP = "phone_callback_sharp" - PHONE_DISABLED = "phone_disabled" - PHONE_DISABLED_OUTLINED = "phone_disabled_outlined" - PHONE_DISABLED_ROUNDED = "phone_disabled_rounded" - PHONE_DISABLED_SHARP = "phone_disabled_sharp" - PHONE_ENABLED = "phone_enabled" - PHONE_ENABLED_OUTLINED = "phone_enabled_outlined" - PHONE_ENABLED_ROUNDED = "phone_enabled_rounded" - PHONE_ENABLED_SHARP = "phone_enabled_sharp" - PHONE_FORWARDED = "phone_forwarded" - PHONE_FORWARDED_OUTLINED = "phone_forwarded_outlined" - PHONE_FORWARDED_ROUNDED = "phone_forwarded_rounded" - PHONE_FORWARDED_SHARP = "phone_forwarded_sharp" - PHONE_IN_TALK = "phone_in_talk" - PHONE_IN_TALK_OUTLINED = "phone_in_talk_outlined" - PHONE_IN_TALK_ROUNDED = "phone_in_talk_rounded" - PHONE_IN_TALK_SHARP = "phone_in_talk_sharp" - PHONE_IPHONE = "phone_iphone" - PHONE_IPHONE_OUTLINED = "phone_iphone_outlined" - PHONE_IPHONE_ROUNDED = "phone_iphone_rounded" - PHONE_IPHONE_SHARP = "phone_iphone_sharp" - PHONE_LOCKED = "phone_locked" - PHONE_LOCKED_OUTLINED = "phone_locked_outlined" - PHONE_LOCKED_ROUNDED = "phone_locked_rounded" - PHONE_LOCKED_SHARP = "phone_locked_sharp" - PHONE_MISSED = "phone_missed" - PHONE_MISSED_OUTLINED = "phone_missed_outlined" - PHONE_MISSED_ROUNDED = "phone_missed_rounded" - PHONE_MISSED_SHARP = "phone_missed_sharp" - PHONE_OUTLINED = "phone_outlined" - PHONE_PAUSED = "phone_paused" - PHONE_PAUSED_OUTLINED = "phone_paused_outlined" - PHONE_PAUSED_ROUNDED = "phone_paused_rounded" - PHONE_PAUSED_SHARP = "phone_paused_sharp" - PHONE_ROUNDED = "phone_rounded" - PHONE_SHARP = "phone_sharp" - PHOTO = "photo" - PHOTO_ALBUM = "photo_album" - PHOTO_ALBUM_OUTLINED = "photo_album_outlined" - PHOTO_ALBUM_ROUNDED = "photo_album_rounded" - PHOTO_ALBUM_SHARP = "photo_album_sharp" - PHOTO_CAMERA = "photo_camera" - PHOTO_CAMERA_BACK = "photo_camera_back" - PHOTO_CAMERA_BACK_OUTLINED = "photo_camera_back_outlined" - PHOTO_CAMERA_BACK_ROUNDED = "photo_camera_back_rounded" - PHOTO_CAMERA_BACK_SHARP = "photo_camera_back_sharp" - PHOTO_CAMERA_FRONT = "photo_camera_front" - PHOTO_CAMERA_FRONT_OUTLINED = "photo_camera_front_outlined" - PHOTO_CAMERA_FRONT_ROUNDED = "photo_camera_front_rounded" - PHOTO_CAMERA_FRONT_SHARP = "photo_camera_front_sharp" - PHOTO_CAMERA_OUTLINED = "photo_camera_outlined" - PHOTO_CAMERA_ROUNDED = "photo_camera_rounded" - PHOTO_CAMERA_SHARP = "photo_camera_sharp" - PHOTO_FILTER = "photo_filter" - PHOTO_FILTER_OUTLINED = "photo_filter_outlined" - PHOTO_FILTER_ROUNDED = "photo_filter_rounded" - PHOTO_FILTER_SHARP = "photo_filter_sharp" - PHOTO_LIBRARY = "photo_library" - PHOTO_LIBRARY_OUTLINED = "photo_library_outlined" - PHOTO_LIBRARY_ROUNDED = "photo_library_rounded" - PHOTO_LIBRARY_SHARP = "photo_library_sharp" - PHOTO_OUTLINED = "photo_outlined" - PHOTO_ROUNDED = "photo_rounded" - PHOTO_SHARP = "photo_sharp" - PHOTO_SIZE_SELECT_ACTUAL = "photo_size_select_actual" - PHOTO_SIZE_SELECT_ACTUAL_OUTLINED = "photo_size_select_actual_outlined" - PHOTO_SIZE_SELECT_ACTUAL_ROUNDED = "photo_size_select_actual_rounded" - PHOTO_SIZE_SELECT_ACTUAL_SHARP = "photo_size_select_actual_sharp" - PHOTO_SIZE_SELECT_LARGE = "photo_size_select_large" - PHOTO_SIZE_SELECT_LARGE_OUTLINED = "photo_size_select_large_outlined" - PHOTO_SIZE_SELECT_LARGE_ROUNDED = "photo_size_select_large_rounded" - PHOTO_SIZE_SELECT_LARGE_SHARP = "photo_size_select_large_sharp" - PHOTO_SIZE_SELECT_SMALL = "photo_size_select_small" - PHOTO_SIZE_SELECT_SMALL_OUTLINED = "photo_size_select_small_outlined" - PHOTO_SIZE_SELECT_SMALL_ROUNDED = "photo_size_select_small_rounded" - PHOTO_SIZE_SELECT_SMALL_SHARP = "photo_size_select_small_sharp" - PHP = "php" - PHP_OUTLINED = "php_outlined" - PHP_ROUNDED = "php_rounded" - PHP_SHARP = "php_sharp" - PIANO = "piano" - PIANO_OFF = "piano_off" - PIANO_OFF_OUTLINED = "piano_off_outlined" - PIANO_OFF_ROUNDED = "piano_off_rounded" - PIANO_OFF_SHARP = "piano_off_sharp" - PIANO_OUTLINED = "piano_outlined" - PIANO_ROUNDED = "piano_rounded" - PIANO_SHARP = "piano_sharp" - PICTURE_AS_PDF = "picture_as_pdf" - PICTURE_AS_PDF_OUTLINED = "picture_as_pdf_outlined" - PICTURE_AS_PDF_ROUNDED = "picture_as_pdf_rounded" - PICTURE_AS_PDF_SHARP = "picture_as_pdf_sharp" - PICTURE_IN_PICTURE = "picture_in_picture" - PICTURE_IN_PICTURE_ALT = "picture_in_picture_alt" - PICTURE_IN_PICTURE_ALT_OUTLINED = "picture_in_picture_alt_outlined" - PICTURE_IN_PICTURE_ALT_ROUNDED = "picture_in_picture_alt_rounded" - PICTURE_IN_PICTURE_ALT_SHARP = "picture_in_picture_alt_sharp" - PICTURE_IN_PICTURE_OUTLINED = "picture_in_picture_outlined" - PICTURE_IN_PICTURE_ROUNDED = "picture_in_picture_rounded" - PICTURE_IN_PICTURE_SHARP = "picture_in_picture_sharp" - PIE_CHART = "pie_chart" - PIE_CHART_OUTLINE = "pie_chart_outline" - PIE_CHART_OUTLINE_OUTLINED = "pie_chart_outline_outlined" - PIE_CHART_OUTLINE_ROUNDED = "pie_chart_outline_rounded" - PIE_CHART_OUTLINE_SHARP = "pie_chart_outline_sharp" - PIE_CHART_ROUNDED = "pie_chart_rounded" - PIE_CHART_SHARP = "pie_chart_sharp" - PIN = "pin" - PINCH = "pinch" - PINCH_OUTLINED = "pinch_outlined" - PINCH_ROUNDED = "pinch_rounded" - PINCH_SHARP = "pinch_sharp" - PIN_DROP = "pin_drop" - PIN_DROP_OUTLINED = "pin_drop_outlined" - PIN_DROP_ROUNDED = "pin_drop_rounded" - PIN_DROP_SHARP = "pin_drop_sharp" - PIN_END = "pin_end" - PIN_END_OUTLINED = "pin_end_outlined" - PIN_END_ROUNDED = "pin_end_rounded" - PIN_END_SHARP = "pin_end_sharp" - PIN_INVOKE = "pin_invoke" - PIN_INVOKE_OUTLINED = "pin_invoke_outlined" - PIN_INVOKE_ROUNDED = "pin_invoke_rounded" - PIN_INVOKE_SHARP = "pin_invoke_sharp" - PIN_OUTLINED = "pin_outlined" - PIN_ROUNDED = "pin_rounded" - PIN_SHARP = "pin_sharp" - PIVOT_TABLE_CHART = "pivot_table_chart" - PIVOT_TABLE_CHART_OUTLINED = "pivot_table_chart_outlined" - PIVOT_TABLE_CHART_ROUNDED = "pivot_table_chart_rounded" - PIVOT_TABLE_CHART_SHARP = "pivot_table_chart_sharp" - PIX = "pix" - PIX_OUTLINED = "pix_outlined" - PIX_ROUNDED = "pix_rounded" - PIX_SHARP = "pix_sharp" - PLACE = "place" - PLACE_OUTLINED = "place_outlined" - PLACE_ROUNDED = "place_rounded" - PLACE_SHARP = "place_sharp" - PLAGIARISM = "plagiarism" - PLAGIARISM_OUTLINED = "plagiarism_outlined" - PLAGIARISM_ROUNDED = "plagiarism_rounded" - PLAGIARISM_SHARP = "plagiarism_sharp" - PLAYLIST_ADD = "playlist_add" - PLAYLIST_ADD_CHECK = "playlist_add_check" - PLAYLIST_ADD_CHECK_CIRCLE = "playlist_add_check_circle" - PLAYLIST_ADD_CHECK_CIRCLE_OUTLINED = "playlist_add_check_circle_outlined" - PLAYLIST_ADD_CHECK_CIRCLE_ROUNDED = "playlist_add_check_circle_rounded" - PLAYLIST_ADD_CHECK_CIRCLE_SHARP = "playlist_add_check_circle_sharp" - PLAYLIST_ADD_CHECK_OUTLINED = "playlist_add_check_outlined" - PLAYLIST_ADD_CHECK_ROUNDED = "playlist_add_check_rounded" - PLAYLIST_ADD_CHECK_SHARP = "playlist_add_check_sharp" - PLAYLIST_ADD_CIRCLE = "playlist_add_circle" - PLAYLIST_ADD_CIRCLE_OUTLINED = "playlist_add_circle_outlined" - PLAYLIST_ADD_CIRCLE_ROUNDED = "playlist_add_circle_rounded" - PLAYLIST_ADD_CIRCLE_SHARP = "playlist_add_circle_sharp" - PLAYLIST_ADD_OUTLINED = "playlist_add_outlined" - PLAYLIST_ADD_ROUNDED = "playlist_add_rounded" - PLAYLIST_ADD_SHARP = "playlist_add_sharp" - PLAYLIST_PLAY = "playlist_play" - PLAYLIST_PLAY_OUTLINED = "playlist_play_outlined" - PLAYLIST_PLAY_ROUNDED = "playlist_play_rounded" - PLAYLIST_PLAY_SHARP = "playlist_play_sharp" - PLAYLIST_REMOVE = "playlist_remove" - PLAYLIST_REMOVE_OUTLINED = "playlist_remove_outlined" - PLAYLIST_REMOVE_ROUNDED = "playlist_remove_rounded" - PLAYLIST_REMOVE_SHARP = "playlist_remove_sharp" - PLAY_ARROW = "play_arrow" - PLAY_ARROW_OUTLINED = "play_arrow_outlined" - PLAY_ARROW_ROUNDED = "play_arrow_rounded" - PLAY_ARROW_SHARP = "play_arrow_sharp" - PLAY_CIRCLE = "play_circle" - PLAY_CIRCLE_FILL = "play_circle_fill" - PLAY_CIRCLE_FILLED = "play_circle_filled" - PLAY_CIRCLE_FILLED_OUTLINED = "play_circle_filled_outlined" - PLAY_CIRCLE_FILLED_ROUNDED = "play_circle_filled_rounded" - PLAY_CIRCLE_FILLED_SHARP = "play_circle_filled_sharp" - PLAY_CIRCLE_FILL_OUTLINED = "play_circle_fill_outlined" - PLAY_CIRCLE_FILL_ROUNDED = "play_circle_fill_rounded" - PLAY_CIRCLE_FILL_SHARP = "play_circle_fill_sharp" - PLAY_CIRCLE_OUTLINE = "play_circle_outline" - PLAY_CIRCLE_OUTLINED = "play_circle_outlined" - PLAY_CIRCLE_OUTLINE_OUTLINED = "play_circle_outline_outlined" - PLAY_CIRCLE_OUTLINE_ROUNDED = "play_circle_outline_rounded" - PLAY_CIRCLE_OUTLINE_SHARP = "play_circle_outline_sharp" - PLAY_CIRCLE_ROUNDED = "play_circle_rounded" - PLAY_CIRCLE_SHARP = "play_circle_sharp" - PLAY_DISABLED = "play_disabled" - PLAY_DISABLED_OUTLINED = "play_disabled_outlined" - PLAY_DISABLED_ROUNDED = "play_disabled_rounded" - PLAY_DISABLED_SHARP = "play_disabled_sharp" - PLAY_FOR_WORK = "play_for_work" - PLAY_FOR_WORK_OUTLINED = "play_for_work_outlined" - PLAY_FOR_WORK_ROUNDED = "play_for_work_rounded" - PLAY_FOR_WORK_SHARP = "play_for_work_sharp" - PLAY_LESSON = "play_lesson" - PLAY_LESSON_OUTLINED = "play_lesson_outlined" - PLAY_LESSON_ROUNDED = "play_lesson_rounded" - PLAY_LESSON_SHARP = "play_lesson_sharp" - PLUMBING = "plumbing" - PLUMBING_OUTLINED = "plumbing_outlined" - PLUMBING_ROUNDED = "plumbing_rounded" - PLUMBING_SHARP = "plumbing_sharp" - PLUS_ONE = "plus_one" - PLUS_ONE_OUTLINED = "plus_one_outlined" - PLUS_ONE_ROUNDED = "plus_one_rounded" - PLUS_ONE_SHARP = "plus_one_sharp" - PODCASTS = "podcasts" - PODCASTS_OUTLINED = "podcasts_outlined" - PODCASTS_ROUNDED = "podcasts_rounded" - PODCASTS_SHARP = "podcasts_sharp" - POINT_OF_SALE = "point_of_sale" - POINT_OF_SALE_OUTLINED = "point_of_sale_outlined" - POINT_OF_SALE_ROUNDED = "point_of_sale_rounded" - POINT_OF_SALE_SHARP = "point_of_sale_sharp" - POLICY = "policy" - POLICY_OUTLINED = "policy_outlined" - POLICY_ROUNDED = "policy_rounded" - POLICY_SHARP = "policy_sharp" - POLL = "poll" - POLL_OUTLINED = "poll_outlined" - POLL_ROUNDED = "poll_rounded" - POLL_SHARP = "poll_sharp" - POLYLINE = "polyline" - POLYLINE_OUTLINED = "polyline_outlined" - POLYLINE_ROUNDED = "polyline_rounded" - POLYLINE_SHARP = "polyline_sharp" - POLYMER = "polymer" - POLYMER_OUTLINED = "polymer_outlined" - POLYMER_ROUNDED = "polymer_rounded" - POLYMER_SHARP = "polymer_sharp" - POOL = "pool" - POOL_OUTLINED = "pool_outlined" - POOL_ROUNDED = "pool_rounded" - POOL_SHARP = "pool_sharp" - PORTABLE_WIFI_OFF = "portable_wifi_off" - PORTABLE_WIFI_OFF_OUTLINED = "portable_wifi_off_outlined" - PORTABLE_WIFI_OFF_ROUNDED = "portable_wifi_off_rounded" - PORTABLE_WIFI_OFF_SHARP = "portable_wifi_off_sharp" - PORTRAIT = "portrait" - PORTRAIT_OUTLINED = "portrait_outlined" - PORTRAIT_ROUNDED = "portrait_rounded" - PORTRAIT_SHARP = "portrait_sharp" - POST_ADD = "post_add" - POST_ADD_OUTLINED = "post_add_outlined" - POST_ADD_ROUNDED = "post_add_rounded" - POST_ADD_SHARP = "post_add_sharp" - POWER = "power" - POWER_INPUT = "power_input" - POWER_INPUT_OUTLINED = "power_input_outlined" - POWER_INPUT_ROUNDED = "power_input_rounded" - POWER_INPUT_SHARP = "power_input_sharp" - POWER_OFF = "power_off" - POWER_OFF_OUTLINED = "power_off_outlined" - POWER_OFF_ROUNDED = "power_off_rounded" - POWER_OFF_SHARP = "power_off_sharp" - POWER_OUTLINED = "power_outlined" - POWER_ROUNDED = "power_rounded" - POWER_SETTINGS_NEW = "power_settings_new" - POWER_SETTINGS_NEW_OUTLINED = "power_settings_new_outlined" - POWER_SETTINGS_NEW_ROUNDED = "power_settings_new_rounded" - POWER_SETTINGS_NEW_SHARP = "power_settings_new_sharp" - POWER_SHARP = "power_sharp" - PRECISION_MANUFACTURING = "precision_manufacturing" - PRECISION_MANUFACTURING_OUTLINED = "precision_manufacturing_outlined" - PRECISION_MANUFACTURING_ROUNDED = "precision_manufacturing_rounded" - PRECISION_MANUFACTURING_SHARP = "precision_manufacturing_sharp" - PREGNANT_WOMAN = "pregnant_woman" - PREGNANT_WOMAN_OUTLINED = "pregnant_woman_outlined" - PREGNANT_WOMAN_ROUNDED = "pregnant_woman_rounded" - PREGNANT_WOMAN_SHARP = "pregnant_woman_sharp" - PRESENT_TO_ALL = "present_to_all" - PRESENT_TO_ALL_OUTLINED = "present_to_all_outlined" - PRESENT_TO_ALL_ROUNDED = "present_to_all_rounded" - PRESENT_TO_ALL_SHARP = "present_to_all_sharp" - PREVIEW = "preview" - PREVIEW_OUTLINED = "preview_outlined" - PREVIEW_ROUNDED = "preview_rounded" - PREVIEW_SHARP = "preview_sharp" - PRICE_CHANGE = "price_change" - PRICE_CHANGE_OUTLINED = "price_change_outlined" - PRICE_CHANGE_ROUNDED = "price_change_rounded" - PRICE_CHANGE_SHARP = "price_change_sharp" - PRICE_CHECK = "price_check" - PRICE_CHECK_OUTLINED = "price_check_outlined" - PRICE_CHECK_ROUNDED = "price_check_rounded" - PRICE_CHECK_SHARP = "price_check_sharp" - PRINT = "print" - PRINT_DISABLED = "print_disabled" - PRINT_DISABLED_OUTLINED = "print_disabled_outlined" - PRINT_DISABLED_ROUNDED = "print_disabled_rounded" - PRINT_DISABLED_SHARP = "print_disabled_sharp" - PRINT_OUTLINED = "print_outlined" - PRINT_ROUNDED = "print_rounded" - PRINT_SHARP = "print_sharp" - PRIORITY_HIGH = "priority_high" - PRIORITY_HIGH_OUTLINED = "priority_high_outlined" - PRIORITY_HIGH_ROUNDED = "priority_high_rounded" - PRIORITY_HIGH_SHARP = "priority_high_sharp" - PRIVACY_TIP = "privacy_tip" - PRIVACY_TIP_OUTLINED = "privacy_tip_outlined" - PRIVACY_TIP_ROUNDED = "privacy_tip_rounded" - PRIVACY_TIP_SHARP = "privacy_tip_sharp" - PRIVATE_CONNECTIVITY = "private_connectivity" - PRIVATE_CONNECTIVITY_OUTLINED = "private_connectivity_outlined" - PRIVATE_CONNECTIVITY_ROUNDED = "private_connectivity_rounded" - PRIVATE_CONNECTIVITY_SHARP = "private_connectivity_sharp" - PRODUCTION_QUANTITY_LIMITS = "production_quantity_limits" - PRODUCTION_QUANTITY_LIMITS_OUTLINED = "production_quantity_limits_outlined" - PRODUCTION_QUANTITY_LIMITS_ROUNDED = "production_quantity_limits_rounded" - PRODUCTION_QUANTITY_LIMITS_SHARP = "production_quantity_limits_sharp" - PROPANE = "propane" - PROPANE_OUTLINED = "propane_outlined" - PROPANE_ROUNDED = "propane_rounded" - PROPANE_SHARP = "propane_sharp" - PROPANE_TANK = "propane_tank" - PROPANE_TANK_OUTLINED = "propane_tank_outlined" - PROPANE_TANK_ROUNDED = "propane_tank_rounded" - PROPANE_TANK_SHARP = "propane_tank_sharp" - PSYCHOLOGY = "psychology" - PSYCHOLOGY_ALT = "psychology_alt" - PSYCHOLOGY_ALT_OUTLINED = "psychology_alt_outlined" - PSYCHOLOGY_ALT_ROUNDED = "psychology_alt_rounded" - PSYCHOLOGY_ALT_SHARP = "psychology_alt_sharp" - PSYCHOLOGY_OUTLINED = "psychology_outlined" - PSYCHOLOGY_ROUNDED = "psychology_rounded" - PSYCHOLOGY_SHARP = "psychology_sharp" - PUBLIC = "public" - PUBLIC_OFF = "public_off" - PUBLIC_OFF_OUTLINED = "public_off_outlined" - PUBLIC_OFF_ROUNDED = "public_off_rounded" - PUBLIC_OFF_SHARP = "public_off_sharp" - PUBLIC_OUTLINED = "public_outlined" - PUBLIC_ROUNDED = "public_rounded" - PUBLIC_SHARP = "public_sharp" - PUBLISH = "publish" - PUBLISHED_WITH_CHANGES = "published_with_changes" - PUBLISHED_WITH_CHANGES_OUTLINED = "published_with_changes_outlined" - PUBLISHED_WITH_CHANGES_ROUNDED = "published_with_changes_rounded" - PUBLISHED_WITH_CHANGES_SHARP = "published_with_changes_sharp" - PUBLISH_OUTLINED = "publish_outlined" - PUBLISH_ROUNDED = "publish_rounded" - PUBLISH_SHARP = "publish_sharp" - PUNCH_CLOCK = "punch_clock" - PUNCH_CLOCK_OUTLINED = "punch_clock_outlined" - PUNCH_CLOCK_ROUNDED = "punch_clock_rounded" - PUNCH_CLOCK_SHARP = "punch_clock_sharp" - PUSH_PIN = "push_pin" - PUSH_PIN_OUTLINED = "push_pin_outlined" - PUSH_PIN_ROUNDED = "push_pin_rounded" - PUSH_PIN_SHARP = "push_pin_sharp" - QR_CODE = "qr_code" - QR_CODE_2 = "qr_code_2" - QR_CODE_2_OUTLINED = "qr_code_2_outlined" - QR_CODE_2_ROUNDED = "qr_code_2_rounded" - QR_CODE_2_SHARP = "qr_code_2_sharp" - QR_CODE_OUTLINED = "qr_code_outlined" - QR_CODE_ROUNDED = "qr_code_rounded" - QR_CODE_SCANNER = "qr_code_scanner" - QR_CODE_SCANNER_OUTLINED = "qr_code_scanner_outlined" - QR_CODE_SCANNER_ROUNDED = "qr_code_scanner_rounded" - QR_CODE_SCANNER_SHARP = "qr_code_scanner_sharp" - QR_CODE_SHARP = "qr_code_sharp" - QUERY_BUILDER = "query_builder" - QUERY_BUILDER_OUTLINED = "query_builder_outlined" - QUERY_BUILDER_ROUNDED = "query_builder_rounded" - QUERY_BUILDER_SHARP = "query_builder_sharp" - QUERY_STATS = "query_stats" - QUERY_STATS_OUTLINED = "query_stats_outlined" - QUERY_STATS_ROUNDED = "query_stats_rounded" - QUERY_STATS_SHARP = "query_stats_sharp" - QUESTION_ANSWER = "question_answer" - QUESTION_ANSWER_OUTLINED = "question_answer_outlined" - QUESTION_ANSWER_ROUNDED = "question_answer_rounded" - QUESTION_ANSWER_SHARP = "question_answer_sharp" - QUESTION_MARK = "question_mark" - QUESTION_MARK_OUTLINED = "question_mark_outlined" - QUESTION_MARK_ROUNDED = "question_mark_rounded" - QUESTION_MARK_SHARP = "question_mark_sharp" - QUEUE = "queue" - QUEUE_MUSIC = "queue_music" - QUEUE_MUSIC_OUTLINED = "queue_music_outlined" - QUEUE_MUSIC_ROUNDED = "queue_music_rounded" - QUEUE_MUSIC_SHARP = "queue_music_sharp" - QUEUE_OUTLINED = "queue_outlined" - QUEUE_PLAY_NEXT = "queue_play_next" - QUEUE_PLAY_NEXT_OUTLINED = "queue_play_next_outlined" - QUEUE_PLAY_NEXT_ROUNDED = "queue_play_next_rounded" - QUEUE_PLAY_NEXT_SHARP = "queue_play_next_sharp" - QUEUE_ROUNDED = "queue_rounded" - QUEUE_SHARP = "queue_sharp" - QUICKREPLY = "quickreply" - QUICKREPLY_OUTLINED = "quickreply_outlined" - QUICKREPLY_ROUNDED = "quickreply_rounded" - QUICKREPLY_SHARP = "quickreply_sharp" - QUICK_CONTACTS_DIALER = "quick_contacts_dialer" - QUICK_CONTACTS_DIALER_OUTLINED = "quick_contacts_dialer_outlined" - QUICK_CONTACTS_DIALER_ROUNDED = "quick_contacts_dialer_rounded" - QUICK_CONTACTS_DIALER_SHARP = "quick_contacts_dialer_sharp" - QUICK_CONTACTS_MAIL = "quick_contacts_mail" - QUICK_CONTACTS_MAIL_OUTLINED = "quick_contacts_mail_outlined" - QUICK_CONTACTS_MAIL_ROUNDED = "quick_contacts_mail_rounded" - QUICK_CONTACTS_MAIL_SHARP = "quick_contacts_mail_sharp" - QUIZ = "quiz" - QUIZ_OUTLINED = "quiz_outlined" - QUIZ_ROUNDED = "quiz_rounded" - QUIZ_SHARP = "quiz_sharp" - QUORA = "quora" - QUORA_OUTLINED = "quora_outlined" - QUORA_ROUNDED = "quora_rounded" - QUORA_SHARP = "quora_sharp" - RADAR = "radar" - RADAR_OUTLINED = "radar_outlined" - RADAR_ROUNDED = "radar_rounded" - RADAR_SHARP = "radar_sharp" - RADIO = "radio" - RADIO_BUTTON_CHECKED = "radio_button_checked" - RADIO_BUTTON_CHECKED_OUTLINED = "radio_button_checked_outlined" - RADIO_BUTTON_CHECKED_ROUNDED = "radio_button_checked_rounded" - RADIO_BUTTON_CHECKED_SHARP = "radio_button_checked_sharp" - RADIO_BUTTON_OFF = "radio_button_off" - RADIO_BUTTON_OFF_OUTLINED = "radio_button_off_outlined" - RADIO_BUTTON_OFF_ROUNDED = "radio_button_off_rounded" - RADIO_BUTTON_OFF_SHARP = "radio_button_off_sharp" - RADIO_BUTTON_ON = "radio_button_on" - RADIO_BUTTON_ON_OUTLINED = "radio_button_on_outlined" - RADIO_BUTTON_ON_ROUNDED = "radio_button_on_rounded" - RADIO_BUTTON_ON_SHARP = "radio_button_on_sharp" - RADIO_BUTTON_UNCHECKED = "radio_button_unchecked" - RADIO_BUTTON_UNCHECKED_OUTLINED = "radio_button_unchecked_outlined" - RADIO_BUTTON_UNCHECKED_ROUNDED = "radio_button_unchecked_rounded" - RADIO_BUTTON_UNCHECKED_SHARP = "radio_button_unchecked_sharp" - RADIO_OUTLINED = "radio_outlined" - RADIO_ROUNDED = "radio_rounded" - RADIO_SHARP = "radio_sharp" - RAILWAY_ALERT = "railway_alert" - RAILWAY_ALERT_OUTLINED = "railway_alert_outlined" - RAILWAY_ALERT_ROUNDED = "railway_alert_rounded" - RAILWAY_ALERT_SHARP = "railway_alert_sharp" - RAMEN_DINING = "ramen_dining" - RAMEN_DINING_OUTLINED = "ramen_dining_outlined" - RAMEN_DINING_ROUNDED = "ramen_dining_rounded" - RAMEN_DINING_SHARP = "ramen_dining_sharp" - RAMP_LEFT = "ramp_left" - RAMP_LEFT_OUTLINED = "ramp_left_outlined" - RAMP_LEFT_ROUNDED = "ramp_left_rounded" - RAMP_LEFT_SHARP = "ramp_left_sharp" - RAMP_RIGHT = "ramp_right" - RAMP_RIGHT_OUTLINED = "ramp_right_outlined" - RAMP_RIGHT_ROUNDED = "ramp_right_rounded" - RAMP_RIGHT_SHARP = "ramp_right_sharp" - RATE_REVIEW = "rate_review" - RATE_REVIEW_OUTLINED = "rate_review_outlined" - RATE_REVIEW_ROUNDED = "rate_review_rounded" - RATE_REVIEW_SHARP = "rate_review_sharp" - RAW_OFF = "raw_off" - RAW_OFF_OUTLINED = "raw_off_outlined" - RAW_OFF_ROUNDED = "raw_off_rounded" - RAW_OFF_SHARP = "raw_off_sharp" - RAW_ON = "raw_on" - RAW_ON_OUTLINED = "raw_on_outlined" - RAW_ON_ROUNDED = "raw_on_rounded" - RAW_ON_SHARP = "raw_on_sharp" - READ_MORE = "read_more" - READ_MORE_OUTLINED = "read_more_outlined" - READ_MORE_ROUNDED = "read_more_rounded" - READ_MORE_SHARP = "read_more_sharp" - REAL_ESTATE_AGENT = "real_estate_agent" - REAL_ESTATE_AGENT_OUTLINED = "real_estate_agent_outlined" - REAL_ESTATE_AGENT_ROUNDED = "real_estate_agent_rounded" - REAL_ESTATE_AGENT_SHARP = "real_estate_agent_sharp" - REBASE_EDIT = "rebase_edit" - RECEIPT = "receipt" - RECEIPT_LONG = "receipt_long" - RECEIPT_LONG_OUTLINED = "receipt_long_outlined" - RECEIPT_LONG_ROUNDED = "receipt_long_rounded" - RECEIPT_LONG_SHARP = "receipt_long_sharp" - RECEIPT_OUTLINED = "receipt_outlined" - RECEIPT_ROUNDED = "receipt_rounded" - RECEIPT_SHARP = "receipt_sharp" - RECENT_ACTORS = "recent_actors" - RECENT_ACTORS_OUTLINED = "recent_actors_outlined" - RECENT_ACTORS_ROUNDED = "recent_actors_rounded" - RECENT_ACTORS_SHARP = "recent_actors_sharp" - RECOMMEND = "recommend" - RECOMMEND_OUTLINED = "recommend_outlined" - RECOMMEND_ROUNDED = "recommend_rounded" - RECOMMEND_SHARP = "recommend_sharp" - RECORD_VOICE_OVER = "record_voice_over" - RECORD_VOICE_OVER_OUTLINED = "record_voice_over_outlined" - RECORD_VOICE_OVER_ROUNDED = "record_voice_over_rounded" - RECORD_VOICE_OVER_SHARP = "record_voice_over_sharp" - RECTANGLE = "rectangle" - RECTANGLE_OUTLINED = "rectangle_outlined" - RECTANGLE_ROUNDED = "rectangle_rounded" - RECTANGLE_SHARP = "rectangle_sharp" - RECYCLING = "recycling" - RECYCLING_OUTLINED = "recycling_outlined" - RECYCLING_ROUNDED = "recycling_rounded" - RECYCLING_SHARP = "recycling_sharp" - REDDIT = "reddit" - REDDIT_OUTLINED = "reddit_outlined" - REDDIT_ROUNDED = "reddit_rounded" - REDDIT_SHARP = "reddit_sharp" - REDEEM = "redeem" - REDEEM_OUTLINED = "redeem_outlined" - REDEEM_ROUNDED = "redeem_rounded" - REDEEM_SHARP = "redeem_sharp" - REDO = "redo" - REDO_OUTLINED = "redo_outlined" - REDO_ROUNDED = "redo_rounded" - REDO_SHARP = "redo_sharp" - REDUCE_CAPACITY = "reduce_capacity" - REDUCE_CAPACITY_OUTLINED = "reduce_capacity_outlined" - REDUCE_CAPACITY_ROUNDED = "reduce_capacity_rounded" - REDUCE_CAPACITY_SHARP = "reduce_capacity_sharp" - REFRESH = "refresh" - REFRESH_OUTLINED = "refresh_outlined" - REFRESH_ROUNDED = "refresh_rounded" - REFRESH_SHARP = "refresh_sharp" - REMEMBER_ME = "remember_me" - REMEMBER_ME_OUTLINED = "remember_me_outlined" - REMEMBER_ME_ROUNDED = "remember_me_rounded" - REMEMBER_ME_SHARP = "remember_me_sharp" - REMOVE = "remove" - REMOVE_CIRCLE = "remove_circle" - REMOVE_CIRCLE_OUTLINE = "remove_circle_outline" - REMOVE_CIRCLE_OUTLINED = "remove_circle_outlined" - REMOVE_CIRCLE_OUTLINE_OUTLINED = "remove_circle_outline_outlined" - REMOVE_CIRCLE_OUTLINE_ROUNDED = "remove_circle_outline_rounded" - REMOVE_CIRCLE_OUTLINE_SHARP = "remove_circle_outline_sharp" - REMOVE_CIRCLE_ROUNDED = "remove_circle_rounded" - REMOVE_CIRCLE_SHARP = "remove_circle_sharp" - REMOVE_DONE = "remove_done" - REMOVE_DONE_OUTLINED = "remove_done_outlined" - REMOVE_DONE_ROUNDED = "remove_done_rounded" - REMOVE_DONE_SHARP = "remove_done_sharp" - REMOVE_FROM_QUEUE = "remove_from_queue" - REMOVE_FROM_QUEUE_OUTLINED = "remove_from_queue_outlined" - REMOVE_FROM_QUEUE_ROUNDED = "remove_from_queue_rounded" - REMOVE_FROM_QUEUE_SHARP = "remove_from_queue_sharp" - REMOVE_MODERATOR = "remove_moderator" - REMOVE_MODERATOR_OUTLINED = "remove_moderator_outlined" - REMOVE_MODERATOR_ROUNDED = "remove_moderator_rounded" - REMOVE_MODERATOR_SHARP = "remove_moderator_sharp" - REMOVE_OUTLINED = "remove_outlined" - REMOVE_RED_EYE = "remove_red_eye" - REMOVE_RED_EYE_OUTLINED = "remove_red_eye_outlined" - REMOVE_RED_EYE_ROUNDED = "remove_red_eye_rounded" - REMOVE_RED_EYE_SHARP = "remove_red_eye_sharp" - REMOVE_ROAD = "remove_road" - REMOVE_ROAD_OUTLINED = "remove_road_outlined" - REMOVE_ROAD_ROUNDED = "remove_road_rounded" - REMOVE_ROAD_SHARP = "remove_road_sharp" - REMOVE_ROUNDED = "remove_rounded" - REMOVE_SHARP = "remove_sharp" - REMOVE_SHOPPING_CART = "remove_shopping_cart" - REMOVE_SHOPPING_CART_OUTLINED = "remove_shopping_cart_outlined" - REMOVE_SHOPPING_CART_ROUNDED = "remove_shopping_cart_rounded" - REMOVE_SHOPPING_CART_SHARP = "remove_shopping_cart_sharp" - REORDER = "reorder" - REORDER_OUTLINED = "reorder_outlined" - REORDER_ROUNDED = "reorder_rounded" - REORDER_SHARP = "reorder_sharp" - REPARTITION = "repartition" - REPARTITION_OUTLINED = "repartition_outlined" - REPARTITION_ROUNDED = "repartition_rounded" - REPARTITION_SHARP = "repartition_sharp" - REPEAT = "repeat" - REPEAT_ON = "repeat_on" - REPEAT_ONE = "repeat_one" - REPEAT_ONE_ON = "repeat_one_on" - REPEAT_ONE_ON_OUTLINED = "repeat_one_on_outlined" - REPEAT_ONE_ON_ROUNDED = "repeat_one_on_rounded" - REPEAT_ONE_ON_SHARP = "repeat_one_on_sharp" - REPEAT_ONE_OUTLINED = "repeat_one_outlined" - REPEAT_ONE_ROUNDED = "repeat_one_rounded" - REPEAT_ONE_SHARP = "repeat_one_sharp" - REPEAT_ON_OUTLINED = "repeat_on_outlined" - REPEAT_ON_ROUNDED = "repeat_on_rounded" - REPEAT_ON_SHARP = "repeat_on_sharp" - REPEAT_OUTLINED = "repeat_outlined" - REPEAT_ROUNDED = "repeat_rounded" - REPEAT_SHARP = "repeat_sharp" - REPLAY = "replay" - REPLAY_10 = "replay_10" - REPLAY_10_OUTLINED = "replay_10_outlined" - REPLAY_10_ROUNDED = "replay_10_rounded" - REPLAY_10_SHARP = "replay_10_sharp" - REPLAY_30 = "replay_30" - REPLAY_30_OUTLINED = "replay_30_outlined" - REPLAY_30_ROUNDED = "replay_30_rounded" - REPLAY_30_SHARP = "replay_30_sharp" - REPLAY_5 = "replay_5" - REPLAY_5_OUTLINED = "replay_5_outlined" - REPLAY_5_ROUNDED = "replay_5_rounded" - REPLAY_5_SHARP = "replay_5_sharp" - REPLAY_CIRCLE_FILLED = "replay_circle_filled" - REPLAY_CIRCLE_FILLED_OUTLINED = "replay_circle_filled_outlined" - REPLAY_CIRCLE_FILLED_ROUNDED = "replay_circle_filled_rounded" - REPLAY_CIRCLE_FILLED_SHARP = "replay_circle_filled_sharp" - REPLAY_OUTLINED = "replay_outlined" - REPLAY_ROUNDED = "replay_rounded" - REPLAY_SHARP = "replay_sharp" - REPLY = "reply" - REPLY_ALL = "reply_all" - REPLY_ALL_OUTLINED = "reply_all_outlined" - REPLY_ALL_ROUNDED = "reply_all_rounded" - REPLY_ALL_SHARP = "reply_all_sharp" - REPLY_OUTLINED = "reply_outlined" - REPLY_ROUNDED = "reply_rounded" - REPLY_SHARP = "reply_sharp" - REPORT = "report" - REPORT_GMAILERRORRED = "report_gmailerrorred" - REPORT_GMAILERRORRED_OUTLINED = "report_gmailerrorred_outlined" - REPORT_GMAILERRORRED_ROUNDED = "report_gmailerrorred_rounded" - REPORT_GMAILERRORRED_SHARP = "report_gmailerrorred_sharp" - REPORT_OFF = "report_off" - REPORT_OFF_OUTLINED = "report_off_outlined" - REPORT_OFF_ROUNDED = "report_off_rounded" - REPORT_OFF_SHARP = "report_off_sharp" - REPORT_OUTLINED = "report_outlined" - REPORT_PROBLEM = "report_problem" - REPORT_PROBLEM_OUTLINED = "report_problem_outlined" - REPORT_PROBLEM_ROUNDED = "report_problem_rounded" - REPORT_PROBLEM_SHARP = "report_problem_sharp" - REPORT_ROUNDED = "report_rounded" - REPORT_SHARP = "report_sharp" - REQUEST_PAGE = "request_page" - REQUEST_PAGE_OUTLINED = "request_page_outlined" - REQUEST_PAGE_ROUNDED = "request_page_rounded" - REQUEST_PAGE_SHARP = "request_page_sharp" - REQUEST_QUOTE = "request_quote" - REQUEST_QUOTE_OUTLINED = "request_quote_outlined" - REQUEST_QUOTE_ROUNDED = "request_quote_rounded" - REQUEST_QUOTE_SHARP = "request_quote_sharp" - RESET_TV = "reset_tv" - RESET_TV_OUTLINED = "reset_tv_outlined" - RESET_TV_ROUNDED = "reset_tv_rounded" - RESET_TV_SHARP = "reset_tv_sharp" - RESTART_ALT = "restart_alt" - RESTART_ALT_OUTLINED = "restart_alt_outlined" - RESTART_ALT_ROUNDED = "restart_alt_rounded" - RESTART_ALT_SHARP = "restart_alt_sharp" - RESTAURANT = "restaurant" - RESTAURANT_MENU = "restaurant_menu" - RESTAURANT_MENU_OUTLINED = "restaurant_menu_outlined" - RESTAURANT_MENU_ROUNDED = "restaurant_menu_rounded" - RESTAURANT_MENU_SHARP = "restaurant_menu_sharp" - RESTAURANT_OUTLINED = "restaurant_outlined" - RESTAURANT_ROUNDED = "restaurant_rounded" - RESTAURANT_SHARP = "restaurant_sharp" - RESTORE = "restore" - RESTORE_FROM_TRASH = "restore_from_trash" - RESTORE_FROM_TRASH_OUTLINED = "restore_from_trash_outlined" - RESTORE_FROM_TRASH_ROUNDED = "restore_from_trash_rounded" - RESTORE_FROM_TRASH_SHARP = "restore_from_trash_sharp" - RESTORE_OUTLINED = "restore_outlined" - RESTORE_PAGE = "restore_page" - RESTORE_PAGE_OUTLINED = "restore_page_outlined" - RESTORE_PAGE_ROUNDED = "restore_page_rounded" - RESTORE_PAGE_SHARP = "restore_page_sharp" - RESTORE_ROUNDED = "restore_rounded" - RESTORE_SHARP = "restore_sharp" - REVIEWS = "reviews" - REVIEWS_OUTLINED = "reviews_outlined" - REVIEWS_ROUNDED = "reviews_rounded" - REVIEWS_SHARP = "reviews_sharp" - RICE_BOWL = "rice_bowl" - RICE_BOWL_OUTLINED = "rice_bowl_outlined" - RICE_BOWL_ROUNDED = "rice_bowl_rounded" - RICE_BOWL_SHARP = "rice_bowl_sharp" - RING_VOLUME = "ring_volume" - RING_VOLUME_OUTLINED = "ring_volume_outlined" - RING_VOLUME_ROUNDED = "ring_volume_rounded" - RING_VOLUME_SHARP = "ring_volume_sharp" - ROCKET = "rocket" - ROCKET_LAUNCH = "rocket_launch" - ROCKET_LAUNCH_OUTLINED = "rocket_launch_outlined" - ROCKET_LAUNCH_ROUNDED = "rocket_launch_rounded" - ROCKET_LAUNCH_SHARP = "rocket_launch_sharp" - ROCKET_OUTLINED = "rocket_outlined" - ROCKET_ROUNDED = "rocket_rounded" - ROCKET_SHARP = "rocket_sharp" - ROLLER_SHADES = "roller_shades" - ROLLER_SHADES_CLOSED = "roller_shades_closed" - ROLLER_SHADES_CLOSED_OUTLINED = "roller_shades_closed_outlined" - ROLLER_SHADES_CLOSED_ROUNDED = "roller_shades_closed_rounded" - ROLLER_SHADES_CLOSED_SHARP = "roller_shades_closed_sharp" - ROLLER_SHADES_OUTLINED = "roller_shades_outlined" - ROLLER_SHADES_ROUNDED = "roller_shades_rounded" - ROLLER_SHADES_SHARP = "roller_shades_sharp" - ROLLER_SKATING = "roller_skating" - ROLLER_SKATING_OUTLINED = "roller_skating_outlined" - ROLLER_SKATING_ROUNDED = "roller_skating_rounded" - ROLLER_SKATING_SHARP = "roller_skating_sharp" - ROOFING = "roofing" - ROOFING_OUTLINED = "roofing_outlined" - ROOFING_ROUNDED = "roofing_rounded" - ROOFING_SHARP = "roofing_sharp" - ROOM = "room" - ROOM_OUTLINED = "room_outlined" - ROOM_PREFERENCES = "room_preferences" - ROOM_PREFERENCES_OUTLINED = "room_preferences_outlined" - ROOM_PREFERENCES_ROUNDED = "room_preferences_rounded" - ROOM_PREFERENCES_SHARP = "room_preferences_sharp" - ROOM_ROUNDED = "room_rounded" - ROOM_SERVICE = "room_service" - ROOM_SERVICE_OUTLINED = "room_service_outlined" - ROOM_SERVICE_ROUNDED = "room_service_rounded" - ROOM_SERVICE_SHARP = "room_service_sharp" - ROOM_SHARP = "room_sharp" - ROTATE_90_DEGREES_CCW = "rotate_90_degrees_ccw" - ROTATE_90_DEGREES_CCW_OUTLINED = "rotate_90_degrees_ccw_outlined" - ROTATE_90_DEGREES_CCW_ROUNDED = "rotate_90_degrees_ccw_rounded" - ROTATE_90_DEGREES_CCW_SHARP = "rotate_90_degrees_ccw_sharp" - ROTATE_90_DEGREES_CW = "rotate_90_degrees_cw" - ROTATE_90_DEGREES_CW_OUTLINED = "rotate_90_degrees_cw_outlined" - ROTATE_90_DEGREES_CW_ROUNDED = "rotate_90_degrees_cw_rounded" - ROTATE_90_DEGREES_CW_SHARP = "rotate_90_degrees_cw_sharp" - ROTATE_LEFT = "rotate_left" - ROTATE_LEFT_OUTLINED = "rotate_left_outlined" - ROTATE_LEFT_ROUNDED = "rotate_left_rounded" - ROTATE_LEFT_SHARP = "rotate_left_sharp" - ROTATE_RIGHT = "rotate_right" - ROTATE_RIGHT_OUTLINED = "rotate_right_outlined" - ROTATE_RIGHT_ROUNDED = "rotate_right_rounded" - ROTATE_RIGHT_SHARP = "rotate_right_sharp" - ROUNDABOUT_LEFT = "roundabout_left" - ROUNDABOUT_LEFT_OUTLINED = "roundabout_left_outlined" - ROUNDABOUT_LEFT_ROUNDED = "roundabout_left_rounded" - ROUNDABOUT_LEFT_SHARP = "roundabout_left_sharp" - ROUNDABOUT_RIGHT = "roundabout_right" - ROUNDABOUT_RIGHT_OUTLINED = "roundabout_right_outlined" - ROUNDABOUT_RIGHT_ROUNDED = "roundabout_right_rounded" - ROUNDABOUT_RIGHT_SHARP = "roundabout_right_sharp" - ROUNDED_CORNER = "rounded_corner" - ROUNDED_CORNER_OUTLINED = "rounded_corner_outlined" - ROUNDED_CORNER_ROUNDED = "rounded_corner_rounded" - ROUNDED_CORNER_SHARP = "rounded_corner_sharp" - ROUTE = "route" - ROUTER = "router" - ROUTER_OUTLINED = "router_outlined" - ROUTER_ROUNDED = "router_rounded" - ROUTER_SHARP = "router_sharp" - ROUTE_OUTLINED = "route_outlined" - ROUTE_ROUNDED = "route_rounded" - ROUTE_SHARP = "route_sharp" - ROWING = "rowing" - ROWING_OUTLINED = "rowing_outlined" - ROWING_ROUNDED = "rowing_rounded" - ROWING_SHARP = "rowing_sharp" - RSS_FEED = "rss_feed" - RSS_FEED_OUTLINED = "rss_feed_outlined" - RSS_FEED_ROUNDED = "rss_feed_rounded" - RSS_FEED_SHARP = "rss_feed_sharp" - RSVP = "rsvp" - RSVP_OUTLINED = "rsvp_outlined" - RSVP_ROUNDED = "rsvp_rounded" - RSVP_SHARP = "rsvp_sharp" - RTT = "rtt" - RTT_OUTLINED = "rtt_outlined" - RTT_ROUNDED = "rtt_rounded" - RTT_SHARP = "rtt_sharp" - RULE = "rule" - RULE_FOLDER = "rule_folder" - RULE_FOLDER_OUTLINED = "rule_folder_outlined" - RULE_FOLDER_ROUNDED = "rule_folder_rounded" - RULE_FOLDER_SHARP = "rule_folder_sharp" - RULE_OUTLINED = "rule_outlined" - RULE_ROUNDED = "rule_rounded" - RULE_SHARP = "rule_sharp" - RUNNING_WITH_ERRORS = "running_with_errors" - RUNNING_WITH_ERRORS_OUTLINED = "running_with_errors_outlined" - RUNNING_WITH_ERRORS_ROUNDED = "running_with_errors_rounded" - RUNNING_WITH_ERRORS_SHARP = "running_with_errors_sharp" - RUN_CIRCLE = "run_circle" - RUN_CIRCLE_OUTLINED = "run_circle_outlined" - RUN_CIRCLE_ROUNDED = "run_circle_rounded" - RUN_CIRCLE_SHARP = "run_circle_sharp" - RV_HOOKUP = "rv_hookup" - RV_HOOKUP_OUTLINED = "rv_hookup_outlined" - RV_HOOKUP_ROUNDED = "rv_hookup_rounded" - RV_HOOKUP_SHARP = "rv_hookup_sharp" - R_MOBILEDATA = "r_mobiledata" - R_MOBILEDATA_OUTLINED = "r_mobiledata_outlined" - R_MOBILEDATA_ROUNDED = "r_mobiledata_rounded" - R_MOBILEDATA_SHARP = "r_mobiledata_sharp" - SAFETY_CHECK = "safety_check" - SAFETY_CHECK_OUTLINED = "safety_check_outlined" - SAFETY_CHECK_ROUNDED = "safety_check_rounded" - SAFETY_CHECK_SHARP = "safety_check_sharp" - SAFETY_DIVIDER = "safety_divider" - SAFETY_DIVIDER_OUTLINED = "safety_divider_outlined" - SAFETY_DIVIDER_ROUNDED = "safety_divider_rounded" - SAFETY_DIVIDER_SHARP = "safety_divider_sharp" - SAILING = "sailing" - SAILING_OUTLINED = "sailing_outlined" - SAILING_ROUNDED = "sailing_rounded" - SAILING_SHARP = "sailing_sharp" - SANITIZER = "sanitizer" - SANITIZER_OUTLINED = "sanitizer_outlined" - SANITIZER_ROUNDED = "sanitizer_rounded" - SANITIZER_SHARP = "sanitizer_sharp" - SATELLITE = "satellite" - SATELLITE_ALT = "satellite_alt" - SATELLITE_ALT_OUTLINED = "satellite_alt_outlined" - SATELLITE_ALT_ROUNDED = "satellite_alt_rounded" - SATELLITE_ALT_SHARP = "satellite_alt_sharp" - SATELLITE_OUTLINED = "satellite_outlined" - SATELLITE_ROUNDED = "satellite_rounded" - SATELLITE_SHARP = "satellite_sharp" - SAVE = "save" - SAVED_SEARCH = "saved_search" - SAVED_SEARCH_OUTLINED = "saved_search_outlined" - SAVED_SEARCH_ROUNDED = "saved_search_rounded" - SAVED_SEARCH_SHARP = "saved_search_sharp" - SAVE_ALT = "save_alt" - SAVE_ALT_OUTLINED = "save_alt_outlined" - SAVE_ALT_ROUNDED = "save_alt_rounded" - SAVE_ALT_SHARP = "save_alt_sharp" - SAVE_AS = "save_as" - SAVE_AS_OUTLINED = "save_as_outlined" - SAVE_AS_ROUNDED = "save_as_rounded" - SAVE_AS_SHARP = "save_as_sharp" - SAVE_OUTLINED = "save_outlined" - SAVE_ROUNDED = "save_rounded" - SAVE_SHARP = "save_sharp" - SAVINGS = "savings" - SAVINGS_OUTLINED = "savings_outlined" - SAVINGS_ROUNDED = "savings_rounded" - SAVINGS_SHARP = "savings_sharp" - SCALE = "scale" - SCALE_OUTLINED = "scale_outlined" - SCALE_ROUNDED = "scale_rounded" - SCALE_SHARP = "scale_sharp" - SCANNER = "scanner" - SCANNER_OUTLINED = "scanner_outlined" - SCANNER_ROUNDED = "scanner_rounded" - SCANNER_SHARP = "scanner_sharp" - SCATTER_PLOT = "scatter_plot" - SCATTER_PLOT_OUTLINED = "scatter_plot_outlined" - SCATTER_PLOT_ROUNDED = "scatter_plot_rounded" - SCATTER_PLOT_SHARP = "scatter_plot_sharp" - SCHEDULE = "schedule" - SCHEDULE_OUTLINED = "schedule_outlined" - SCHEDULE_ROUNDED = "schedule_rounded" - SCHEDULE_SEND = "schedule_send" - SCHEDULE_SEND_OUTLINED = "schedule_send_outlined" - SCHEDULE_SEND_ROUNDED = "schedule_send_rounded" - SCHEDULE_SEND_SHARP = "schedule_send_sharp" - SCHEDULE_SHARP = "schedule_sharp" - SCHEMA = "schema" - SCHEMA_OUTLINED = "schema_outlined" - SCHEMA_ROUNDED = "schema_rounded" - SCHEMA_SHARP = "schema_sharp" - SCHOOL = "school" - SCHOOL_OUTLINED = "school_outlined" - SCHOOL_ROUNDED = "school_rounded" - SCHOOL_SHARP = "school_sharp" - SCIENCE = "science" - SCIENCE_OUTLINED = "science_outlined" - SCIENCE_ROUNDED = "science_rounded" - SCIENCE_SHARP = "science_sharp" - SCORE = "score" - SCOREBOARD = "scoreboard" - SCOREBOARD_OUTLINED = "scoreboard_outlined" - SCOREBOARD_ROUNDED = "scoreboard_rounded" - SCOREBOARD_SHARP = "scoreboard_sharp" - SCORE_OUTLINED = "score_outlined" - SCORE_ROUNDED = "score_rounded" - SCORE_SHARP = "score_sharp" - SCREENSHOT = "screenshot" - SCREENSHOT_MONITOR = "screenshot_monitor" - SCREENSHOT_MONITOR_OUTLINED = "screenshot_monitor_outlined" - SCREENSHOT_MONITOR_ROUNDED = "screenshot_monitor_rounded" - SCREENSHOT_MONITOR_SHARP = "screenshot_monitor_sharp" - SCREENSHOT_OUTLINED = "screenshot_outlined" - SCREENSHOT_ROUNDED = "screenshot_rounded" - SCREENSHOT_SHARP = "screenshot_sharp" - SCREEN_LOCK_LANDSCAPE = "screen_lock_landscape" - SCREEN_LOCK_LANDSCAPE_OUTLINED = "screen_lock_landscape_outlined" - SCREEN_LOCK_LANDSCAPE_ROUNDED = "screen_lock_landscape_rounded" - SCREEN_LOCK_LANDSCAPE_SHARP = "screen_lock_landscape_sharp" - SCREEN_LOCK_PORTRAIT = "screen_lock_portrait" - SCREEN_LOCK_PORTRAIT_OUTLINED = "screen_lock_portrait_outlined" - SCREEN_LOCK_PORTRAIT_ROUNDED = "screen_lock_portrait_rounded" - SCREEN_LOCK_PORTRAIT_SHARP = "screen_lock_portrait_sharp" - SCREEN_LOCK_ROTATION = "screen_lock_rotation" - SCREEN_LOCK_ROTATION_OUTLINED = "screen_lock_rotation_outlined" - SCREEN_LOCK_ROTATION_ROUNDED = "screen_lock_rotation_rounded" - SCREEN_LOCK_ROTATION_SHARP = "screen_lock_rotation_sharp" - SCREEN_ROTATION = "screen_rotation" - SCREEN_ROTATION_ALT = "screen_rotation_alt" - SCREEN_ROTATION_ALT_OUTLINED = "screen_rotation_alt_outlined" - SCREEN_ROTATION_ALT_ROUNDED = "screen_rotation_alt_rounded" - SCREEN_ROTATION_ALT_SHARP = "screen_rotation_alt_sharp" - SCREEN_ROTATION_OUTLINED = "screen_rotation_outlined" - SCREEN_ROTATION_ROUNDED = "screen_rotation_rounded" - SCREEN_ROTATION_SHARP = "screen_rotation_sharp" - SCREEN_SEARCH_DESKTOP = "screen_search_desktop" - SCREEN_SEARCH_DESKTOP_OUTLINED = "screen_search_desktop_outlined" - SCREEN_SEARCH_DESKTOP_ROUNDED = "screen_search_desktop_rounded" - SCREEN_SEARCH_DESKTOP_SHARP = "screen_search_desktop_sharp" - SCREEN_SHARE = "screen_share" - SCREEN_SHARE_OUTLINED = "screen_share_outlined" - SCREEN_SHARE_ROUNDED = "screen_share_rounded" - SCREEN_SHARE_SHARP = "screen_share_sharp" - SCUBA_DIVING = "scuba_diving" - SCUBA_DIVING_OUTLINED = "scuba_diving_outlined" - SCUBA_DIVING_ROUNDED = "scuba_diving_rounded" - SCUBA_DIVING_SHARP = "scuba_diving_sharp" - SD = "sd" - SD_CARD = "sd_card" - SD_CARD_ALERT = "sd_card_alert" - SD_CARD_ALERT_OUTLINED = "sd_card_alert_outlined" - SD_CARD_ALERT_ROUNDED = "sd_card_alert_rounded" - SD_CARD_ALERT_SHARP = "sd_card_alert_sharp" - SD_CARD_OUTLINED = "sd_card_outlined" - SD_CARD_ROUNDED = "sd_card_rounded" - SD_CARD_SHARP = "sd_card_sharp" - SD_OUTLINED = "sd_outlined" - SD_ROUNDED = "sd_rounded" - SD_SHARP = "sd_sharp" - SD_STORAGE = "sd_storage" - SD_STORAGE_OUTLINED = "sd_storage_outlined" - SD_STORAGE_ROUNDED = "sd_storage_rounded" - SD_STORAGE_SHARP = "sd_storage_sharp" - SEARCH = "search" - SEARCH_OFF = "search_off" - SEARCH_OFF_OUTLINED = "search_off_outlined" - SEARCH_OFF_ROUNDED = "search_off_rounded" - SEARCH_OFF_SHARP = "search_off_sharp" - SEARCH_OUTLINED = "search_outlined" - SEARCH_ROUNDED = "search_rounded" - SEARCH_SHARP = "search_sharp" - SECURITY = "security" - SECURITY_OUTLINED = "security_outlined" - SECURITY_ROUNDED = "security_rounded" - SECURITY_SHARP = "security_sharp" - SECURITY_UPDATE = "security_update" - SECURITY_UPDATE_GOOD = "security_update_good" - SECURITY_UPDATE_GOOD_OUTLINED = "security_update_good_outlined" - SECURITY_UPDATE_GOOD_ROUNDED = "security_update_good_rounded" - SECURITY_UPDATE_GOOD_SHARP = "security_update_good_sharp" - SECURITY_UPDATE_OUTLINED = "security_update_outlined" - SECURITY_UPDATE_ROUNDED = "security_update_rounded" - SECURITY_UPDATE_SHARP = "security_update_sharp" - SECURITY_UPDATE_WARNING = "security_update_warning" - SECURITY_UPDATE_WARNING_OUTLINED = "security_update_warning_outlined" - SECURITY_UPDATE_WARNING_ROUNDED = "security_update_warning_rounded" - SECURITY_UPDATE_WARNING_SHARP = "security_update_warning_sharp" - SEGMENT = "segment" - SEGMENT_OUTLINED = "segment_outlined" - SEGMENT_ROUNDED = "segment_rounded" - SEGMENT_SHARP = "segment_sharp" - SELECT_ALL = "select_all" - SELECT_ALL_OUTLINED = "select_all_outlined" - SELECT_ALL_ROUNDED = "select_all_rounded" - SELECT_ALL_SHARP = "select_all_sharp" - SELF_IMPROVEMENT = "self_improvement" - SELF_IMPROVEMENT_OUTLINED = "self_improvement_outlined" - SELF_IMPROVEMENT_ROUNDED = "self_improvement_rounded" - SELF_IMPROVEMENT_SHARP = "self_improvement_sharp" - SELL = "sell" - SELL_OUTLINED = "sell_outlined" - SELL_ROUNDED = "sell_rounded" - SELL_SHARP = "sell_sharp" - SEND = "send" - SEND_AND_ARCHIVE = "send_and_archive" - SEND_AND_ARCHIVE_OUTLINED = "send_and_archive_outlined" - SEND_AND_ARCHIVE_ROUNDED = "send_and_archive_rounded" - SEND_AND_ARCHIVE_SHARP = "send_and_archive_sharp" - SEND_OUTLINED = "send_outlined" - SEND_ROUNDED = "send_rounded" - SEND_SHARP = "send_sharp" - SEND_TIME_EXTENSION = "send_time_extension" - SEND_TIME_EXTENSION_OUTLINED = "send_time_extension_outlined" - SEND_TIME_EXTENSION_ROUNDED = "send_time_extension_rounded" - SEND_TIME_EXTENSION_SHARP = "send_time_extension_sharp" - SEND_TO_MOBILE = "send_to_mobile" - SEND_TO_MOBILE_OUTLINED = "send_to_mobile_outlined" - SEND_TO_MOBILE_ROUNDED = "send_to_mobile_rounded" - SEND_TO_MOBILE_SHARP = "send_to_mobile_sharp" - SENSORS = "sensors" - SENSORS_OFF = "sensors_off" - SENSORS_OFF_OUTLINED = "sensors_off_outlined" - SENSORS_OFF_ROUNDED = "sensors_off_rounded" - SENSORS_OFF_SHARP = "sensors_off_sharp" - SENSORS_OUTLINED = "sensors_outlined" - SENSORS_ROUNDED = "sensors_rounded" - SENSORS_SHARP = "sensors_sharp" - SENSOR_DOOR = "sensor_door" - SENSOR_DOOR_OUTLINED = "sensor_door_outlined" - SENSOR_DOOR_ROUNDED = "sensor_door_rounded" - SENSOR_DOOR_SHARP = "sensor_door_sharp" - SENSOR_OCCUPIED = "sensor_occupied" - SENSOR_OCCUPIED_OUTLINED = "sensor_occupied_outlined" - SENSOR_OCCUPIED_ROUNDED = "sensor_occupied_rounded" - SENSOR_OCCUPIED_SHARP = "sensor_occupied_sharp" - SENSOR_WINDOW = "sensor_window" - SENSOR_WINDOW_OUTLINED = "sensor_window_outlined" - SENSOR_WINDOW_ROUNDED = "sensor_window_rounded" - SENSOR_WINDOW_SHARP = "sensor_window_sharp" - SENTIMENT_DISSATISFIED = "sentiment_dissatisfied" - SENTIMENT_DISSATISFIED_OUTLINED = "sentiment_dissatisfied_outlined" - SENTIMENT_DISSATISFIED_ROUNDED = "sentiment_dissatisfied_rounded" - SENTIMENT_DISSATISFIED_SHARP = "sentiment_dissatisfied_sharp" - SENTIMENT_NEUTRAL = "sentiment_neutral" - SENTIMENT_NEUTRAL_OUTLINED = "sentiment_neutral_outlined" - SENTIMENT_NEUTRAL_ROUNDED = "sentiment_neutral_rounded" - SENTIMENT_NEUTRAL_SHARP = "sentiment_neutral_sharp" - SENTIMENT_SATISFIED = "sentiment_satisfied" - SENTIMENT_SATISFIED_ALT = "sentiment_satisfied_alt" - SENTIMENT_SATISFIED_ALT_OUTLINED = "sentiment_satisfied_alt_outlined" - SENTIMENT_SATISFIED_ALT_ROUNDED = "sentiment_satisfied_alt_rounded" - SENTIMENT_SATISFIED_ALT_SHARP = "sentiment_satisfied_alt_sharp" - SENTIMENT_SATISFIED_OUTLINED = "sentiment_satisfied_outlined" - SENTIMENT_SATISFIED_ROUNDED = "sentiment_satisfied_rounded" - SENTIMENT_SATISFIED_SHARP = "sentiment_satisfied_sharp" - SENTIMENT_VERY_DISSATISFIED = "sentiment_very_dissatisfied" - SENTIMENT_VERY_DISSATISFIED_OUTLINED = "sentiment_very_dissatisfied_outlined" - SENTIMENT_VERY_DISSATISFIED_ROUNDED = "sentiment_very_dissatisfied_rounded" - SENTIMENT_VERY_DISSATISFIED_SHARP = "sentiment_very_dissatisfied_sharp" - SENTIMENT_VERY_SATISFIED = "sentiment_very_satisfied" - SENTIMENT_VERY_SATISFIED_OUTLINED = "sentiment_very_satisfied_outlined" - SENTIMENT_VERY_SATISFIED_ROUNDED = "sentiment_very_satisfied_rounded" - SENTIMENT_VERY_SATISFIED_SHARP = "sentiment_very_satisfied_sharp" - SETTINGS = "settings" - SETTINGS_ACCESSIBILITY = "settings_accessibility" - SETTINGS_ACCESSIBILITY_OUTLINED = "settings_accessibility_outlined" - SETTINGS_ACCESSIBILITY_ROUNDED = "settings_accessibility_rounded" - SETTINGS_ACCESSIBILITY_SHARP = "settings_accessibility_sharp" - SETTINGS_APPLICATIONS = "settings_applications" - SETTINGS_APPLICATIONS_OUTLINED = "settings_applications_outlined" - SETTINGS_APPLICATIONS_ROUNDED = "settings_applications_rounded" - SETTINGS_APPLICATIONS_SHARP = "settings_applications_sharp" - SETTINGS_BACKUP_RESTORE = "settings_backup_restore" - SETTINGS_BACKUP_RESTORE_OUTLINED = "settings_backup_restore_outlined" - SETTINGS_BACKUP_RESTORE_ROUNDED = "settings_backup_restore_rounded" - SETTINGS_BACKUP_RESTORE_SHARP = "settings_backup_restore_sharp" - SETTINGS_BLUETOOTH = "settings_bluetooth" - SETTINGS_BLUETOOTH_OUTLINED = "settings_bluetooth_outlined" - SETTINGS_BLUETOOTH_ROUNDED = "settings_bluetooth_rounded" - SETTINGS_BLUETOOTH_SHARP = "settings_bluetooth_sharp" - SETTINGS_BRIGHTNESS = "settings_brightness" - SETTINGS_BRIGHTNESS_OUTLINED = "settings_brightness_outlined" - SETTINGS_BRIGHTNESS_ROUNDED = "settings_brightness_rounded" - SETTINGS_BRIGHTNESS_SHARP = "settings_brightness_sharp" - SETTINGS_CELL = "settings_cell" - SETTINGS_CELL_OUTLINED = "settings_cell_outlined" - SETTINGS_CELL_ROUNDED = "settings_cell_rounded" - SETTINGS_CELL_SHARP = "settings_cell_sharp" - SETTINGS_DISPLAY = "settings_display" - SETTINGS_DISPLAY_OUTLINED = "settings_display_outlined" - SETTINGS_DISPLAY_ROUNDED = "settings_display_rounded" - SETTINGS_DISPLAY_SHARP = "settings_display_sharp" - SETTINGS_ETHERNET = "settings_ethernet" - SETTINGS_ETHERNET_OUTLINED = "settings_ethernet_outlined" - SETTINGS_ETHERNET_ROUNDED = "settings_ethernet_rounded" - SETTINGS_ETHERNET_SHARP = "settings_ethernet_sharp" - SETTINGS_INPUT_ANTENNA = "settings_input_antenna" - SETTINGS_INPUT_ANTENNA_OUTLINED = "settings_input_antenna_outlined" - SETTINGS_INPUT_ANTENNA_ROUNDED = "settings_input_antenna_rounded" - SETTINGS_INPUT_ANTENNA_SHARP = "settings_input_antenna_sharp" - SETTINGS_INPUT_COMPONENT = "settings_input_component" - SETTINGS_INPUT_COMPONENT_OUTLINED = "settings_input_component_outlined" - SETTINGS_INPUT_COMPONENT_ROUNDED = "settings_input_component_rounded" - SETTINGS_INPUT_COMPONENT_SHARP = "settings_input_component_sharp" - SETTINGS_INPUT_COMPOSITE = "settings_input_composite" - SETTINGS_INPUT_COMPOSITE_OUTLINED = "settings_input_composite_outlined" - SETTINGS_INPUT_COMPOSITE_ROUNDED = "settings_input_composite_rounded" - SETTINGS_INPUT_COMPOSITE_SHARP = "settings_input_composite_sharp" - SETTINGS_INPUT_HDMI = "settings_input_hdmi" - SETTINGS_INPUT_HDMI_OUTLINED = "settings_input_hdmi_outlined" - SETTINGS_INPUT_HDMI_ROUNDED = "settings_input_hdmi_rounded" - SETTINGS_INPUT_HDMI_SHARP = "settings_input_hdmi_sharp" - SETTINGS_INPUT_SVIDEO = "settings_input_svideo" - SETTINGS_INPUT_SVIDEO_OUTLINED = "settings_input_svideo_outlined" - SETTINGS_INPUT_SVIDEO_ROUNDED = "settings_input_svideo_rounded" - SETTINGS_INPUT_SVIDEO_SHARP = "settings_input_svideo_sharp" - SETTINGS_OUTLINED = "settings_outlined" - SETTINGS_OVERSCAN = "settings_overscan" - SETTINGS_OVERSCAN_OUTLINED = "settings_overscan_outlined" - SETTINGS_OVERSCAN_ROUNDED = "settings_overscan_rounded" - SETTINGS_OVERSCAN_SHARP = "settings_overscan_sharp" - SETTINGS_PHONE = "settings_phone" - SETTINGS_PHONE_OUTLINED = "settings_phone_outlined" - SETTINGS_PHONE_ROUNDED = "settings_phone_rounded" - SETTINGS_PHONE_SHARP = "settings_phone_sharp" - SETTINGS_POWER = "settings_power" - SETTINGS_POWER_OUTLINED = "settings_power_outlined" - SETTINGS_POWER_ROUNDED = "settings_power_rounded" - SETTINGS_POWER_SHARP = "settings_power_sharp" - SETTINGS_REMOTE = "settings_remote" - SETTINGS_REMOTE_OUTLINED = "settings_remote_outlined" - SETTINGS_REMOTE_ROUNDED = "settings_remote_rounded" - SETTINGS_REMOTE_SHARP = "settings_remote_sharp" - SETTINGS_ROUNDED = "settings_rounded" - SETTINGS_SHARP = "settings_sharp" - SETTINGS_SUGGEST = "settings_suggest" - SETTINGS_SUGGEST_OUTLINED = "settings_suggest_outlined" - SETTINGS_SUGGEST_ROUNDED = "settings_suggest_rounded" - SETTINGS_SUGGEST_SHARP = "settings_suggest_sharp" - SETTINGS_SYSTEM_DAYDREAM = "settings_system_daydream" - SETTINGS_SYSTEM_DAYDREAM_OUTLINED = "settings_system_daydream_outlined" - SETTINGS_SYSTEM_DAYDREAM_ROUNDED = "settings_system_daydream_rounded" - SETTINGS_SYSTEM_DAYDREAM_SHARP = "settings_system_daydream_sharp" - SETTINGS_VOICE = "settings_voice" - SETTINGS_VOICE_OUTLINED = "settings_voice_outlined" - SETTINGS_VOICE_ROUNDED = "settings_voice_rounded" - SETTINGS_VOICE_SHARP = "settings_voice_sharp" - SET_MEAL = "set_meal" - SET_MEAL_OUTLINED = "set_meal_outlined" - SET_MEAL_ROUNDED = "set_meal_rounded" - SET_MEAL_SHARP = "set_meal_sharp" - SEVENTEEN_MP = "seventeen_mp" - SEVENTEEN_MP_OUTLINED = "seventeen_mp_outlined" - SEVENTEEN_MP_ROUNDED = "seventeen_mp_rounded" - SEVENTEEN_MP_SHARP = "seventeen_mp_sharp" - SEVEN_K = "seven_k" - SEVEN_K_OUTLINED = "seven_k_outlined" - SEVEN_K_PLUS = "seven_k_plus" - SEVEN_K_PLUS_OUTLINED = "seven_k_plus_outlined" - SEVEN_K_PLUS_ROUNDED = "seven_k_plus_rounded" - SEVEN_K_PLUS_SHARP = "seven_k_plus_sharp" - SEVEN_K_ROUNDED = "seven_k_rounded" - SEVEN_K_SHARP = "seven_k_sharp" - SEVEN_MP = "seven_mp" - SEVEN_MP_OUTLINED = "seven_mp_outlined" - SEVEN_MP_ROUNDED = "seven_mp_rounded" - SEVEN_MP_SHARP = "seven_mp_sharp" - SEVERE_COLD = "severe_cold" - SEVERE_COLD_OUTLINED = "severe_cold_outlined" - SEVERE_COLD_ROUNDED = "severe_cold_rounded" - SEVERE_COLD_SHARP = "severe_cold_sharp" - SHAPE_LINE = "shape_line" - SHAPE_LINE_OUTLINED = "shape_line_outlined" - SHAPE_LINE_ROUNDED = "shape_line_rounded" - SHAPE_LINE_SHARP = "shape_line_sharp" - SHARE = "share" - SHARE_ARRIVAL_TIME = "share_arrival_time" - SHARE_ARRIVAL_TIME_OUTLINED = "share_arrival_time_outlined" - SHARE_ARRIVAL_TIME_ROUNDED = "share_arrival_time_rounded" - SHARE_ARRIVAL_TIME_SHARP = "share_arrival_time_sharp" - SHARE_LOCATION = "share_location" - SHARE_LOCATION_OUTLINED = "share_location_outlined" - SHARE_LOCATION_ROUNDED = "share_location_rounded" - SHARE_LOCATION_SHARP = "share_location_sharp" - SHARE_OUTLINED = "share_outlined" - SHARE_ROUNDED = "share_rounded" - SHARE_SHARP = "share_sharp" - SHELVES = "shelves" - SHIELD = "shield" - SHIELD_MOON = "shield_moon" - SHIELD_MOON_OUTLINED = "shield_moon_outlined" - SHIELD_MOON_ROUNDED = "shield_moon_rounded" - SHIELD_MOON_SHARP = "shield_moon_sharp" - SHIELD_OUTLINED = "shield_outlined" - SHIELD_ROUNDED = "shield_rounded" - SHIELD_SHARP = "shield_sharp" - SHOP = "shop" - SHOPIFY = "shopify" - SHOPIFY_OUTLINED = "shopify_outlined" - SHOPIFY_ROUNDED = "shopify_rounded" - SHOPIFY_SHARP = "shopify_sharp" - SHOPPING_BAG = "shopping_bag" - SHOPPING_BAG_OUTLINED = "shopping_bag_outlined" - SHOPPING_BAG_ROUNDED = "shopping_bag_rounded" - SHOPPING_BAG_SHARP = "shopping_bag_sharp" - SHOPPING_BASKET = "shopping_basket" - SHOPPING_BASKET_OUTLINED = "shopping_basket_outlined" - SHOPPING_BASKET_ROUNDED = "shopping_basket_rounded" - SHOPPING_BASKET_SHARP = "shopping_basket_sharp" - SHOPPING_CART = "shopping_cart" - SHOPPING_CART_CHECKOUT = "shopping_cart_checkout" - SHOPPING_CART_CHECKOUT_OUTLINED = "shopping_cart_checkout_outlined" - SHOPPING_CART_CHECKOUT_ROUNDED = "shopping_cart_checkout_rounded" - SHOPPING_CART_CHECKOUT_SHARP = "shopping_cart_checkout_sharp" - SHOPPING_CART_OUTLINED = "shopping_cart_outlined" - SHOPPING_CART_ROUNDED = "shopping_cart_rounded" - SHOPPING_CART_SHARP = "shopping_cart_sharp" - SHOP_2 = "shop_2" - SHOP_2_OUTLINED = "shop_2_outlined" - SHOP_2_ROUNDED = "shop_2_rounded" - SHOP_2_SHARP = "shop_2_sharp" - SHOP_OUTLINED = "shop_outlined" - SHOP_ROUNDED = "shop_rounded" - SHOP_SHARP = "shop_sharp" - SHOP_TWO = "shop_two" - SHOP_TWO_OUTLINED = "shop_two_outlined" - SHOP_TWO_ROUNDED = "shop_two_rounded" - SHOP_TWO_SHARP = "shop_two_sharp" - SHORTCUT = "shortcut" - SHORTCUT_OUTLINED = "shortcut_outlined" - SHORTCUT_ROUNDED = "shortcut_rounded" - SHORTCUT_SHARP = "shortcut_sharp" - SHORT_TEXT = "short_text" - SHORT_TEXT_OUTLINED = "short_text_outlined" - SHORT_TEXT_ROUNDED = "short_text_rounded" - SHORT_TEXT_SHARP = "short_text_sharp" - SHOWER = "shower" - SHOWER_OUTLINED = "shower_outlined" - SHOWER_ROUNDED = "shower_rounded" - SHOWER_SHARP = "shower_sharp" - SHOW_CHART = "show_chart" - SHOW_CHART_OUTLINED = "show_chart_outlined" - SHOW_CHART_ROUNDED = "show_chart_rounded" - SHOW_CHART_SHARP = "show_chart_sharp" - SHUFFLE = "shuffle" - SHUFFLE_ON = "shuffle_on" - SHUFFLE_ON_OUTLINED = "shuffle_on_outlined" - SHUFFLE_ON_ROUNDED = "shuffle_on_rounded" - SHUFFLE_ON_SHARP = "shuffle_on_sharp" - SHUFFLE_OUTLINED = "shuffle_outlined" - SHUFFLE_ROUNDED = "shuffle_rounded" - SHUFFLE_SHARP = "shuffle_sharp" - SHUTTER_SPEED = "shutter_speed" - SHUTTER_SPEED_OUTLINED = "shutter_speed_outlined" - SHUTTER_SPEED_ROUNDED = "shutter_speed_rounded" - SHUTTER_SPEED_SHARP = "shutter_speed_sharp" - SICK = "sick" - SICK_OUTLINED = "sick_outlined" - SICK_ROUNDED = "sick_rounded" - SICK_SHARP = "sick_sharp" - SIGNAL_CELLULAR_0_BAR = "signal_cellular_0_bar" - SIGNAL_CELLULAR_0_BAR_OUTLINED = "signal_cellular_0_bar_outlined" - SIGNAL_CELLULAR_0_BAR_ROUNDED = "signal_cellular_0_bar_rounded" - SIGNAL_CELLULAR_0_BAR_SHARP = "signal_cellular_0_bar_sharp" - SIGNAL_CELLULAR_4_BAR = "signal_cellular_4_bar" - SIGNAL_CELLULAR_4_BAR_OUTLINED = "signal_cellular_4_bar_outlined" - SIGNAL_CELLULAR_4_BAR_ROUNDED = "signal_cellular_4_bar_rounded" - SIGNAL_CELLULAR_4_BAR_SHARP = "signal_cellular_4_bar_sharp" - SIGNAL_CELLULAR_ALT = "signal_cellular_alt" - SIGNAL_CELLULAR_ALT_1_BAR = "signal_cellular_alt_1_bar" - SIGNAL_CELLULAR_ALT_1_BAR_OUTLINED = "signal_cellular_alt_1_bar_outlined" - SIGNAL_CELLULAR_ALT_1_BAR_ROUNDED = "signal_cellular_alt_1_bar_rounded" - SIGNAL_CELLULAR_ALT_1_BAR_SHARP = "signal_cellular_alt_1_bar_sharp" - SIGNAL_CELLULAR_ALT_2_BAR = "signal_cellular_alt_2_bar" - SIGNAL_CELLULAR_ALT_2_BAR_OUTLINED = "signal_cellular_alt_2_bar_outlined" - SIGNAL_CELLULAR_ALT_2_BAR_ROUNDED = "signal_cellular_alt_2_bar_rounded" - SIGNAL_CELLULAR_ALT_2_BAR_SHARP = "signal_cellular_alt_2_bar_sharp" - SIGNAL_CELLULAR_ALT_OUTLINED = "signal_cellular_alt_outlined" - SIGNAL_CELLULAR_ALT_ROUNDED = "signal_cellular_alt_rounded" - SIGNAL_CELLULAR_ALT_SHARP = "signal_cellular_alt_sharp" - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR = ( - "signal_cellular_connected_no_internet_0_bar" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_OUTLINED = ( - "signal_cellular_connected_no_internet_0_bar_outlined" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_ROUNDED = ( - "signal_cellular_connected_no_internet_0_bar_rounded" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_SHARP = ( - "signal_cellular_connected_no_internet_0_bar_sharp" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR = ( - "signal_cellular_connected_no_internet_4_bar" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR_OUTLINED = ( - "signal_cellular_connected_no_internet_4_bar_outlined" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR_ROUNDED = ( - "signal_cellular_connected_no_internet_4_bar_rounded" - ) - SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR_SHARP = ( - "signal_cellular_connected_no_internet_4_bar_sharp" - ) - SIGNAL_CELLULAR_NODATA = "signal_cellular_nodata" - SIGNAL_CELLULAR_NODATA_OUTLINED = "signal_cellular_nodata_outlined" - SIGNAL_CELLULAR_NODATA_ROUNDED = "signal_cellular_nodata_rounded" - SIGNAL_CELLULAR_NODATA_SHARP = "signal_cellular_nodata_sharp" - SIGNAL_CELLULAR_NO_SIM = "signal_cellular_no_sim" - SIGNAL_CELLULAR_NO_SIM_OUTLINED = "signal_cellular_no_sim_outlined" - SIGNAL_CELLULAR_NO_SIM_ROUNDED = "signal_cellular_no_sim_rounded" - SIGNAL_CELLULAR_NO_SIM_SHARP = "signal_cellular_no_sim_sharp" - SIGNAL_CELLULAR_NULL = "signal_cellular_null" - SIGNAL_CELLULAR_NULL_OUTLINED = "signal_cellular_null_outlined" - SIGNAL_CELLULAR_NULL_ROUNDED = "signal_cellular_null_rounded" - SIGNAL_CELLULAR_NULL_SHARP = "signal_cellular_null_sharp" - SIGNAL_CELLULAR_OFF = "signal_cellular_off" - SIGNAL_CELLULAR_OFF_OUTLINED = "signal_cellular_off_outlined" - SIGNAL_CELLULAR_OFF_ROUNDED = "signal_cellular_off_rounded" - SIGNAL_CELLULAR_OFF_SHARP = "signal_cellular_off_sharp" - SIGNAL_WIFI_0_BAR = "signal_wifi_0_bar" - SIGNAL_WIFI_0_BAR_OUTLINED = "signal_wifi_0_bar_outlined" - SIGNAL_WIFI_0_BAR_ROUNDED = "signal_wifi_0_bar_rounded" - SIGNAL_WIFI_0_BAR_SHARP = "signal_wifi_0_bar_sharp" - SIGNAL_WIFI_4_BAR = "signal_wifi_4_bar" - SIGNAL_WIFI_4_BAR_LOCK = "signal_wifi_4_bar_lock" - SIGNAL_WIFI_4_BAR_LOCK_OUTLINED = "signal_wifi_4_bar_lock_outlined" - SIGNAL_WIFI_4_BAR_LOCK_ROUNDED = "signal_wifi_4_bar_lock_rounded" - SIGNAL_WIFI_4_BAR_LOCK_SHARP = "signal_wifi_4_bar_lock_sharp" - SIGNAL_WIFI_4_BAR_OUTLINED = "signal_wifi_4_bar_outlined" - SIGNAL_WIFI_4_BAR_ROUNDED = "signal_wifi_4_bar_rounded" - SIGNAL_WIFI_4_BAR_SHARP = "signal_wifi_4_bar_sharp" - SIGNAL_WIFI_BAD = "signal_wifi_bad" - SIGNAL_WIFI_BAD_OUTLINED = "signal_wifi_bad_outlined" - SIGNAL_WIFI_BAD_ROUNDED = "signal_wifi_bad_rounded" - SIGNAL_WIFI_BAD_SHARP = "signal_wifi_bad_sharp" - SIGNAL_WIFI_CONNECTED_NO_INTERNET_4 = "signal_wifi_connected_no_internet_4" - SIGNAL_WIFI_CONNECTED_NO_INTERNET_4_OUTLINED = ( - "signal_wifi_connected_no_internet_4_outlined" - ) - SIGNAL_WIFI_CONNECTED_NO_INTERNET_4_ROUNDED = ( - "signal_wifi_connected_no_internet_4_rounded" - ) - SIGNAL_WIFI_CONNECTED_NO_INTERNET_4_SHARP = ( - "signal_wifi_connected_no_internet_4_sharp" - ) - SIGNAL_WIFI_OFF = "signal_wifi_off" - SIGNAL_WIFI_OFF_OUTLINED = "signal_wifi_off_outlined" - SIGNAL_WIFI_OFF_ROUNDED = "signal_wifi_off_rounded" - SIGNAL_WIFI_OFF_SHARP = "signal_wifi_off_sharp" - SIGNAL_WIFI_STATUSBAR_4_BAR = "signal_wifi_statusbar_4_bar" - SIGNAL_WIFI_STATUSBAR_4_BAR_OUTLINED = "signal_wifi_statusbar_4_bar_outlined" - SIGNAL_WIFI_STATUSBAR_4_BAR_ROUNDED = "signal_wifi_statusbar_4_bar_rounded" - SIGNAL_WIFI_STATUSBAR_4_BAR_SHARP = "signal_wifi_statusbar_4_bar_sharp" - SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4 = ( - "signal_wifi_statusbar_connected_no_internet_4" - ) - SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4_OUTLINED = ( - "signal_wifi_statusbar_connected_no_internet_4_outlined" - ) - SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4_ROUNDED = ( - "signal_wifi_statusbar_connected_no_internet_4_rounded" - ) - SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4_SHARP = ( - "signal_wifi_statusbar_connected_no_internet_4_sharp" - ) - SIGNAL_WIFI_STATUSBAR_NULL = "signal_wifi_statusbar_null" - SIGNAL_WIFI_STATUSBAR_NULL_OUTLINED = "signal_wifi_statusbar_null_outlined" - SIGNAL_WIFI_STATUSBAR_NULL_ROUNDED = "signal_wifi_statusbar_null_rounded" - SIGNAL_WIFI_STATUSBAR_NULL_SHARP = "signal_wifi_statusbar_null_sharp" - SIGNPOST = "signpost" - SIGNPOST_OUTLINED = "signpost_outlined" - SIGNPOST_ROUNDED = "signpost_rounded" - SIGNPOST_SHARP = "signpost_sharp" - SIGN_LANGUAGE = "sign_language" - SIGN_LANGUAGE_OUTLINED = "sign_language_outlined" - SIGN_LANGUAGE_ROUNDED = "sign_language_rounded" - SIGN_LANGUAGE_SHARP = "sign_language_sharp" - SIM_CARD = "sim_card" - SIM_CARD_ALERT = "sim_card_alert" - SIM_CARD_ALERT_OUTLINED = "sim_card_alert_outlined" - SIM_CARD_ALERT_ROUNDED = "sim_card_alert_rounded" - SIM_CARD_ALERT_SHARP = "sim_card_alert_sharp" - SIM_CARD_DOWNLOAD = "sim_card_download" - SIM_CARD_DOWNLOAD_OUTLINED = "sim_card_download_outlined" - SIM_CARD_DOWNLOAD_ROUNDED = "sim_card_download_rounded" - SIM_CARD_DOWNLOAD_SHARP = "sim_card_download_sharp" - SIM_CARD_OUTLINED = "sim_card_outlined" - SIM_CARD_ROUNDED = "sim_card_rounded" - SIM_CARD_SHARP = "sim_card_sharp" - SINGLE_BED = "single_bed" - SINGLE_BED_OUTLINED = "single_bed_outlined" - SINGLE_BED_ROUNDED = "single_bed_rounded" - SINGLE_BED_SHARP = "single_bed_sharp" - SIP = "sip" - SIP_OUTLINED = "sip_outlined" - SIP_ROUNDED = "sip_rounded" - SIP_SHARP = "sip_sharp" - SIXTEEN_MP = "sixteen_mp" - SIXTEEN_MP_OUTLINED = "sixteen_mp_outlined" - SIXTEEN_MP_ROUNDED = "sixteen_mp_rounded" - SIXTEEN_MP_SHARP = "sixteen_mp_sharp" - SIXTY_FPS = "sixty_fps" - SIXTY_FPS_OUTLINED = "sixty_fps_outlined" - SIXTY_FPS_ROUNDED = "sixty_fps_rounded" - SIXTY_FPS_SELECT = "sixty_fps_select" - SIXTY_FPS_SELECT_OUTLINED = "sixty_fps_select_outlined" - SIXTY_FPS_SELECT_ROUNDED = "sixty_fps_select_rounded" - SIXTY_FPS_SELECT_SHARP = "sixty_fps_select_sharp" - SIXTY_FPS_SHARP = "sixty_fps_sharp" - SIX_FT_APART = "six_ft_apart" - SIX_FT_APART_OUTLINED = "six_ft_apart_outlined" - SIX_FT_APART_ROUNDED = "six_ft_apart_rounded" - SIX_FT_APART_SHARP = "six_ft_apart_sharp" - SIX_K = "six_k" - SIX_K_OUTLINED = "six_k_outlined" - SIX_K_PLUS = "six_k_plus" - SIX_K_PLUS_OUTLINED = "six_k_plus_outlined" - SIX_K_PLUS_ROUNDED = "six_k_plus_rounded" - SIX_K_PLUS_SHARP = "six_k_plus_sharp" - SIX_K_ROUNDED = "six_k_rounded" - SIX_K_SHARP = "six_k_sharp" - SIX_MP = "six_mp" - SIX_MP_OUTLINED = "six_mp_outlined" - SIX_MP_ROUNDED = "six_mp_rounded" - SIX_MP_SHARP = "six_mp_sharp" - SKATEBOARDING = "skateboarding" - SKATEBOARDING_OUTLINED = "skateboarding_outlined" - SKATEBOARDING_ROUNDED = "skateboarding_rounded" - SKATEBOARDING_SHARP = "skateboarding_sharp" - SKIP_NEXT = "skip_next" - SKIP_NEXT_OUTLINED = "skip_next_outlined" - SKIP_NEXT_ROUNDED = "skip_next_rounded" - SKIP_NEXT_SHARP = "skip_next_sharp" - SKIP_PREVIOUS = "skip_previous" - SKIP_PREVIOUS_OUTLINED = "skip_previous_outlined" - SKIP_PREVIOUS_ROUNDED = "skip_previous_rounded" - SKIP_PREVIOUS_SHARP = "skip_previous_sharp" - SLEDDING = "sledding" - SLEDDING_OUTLINED = "sledding_outlined" - SLEDDING_ROUNDED = "sledding_rounded" - SLEDDING_SHARP = "sledding_sharp" - SLIDESHOW = "slideshow" - SLIDESHOW_OUTLINED = "slideshow_outlined" - SLIDESHOW_ROUNDED = "slideshow_rounded" - SLIDESHOW_SHARP = "slideshow_sharp" - SLOW_MOTION_VIDEO = "slow_motion_video" - SLOW_MOTION_VIDEO_OUTLINED = "slow_motion_video_outlined" - SLOW_MOTION_VIDEO_ROUNDED = "slow_motion_video_rounded" - SLOW_MOTION_VIDEO_SHARP = "slow_motion_video_sharp" - SMARTPHONE = "smartphone" - SMARTPHONE_OUTLINED = "smartphone_outlined" - SMARTPHONE_ROUNDED = "smartphone_rounded" - SMARTPHONE_SHARP = "smartphone_sharp" - SMART_BUTTON = "smart_button" - SMART_BUTTON_OUTLINED = "smart_button_outlined" - SMART_BUTTON_ROUNDED = "smart_button_rounded" - SMART_BUTTON_SHARP = "smart_button_sharp" - SMART_DISPLAY = "smart_display" - SMART_DISPLAY_OUTLINED = "smart_display_outlined" - SMART_DISPLAY_ROUNDED = "smart_display_rounded" - SMART_DISPLAY_SHARP = "smart_display_sharp" - SMART_SCREEN = "smart_screen" - SMART_SCREEN_OUTLINED = "smart_screen_outlined" - SMART_SCREEN_ROUNDED = "smart_screen_rounded" - SMART_SCREEN_SHARP = "smart_screen_sharp" - SMART_TOY = "smart_toy" - SMART_TOY_OUTLINED = "smart_toy_outlined" - SMART_TOY_ROUNDED = "smart_toy_rounded" - SMART_TOY_SHARP = "smart_toy_sharp" - SMOKE_FREE = "smoke_free" - SMOKE_FREE_OUTLINED = "smoke_free_outlined" - SMOKE_FREE_ROUNDED = "smoke_free_rounded" - SMOKE_FREE_SHARP = "smoke_free_sharp" - SMOKING_ROOMS = "smoking_rooms" - SMOKING_ROOMS_OUTLINED = "smoking_rooms_outlined" - SMOKING_ROOMS_ROUNDED = "smoking_rooms_rounded" - SMOKING_ROOMS_SHARP = "smoking_rooms_sharp" - SMS = "sms" - SMS_FAILED = "sms_failed" - SMS_FAILED_OUTLINED = "sms_failed_outlined" - SMS_FAILED_ROUNDED = "sms_failed_rounded" - SMS_FAILED_SHARP = "sms_failed_sharp" - SMS_OUTLINED = "sms_outlined" - SMS_ROUNDED = "sms_rounded" - SMS_SHARP = "sms_sharp" - SNAPCHAT = "snapchat" - SNAPCHAT_OUTLINED = "snapchat_outlined" - SNAPCHAT_ROUNDED = "snapchat_rounded" - SNAPCHAT_SHARP = "snapchat_sharp" - SNIPPET_FOLDER = "snippet_folder" - SNIPPET_FOLDER_OUTLINED = "snippet_folder_outlined" - SNIPPET_FOLDER_ROUNDED = "snippet_folder_rounded" - SNIPPET_FOLDER_SHARP = "snippet_folder_sharp" - SNOOZE = "snooze" - SNOOZE_OUTLINED = "snooze_outlined" - SNOOZE_ROUNDED = "snooze_rounded" - SNOOZE_SHARP = "snooze_sharp" - SNOWBOARDING = "snowboarding" - SNOWBOARDING_OUTLINED = "snowboarding_outlined" - SNOWBOARDING_ROUNDED = "snowboarding_rounded" - SNOWBOARDING_SHARP = "snowboarding_sharp" - SNOWING = "snowing" - SNOWMOBILE = "snowmobile" - SNOWMOBILE_OUTLINED = "snowmobile_outlined" - SNOWMOBILE_ROUNDED = "snowmobile_rounded" - SNOWMOBILE_SHARP = "snowmobile_sharp" - SNOWSHOEING = "snowshoeing" - SNOWSHOEING_OUTLINED = "snowshoeing_outlined" - SNOWSHOEING_ROUNDED = "snowshoeing_rounded" - SNOWSHOEING_SHARP = "snowshoeing_sharp" - SOAP = "soap" - SOAP_OUTLINED = "soap_outlined" - SOAP_ROUNDED = "soap_rounded" - SOAP_SHARP = "soap_sharp" - SOCIAL_DISTANCE = "social_distance" - SOCIAL_DISTANCE_OUTLINED = "social_distance_outlined" - SOCIAL_DISTANCE_ROUNDED = "social_distance_rounded" - SOCIAL_DISTANCE_SHARP = "social_distance_sharp" - SOLAR_POWER = "solar_power" - SOLAR_POWER_OUTLINED = "solar_power_outlined" - SOLAR_POWER_ROUNDED = "solar_power_rounded" - SOLAR_POWER_SHARP = "solar_power_sharp" - SORT = "sort" - SORT_BY_ALPHA = "sort_by_alpha" - SORT_BY_ALPHA_OUTLINED = "sort_by_alpha_outlined" - SORT_BY_ALPHA_ROUNDED = "sort_by_alpha_rounded" - SORT_BY_ALPHA_SHARP = "sort_by_alpha_sharp" - SORT_OUTLINED = "sort_outlined" - SORT_ROUNDED = "sort_rounded" - SORT_SHARP = "sort_sharp" - SOS = "sos" - SOS_OUTLINED = "sos_outlined" - SOS_ROUNDED = "sos_rounded" - SOS_SHARP = "sos_sharp" - SOUP_KITCHEN = "soup_kitchen" - SOUP_KITCHEN_OUTLINED = "soup_kitchen_outlined" - SOUP_KITCHEN_ROUNDED = "soup_kitchen_rounded" - SOUP_KITCHEN_SHARP = "soup_kitchen_sharp" - SOURCE = "source" - SOURCE_OUTLINED = "source_outlined" - SOURCE_ROUNDED = "source_rounded" - SOURCE_SHARP = "source_sharp" - SOUTH = "south" - SOUTH_AMERICA = "south_america" - SOUTH_AMERICA_OUTLINED = "south_america_outlined" - SOUTH_AMERICA_ROUNDED = "south_america_rounded" - SOUTH_AMERICA_SHARP = "south_america_sharp" - SOUTH_EAST = "south_east" - SOUTH_EAST_OUTLINED = "south_east_outlined" - SOUTH_EAST_ROUNDED = "south_east_rounded" - SOUTH_EAST_SHARP = "south_east_sharp" - SOUTH_OUTLINED = "south_outlined" - SOUTH_ROUNDED = "south_rounded" - SOUTH_SHARP = "south_sharp" - SOUTH_WEST = "south_west" - SOUTH_WEST_OUTLINED = "south_west_outlined" - SOUTH_WEST_ROUNDED = "south_west_rounded" - SOUTH_WEST_SHARP = "south_west_sharp" - SPA = "spa" - SPACE_BAR = "space_bar" - SPACE_BAR_OUTLINED = "space_bar_outlined" - SPACE_BAR_ROUNDED = "space_bar_rounded" - SPACE_BAR_SHARP = "space_bar_sharp" - SPACE_DASHBOARD = "space_dashboard" - SPACE_DASHBOARD_OUTLINED = "space_dashboard_outlined" - SPACE_DASHBOARD_ROUNDED = "space_dashboard_rounded" - SPACE_DASHBOARD_SHARP = "space_dashboard_sharp" - SPATIAL_AUDIO = "spatial_audio" - SPATIAL_AUDIO_OFF = "spatial_audio_off" - SPATIAL_AUDIO_OFF_OUTLINED = "spatial_audio_off_outlined" - SPATIAL_AUDIO_OFF_ROUNDED = "spatial_audio_off_rounded" - SPATIAL_AUDIO_OFF_SHARP = "spatial_audio_off_sharp" - SPATIAL_AUDIO_OUTLINED = "spatial_audio_outlined" - SPATIAL_AUDIO_ROUNDED = "spatial_audio_rounded" - SPATIAL_AUDIO_SHARP = "spatial_audio_sharp" - SPATIAL_TRACKING = "spatial_tracking" - SPATIAL_TRACKING_OUTLINED = "spatial_tracking_outlined" - SPATIAL_TRACKING_ROUNDED = "spatial_tracking_rounded" - SPATIAL_TRACKING_SHARP = "spatial_tracking_sharp" - SPA_OUTLINED = "spa_outlined" - SPA_ROUNDED = "spa_rounded" - SPA_SHARP = "spa_sharp" - SPEAKER = "speaker" - SPEAKER_GROUP = "speaker_group" - SPEAKER_GROUP_OUTLINED = "speaker_group_outlined" - SPEAKER_GROUP_ROUNDED = "speaker_group_rounded" - SPEAKER_GROUP_SHARP = "speaker_group_sharp" - SPEAKER_NOTES = "speaker_notes" - SPEAKER_NOTES_OFF = "speaker_notes_off" - SPEAKER_NOTES_OFF_OUTLINED = "speaker_notes_off_outlined" - SPEAKER_NOTES_OFF_ROUNDED = "speaker_notes_off_rounded" - SPEAKER_NOTES_OFF_SHARP = "speaker_notes_off_sharp" - SPEAKER_NOTES_OUTLINED = "speaker_notes_outlined" - SPEAKER_NOTES_ROUNDED = "speaker_notes_rounded" - SPEAKER_NOTES_SHARP = "speaker_notes_sharp" - SPEAKER_OUTLINED = "speaker_outlined" - SPEAKER_PHONE = "speaker_phone" - SPEAKER_PHONE_OUTLINED = "speaker_phone_outlined" - SPEAKER_PHONE_ROUNDED = "speaker_phone_rounded" - SPEAKER_PHONE_SHARP = "speaker_phone_sharp" - SPEAKER_ROUNDED = "speaker_rounded" - SPEAKER_SHARP = "speaker_sharp" - SPEED = "speed" - SPEED_OUTLINED = "speed_outlined" - SPEED_ROUNDED = "speed_rounded" - SPEED_SHARP = "speed_sharp" - SPELLCHECK = "spellcheck" - SPELLCHECK_OUTLINED = "spellcheck_outlined" - SPELLCHECK_ROUNDED = "spellcheck_rounded" - SPELLCHECK_SHARP = "spellcheck_sharp" - SPLITSCREEN = "splitscreen" - SPLITSCREEN_OUTLINED = "splitscreen_outlined" - SPLITSCREEN_ROUNDED = "splitscreen_rounded" - SPLITSCREEN_SHARP = "splitscreen_sharp" - SPOKE = "spoke" - SPOKE_OUTLINED = "spoke_outlined" - SPOKE_ROUNDED = "spoke_rounded" - SPOKE_SHARP = "spoke_sharp" - SPORTS = "sports" - SPORTS_BAR = "sports_bar" - SPORTS_BAR_OUTLINED = "sports_bar_outlined" - SPORTS_BAR_ROUNDED = "sports_bar_rounded" - SPORTS_BAR_SHARP = "sports_bar_sharp" - SPORTS_BASEBALL = "sports_baseball" - SPORTS_BASEBALL_OUTLINED = "sports_baseball_outlined" - SPORTS_BASEBALL_ROUNDED = "sports_baseball_rounded" - SPORTS_BASEBALL_SHARP = "sports_baseball_sharp" - SPORTS_BASKETBALL = "sports_basketball" - SPORTS_BASKETBALL_OUTLINED = "sports_basketball_outlined" - SPORTS_BASKETBALL_ROUNDED = "sports_basketball_rounded" - SPORTS_BASKETBALL_SHARP = "sports_basketball_sharp" - SPORTS_CRICKET = "sports_cricket" - SPORTS_CRICKET_OUTLINED = "sports_cricket_outlined" - SPORTS_CRICKET_ROUNDED = "sports_cricket_rounded" - SPORTS_CRICKET_SHARP = "sports_cricket_sharp" - SPORTS_ESPORTS = "sports_esports" - SPORTS_ESPORTS_OUTLINED = "sports_esports_outlined" - SPORTS_ESPORTS_ROUNDED = "sports_esports_rounded" - SPORTS_ESPORTS_SHARP = "sports_esports_sharp" - SPORTS_FOOTBALL = "sports_football" - SPORTS_FOOTBALL_OUTLINED = "sports_football_outlined" - SPORTS_FOOTBALL_ROUNDED = "sports_football_rounded" - SPORTS_FOOTBALL_SHARP = "sports_football_sharp" - SPORTS_GOLF = "sports_golf" - SPORTS_GOLF_OUTLINED = "sports_golf_outlined" - SPORTS_GOLF_ROUNDED = "sports_golf_rounded" - SPORTS_GOLF_SHARP = "sports_golf_sharp" - SPORTS_GYMNASTICS = "sports_gymnastics" - SPORTS_GYMNASTICS_OUTLINED = "sports_gymnastics_outlined" - SPORTS_GYMNASTICS_ROUNDED = "sports_gymnastics_rounded" - SPORTS_GYMNASTICS_SHARP = "sports_gymnastics_sharp" - SPORTS_HANDBALL = "sports_handball" - SPORTS_HANDBALL_OUTLINED = "sports_handball_outlined" - SPORTS_HANDBALL_ROUNDED = "sports_handball_rounded" - SPORTS_HANDBALL_SHARP = "sports_handball_sharp" - SPORTS_HOCKEY = "sports_hockey" - SPORTS_HOCKEY_OUTLINED = "sports_hockey_outlined" - SPORTS_HOCKEY_ROUNDED = "sports_hockey_rounded" - SPORTS_HOCKEY_SHARP = "sports_hockey_sharp" - SPORTS_KABADDI = "sports_kabaddi" - SPORTS_KABADDI_OUTLINED = "sports_kabaddi_outlined" - SPORTS_KABADDI_ROUNDED = "sports_kabaddi_rounded" - SPORTS_KABADDI_SHARP = "sports_kabaddi_sharp" - SPORTS_MARTIAL_ARTS = "sports_martial_arts" - SPORTS_MARTIAL_ARTS_OUTLINED = "sports_martial_arts_outlined" - SPORTS_MARTIAL_ARTS_ROUNDED = "sports_martial_arts_rounded" - SPORTS_MARTIAL_ARTS_SHARP = "sports_martial_arts_sharp" - SPORTS_MMA = "sports_mma" - SPORTS_MMA_OUTLINED = "sports_mma_outlined" - SPORTS_MMA_ROUNDED = "sports_mma_rounded" - SPORTS_MMA_SHARP = "sports_mma_sharp" - SPORTS_MOTORSPORTS = "sports_motorsports" - SPORTS_MOTORSPORTS_OUTLINED = "sports_motorsports_outlined" - SPORTS_MOTORSPORTS_ROUNDED = "sports_motorsports_rounded" - SPORTS_MOTORSPORTS_SHARP = "sports_motorsports_sharp" - SPORTS_OUTLINED = "sports_outlined" - SPORTS_ROUNDED = "sports_rounded" - SPORTS_RUGBY = "sports_rugby" - SPORTS_RUGBY_OUTLINED = "sports_rugby_outlined" - SPORTS_RUGBY_ROUNDED = "sports_rugby_rounded" - SPORTS_RUGBY_SHARP = "sports_rugby_sharp" - SPORTS_SCORE = "sports_score" - SPORTS_SCORE_OUTLINED = "sports_score_outlined" - SPORTS_SCORE_ROUNDED = "sports_score_rounded" - SPORTS_SCORE_SHARP = "sports_score_sharp" - SPORTS_SHARP = "sports_sharp" - SPORTS_SOCCER = "sports_soccer" - SPORTS_SOCCER_OUTLINED = "sports_soccer_outlined" - SPORTS_SOCCER_ROUNDED = "sports_soccer_rounded" - SPORTS_SOCCER_SHARP = "sports_soccer_sharp" - SPORTS_TENNIS = "sports_tennis" - SPORTS_TENNIS_OUTLINED = "sports_tennis_outlined" - SPORTS_TENNIS_ROUNDED = "sports_tennis_rounded" - SPORTS_TENNIS_SHARP = "sports_tennis_sharp" - SPORTS_VOLLEYBALL = "sports_volleyball" - SPORTS_VOLLEYBALL_OUTLINED = "sports_volleyball_outlined" - SPORTS_VOLLEYBALL_ROUNDED = "sports_volleyball_rounded" - SPORTS_VOLLEYBALL_SHARP = "sports_volleyball_sharp" - SQUARE = "square" - SQUARE_FOOT = "square_foot" - SQUARE_FOOT_OUTLINED = "square_foot_outlined" - SQUARE_FOOT_ROUNDED = "square_foot_rounded" - SQUARE_FOOT_SHARP = "square_foot_sharp" - SQUARE_OUTLINED = "square_outlined" - SQUARE_ROUNDED = "square_rounded" - SQUARE_SHARP = "square_sharp" - SSID_CHART = "ssid_chart" - SSID_CHART_OUTLINED = "ssid_chart_outlined" - SSID_CHART_ROUNDED = "ssid_chart_rounded" - SSID_CHART_SHARP = "ssid_chart_sharp" - STACKED_BAR_CHART = "stacked_bar_chart" - STACKED_BAR_CHART_OUTLINED = "stacked_bar_chart_outlined" - STACKED_BAR_CHART_ROUNDED = "stacked_bar_chart_rounded" - STACKED_BAR_CHART_SHARP = "stacked_bar_chart_sharp" - STACKED_LINE_CHART = "stacked_line_chart" - STACKED_LINE_CHART_OUTLINED = "stacked_line_chart_outlined" - STACKED_LINE_CHART_ROUNDED = "stacked_line_chart_rounded" - STACKED_LINE_CHART_SHARP = "stacked_line_chart_sharp" - STADIUM = "stadium" - STADIUM_OUTLINED = "stadium_outlined" - STADIUM_ROUNDED = "stadium_rounded" - STADIUM_SHARP = "stadium_sharp" - STAIRS = "stairs" - STAIRS_OUTLINED = "stairs_outlined" - STAIRS_ROUNDED = "stairs_rounded" - STAIRS_SHARP = "stairs_sharp" - STAR = "star" - STARS = "stars" - STARS_OUTLINED = "stars_outlined" - STARS_ROUNDED = "stars_rounded" - STARS_SHARP = "stars_sharp" - START = "start" - START_OUTLINED = "start_outlined" - START_ROUNDED = "start_rounded" - START_SHARP = "start_sharp" - STAR_BORDER = "star_border" - STAR_BORDER_OUTLINED = "star_border_outlined" - STAR_BORDER_PURPLE500 = "star_border_purple500" - STAR_BORDER_PURPLE500_OUTLINED = "star_border_purple500_outlined" - STAR_BORDER_PURPLE500_ROUNDED = "star_border_purple500_rounded" - STAR_BORDER_PURPLE500_SHARP = "star_border_purple500_sharp" - STAR_BORDER_ROUNDED = "star_border_rounded" - STAR_BORDER_SHARP = "star_border_sharp" - STAR_HALF = "star_half" - STAR_HALF_OUTLINED = "star_half_outlined" - STAR_HALF_ROUNDED = "star_half_rounded" - STAR_HALF_SHARP = "star_half_sharp" - STAR_OUTLINE = "star_outline" - STAR_OUTLINED = "star_outlined" - STAR_OUTLINE_OUTLINED = "star_outline_outlined" - STAR_OUTLINE_ROUNDED = "star_outline_rounded" - STAR_OUTLINE_SHARP = "star_outline_sharp" - STAR_PURPLE500 = "star_purple500" - STAR_PURPLE500_OUTLINED = "star_purple500_outlined" - STAR_PURPLE500_ROUNDED = "star_purple500_rounded" - STAR_PURPLE500_SHARP = "star_purple500_sharp" - STAR_RATE = "star_rate" - STAR_RATE_OUTLINED = "star_rate_outlined" - STAR_RATE_ROUNDED = "star_rate_rounded" - STAR_RATE_SHARP = "star_rate_sharp" - STAR_ROUNDED = "star_rounded" - STAR_SHARP = "star_sharp" - STAY_CURRENT_LANDSCAPE = "stay_current_landscape" - STAY_CURRENT_LANDSCAPE_OUTLINED = "stay_current_landscape_outlined" - STAY_CURRENT_LANDSCAPE_ROUNDED = "stay_current_landscape_rounded" - STAY_CURRENT_LANDSCAPE_SHARP = "stay_current_landscape_sharp" - STAY_CURRENT_PORTRAIT = "stay_current_portrait" - STAY_CURRENT_PORTRAIT_OUTLINED = "stay_current_portrait_outlined" - STAY_CURRENT_PORTRAIT_ROUNDED = "stay_current_portrait_rounded" - STAY_CURRENT_PORTRAIT_SHARP = "stay_current_portrait_sharp" - STAY_PRIMARY_LANDSCAPE = "stay_primary_landscape" - STAY_PRIMARY_LANDSCAPE_OUTLINED = "stay_primary_landscape_outlined" - STAY_PRIMARY_LANDSCAPE_ROUNDED = "stay_primary_landscape_rounded" - STAY_PRIMARY_LANDSCAPE_SHARP = "stay_primary_landscape_sharp" - STAY_PRIMARY_PORTRAIT = "stay_primary_portrait" - STAY_PRIMARY_PORTRAIT_OUTLINED = "stay_primary_portrait_outlined" - STAY_PRIMARY_PORTRAIT_ROUNDED = "stay_primary_portrait_rounded" - STAY_PRIMARY_PORTRAIT_SHARP = "stay_primary_portrait_sharp" - STICKY_NOTE_2 = "sticky_note_2" - STICKY_NOTE_2_OUTLINED = "sticky_note_2_outlined" - STICKY_NOTE_2_ROUNDED = "sticky_note_2_rounded" - STICKY_NOTE_2_SHARP = "sticky_note_2_sharp" - STOP = "stop" - STOP_CIRCLE = "stop_circle" - STOP_CIRCLE_OUTLINED = "stop_circle_outlined" - STOP_CIRCLE_ROUNDED = "stop_circle_rounded" - STOP_CIRCLE_SHARP = "stop_circle_sharp" - STOP_OUTLINED = "stop_outlined" - STOP_ROUNDED = "stop_rounded" - STOP_SCREEN_SHARE = "stop_screen_share" - STOP_SCREEN_SHARE_OUTLINED = "stop_screen_share_outlined" - STOP_SCREEN_SHARE_ROUNDED = "stop_screen_share_rounded" - STOP_SCREEN_SHARE_SHARP = "stop_screen_share_sharp" - STOP_SHARP = "stop_sharp" - STORAGE = "storage" - STORAGE_OUTLINED = "storage_outlined" - STORAGE_ROUNDED = "storage_rounded" - STORAGE_SHARP = "storage_sharp" - STORE = "store" - STOREFRONT = "storefront" - STOREFRONT_OUTLINED = "storefront_outlined" - STOREFRONT_ROUNDED = "storefront_rounded" - STOREFRONT_SHARP = "storefront_sharp" - STORE_MALL_DIRECTORY = "store_mall_directory" - STORE_MALL_DIRECTORY_OUTLINED = "store_mall_directory_outlined" - STORE_MALL_DIRECTORY_ROUNDED = "store_mall_directory_rounded" - STORE_MALL_DIRECTORY_SHARP = "store_mall_directory_sharp" - STORE_OUTLINED = "store_outlined" - STORE_ROUNDED = "store_rounded" - STORE_SHARP = "store_sharp" - STORM = "storm" - STORM_OUTLINED = "storm_outlined" - STORM_ROUNDED = "storm_rounded" - STORM_SHARP = "storm_sharp" - STRAIGHT = "straight" - STRAIGHTEN = "straighten" - STRAIGHTEN_OUTLINED = "straighten_outlined" - STRAIGHTEN_ROUNDED = "straighten_rounded" - STRAIGHTEN_SHARP = "straighten_sharp" - STRAIGHT_OUTLINED = "straight_outlined" - STRAIGHT_ROUNDED = "straight_rounded" - STRAIGHT_SHARP = "straight_sharp" - STREAM = "stream" - STREAM_OUTLINED = "stream_outlined" - STREAM_ROUNDED = "stream_rounded" - STREAM_SHARP = "stream_sharp" - STREETVIEW = "streetview" - STREETVIEW_OUTLINED = "streetview_outlined" - STREETVIEW_ROUNDED = "streetview_rounded" - STREETVIEW_SHARP = "streetview_sharp" - STRIKETHROUGH_S = "strikethrough_s" - STRIKETHROUGH_S_OUTLINED = "strikethrough_s_outlined" - STRIKETHROUGH_S_ROUNDED = "strikethrough_s_rounded" - STRIKETHROUGH_S_SHARP = "strikethrough_s_sharp" - STROLLER = "stroller" - STROLLER_OUTLINED = "stroller_outlined" - STROLLER_ROUNDED = "stroller_rounded" - STROLLER_SHARP = "stroller_sharp" - STYLE = "style" - STYLE_OUTLINED = "style_outlined" - STYLE_ROUNDED = "style_rounded" - STYLE_SHARP = "style_sharp" - SUBDIRECTORY_ARROW_LEFT = "subdirectory_arrow_left" - SUBDIRECTORY_ARROW_LEFT_OUTLINED = "subdirectory_arrow_left_outlined" - SUBDIRECTORY_ARROW_LEFT_ROUNDED = "subdirectory_arrow_left_rounded" - SUBDIRECTORY_ARROW_LEFT_SHARP = "subdirectory_arrow_left_sharp" - SUBDIRECTORY_ARROW_RIGHT = "subdirectory_arrow_right" - SUBDIRECTORY_ARROW_RIGHT_OUTLINED = "subdirectory_arrow_right_outlined" - SUBDIRECTORY_ARROW_RIGHT_ROUNDED = "subdirectory_arrow_right_rounded" - SUBDIRECTORY_ARROW_RIGHT_SHARP = "subdirectory_arrow_right_sharp" - SUBJECT = "subject" - SUBJECT_OUTLINED = "subject_outlined" - SUBJECT_ROUNDED = "subject_rounded" - SUBJECT_SHARP = "subject_sharp" - SUBSCRIPT = "subscript" - SUBSCRIPTIONS = "subscriptions" - SUBSCRIPTIONS_OUTLINED = "subscriptions_outlined" - SUBSCRIPTIONS_ROUNDED = "subscriptions_rounded" - SUBSCRIPTIONS_SHARP = "subscriptions_sharp" - SUBSCRIPT_OUTLINED = "subscript_outlined" - SUBSCRIPT_ROUNDED = "subscript_rounded" - SUBSCRIPT_SHARP = "subscript_sharp" - SUBTITLES = "subtitles" - SUBTITLES_OFF = "subtitles_off" - SUBTITLES_OFF_OUTLINED = "subtitles_off_outlined" - SUBTITLES_OFF_ROUNDED = "subtitles_off_rounded" - SUBTITLES_OFF_SHARP = "subtitles_off_sharp" - SUBTITLES_OUTLINED = "subtitles_outlined" - SUBTITLES_ROUNDED = "subtitles_rounded" - SUBTITLES_SHARP = "subtitles_sharp" - SUBWAY = "subway" - SUBWAY_OUTLINED = "subway_outlined" - SUBWAY_ROUNDED = "subway_rounded" - SUBWAY_SHARP = "subway_sharp" - SUMMARIZE = "summarize" - SUMMARIZE_OUTLINED = "summarize_outlined" - SUMMARIZE_ROUNDED = "summarize_rounded" - SUMMARIZE_SHARP = "summarize_sharp" - SUNNY = "sunny" - SUNNY_SNOWING = "sunny_snowing" - SUPERSCRIPT = "superscript" - SUPERSCRIPT_OUTLINED = "superscript_outlined" - SUPERSCRIPT_ROUNDED = "superscript_rounded" - SUPERSCRIPT_SHARP = "superscript_sharp" - SUPERVISED_USER_CIRCLE = "supervised_user_circle" - SUPERVISED_USER_CIRCLE_OUTLINED = "supervised_user_circle_outlined" - SUPERVISED_USER_CIRCLE_ROUNDED = "supervised_user_circle_rounded" - SUPERVISED_USER_CIRCLE_SHARP = "supervised_user_circle_sharp" - SUPERVISOR_ACCOUNT = "supervisor_account" - SUPERVISOR_ACCOUNT_OUTLINED = "supervisor_account_outlined" - SUPERVISOR_ACCOUNT_ROUNDED = "supervisor_account_rounded" - SUPERVISOR_ACCOUNT_SHARP = "supervisor_account_sharp" - SUPPORT = "support" - SUPPORT_AGENT = "support_agent" - SUPPORT_AGENT_OUTLINED = "support_agent_outlined" - SUPPORT_AGENT_ROUNDED = "support_agent_rounded" - SUPPORT_AGENT_SHARP = "support_agent_sharp" - SUPPORT_OUTLINED = "support_outlined" - SUPPORT_ROUNDED = "support_rounded" - SUPPORT_SHARP = "support_sharp" - SURFING = "surfing" - SURFING_OUTLINED = "surfing_outlined" - SURFING_ROUNDED = "surfing_rounded" - SURFING_SHARP = "surfing_sharp" - SURROUND_SOUND = "surround_sound" - SURROUND_SOUND_OUTLINED = "surround_sound_outlined" - SURROUND_SOUND_ROUNDED = "surround_sound_rounded" - SURROUND_SOUND_SHARP = "surround_sound_sharp" - SWAP_CALLS = "swap_calls" - SWAP_CALLS_OUTLINED = "swap_calls_outlined" - SWAP_CALLS_ROUNDED = "swap_calls_rounded" - SWAP_CALLS_SHARP = "swap_calls_sharp" - SWAP_HORIZ = "swap_horiz" - SWAP_HORIZONTAL_CIRCLE = "swap_horizontal_circle" - SWAP_HORIZONTAL_CIRCLE_OUTLINED = "swap_horizontal_circle_outlined" - SWAP_HORIZONTAL_CIRCLE_ROUNDED = "swap_horizontal_circle_rounded" - SWAP_HORIZONTAL_CIRCLE_SHARP = "swap_horizontal_circle_sharp" - SWAP_HORIZ_OUTLINED = "swap_horiz_outlined" - SWAP_HORIZ_ROUNDED = "swap_horiz_rounded" - SWAP_HORIZ_SHARP = "swap_horiz_sharp" - SWAP_VERT = "swap_vert" - SWAP_VERTICAL_CIRCLE = "swap_vertical_circle" - SWAP_VERTICAL_CIRCLE_OUTLINED = "swap_vertical_circle_outlined" - SWAP_VERTICAL_CIRCLE_ROUNDED = "swap_vertical_circle_rounded" - SWAP_VERTICAL_CIRCLE_SHARP = "swap_vertical_circle_sharp" - SWAP_VERT_CIRCLE = "swap_vert_circle" - SWAP_VERT_CIRCLE_OUTLINED = "swap_vert_circle_outlined" - SWAP_VERT_CIRCLE_ROUNDED = "swap_vert_circle_rounded" - SWAP_VERT_CIRCLE_SHARP = "swap_vert_circle_sharp" - SWAP_VERT_OUTLINED = "swap_vert_outlined" - SWAP_VERT_ROUNDED = "swap_vert_rounded" - SWAP_VERT_SHARP = "swap_vert_sharp" - SWIPE = "swipe" - SWIPE_DOWN = "swipe_down" - SWIPE_DOWN_ALT = "swipe_down_alt" - SWIPE_DOWN_ALT_OUTLINED = "swipe_down_alt_outlined" - SWIPE_DOWN_ALT_ROUNDED = "swipe_down_alt_rounded" - SWIPE_DOWN_ALT_SHARP = "swipe_down_alt_sharp" - SWIPE_DOWN_OUTLINED = "swipe_down_outlined" - SWIPE_DOWN_ROUNDED = "swipe_down_rounded" - SWIPE_DOWN_SHARP = "swipe_down_sharp" - SWIPE_LEFT = "swipe_left" - SWIPE_LEFT_ALT = "swipe_left_alt" - SWIPE_LEFT_ALT_OUTLINED = "swipe_left_alt_outlined" - SWIPE_LEFT_ALT_ROUNDED = "swipe_left_alt_rounded" - SWIPE_LEFT_ALT_SHARP = "swipe_left_alt_sharp" - SWIPE_LEFT_OUTLINED = "swipe_left_outlined" - SWIPE_LEFT_ROUNDED = "swipe_left_rounded" - SWIPE_LEFT_SHARP = "swipe_left_sharp" - SWIPE_OUTLINED = "swipe_outlined" - SWIPE_RIGHT = "swipe_right" - SWIPE_RIGHT_ALT = "swipe_right_alt" - SWIPE_RIGHT_ALT_OUTLINED = "swipe_right_alt_outlined" - SWIPE_RIGHT_ALT_ROUNDED = "swipe_right_alt_rounded" - SWIPE_RIGHT_ALT_SHARP = "swipe_right_alt_sharp" - SWIPE_RIGHT_OUTLINED = "swipe_right_outlined" - SWIPE_RIGHT_ROUNDED = "swipe_right_rounded" - SWIPE_RIGHT_SHARP = "swipe_right_sharp" - SWIPE_ROUNDED = "swipe_rounded" - SWIPE_SHARP = "swipe_sharp" - SWIPE_UP = "swipe_up" - SWIPE_UP_ALT = "swipe_up_alt" - SWIPE_UP_ALT_OUTLINED = "swipe_up_alt_outlined" - SWIPE_UP_ALT_ROUNDED = "swipe_up_alt_rounded" - SWIPE_UP_ALT_SHARP = "swipe_up_alt_sharp" - SWIPE_UP_OUTLINED = "swipe_up_outlined" - SWIPE_UP_ROUNDED = "swipe_up_rounded" - SWIPE_UP_SHARP = "swipe_up_sharp" - SWIPE_VERTICAL = "swipe_vertical" - SWIPE_VERTICAL_OUTLINED = "swipe_vertical_outlined" - SWIPE_VERTICAL_ROUNDED = "swipe_vertical_rounded" - SWIPE_VERTICAL_SHARP = "swipe_vertical_sharp" - SWITCH_ACCESS_SHORTCUT = "switch_access_shortcut" - SWITCH_ACCESS_SHORTCUT_ADD = "switch_access_shortcut_add" - SWITCH_ACCESS_SHORTCUT_ADD_OUTLINED = "switch_access_shortcut_add_outlined" - SWITCH_ACCESS_SHORTCUT_ADD_ROUNDED = "switch_access_shortcut_add_rounded" - SWITCH_ACCESS_SHORTCUT_ADD_SHARP = "switch_access_shortcut_add_sharp" - SWITCH_ACCESS_SHORTCUT_OUTLINED = "switch_access_shortcut_outlined" - SWITCH_ACCESS_SHORTCUT_ROUNDED = "switch_access_shortcut_rounded" - SWITCH_ACCESS_SHORTCUT_SHARP = "switch_access_shortcut_sharp" - SWITCH_ACCOUNT = "switch_account" - SWITCH_ACCOUNT_OUTLINED = "switch_account_outlined" - SWITCH_ACCOUNT_ROUNDED = "switch_account_rounded" - SWITCH_ACCOUNT_SHARP = "switch_account_sharp" - SWITCH_CAMERA = "switch_camera" - SWITCH_CAMERA_OUTLINED = "switch_camera_outlined" - SWITCH_CAMERA_ROUNDED = "switch_camera_rounded" - SWITCH_CAMERA_SHARP = "switch_camera_sharp" - SWITCH_LEFT = "switch_left" - SWITCH_LEFT_OUTLINED = "switch_left_outlined" - SWITCH_LEFT_ROUNDED = "switch_left_rounded" - SWITCH_LEFT_SHARP = "switch_left_sharp" - SWITCH_RIGHT = "switch_right" - SWITCH_RIGHT_OUTLINED = "switch_right_outlined" - SWITCH_RIGHT_ROUNDED = "switch_right_rounded" - SWITCH_RIGHT_SHARP = "switch_right_sharp" - SWITCH_VIDEO = "switch_video" - SWITCH_VIDEO_OUTLINED = "switch_video_outlined" - SWITCH_VIDEO_ROUNDED = "switch_video_rounded" - SWITCH_VIDEO_SHARP = "switch_video_sharp" - SYNAGOGUE = "synagogue" - SYNAGOGUE_OUTLINED = "synagogue_outlined" - SYNAGOGUE_ROUNDED = "synagogue_rounded" - SYNAGOGUE_SHARP = "synagogue_sharp" - SYNC = "sync" - SYNC_ALT = "sync_alt" - SYNC_ALT_OUTLINED = "sync_alt_outlined" - SYNC_ALT_ROUNDED = "sync_alt_rounded" - SYNC_ALT_SHARP = "sync_alt_sharp" - SYNC_DISABLED = "sync_disabled" - SYNC_DISABLED_OUTLINED = "sync_disabled_outlined" - SYNC_DISABLED_ROUNDED = "sync_disabled_rounded" - SYNC_DISABLED_SHARP = "sync_disabled_sharp" - SYNC_LOCK = "sync_lock" - SYNC_LOCK_OUTLINED = "sync_lock_outlined" - SYNC_LOCK_ROUNDED = "sync_lock_rounded" - SYNC_LOCK_SHARP = "sync_lock_sharp" - SYNC_OUTLINED = "sync_outlined" - SYNC_PROBLEM = "sync_problem" - SYNC_PROBLEM_OUTLINED = "sync_problem_outlined" - SYNC_PROBLEM_ROUNDED = "sync_problem_rounded" - SYNC_PROBLEM_SHARP = "sync_problem_sharp" - SYNC_ROUNDED = "sync_rounded" - SYNC_SHARP = "sync_sharp" - SYSTEM_SECURITY_UPDATE = "system_security_update" - SYSTEM_SECURITY_UPDATE_GOOD = "system_security_update_good" - SYSTEM_SECURITY_UPDATE_GOOD_OUTLINED = "system_security_update_good_outlined" - SYSTEM_SECURITY_UPDATE_GOOD_ROUNDED = "system_security_update_good_rounded" - SYSTEM_SECURITY_UPDATE_GOOD_SHARP = "system_security_update_good_sharp" - SYSTEM_SECURITY_UPDATE_OUTLINED = "system_security_update_outlined" - SYSTEM_SECURITY_UPDATE_ROUNDED = "system_security_update_rounded" - SYSTEM_SECURITY_UPDATE_SHARP = "system_security_update_sharp" - SYSTEM_SECURITY_UPDATE_WARNING = "system_security_update_warning" - SYSTEM_SECURITY_UPDATE_WARNING_OUTLINED = "system_security_update_warning_outlined" - SYSTEM_SECURITY_UPDATE_WARNING_ROUNDED = "system_security_update_warning_rounded" - SYSTEM_SECURITY_UPDATE_WARNING_SHARP = "system_security_update_warning_sharp" - SYSTEM_UPDATE = "system_update" - SYSTEM_UPDATE_ALT = "system_update_alt" - SYSTEM_UPDATE_ALT_OUTLINED = "system_update_alt_outlined" - SYSTEM_UPDATE_ALT_ROUNDED = "system_update_alt_rounded" - SYSTEM_UPDATE_ALT_SHARP = "system_update_alt_sharp" - SYSTEM_UPDATE_OUTLINED = "system_update_outlined" - SYSTEM_UPDATE_ROUNDED = "system_update_rounded" - SYSTEM_UPDATE_SHARP = "system_update_sharp" - SYSTEM_UPDATE_TV = "system_update_tv" - SYSTEM_UPDATE_TV_OUTLINED = "system_update_tv_outlined" - SYSTEM_UPDATE_TV_ROUNDED = "system_update_tv_rounded" - SYSTEM_UPDATE_TV_SHARP = "system_update_tv_sharp" - TAB = "tab" - TABLET = "tablet" - TABLET_ANDROID = "tablet_android" - TABLET_ANDROID_OUTLINED = "tablet_android_outlined" - TABLET_ANDROID_ROUNDED = "tablet_android_rounded" - TABLET_ANDROID_SHARP = "tablet_android_sharp" - TABLET_MAC = "tablet_mac" - TABLET_MAC_OUTLINED = "tablet_mac_outlined" - TABLET_MAC_ROUNDED = "tablet_mac_rounded" - TABLET_MAC_SHARP = "tablet_mac_sharp" - TABLET_OUTLINED = "tablet_outlined" - TABLET_ROUNDED = "tablet_rounded" - TABLET_SHARP = "tablet_sharp" - TABLE_BAR = "table_bar" - TABLE_BAR_OUTLINED = "table_bar_outlined" - TABLE_BAR_ROUNDED = "table_bar_rounded" - TABLE_BAR_SHARP = "table_bar_sharp" - TABLE_CHART = "table_chart" - TABLE_CHART_OUTLINED = "table_chart_outlined" - TABLE_CHART_ROUNDED = "table_chart_rounded" - TABLE_CHART_SHARP = "table_chart_sharp" - TABLE_RESTAURANT = "table_restaurant" - TABLE_RESTAURANT_OUTLINED = "table_restaurant_outlined" - TABLE_RESTAURANT_ROUNDED = "table_restaurant_rounded" - TABLE_RESTAURANT_SHARP = "table_restaurant_sharp" - TABLE_ROWS = "table_rows" - TABLE_ROWS_OUTLINED = "table_rows_outlined" - TABLE_ROWS_ROUNDED = "table_rows_rounded" - TABLE_ROWS_SHARP = "table_rows_sharp" - TABLE_VIEW = "table_view" - TABLE_VIEW_OUTLINED = "table_view_outlined" - TABLE_VIEW_ROUNDED = "table_view_rounded" - TABLE_VIEW_SHARP = "table_view_sharp" - TAB_OUTLINED = "tab_outlined" - TAB_ROUNDED = "tab_rounded" - TAB_SHARP = "tab_sharp" - TAB_UNSELECTED = "tab_unselected" - TAB_UNSELECTED_OUTLINED = "tab_unselected_outlined" - TAB_UNSELECTED_ROUNDED = "tab_unselected_rounded" - TAB_UNSELECTED_SHARP = "tab_unselected_sharp" - TAG = "tag" - TAG_FACES = "tag_faces" - TAG_FACES_OUTLINED = "tag_faces_outlined" - TAG_FACES_ROUNDED = "tag_faces_rounded" - TAG_FACES_SHARP = "tag_faces_sharp" - TAG_OUTLINED = "tag_outlined" - TAG_ROUNDED = "tag_rounded" - TAG_SHARP = "tag_sharp" - TAKEOUT_DINING = "takeout_dining" - TAKEOUT_DINING_OUTLINED = "takeout_dining_outlined" - TAKEOUT_DINING_ROUNDED = "takeout_dining_rounded" - TAKEOUT_DINING_SHARP = "takeout_dining_sharp" - TAPAS = "tapas" - TAPAS_OUTLINED = "tapas_outlined" - TAPAS_ROUNDED = "tapas_rounded" - TAPAS_SHARP = "tapas_sharp" - TAP_AND_PLAY = "tap_and_play" - TAP_AND_PLAY_OUTLINED = "tap_and_play_outlined" - TAP_AND_PLAY_ROUNDED = "tap_and_play_rounded" - TAP_AND_PLAY_SHARP = "tap_and_play_sharp" - TASK = "task" - TASK_ALT = "task_alt" - TASK_ALT_OUTLINED = "task_alt_outlined" - TASK_ALT_ROUNDED = "task_alt_rounded" - TASK_ALT_SHARP = "task_alt_sharp" - TASK_OUTLINED = "task_outlined" - TASK_ROUNDED = "task_rounded" - TASK_SHARP = "task_sharp" - TAXI_ALERT = "taxi_alert" - TAXI_ALERT_OUTLINED = "taxi_alert_outlined" - TAXI_ALERT_ROUNDED = "taxi_alert_rounded" - TAXI_ALERT_SHARP = "taxi_alert_sharp" - TELEGRAM = "telegram" - TELEGRAM_OUTLINED = "telegram_outlined" - TELEGRAM_ROUNDED = "telegram_rounded" - TELEGRAM_SHARP = "telegram_sharp" - TEMPLE_BUDDHIST = "temple_buddhist" - TEMPLE_BUDDHIST_OUTLINED = "temple_buddhist_outlined" - TEMPLE_BUDDHIST_ROUNDED = "temple_buddhist_rounded" - TEMPLE_BUDDHIST_SHARP = "temple_buddhist_sharp" - TEMPLE_HINDU = "temple_hindu" - TEMPLE_HINDU_OUTLINED = "temple_hindu_outlined" - TEMPLE_HINDU_ROUNDED = "temple_hindu_rounded" - TEMPLE_HINDU_SHARP = "temple_hindu_sharp" - TEN_K = "ten_k" - TEN_K_OUTLINED = "ten_k_outlined" - TEN_K_ROUNDED = "ten_k_rounded" - TEN_K_SHARP = "ten_k_sharp" - TEN_MP = "ten_mp" - TEN_MP_OUTLINED = "ten_mp_outlined" - TEN_MP_ROUNDED = "ten_mp_rounded" - TEN_MP_SHARP = "ten_mp_sharp" - TERMINAL = "terminal" - TERMINAL_OUTLINED = "terminal_outlined" - TERMINAL_ROUNDED = "terminal_rounded" - TERMINAL_SHARP = "terminal_sharp" - TERRAIN = "terrain" - TERRAIN_OUTLINED = "terrain_outlined" - TERRAIN_ROUNDED = "terrain_rounded" - TERRAIN_SHARP = "terrain_sharp" - TEXTSMS = "textsms" - TEXTSMS_OUTLINED = "textsms_outlined" - TEXTSMS_ROUNDED = "textsms_rounded" - TEXTSMS_SHARP = "textsms_sharp" - TEXTURE = "texture" - TEXTURE_OUTLINED = "texture_outlined" - TEXTURE_ROUNDED = "texture_rounded" - TEXTURE_SHARP = "texture_sharp" - TEXT_DECREASE = "text_decrease" - TEXT_DECREASE_OUTLINED = "text_decrease_outlined" - TEXT_DECREASE_ROUNDED = "text_decrease_rounded" - TEXT_DECREASE_SHARP = "text_decrease_sharp" - TEXT_FIELDS = "text_fields" - TEXT_FIELDS_OUTLINED = "text_fields_outlined" - TEXT_FIELDS_ROUNDED = "text_fields_rounded" - TEXT_FIELDS_SHARP = "text_fields_sharp" - TEXT_FORMAT = "text_format" - TEXT_FORMAT_OUTLINED = "text_format_outlined" - TEXT_FORMAT_ROUNDED = "text_format_rounded" - TEXT_FORMAT_SHARP = "text_format_sharp" - TEXT_INCREASE = "text_increase" - TEXT_INCREASE_OUTLINED = "text_increase_outlined" - TEXT_INCREASE_ROUNDED = "text_increase_rounded" - TEXT_INCREASE_SHARP = "text_increase_sharp" - TEXT_ROTATE_UP = "text_rotate_up" - TEXT_ROTATE_UP_OUTLINED = "text_rotate_up_outlined" - TEXT_ROTATE_UP_ROUNDED = "text_rotate_up_rounded" - TEXT_ROTATE_UP_SHARP = "text_rotate_up_sharp" - TEXT_ROTATE_VERTICAL = "text_rotate_vertical" - TEXT_ROTATE_VERTICAL_OUTLINED = "text_rotate_vertical_outlined" - TEXT_ROTATE_VERTICAL_ROUNDED = "text_rotate_vertical_rounded" - TEXT_ROTATE_VERTICAL_SHARP = "text_rotate_vertical_sharp" - TEXT_ROTATION_ANGLEDOWN = "text_rotation_angledown" - TEXT_ROTATION_ANGLEDOWN_OUTLINED = "text_rotation_angledown_outlined" - TEXT_ROTATION_ANGLEDOWN_ROUNDED = "text_rotation_angledown_rounded" - TEXT_ROTATION_ANGLEDOWN_SHARP = "text_rotation_angledown_sharp" - TEXT_ROTATION_ANGLEUP = "text_rotation_angleup" - TEXT_ROTATION_ANGLEUP_OUTLINED = "text_rotation_angleup_outlined" - TEXT_ROTATION_ANGLEUP_ROUNDED = "text_rotation_angleup_rounded" - TEXT_ROTATION_ANGLEUP_SHARP = "text_rotation_angleup_sharp" - TEXT_ROTATION_DOWN = "text_rotation_down" - TEXT_ROTATION_DOWN_OUTLINED = "text_rotation_down_outlined" - TEXT_ROTATION_DOWN_ROUNDED = "text_rotation_down_rounded" - TEXT_ROTATION_DOWN_SHARP = "text_rotation_down_sharp" - TEXT_ROTATION_NONE = "text_rotation_none" - TEXT_ROTATION_NONE_OUTLINED = "text_rotation_none_outlined" - TEXT_ROTATION_NONE_ROUNDED = "text_rotation_none_rounded" - TEXT_ROTATION_NONE_SHARP = "text_rotation_none_sharp" - TEXT_SNIPPET = "text_snippet" - TEXT_SNIPPET_OUTLINED = "text_snippet_outlined" - TEXT_SNIPPET_ROUNDED = "text_snippet_rounded" - TEXT_SNIPPET_SHARP = "text_snippet_sharp" - THEATERS = "theaters" - THEATERS_OUTLINED = "theaters_outlined" - THEATERS_ROUNDED = "theaters_rounded" - THEATERS_SHARP = "theaters_sharp" - THEATER_COMEDY = "theater_comedy" - THEATER_COMEDY_OUTLINED = "theater_comedy_outlined" - THEATER_COMEDY_ROUNDED = "theater_comedy_rounded" - THEATER_COMEDY_SHARP = "theater_comedy_sharp" - THERMOSTAT = "thermostat" - THERMOSTAT_AUTO = "thermostat_auto" - THERMOSTAT_AUTO_OUTLINED = "thermostat_auto_outlined" - THERMOSTAT_AUTO_ROUNDED = "thermostat_auto_rounded" - THERMOSTAT_AUTO_SHARP = "thermostat_auto_sharp" - THERMOSTAT_OUTLINED = "thermostat_outlined" - THERMOSTAT_ROUNDED = "thermostat_rounded" - THERMOSTAT_SHARP = "thermostat_sharp" - THIRTEEN_MP = "thirteen_mp" - THIRTEEN_MP_OUTLINED = "thirteen_mp_outlined" - THIRTEEN_MP_ROUNDED = "thirteen_mp_rounded" - THIRTEEN_MP_SHARP = "thirteen_mp_sharp" - THIRTY_FPS = "thirty_fps" - THIRTY_FPS_OUTLINED = "thirty_fps_outlined" - THIRTY_FPS_ROUNDED = "thirty_fps_rounded" - THIRTY_FPS_SELECT = "thirty_fps_select" - THIRTY_FPS_SELECT_OUTLINED = "thirty_fps_select_outlined" - THIRTY_FPS_SELECT_ROUNDED = "thirty_fps_select_rounded" - THIRTY_FPS_SELECT_SHARP = "thirty_fps_select_sharp" - THIRTY_FPS_SHARP = "thirty_fps_sharp" - THREED_ROTATION = "threed_rotation" - THREED_ROTATION_OUTLINED = "threed_rotation_outlined" - THREED_ROTATION_ROUNDED = "threed_rotation_rounded" - THREED_ROTATION_SHARP = "threed_rotation_sharp" - THREESIXTY = "threesixty" - THREESIXTY_OUTLINED = "threesixty_outlined" - THREESIXTY_ROUNDED = "threesixty_rounded" - THREESIXTY_SHARP = "threesixty_sharp" - THREE_G_MOBILEDATA = "three_g_mobiledata" - THREE_G_MOBILEDATA_OUTLINED = "three_g_mobiledata_outlined" - THREE_G_MOBILEDATA_ROUNDED = "three_g_mobiledata_rounded" - THREE_G_MOBILEDATA_SHARP = "three_g_mobiledata_sharp" - THREE_K = "three_k" - THREE_K_OUTLINED = "three_k_outlined" - THREE_K_PLUS = "three_k_plus" - THREE_K_PLUS_OUTLINED = "three_k_plus_outlined" - THREE_K_PLUS_ROUNDED = "three_k_plus_rounded" - THREE_K_PLUS_SHARP = "three_k_plus_sharp" - THREE_K_ROUNDED = "three_k_rounded" - THREE_K_SHARP = "three_k_sharp" - THREE_MP = "three_mp" - THREE_MP_OUTLINED = "three_mp_outlined" - THREE_MP_ROUNDED = "three_mp_rounded" - THREE_MP_SHARP = "three_mp_sharp" - THREE_P = "three_p" - THREE_P_OUTLINED = "three_p_outlined" - THREE_P_ROUNDED = "three_p_rounded" - THREE_P_SHARP = "three_p_sharp" - THUMBS_UP_DOWN = "thumbs_up_down" - THUMBS_UP_DOWN_OUTLINED = "thumbs_up_down_outlined" - THUMBS_UP_DOWN_ROUNDED = "thumbs_up_down_rounded" - THUMBS_UP_DOWN_SHARP = "thumbs_up_down_sharp" - THUMB_DOWN = "thumb_down" - THUMB_DOWN_ALT = "thumb_down_alt" - THUMB_DOWN_ALT_OUTLINED = "thumb_down_alt_outlined" - THUMB_DOWN_ALT_ROUNDED = "thumb_down_alt_rounded" - THUMB_DOWN_ALT_SHARP = "thumb_down_alt_sharp" - THUMB_DOWN_OFF_ALT = "thumb_down_off_alt" - THUMB_DOWN_OFF_ALT_OUTLINED = "thumb_down_off_alt_outlined" - THUMB_DOWN_OFF_ALT_ROUNDED = "thumb_down_off_alt_rounded" - THUMB_DOWN_OFF_ALT_SHARP = "thumb_down_off_alt_sharp" - THUMB_DOWN_OUTLINED = "thumb_down_outlined" - THUMB_DOWN_ROUNDED = "thumb_down_rounded" - THUMB_DOWN_SHARP = "thumb_down_sharp" - THUMB_UP = "thumb_up" - THUMB_UP_ALT = "thumb_up_alt" - THUMB_UP_ALT_OUTLINED = "thumb_up_alt_outlined" - THUMB_UP_ALT_ROUNDED = "thumb_up_alt_rounded" - THUMB_UP_ALT_SHARP = "thumb_up_alt_sharp" - THUMB_UP_OFF_ALT = "thumb_up_off_alt" - THUMB_UP_OFF_ALT_OUTLINED = "thumb_up_off_alt_outlined" - THUMB_UP_OFF_ALT_ROUNDED = "thumb_up_off_alt_rounded" - THUMB_UP_OFF_ALT_SHARP = "thumb_up_off_alt_sharp" - THUMB_UP_OUTLINED = "thumb_up_outlined" - THUMB_UP_ROUNDED = "thumb_up_rounded" - THUMB_UP_SHARP = "thumb_up_sharp" - THUNDERSTORM = "thunderstorm" - THUNDERSTORM_OUTLINED = "thunderstorm_outlined" - THUNDERSTORM_ROUNDED = "thunderstorm_rounded" - THUNDERSTORM_SHARP = "thunderstorm_sharp" - TIKTOK = "tiktok" - TIKTOK_OUTLINED = "tiktok_outlined" - TIKTOK_ROUNDED = "tiktok_rounded" - TIKTOK_SHARP = "tiktok_sharp" - TIMELAPSE = "timelapse" - TIMELAPSE_OUTLINED = "timelapse_outlined" - TIMELAPSE_ROUNDED = "timelapse_rounded" - TIMELAPSE_SHARP = "timelapse_sharp" - TIMELINE = "timeline" - TIMELINE_OUTLINED = "timeline_outlined" - TIMELINE_ROUNDED = "timeline_rounded" - TIMELINE_SHARP = "timeline_sharp" - TIMER = "timer" - TIMER_10 = "timer_10" - TIMER_10_OUTLINED = "timer_10_outlined" - TIMER_10_ROUNDED = "timer_10_rounded" - TIMER_10_SELECT = "timer_10_select" - TIMER_10_SELECT_OUTLINED = "timer_10_select_outlined" - TIMER_10_SELECT_ROUNDED = "timer_10_select_rounded" - TIMER_10_SELECT_SHARP = "timer_10_select_sharp" - TIMER_10_SHARP = "timer_10_sharp" - TIMER_3 = "timer_3" - TIMER_3_OUTLINED = "timer_3_outlined" - TIMER_3_ROUNDED = "timer_3_rounded" - TIMER_3_SELECT = "timer_3_select" - TIMER_3_SELECT_OUTLINED = "timer_3_select_outlined" - TIMER_3_SELECT_ROUNDED = "timer_3_select_rounded" - TIMER_3_SELECT_SHARP = "timer_3_select_sharp" - TIMER_3_SHARP = "timer_3_sharp" - TIMER_OFF = "timer_off" - TIMER_OFF_OUTLINED = "timer_off_outlined" - TIMER_OFF_ROUNDED = "timer_off_rounded" - TIMER_OFF_SHARP = "timer_off_sharp" - TIMER_OUTLINED = "timer_outlined" - TIMER_ROUNDED = "timer_rounded" - TIMER_SHARP = "timer_sharp" - TIME_TO_LEAVE = "time_to_leave" - TIME_TO_LEAVE_OUTLINED = "time_to_leave_outlined" - TIME_TO_LEAVE_ROUNDED = "time_to_leave_rounded" - TIME_TO_LEAVE_SHARP = "time_to_leave_sharp" - TIPS_AND_UPDATES = "tips_and_updates" - TIPS_AND_UPDATES_OUTLINED = "tips_and_updates_outlined" - TIPS_AND_UPDATES_ROUNDED = "tips_and_updates_rounded" - TIPS_AND_UPDATES_SHARP = "tips_and_updates_sharp" - TIRE_REPAIR = "tire_repair" - TIRE_REPAIR_OUTLINED = "tire_repair_outlined" - TIRE_REPAIR_ROUNDED = "tire_repair_rounded" - TIRE_REPAIR_SHARP = "tire_repair_sharp" - TITLE = "title" - TITLE_OUTLINED = "title_outlined" - TITLE_ROUNDED = "title_rounded" - TITLE_SHARP = "title_sharp" - TOC = "toc" - TOC_OUTLINED = "toc_outlined" - TOC_ROUNDED = "toc_rounded" - TOC_SHARP = "toc_sharp" - TODAY = "today" - TODAY_OUTLINED = "today_outlined" - TODAY_ROUNDED = "today_rounded" - TODAY_SHARP = "today_sharp" - TOGGLE_OFF = "toggle_off" - TOGGLE_OFF_OUTLINED = "toggle_off_outlined" - TOGGLE_OFF_ROUNDED = "toggle_off_rounded" - TOGGLE_OFF_SHARP = "toggle_off_sharp" - TOGGLE_ON = "toggle_on" - TOGGLE_ON_OUTLINED = "toggle_on_outlined" - TOGGLE_ON_ROUNDED = "toggle_on_rounded" - TOGGLE_ON_SHARP = "toggle_on_sharp" - TOKEN = "token" - TOKEN_OUTLINED = "token_outlined" - TOKEN_ROUNDED = "token_rounded" - TOKEN_SHARP = "token_sharp" - TOLL = "toll" - TOLL_OUTLINED = "toll_outlined" - TOLL_ROUNDED = "toll_rounded" - TOLL_SHARP = "toll_sharp" - TONALITY = "tonality" - TONALITY_OUTLINED = "tonality_outlined" - TONALITY_ROUNDED = "tonality_rounded" - TONALITY_SHARP = "tonality_sharp" - TOPIC = "topic" - TOPIC_OUTLINED = "topic_outlined" - TOPIC_ROUNDED = "topic_rounded" - TOPIC_SHARP = "topic_sharp" - TORNADO = "tornado" - TORNADO_OUTLINED = "tornado_outlined" - TORNADO_ROUNDED = "tornado_rounded" - TORNADO_SHARP = "tornado_sharp" - TOUCH_APP = "touch_app" - TOUCH_APP_OUTLINED = "touch_app_outlined" - TOUCH_APP_ROUNDED = "touch_app_rounded" - TOUCH_APP_SHARP = "touch_app_sharp" - TOUR = "tour" - TOUR_OUTLINED = "tour_outlined" - TOUR_ROUNDED = "tour_rounded" - TOUR_SHARP = "tour_sharp" - TOYS = "toys" - TOYS_OUTLINED = "toys_outlined" - TOYS_ROUNDED = "toys_rounded" - TOYS_SHARP = "toys_sharp" - TRACK_CHANGES = "track_changes" - TRACK_CHANGES_OUTLINED = "track_changes_outlined" - TRACK_CHANGES_ROUNDED = "track_changes_rounded" - TRACK_CHANGES_SHARP = "track_changes_sharp" - TRAFFIC = "traffic" - TRAFFIC_OUTLINED = "traffic_outlined" - TRAFFIC_ROUNDED = "traffic_rounded" - TRAFFIC_SHARP = "traffic_sharp" - TRAIN = "train" - TRAIN_OUTLINED = "train_outlined" - TRAIN_ROUNDED = "train_rounded" - TRAIN_SHARP = "train_sharp" - TRAM = "tram" - TRAM_OUTLINED = "tram_outlined" - TRAM_ROUNDED = "tram_rounded" - TRAM_SHARP = "tram_sharp" - TRANSCRIBE = "transcribe" - TRANSCRIBE_OUTLINED = "transcribe_outlined" - TRANSCRIBE_ROUNDED = "transcribe_rounded" - TRANSCRIBE_SHARP = "transcribe_sharp" - TRANSFER_WITHIN_A_STATION = "transfer_within_a_station" - TRANSFER_WITHIN_A_STATION_OUTLINED = "transfer_within_a_station_outlined" - TRANSFER_WITHIN_A_STATION_ROUNDED = "transfer_within_a_station_rounded" - TRANSFER_WITHIN_A_STATION_SHARP = "transfer_within_a_station_sharp" - TRANSFORM = "transform" - TRANSFORM_OUTLINED = "transform_outlined" - TRANSFORM_ROUNDED = "transform_rounded" - TRANSFORM_SHARP = "transform_sharp" - TRANSGENDER = "transgender" - TRANSGENDER_OUTLINED = "transgender_outlined" - TRANSGENDER_ROUNDED = "transgender_rounded" - TRANSGENDER_SHARP = "transgender_sharp" - TRANSIT_ENTEREXIT = "transit_enterexit" - TRANSIT_ENTEREXIT_OUTLINED = "transit_enterexit_outlined" - TRANSIT_ENTEREXIT_ROUNDED = "transit_enterexit_rounded" - TRANSIT_ENTEREXIT_SHARP = "transit_enterexit_sharp" - TRANSLATE = "translate" - TRANSLATE_OUTLINED = "translate_outlined" - TRANSLATE_ROUNDED = "translate_rounded" - TRANSLATE_SHARP = "translate_sharp" - TRAVEL_EXPLORE = "travel_explore" - TRAVEL_EXPLORE_OUTLINED = "travel_explore_outlined" - TRAVEL_EXPLORE_ROUNDED = "travel_explore_rounded" - TRAVEL_EXPLORE_SHARP = "travel_explore_sharp" - TRENDING_DOWN = "trending_down" - TRENDING_DOWN_OUTLINED = "trending_down_outlined" - TRENDING_DOWN_ROUNDED = "trending_down_rounded" - TRENDING_DOWN_SHARP = "trending_down_sharp" - TRENDING_FLAT = "trending_flat" - TRENDING_FLAT_OUTLINED = "trending_flat_outlined" - TRENDING_FLAT_ROUNDED = "trending_flat_rounded" - TRENDING_FLAT_SHARP = "trending_flat_sharp" - TRENDING_NEUTRAL = "trending_neutral" - TRENDING_NEUTRAL_OUTLINED = "trending_neutral_outlined" - TRENDING_NEUTRAL_ROUNDED = "trending_neutral_rounded" - TRENDING_NEUTRAL_SHARP = "trending_neutral_sharp" - TRENDING_UP = "trending_up" - TRENDING_UP_OUTLINED = "trending_up_outlined" - TRENDING_UP_ROUNDED = "trending_up_rounded" - TRENDING_UP_SHARP = "trending_up_sharp" - TRIP_ORIGIN = "trip_origin" - TRIP_ORIGIN_OUTLINED = "trip_origin_outlined" - TRIP_ORIGIN_ROUNDED = "trip_origin_rounded" - TRIP_ORIGIN_SHARP = "trip_origin_sharp" - TROLLEY = "trolley" - TROUBLESHOOT = "troubleshoot" - TROUBLESHOOT_OUTLINED = "troubleshoot_outlined" - TROUBLESHOOT_ROUNDED = "troubleshoot_rounded" - TROUBLESHOOT_SHARP = "troubleshoot_sharp" - TRY_SMS_STAR = "try_sms_star" - TRY_SMS_STAR_OUTLINED = "try_sms_star_outlined" - TRY_SMS_STAR_ROUNDED = "try_sms_star_rounded" - TRY_SMS_STAR_SHARP = "try_sms_star_sharp" - TSUNAMI = "tsunami" - TSUNAMI_OUTLINED = "tsunami_outlined" - TSUNAMI_ROUNDED = "tsunami_rounded" - TSUNAMI_SHARP = "tsunami_sharp" - TTY = "tty" - TTY_OUTLINED = "tty_outlined" - TTY_ROUNDED = "tty_rounded" - TTY_SHARP = "tty_sharp" - TUNE = "tune" - TUNE_OUTLINED = "tune_outlined" - TUNE_ROUNDED = "tune_rounded" - TUNE_SHARP = "tune_sharp" - TUNGSTEN = "tungsten" - TUNGSTEN_OUTLINED = "tungsten_outlined" - TUNGSTEN_ROUNDED = "tungsten_rounded" - TUNGSTEN_SHARP = "tungsten_sharp" - TURNED_IN = "turned_in" - TURNED_IN_NOT = "turned_in_not" - TURNED_IN_NOT_OUTLINED = "turned_in_not_outlined" - TURNED_IN_NOT_ROUNDED = "turned_in_not_rounded" - TURNED_IN_NOT_SHARP = "turned_in_not_sharp" - TURNED_IN_OUTLINED = "turned_in_outlined" - TURNED_IN_ROUNDED = "turned_in_rounded" - TURNED_IN_SHARP = "turned_in_sharp" - TURN_LEFT = "turn_left" - TURN_LEFT_OUTLINED = "turn_left_outlined" - TURN_LEFT_ROUNDED = "turn_left_rounded" - TURN_LEFT_SHARP = "turn_left_sharp" - TURN_RIGHT = "turn_right" - TURN_RIGHT_OUTLINED = "turn_right_outlined" - TURN_RIGHT_ROUNDED = "turn_right_rounded" - TURN_RIGHT_SHARP = "turn_right_sharp" - TURN_SHARP_LEFT = "turn_sharp_left" - TURN_SHARP_LEFT_OUTLINED = "turn_sharp_left_outlined" - TURN_SHARP_LEFT_ROUNDED = "turn_sharp_left_rounded" - TURN_SHARP_LEFT_SHARP = "turn_sharp_left_sharp" - TURN_SHARP_RIGHT = "turn_sharp_right" - TURN_SHARP_RIGHT_OUTLINED = "turn_sharp_right_outlined" - TURN_SHARP_RIGHT_ROUNDED = "turn_sharp_right_rounded" - TURN_SHARP_RIGHT_SHARP = "turn_sharp_right_sharp" - TURN_SLIGHT_LEFT = "turn_slight_left" - TURN_SLIGHT_LEFT_OUTLINED = "turn_slight_left_outlined" - TURN_SLIGHT_LEFT_ROUNDED = "turn_slight_left_rounded" - TURN_SLIGHT_LEFT_SHARP = "turn_slight_left_sharp" - TURN_SLIGHT_RIGHT = "turn_slight_right" - TURN_SLIGHT_RIGHT_OUTLINED = "turn_slight_right_outlined" - TURN_SLIGHT_RIGHT_ROUNDED = "turn_slight_right_rounded" - TURN_SLIGHT_RIGHT_SHARP = "turn_slight_right_sharp" - TV = "tv" - TV_OFF = "tv_off" - TV_OFF_OUTLINED = "tv_off_outlined" - TV_OFF_ROUNDED = "tv_off_rounded" - TV_OFF_SHARP = "tv_off_sharp" - TV_OUTLINED = "tv_outlined" - TV_ROUNDED = "tv_rounded" - TV_SHARP = "tv_sharp" - TWELVE_MP = "twelve_mp" - TWELVE_MP_OUTLINED = "twelve_mp_outlined" - TWELVE_MP_ROUNDED = "twelve_mp_rounded" - TWELVE_MP_SHARP = "twelve_mp_sharp" - TWENTY_FOUR_MP = "twenty_four_mp" - TWENTY_FOUR_MP_OUTLINED = "twenty_four_mp_outlined" - TWENTY_FOUR_MP_ROUNDED = "twenty_four_mp_rounded" - TWENTY_FOUR_MP_SHARP = "twenty_four_mp_sharp" - TWENTY_MP = "twenty_mp" - TWENTY_MP_OUTLINED = "twenty_mp_outlined" - TWENTY_MP_ROUNDED = "twenty_mp_rounded" - TWENTY_MP_SHARP = "twenty_mp_sharp" - TWENTY_ONE_MP = "twenty_one_mp" - TWENTY_ONE_MP_OUTLINED = "twenty_one_mp_outlined" - TWENTY_ONE_MP_ROUNDED = "twenty_one_mp_rounded" - TWENTY_ONE_MP_SHARP = "twenty_one_mp_sharp" - TWENTY_THREE_MP = "twenty_three_mp" - TWENTY_THREE_MP_OUTLINED = "twenty_three_mp_outlined" - TWENTY_THREE_MP_ROUNDED = "twenty_three_mp_rounded" - TWENTY_THREE_MP_SHARP = "twenty_three_mp_sharp" - TWENTY_TWO_MP = "twenty_two_mp" - TWENTY_TWO_MP_OUTLINED = "twenty_two_mp_outlined" - TWENTY_TWO_MP_ROUNDED = "twenty_two_mp_rounded" - TWENTY_TWO_MP_SHARP = "twenty_two_mp_sharp" - TWO_K = "two_k" - TWO_K_OUTLINED = "two_k_outlined" - TWO_K_PLUS = "two_k_plus" - TWO_K_PLUS_OUTLINED = "two_k_plus_outlined" - TWO_K_PLUS_ROUNDED = "two_k_plus_rounded" - TWO_K_PLUS_SHARP = "two_k_plus_sharp" - TWO_K_ROUNDED = "two_k_rounded" - TWO_K_SHARP = "two_k_sharp" - TWO_MP = "two_mp" - TWO_MP_OUTLINED = "two_mp_outlined" - TWO_MP_ROUNDED = "two_mp_rounded" - TWO_MP_SHARP = "two_mp_sharp" - TWO_WHEELER = "two_wheeler" - TWO_WHEELER_OUTLINED = "two_wheeler_outlined" - TWO_WHEELER_ROUNDED = "two_wheeler_rounded" - TWO_WHEELER_SHARP = "two_wheeler_sharp" - TYPE_SPECIMEN = "type_specimen" - TYPE_SPECIMEN_OUTLINED = "type_specimen_outlined" - TYPE_SPECIMEN_ROUNDED = "type_specimen_rounded" - TYPE_SPECIMEN_SHARP = "type_specimen_sharp" - UMBRELLA = "umbrella" - UMBRELLA_OUTLINED = "umbrella_outlined" - UMBRELLA_ROUNDED = "umbrella_rounded" - UMBRELLA_SHARP = "umbrella_sharp" - UNARCHIVE = "unarchive" - UNARCHIVE_OUTLINED = "unarchive_outlined" - UNARCHIVE_ROUNDED = "unarchive_rounded" - UNARCHIVE_SHARP = "unarchive_sharp" - UNDO = "undo" - UNDO_OUTLINED = "undo_outlined" - UNDO_ROUNDED = "undo_rounded" - UNDO_SHARP = "undo_sharp" - UNFOLD_LESS = "unfold_less" - UNFOLD_LESS_DOUBLE = "unfold_less_double" - UNFOLD_LESS_DOUBLE_OUTLINED = "unfold_less_double_outlined" - UNFOLD_LESS_DOUBLE_ROUNDED = "unfold_less_double_rounded" - UNFOLD_LESS_DOUBLE_SHARP = "unfold_less_double_sharp" - UNFOLD_LESS_OUTLINED = "unfold_less_outlined" - UNFOLD_LESS_ROUNDED = "unfold_less_rounded" - UNFOLD_LESS_SHARP = "unfold_less_sharp" - UNFOLD_MORE = "unfold_more" - UNFOLD_MORE_DOUBLE = "unfold_more_double" - UNFOLD_MORE_DOUBLE_OUTLINED = "unfold_more_double_outlined" - UNFOLD_MORE_DOUBLE_ROUNDED = "unfold_more_double_rounded" - UNFOLD_MORE_DOUBLE_SHARP = "unfold_more_double_sharp" - UNFOLD_MORE_OUTLINED = "unfold_more_outlined" - UNFOLD_MORE_ROUNDED = "unfold_more_rounded" - UNFOLD_MORE_SHARP = "unfold_more_sharp" - UNPUBLISHED = "unpublished" - UNPUBLISHED_OUTLINED = "unpublished_outlined" - UNPUBLISHED_ROUNDED = "unpublished_rounded" - UNPUBLISHED_SHARP = "unpublished_sharp" - UNSUBSCRIBE = "unsubscribe" - UNSUBSCRIBE_OUTLINED = "unsubscribe_outlined" - UNSUBSCRIBE_ROUNDED = "unsubscribe_rounded" - UNSUBSCRIBE_SHARP = "unsubscribe_sharp" - UPCOMING = "upcoming" - UPCOMING_OUTLINED = "upcoming_outlined" - UPCOMING_ROUNDED = "upcoming_rounded" - UPCOMING_SHARP = "upcoming_sharp" - UPDATE = "update" - UPDATE_DISABLED = "update_disabled" - UPDATE_DISABLED_OUTLINED = "update_disabled_outlined" - UPDATE_DISABLED_ROUNDED = "update_disabled_rounded" - UPDATE_DISABLED_SHARP = "update_disabled_sharp" - UPDATE_OUTLINED = "update_outlined" - UPDATE_ROUNDED = "update_rounded" - UPDATE_SHARP = "update_sharp" - UPGRADE = "upgrade" - UPGRADE_OUTLINED = "upgrade_outlined" - UPGRADE_ROUNDED = "upgrade_rounded" - UPGRADE_SHARP = "upgrade_sharp" - UPLOAD = "upload" - UPLOAD_FILE = "upload_file" - UPLOAD_FILE_OUTLINED = "upload_file_outlined" - UPLOAD_FILE_ROUNDED = "upload_file_rounded" - UPLOAD_FILE_SHARP = "upload_file_sharp" - UPLOAD_OUTLINED = "upload_outlined" - UPLOAD_ROUNDED = "upload_rounded" - UPLOAD_SHARP = "upload_sharp" - USB = "usb" - USB_OFF = "usb_off" - USB_OFF_OUTLINED = "usb_off_outlined" - USB_OFF_ROUNDED = "usb_off_rounded" - USB_OFF_SHARP = "usb_off_sharp" - USB_OUTLINED = "usb_outlined" - USB_ROUNDED = "usb_rounded" - USB_SHARP = "usb_sharp" - U_TURN_LEFT = "u_turn_left" - U_TURN_LEFT_OUTLINED = "u_turn_left_outlined" - U_TURN_LEFT_ROUNDED = "u_turn_left_rounded" - U_TURN_LEFT_SHARP = "u_turn_left_sharp" - U_TURN_RIGHT = "u_turn_right" - U_TURN_RIGHT_OUTLINED = "u_turn_right_outlined" - U_TURN_RIGHT_ROUNDED = "u_turn_right_rounded" - U_TURN_RIGHT_SHARP = "u_turn_right_sharp" - VACCINES = "vaccines" - VACCINES_OUTLINED = "vaccines_outlined" - VACCINES_ROUNDED = "vaccines_rounded" - VACCINES_SHARP = "vaccines_sharp" - VAPE_FREE = "vape_free" - VAPE_FREE_OUTLINED = "vape_free_outlined" - VAPE_FREE_ROUNDED = "vape_free_rounded" - VAPE_FREE_SHARP = "vape_free_sharp" - VAPING_ROOMS = "vaping_rooms" - VAPING_ROOMS_OUTLINED = "vaping_rooms_outlined" - VAPING_ROOMS_ROUNDED = "vaping_rooms_rounded" - VAPING_ROOMS_SHARP = "vaping_rooms_sharp" - VERIFIED = "verified" - VERIFIED_OUTLINED = "verified_outlined" - VERIFIED_ROUNDED = "verified_rounded" - VERIFIED_SHARP = "verified_sharp" - VERIFIED_USER = "verified_user" - VERIFIED_USER_OUTLINED = "verified_user_outlined" - VERIFIED_USER_ROUNDED = "verified_user_rounded" - VERIFIED_USER_SHARP = "verified_user_sharp" - VERTICAL_ALIGN_BOTTOM = "vertical_align_bottom" - VERTICAL_ALIGN_BOTTOM_OUTLINED = "vertical_align_bottom_outlined" - VERTICAL_ALIGN_BOTTOM_ROUNDED = "vertical_align_bottom_rounded" - VERTICAL_ALIGN_BOTTOM_SHARP = "vertical_align_bottom_sharp" - VERTICAL_ALIGN_CENTER = "vertical_align_center" - VERTICAL_ALIGN_CENTER_OUTLINED = "vertical_align_center_outlined" - VERTICAL_ALIGN_CENTER_ROUNDED = "vertical_align_center_rounded" - VERTICAL_ALIGN_CENTER_SHARP = "vertical_align_center_sharp" - VERTICAL_ALIGN_TOP = "vertical_align_top" - VERTICAL_ALIGN_TOP_OUTLINED = "vertical_align_top_outlined" - VERTICAL_ALIGN_TOP_ROUNDED = "vertical_align_top_rounded" - VERTICAL_ALIGN_TOP_SHARP = "vertical_align_top_sharp" - VERTICAL_DISTRIBUTE = "vertical_distribute" - VERTICAL_DISTRIBUTE_OUTLINED = "vertical_distribute_outlined" - VERTICAL_DISTRIBUTE_ROUNDED = "vertical_distribute_rounded" - VERTICAL_DISTRIBUTE_SHARP = "vertical_distribute_sharp" - VERTICAL_SHADES = "vertical_shades" - VERTICAL_SHADES_CLOSED = "vertical_shades_closed" - VERTICAL_SHADES_CLOSED_OUTLINED = "vertical_shades_closed_outlined" - VERTICAL_SHADES_CLOSED_ROUNDED = "vertical_shades_closed_rounded" - VERTICAL_SHADES_CLOSED_SHARP = "vertical_shades_closed_sharp" - VERTICAL_SHADES_OUTLINED = "vertical_shades_outlined" - VERTICAL_SHADES_ROUNDED = "vertical_shades_rounded" - VERTICAL_SHADES_SHARP = "vertical_shades_sharp" - VERTICAL_SPLIT = "vertical_split" - VERTICAL_SPLIT_OUTLINED = "vertical_split_outlined" - VERTICAL_SPLIT_ROUNDED = "vertical_split_rounded" - VERTICAL_SPLIT_SHARP = "vertical_split_sharp" - VIBRATION = "vibration" - VIBRATION_OUTLINED = "vibration_outlined" - VIBRATION_ROUNDED = "vibration_rounded" - VIBRATION_SHARP = "vibration_sharp" - VIDEOCAM = "videocam" - VIDEOCAM_OFF = "videocam_off" - VIDEOCAM_OFF_OUTLINED = "videocam_off_outlined" - VIDEOCAM_OFF_ROUNDED = "videocam_off_rounded" - VIDEOCAM_OFF_SHARP = "videocam_off_sharp" - VIDEOCAM_OUTLINED = "videocam_outlined" - VIDEOCAM_ROUNDED = "videocam_rounded" - VIDEOCAM_SHARP = "videocam_sharp" - VIDEOGAME_ASSET = "videogame_asset" - VIDEOGAME_ASSET_OFF = "videogame_asset_off" - VIDEOGAME_ASSET_OFF_OUTLINED = "videogame_asset_off_outlined" - VIDEOGAME_ASSET_OFF_ROUNDED = "videogame_asset_off_rounded" - VIDEOGAME_ASSET_OFF_SHARP = "videogame_asset_off_sharp" - VIDEOGAME_ASSET_OUTLINED = "videogame_asset_outlined" - VIDEOGAME_ASSET_ROUNDED = "videogame_asset_rounded" - VIDEOGAME_ASSET_SHARP = "videogame_asset_sharp" - VIDEO_CALL = "video_call" - VIDEO_CALL_OUTLINED = "video_call_outlined" - VIDEO_CALL_ROUNDED = "video_call_rounded" - VIDEO_CALL_SHARP = "video_call_sharp" - VIDEO_CAMERA_BACK = "video_camera_back" - VIDEO_CAMERA_BACK_OUTLINED = "video_camera_back_outlined" - VIDEO_CAMERA_BACK_ROUNDED = "video_camera_back_rounded" - VIDEO_CAMERA_BACK_SHARP = "video_camera_back_sharp" - VIDEO_CAMERA_FRONT = "video_camera_front" - VIDEO_CAMERA_FRONT_OUTLINED = "video_camera_front_outlined" - VIDEO_CAMERA_FRONT_ROUNDED = "video_camera_front_rounded" - VIDEO_CAMERA_FRONT_SHARP = "video_camera_front_sharp" - VIDEO_CHAT = "video_chat" - VIDEO_CHAT_OUTLINED = "video_chat_outlined" - VIDEO_CHAT_ROUNDED = "video_chat_rounded" - VIDEO_CHAT_SHARP = "video_chat_sharp" - VIDEO_COLLECTION = "video_collection" - VIDEO_COLLECTION_OUTLINED = "video_collection_outlined" - VIDEO_COLLECTION_ROUNDED = "video_collection_rounded" - VIDEO_COLLECTION_SHARP = "video_collection_sharp" - VIDEO_FILE = "video_file" - VIDEO_FILE_OUTLINED = "video_file_outlined" - VIDEO_FILE_ROUNDED = "video_file_rounded" - VIDEO_FILE_SHARP = "video_file_sharp" - VIDEO_LABEL = "video_label" - VIDEO_LABEL_OUTLINED = "video_label_outlined" - VIDEO_LABEL_ROUNDED = "video_label_rounded" - VIDEO_LABEL_SHARP = "video_label_sharp" - VIDEO_LIBRARY = "video_library" - VIDEO_LIBRARY_OUTLINED = "video_library_outlined" - VIDEO_LIBRARY_ROUNDED = "video_library_rounded" - VIDEO_LIBRARY_SHARP = "video_library_sharp" - VIDEO_SETTINGS = "video_settings" - VIDEO_SETTINGS_OUTLINED = "video_settings_outlined" - VIDEO_SETTINGS_ROUNDED = "video_settings_rounded" - VIDEO_SETTINGS_SHARP = "video_settings_sharp" - VIDEO_STABLE = "video_stable" - VIDEO_STABLE_OUTLINED = "video_stable_outlined" - VIDEO_STABLE_ROUNDED = "video_stable_rounded" - VIDEO_STABLE_SHARP = "video_stable_sharp" - VIEW_AGENDA = "view_agenda" - VIEW_AGENDA_OUTLINED = "view_agenda_outlined" - VIEW_AGENDA_ROUNDED = "view_agenda_rounded" - VIEW_AGENDA_SHARP = "view_agenda_sharp" - VIEW_ARRAY = "view_array" - VIEW_ARRAY_OUTLINED = "view_array_outlined" - VIEW_ARRAY_ROUNDED = "view_array_rounded" - VIEW_ARRAY_SHARP = "view_array_sharp" - VIEW_CAROUSEL = "view_carousel" - VIEW_CAROUSEL_OUTLINED = "view_carousel_outlined" - VIEW_CAROUSEL_ROUNDED = "view_carousel_rounded" - VIEW_CAROUSEL_SHARP = "view_carousel_sharp" - VIEW_COLUMN = "view_column" - VIEW_COLUMN_OUTLINED = "view_column_outlined" - VIEW_COLUMN_ROUNDED = "view_column_rounded" - VIEW_COLUMN_SHARP = "view_column_sharp" - VIEW_COMFORTABLE = "view_comfortable" - VIEW_COMFORTABLE_OUTLINED = "view_comfortable_outlined" - VIEW_COMFORTABLE_ROUNDED = "view_comfortable_rounded" - VIEW_COMFORTABLE_SHARP = "view_comfortable_sharp" - VIEW_COMFY = "view_comfy" - VIEW_COMFY_ALT = "view_comfy_alt" - VIEW_COMFY_ALT_OUTLINED = "view_comfy_alt_outlined" - VIEW_COMFY_ALT_ROUNDED = "view_comfy_alt_rounded" - VIEW_COMFY_ALT_SHARP = "view_comfy_alt_sharp" - VIEW_COMFY_OUTLINED = "view_comfy_outlined" - VIEW_COMFY_ROUNDED = "view_comfy_rounded" - VIEW_COMFY_SHARP = "view_comfy_sharp" - VIEW_COMPACT = "view_compact" - VIEW_COMPACT_ALT = "view_compact_alt" - VIEW_COMPACT_ALT_OUTLINED = "view_compact_alt_outlined" - VIEW_COMPACT_ALT_ROUNDED = "view_compact_alt_rounded" - VIEW_COMPACT_ALT_SHARP = "view_compact_alt_sharp" - VIEW_COMPACT_OUTLINED = "view_compact_outlined" - VIEW_COMPACT_ROUNDED = "view_compact_rounded" - VIEW_COMPACT_SHARP = "view_compact_sharp" - VIEW_COZY = "view_cozy" - VIEW_COZY_OUTLINED = "view_cozy_outlined" - VIEW_COZY_ROUNDED = "view_cozy_rounded" - VIEW_COZY_SHARP = "view_cozy_sharp" - VIEW_DAY = "view_day" - VIEW_DAY_OUTLINED = "view_day_outlined" - VIEW_DAY_ROUNDED = "view_day_rounded" - VIEW_DAY_SHARP = "view_day_sharp" - VIEW_HEADLINE = "view_headline" - VIEW_HEADLINE_OUTLINED = "view_headline_outlined" - VIEW_HEADLINE_ROUNDED = "view_headline_rounded" - VIEW_HEADLINE_SHARP = "view_headline_sharp" - VIEW_IN_AR = "view_in_ar" - VIEW_IN_AR_OUTLINED = "view_in_ar_outlined" - VIEW_IN_AR_ROUNDED = "view_in_ar_rounded" - VIEW_IN_AR_SHARP = "view_in_ar_sharp" - VIEW_KANBAN = "view_kanban" - VIEW_KANBAN_OUTLINED = "view_kanban_outlined" - VIEW_KANBAN_ROUNDED = "view_kanban_rounded" - VIEW_KANBAN_SHARP = "view_kanban_sharp" - VIEW_LIST = "view_list" - VIEW_LIST_OUTLINED = "view_list_outlined" - VIEW_LIST_ROUNDED = "view_list_rounded" - VIEW_LIST_SHARP = "view_list_sharp" - VIEW_MODULE = "view_module" - VIEW_MODULE_OUTLINED = "view_module_outlined" - VIEW_MODULE_ROUNDED = "view_module_rounded" - VIEW_MODULE_SHARP = "view_module_sharp" - VIEW_QUILT = "view_quilt" - VIEW_QUILT_OUTLINED = "view_quilt_outlined" - VIEW_QUILT_ROUNDED = "view_quilt_rounded" - VIEW_QUILT_SHARP = "view_quilt_sharp" - VIEW_SIDEBAR = "view_sidebar" - VIEW_SIDEBAR_OUTLINED = "view_sidebar_outlined" - VIEW_SIDEBAR_ROUNDED = "view_sidebar_rounded" - VIEW_SIDEBAR_SHARP = "view_sidebar_sharp" - VIEW_STREAM = "view_stream" - VIEW_STREAM_OUTLINED = "view_stream_outlined" - VIEW_STREAM_ROUNDED = "view_stream_rounded" - VIEW_STREAM_SHARP = "view_stream_sharp" - VIEW_TIMELINE = "view_timeline" - VIEW_TIMELINE_OUTLINED = "view_timeline_outlined" - VIEW_TIMELINE_ROUNDED = "view_timeline_rounded" - VIEW_TIMELINE_SHARP = "view_timeline_sharp" - VIEW_WEEK = "view_week" - VIEW_WEEK_OUTLINED = "view_week_outlined" - VIEW_WEEK_ROUNDED = "view_week_rounded" - VIEW_WEEK_SHARP = "view_week_sharp" - VIGNETTE = "vignette" - VIGNETTE_OUTLINED = "vignette_outlined" - VIGNETTE_ROUNDED = "vignette_rounded" - VIGNETTE_SHARP = "vignette_sharp" - VILLA = "villa" - VILLA_OUTLINED = "villa_outlined" - VILLA_ROUNDED = "villa_rounded" - VILLA_SHARP = "villa_sharp" - VISIBILITY = "visibility" - VISIBILITY_OFF = "visibility_off" - VISIBILITY_OFF_OUTLINED = "visibility_off_outlined" - VISIBILITY_OFF_ROUNDED = "visibility_off_rounded" - VISIBILITY_OFF_SHARP = "visibility_off_sharp" - VISIBILITY_OUTLINED = "visibility_outlined" - VISIBILITY_ROUNDED = "visibility_rounded" - VISIBILITY_SHARP = "visibility_sharp" - VOICEMAIL = "voicemail" - VOICEMAIL_OUTLINED = "voicemail_outlined" - VOICEMAIL_ROUNDED = "voicemail_rounded" - VOICEMAIL_SHARP = "voicemail_sharp" - VOICE_CHAT = "voice_chat" - VOICE_CHAT_OUTLINED = "voice_chat_outlined" - VOICE_CHAT_ROUNDED = "voice_chat_rounded" - VOICE_CHAT_SHARP = "voice_chat_sharp" - VOICE_OVER_OFF = "voice_over_off" - VOICE_OVER_OFF_OUTLINED = "voice_over_off_outlined" - VOICE_OVER_OFF_ROUNDED = "voice_over_off_rounded" - VOICE_OVER_OFF_SHARP = "voice_over_off_sharp" - VOLCANO = "volcano" - VOLCANO_OUTLINED = "volcano_outlined" - VOLCANO_ROUNDED = "volcano_rounded" - VOLCANO_SHARP = "volcano_sharp" - VOLUME_DOWN = "volume_down" - VOLUME_DOWN_ALT = "volume_down_alt" - VOLUME_DOWN_OUTLINED = "volume_down_outlined" - VOLUME_DOWN_ROUNDED = "volume_down_rounded" - VOLUME_DOWN_SHARP = "volume_down_sharp" - VOLUME_MUTE = "volume_mute" - VOLUME_MUTE_OUTLINED = "volume_mute_outlined" - VOLUME_MUTE_ROUNDED = "volume_mute_rounded" - VOLUME_MUTE_SHARP = "volume_mute_sharp" - VOLUME_OFF = "volume_off" - VOLUME_OFF_OUTLINED = "volume_off_outlined" - VOLUME_OFF_ROUNDED = "volume_off_rounded" - VOLUME_OFF_SHARP = "volume_off_sharp" - VOLUME_UP = "volume_up" - VOLUME_UP_OUTLINED = "volume_up_outlined" - VOLUME_UP_ROUNDED = "volume_up_rounded" - VOLUME_UP_SHARP = "volume_up_sharp" - VOLUNTEER_ACTIVISM = "volunteer_activism" - VOLUNTEER_ACTIVISM_OUTLINED = "volunteer_activism_outlined" - VOLUNTEER_ACTIVISM_ROUNDED = "volunteer_activism_rounded" - VOLUNTEER_ACTIVISM_SHARP = "volunteer_activism_sharp" - VPN_KEY = "vpn_key" - VPN_KEY_OFF = "vpn_key_off" - VPN_KEY_OFF_OUTLINED = "vpn_key_off_outlined" - VPN_KEY_OFF_ROUNDED = "vpn_key_off_rounded" - VPN_KEY_OFF_SHARP = "vpn_key_off_sharp" - VPN_KEY_OUTLINED = "vpn_key_outlined" - VPN_KEY_ROUNDED = "vpn_key_rounded" - VPN_KEY_SHARP = "vpn_key_sharp" - VPN_LOCK = "vpn_lock" - VPN_LOCK_OUTLINED = "vpn_lock_outlined" - VPN_LOCK_ROUNDED = "vpn_lock_rounded" - VPN_LOCK_SHARP = "vpn_lock_sharp" - VRPANO = "vrpano" - VRPANO_OUTLINED = "vrpano_outlined" - VRPANO_ROUNDED = "vrpano_rounded" - VRPANO_SHARP = "vrpano_sharp" - WALLET = "wallet" - WALLET_GIFTCARD = "wallet_giftcard" - WALLET_GIFTCARD_OUTLINED = "wallet_giftcard_outlined" - WALLET_GIFTCARD_ROUNDED = "wallet_giftcard_rounded" - WALLET_GIFTCARD_SHARP = "wallet_giftcard_sharp" - WALLET_MEMBERSHIP = "wallet_membership" - WALLET_MEMBERSHIP_OUTLINED = "wallet_membership_outlined" - WALLET_MEMBERSHIP_ROUNDED = "wallet_membership_rounded" - WALLET_MEMBERSHIP_SHARP = "wallet_membership_sharp" - WALLET_OUTLINED = "wallet_outlined" - WALLET_ROUNDED = "wallet_rounded" - WALLET_SHARP = "wallet_sharp" - WALLET_TRAVEL = "wallet_travel" - WALLET_TRAVEL_OUTLINED = "wallet_travel_outlined" - WALLET_TRAVEL_ROUNDED = "wallet_travel_rounded" - WALLET_TRAVEL_SHARP = "wallet_travel_sharp" - WALLPAPER = "wallpaper" - WALLPAPER_OUTLINED = "wallpaper_outlined" - WALLPAPER_ROUNDED = "wallpaper_rounded" - WALLPAPER_SHARP = "wallpaper_sharp" - WAREHOUSE = "warehouse" - WAREHOUSE_OUTLINED = "warehouse_outlined" - WAREHOUSE_ROUNDED = "warehouse_rounded" - WAREHOUSE_SHARP = "warehouse_sharp" - WARNING = "warning" - WARNING_AMBER = "warning_amber" - WARNING_AMBER_OUTLINED = "warning_amber_outlined" - WARNING_AMBER_ROUNDED = "warning_amber_rounded" - WARNING_AMBER_SHARP = "warning_amber_sharp" - WARNING_OUTLINED = "warning_outlined" - WARNING_ROUNDED = "warning_rounded" - WARNING_SHARP = "warning_sharp" - WASH = "wash" - WASH_OUTLINED = "wash_outlined" - WASH_ROUNDED = "wash_rounded" - WASH_SHARP = "wash_sharp" - WATCH = "watch" - WATCH_LATER = "watch_later" - WATCH_LATER_OUTLINED = "watch_later_outlined" - WATCH_LATER_ROUNDED = "watch_later_rounded" - WATCH_LATER_SHARP = "watch_later_sharp" - WATCH_OFF = "watch_off" - WATCH_OFF_OUTLINED = "watch_off_outlined" - WATCH_OFF_ROUNDED = "watch_off_rounded" - WATCH_OFF_SHARP = "watch_off_sharp" - WATCH_OUTLINED = "watch_outlined" - WATCH_ROUNDED = "watch_rounded" - WATCH_SHARP = "watch_sharp" - WATER = "water" - WATERFALL_CHART = "waterfall_chart" - WATERFALL_CHART_OUTLINED = "waterfall_chart_outlined" - WATERFALL_CHART_ROUNDED = "waterfall_chart_rounded" - WATERFALL_CHART_SHARP = "waterfall_chart_sharp" - WATER_DAMAGE = "water_damage" - WATER_DAMAGE_OUTLINED = "water_damage_outlined" - WATER_DAMAGE_ROUNDED = "water_damage_rounded" - WATER_DAMAGE_SHARP = "water_damage_sharp" - WATER_DROP = "water_drop" - WATER_DROP_OUTLINED = "water_drop_outlined" - WATER_DROP_ROUNDED = "water_drop_rounded" - WATER_DROP_SHARP = "water_drop_sharp" - WATER_OUTLINED = "water_outlined" - WATER_ROUNDED = "water_rounded" - WATER_SHARP = "water_sharp" - WAVES = "waves" - WAVES_OUTLINED = "waves_outlined" - WAVES_ROUNDED = "waves_rounded" - WAVES_SHARP = "waves_sharp" - WAVING_HAND = "waving_hand" - WAVING_HAND_OUTLINED = "waving_hand_outlined" - WAVING_HAND_ROUNDED = "waving_hand_rounded" - WAVING_HAND_SHARP = "waving_hand_sharp" - WB_AUTO = "wb_auto" - WB_AUTO_OUTLINED = "wb_auto_outlined" - WB_AUTO_ROUNDED = "wb_auto_rounded" - WB_AUTO_SHARP = "wb_auto_sharp" - WB_CLOUDY = "wb_cloudy" - WB_CLOUDY_OUTLINED = "wb_cloudy_outlined" - WB_CLOUDY_ROUNDED = "wb_cloudy_rounded" - WB_CLOUDY_SHARP = "wb_cloudy_sharp" - WB_INCANDESCENT = "wb_incandescent" - WB_INCANDESCENT_OUTLINED = "wb_incandescent_outlined" - WB_INCANDESCENT_ROUNDED = "wb_incandescent_rounded" - WB_INCANDESCENT_SHARP = "wb_incandescent_sharp" - WB_IRIDESCENT = "wb_iridescent" - WB_IRIDESCENT_OUTLINED = "wb_iridescent_outlined" - WB_IRIDESCENT_ROUNDED = "wb_iridescent_rounded" - WB_IRIDESCENT_SHARP = "wb_iridescent_sharp" - WB_SHADE = "wb_shade" - WB_SHADE_OUTLINED = "wb_shade_outlined" - WB_SHADE_ROUNDED = "wb_shade_rounded" - WB_SHADE_SHARP = "wb_shade_sharp" - WB_SUNNY = "wb_sunny" - WB_SUNNY_OUTLINED = "wb_sunny_outlined" - WB_SUNNY_ROUNDED = "wb_sunny_rounded" - WB_SUNNY_SHARP = "wb_sunny_sharp" - WB_TWIGHLIGHT = "wb_twighlight" - WB_TWILIGHT = "wb_twilight" - WB_TWILIGHT_OUTLINED = "wb_twilight_outlined" - WB_TWILIGHT_ROUNDED = "wb_twilight_rounded" - WB_TWILIGHT_SHARP = "wb_twilight_sharp" - WC = "wc" - WC_OUTLINED = "wc_outlined" - WC_ROUNDED = "wc_rounded" - WC_SHARP = "wc_sharp" - WEB = "web" - WEBHOOK = "webhook" - WEBHOOK_OUTLINED = "webhook_outlined" - WEBHOOK_ROUNDED = "webhook_rounded" - WEBHOOK_SHARP = "webhook_sharp" - WEB_ASSET = "web_asset" - WEB_ASSET_OFF = "web_asset_off" - WEB_ASSET_OFF_OUTLINED = "web_asset_off_outlined" - WEB_ASSET_OFF_ROUNDED = "web_asset_off_rounded" - WEB_ASSET_OFF_SHARP = "web_asset_off_sharp" - WEB_ASSET_OUTLINED = "web_asset_outlined" - WEB_ASSET_ROUNDED = "web_asset_rounded" - WEB_ASSET_SHARP = "web_asset_sharp" - WEB_OUTLINED = "web_outlined" - WEB_ROUNDED = "web_rounded" - WEB_SHARP = "web_sharp" - WEB_STORIES = "web_stories" - WEB_STORIES_OUTLINED = "web_stories_outlined" - WEB_STORIES_ROUNDED = "web_stories_rounded" - WEB_STORIES_SHARP = "web_stories_sharp" - WECHAT = "wechat" - WECHAT_OUTLINED = "wechat_outlined" - WECHAT_ROUNDED = "wechat_rounded" - WECHAT_SHARP = "wechat_sharp" - WEEKEND = "weekend" - WEEKEND_OUTLINED = "weekend_outlined" - WEEKEND_ROUNDED = "weekend_rounded" - WEEKEND_SHARP = "weekend_sharp" - WEST = "west" - WEST_OUTLINED = "west_outlined" - WEST_ROUNDED = "west_rounded" - WEST_SHARP = "west_sharp" - WHATSHOT = "whatshot" - WHATSHOT_OUTLINED = "whatshot_outlined" - WHATSHOT_ROUNDED = "whatshot_rounded" - WHATSHOT_SHARP = "whatshot_sharp" - WHEELCHAIR_PICKUP = "wheelchair_pickup" - WHEELCHAIR_PICKUP_OUTLINED = "wheelchair_pickup_outlined" - WHEELCHAIR_PICKUP_ROUNDED = "wheelchair_pickup_rounded" - WHEELCHAIR_PICKUP_SHARP = "wheelchair_pickup_sharp" - WHERE_TO_VOTE = "where_to_vote" - WHERE_TO_VOTE_OUTLINED = "where_to_vote_outlined" - WHERE_TO_VOTE_ROUNDED = "where_to_vote_rounded" - WHERE_TO_VOTE_SHARP = "where_to_vote_sharp" - WIDGETS = "widgets" - WIDGETS_OUTLINED = "widgets_outlined" - WIDGETS_ROUNDED = "widgets_rounded" - WIDGETS_SHARP = "widgets_sharp" - WIDTH_FULL = "width_full" - WIDTH_FULL_OUTLINED = "width_full_outlined" - WIDTH_FULL_ROUNDED = "width_full_rounded" - WIDTH_FULL_SHARP = "width_full_sharp" - WIDTH_NORMAL = "width_normal" - WIDTH_NORMAL_OUTLINED = "width_normal_outlined" - WIDTH_NORMAL_ROUNDED = "width_normal_rounded" - WIDTH_NORMAL_SHARP = "width_normal_sharp" - WIDTH_WIDE = "width_wide" - WIDTH_WIDE_OUTLINED = "width_wide_outlined" - WIDTH_WIDE_ROUNDED = "width_wide_rounded" - WIDTH_WIDE_SHARP = "width_wide_sharp" - WIFI = "wifi" - WIFI_1_BAR = "wifi_1_bar" - WIFI_1_BAR_OUTLINED = "wifi_1_bar_outlined" - WIFI_1_BAR_ROUNDED = "wifi_1_bar_rounded" - WIFI_1_BAR_SHARP = "wifi_1_bar_sharp" - WIFI_2_BAR = "wifi_2_bar" - WIFI_2_BAR_OUTLINED = "wifi_2_bar_outlined" - WIFI_2_BAR_ROUNDED = "wifi_2_bar_rounded" - WIFI_2_BAR_SHARP = "wifi_2_bar_sharp" - WIFI_CALLING = "wifi_calling" - WIFI_CALLING_3 = "wifi_calling_3" - WIFI_CALLING_3_OUTLINED = "wifi_calling_3_outlined" - WIFI_CALLING_3_ROUNDED = "wifi_calling_3_rounded" - WIFI_CALLING_3_SHARP = "wifi_calling_3_sharp" - WIFI_CALLING_OUTLINED = "wifi_calling_outlined" - WIFI_CALLING_ROUNDED = "wifi_calling_rounded" - WIFI_CALLING_SHARP = "wifi_calling_sharp" - WIFI_CHANNEL = "wifi_channel" - WIFI_CHANNEL_OUTLINED = "wifi_channel_outlined" - WIFI_CHANNEL_ROUNDED = "wifi_channel_rounded" - WIFI_CHANNEL_SHARP = "wifi_channel_sharp" - WIFI_FIND = "wifi_find" - WIFI_FIND_OUTLINED = "wifi_find_outlined" - WIFI_FIND_ROUNDED = "wifi_find_rounded" - WIFI_FIND_SHARP = "wifi_find_sharp" - WIFI_LOCK = "wifi_lock" - WIFI_LOCK_OUTLINED = "wifi_lock_outlined" - WIFI_LOCK_ROUNDED = "wifi_lock_rounded" - WIFI_LOCK_SHARP = "wifi_lock_sharp" - WIFI_OFF = "wifi_off" - WIFI_OFF_OUTLINED = "wifi_off_outlined" - WIFI_OFF_ROUNDED = "wifi_off_rounded" - WIFI_OFF_SHARP = "wifi_off_sharp" - WIFI_OUTLINED = "wifi_outlined" - WIFI_PASSWORD = "wifi_password" - WIFI_PASSWORD_OUTLINED = "wifi_password_outlined" - WIFI_PASSWORD_ROUNDED = "wifi_password_rounded" - WIFI_PASSWORD_SHARP = "wifi_password_sharp" - WIFI_PROTECTED_SETUP = "wifi_protected_setup" - WIFI_PROTECTED_SETUP_OUTLINED = "wifi_protected_setup_outlined" - WIFI_PROTECTED_SETUP_ROUNDED = "wifi_protected_setup_rounded" - WIFI_PROTECTED_SETUP_SHARP = "wifi_protected_setup_sharp" - WIFI_ROUNDED = "wifi_rounded" - WIFI_SHARP = "wifi_sharp" - WIFI_TETHERING = "wifi_tethering" - WIFI_TETHERING_ERROR = "wifi_tethering_error" - WIFI_TETHERING_ERROR_OUTLINED = "wifi_tethering_error_outlined" - WIFI_TETHERING_ERROR_ROUNDED = "wifi_tethering_error_rounded" - WIFI_TETHERING_ERROR_ROUNDED_OUTLINED = "wifi_tethering_error_rounded_outlined" - WIFI_TETHERING_ERROR_ROUNDED_ROUNDED = "wifi_tethering_error_rounded_rounded" - WIFI_TETHERING_ERROR_ROUNDED_SHARP = "wifi_tethering_error_rounded_sharp" - WIFI_TETHERING_ERROR_SHARP = "wifi_tethering_error_sharp" - WIFI_TETHERING_OFF = "wifi_tethering_off" - WIFI_TETHERING_OFF_OUTLINED = "wifi_tethering_off_outlined" - WIFI_TETHERING_OFF_ROUNDED = "wifi_tethering_off_rounded" - WIFI_TETHERING_OFF_SHARP = "wifi_tethering_off_sharp" - WIFI_TETHERING_OUTLINED = "wifi_tethering_outlined" - WIFI_TETHERING_ROUNDED = "wifi_tethering_rounded" - WIFI_TETHERING_SHARP = "wifi_tethering_sharp" - WINDOW = "window" - WINDOW_OUTLINED = "window_outlined" - WINDOW_ROUNDED = "window_rounded" - WINDOW_SHARP = "window_sharp" - WIND_POWER = "wind_power" - WIND_POWER_OUTLINED = "wind_power_outlined" - WIND_POWER_ROUNDED = "wind_power_rounded" - WIND_POWER_SHARP = "wind_power_sharp" - WINE_BAR = "wine_bar" - WINE_BAR_OUTLINED = "wine_bar_outlined" - WINE_BAR_ROUNDED = "wine_bar_rounded" - WINE_BAR_SHARP = "wine_bar_sharp" - WOMAN = "woman" - WOMAN_2 = "woman_2" - WOMAN_2_OUTLINED = "woman_2_outlined" - WOMAN_2_ROUNDED = "woman_2_rounded" - WOMAN_2_SHARP = "woman_2_sharp" - WOMAN_OUTLINED = "woman_outlined" - WOMAN_ROUNDED = "woman_rounded" - WOMAN_SHARP = "woman_sharp" - WOO_COMMERCE = "woo_commerce" - WOO_COMMERCE_OUTLINED = "woo_commerce_outlined" - WOO_COMMERCE_ROUNDED = "woo_commerce_rounded" - WOO_COMMERCE_SHARP = "woo_commerce_sharp" - WORDPRESS = "wordpress" - WORDPRESS_OUTLINED = "wordpress_outlined" - WORDPRESS_ROUNDED = "wordpress_rounded" - WORDPRESS_SHARP = "wordpress_sharp" - WORK = "work" - WORKSPACES = "workspaces" - WORKSPACES_FILLED = "workspaces_filled" - WORKSPACES_OUTLINE = "workspaces_outline" - WORKSPACES_OUTLINED = "workspaces_outlined" - WORKSPACES_ROUNDED = "workspaces_rounded" - WORKSPACES_SHARP = "workspaces_sharp" - WORKSPACE_PREMIUM = "workspace_premium" - WORKSPACE_PREMIUM_OUTLINED = "workspace_premium_outlined" - WORKSPACE_PREMIUM_ROUNDED = "workspace_premium_rounded" - WORKSPACE_PREMIUM_SHARP = "workspace_premium_sharp" - WORK_HISTORY = "work_history" - WORK_HISTORY_OUTLINED = "work_history_outlined" - WORK_HISTORY_ROUNDED = "work_history_rounded" - WORK_HISTORY_SHARP = "work_history_sharp" - WORK_OFF = "work_off" - WORK_OFF_OUTLINED = "work_off_outlined" - WORK_OFF_ROUNDED = "work_off_rounded" - WORK_OFF_SHARP = "work_off_sharp" - WORK_OUTLINE = "work_outline" - WORK_OUTLINED = "work_outlined" - WORK_OUTLINE_OUTLINED = "work_outline_outlined" - WORK_OUTLINE_ROUNDED = "work_outline_rounded" - WORK_OUTLINE_SHARP = "work_outline_sharp" - WORK_ROUNDED = "work_rounded" - WORK_SHARP = "work_sharp" - WRAP_TEXT = "wrap_text" - WRAP_TEXT_OUTLINED = "wrap_text_outlined" - WRAP_TEXT_ROUNDED = "wrap_text_rounded" - WRAP_TEXT_SHARP = "wrap_text_sharp" - WRONG_LOCATION = "wrong_location" - WRONG_LOCATION_OUTLINED = "wrong_location_outlined" - WRONG_LOCATION_ROUNDED = "wrong_location_rounded" - WRONG_LOCATION_SHARP = "wrong_location_sharp" - WYSIWYG = "wysiwyg" - WYSIWYG_OUTLINED = "wysiwyg_outlined" - WYSIWYG_ROUNDED = "wysiwyg_rounded" - WYSIWYG_SHARP = "wysiwyg_sharp" - YARD = "yard" - YARD_OUTLINED = "yard_outlined" - YARD_ROUNDED = "yard_rounded" - YARD_SHARP = "yard_sharp" - YOUTUBE_SEARCHED_FOR = "youtube_searched_for" - YOUTUBE_SEARCHED_FOR_OUTLINED = "youtube_searched_for_outlined" - YOUTUBE_SEARCHED_FOR_ROUNDED = "youtube_searched_for_rounded" - YOUTUBE_SEARCHED_FOR_SHARP = "youtube_searched_for_sharp" - ZOOM_IN = "zoom_in" - ZOOM_IN_MAP = "zoom_in_map" - ZOOM_IN_MAP_OUTLINED = "zoom_in_map_outlined" - ZOOM_IN_MAP_ROUNDED = "zoom_in_map_rounded" - ZOOM_IN_MAP_SHARP = "zoom_in_map_sharp" - ZOOM_IN_OUTLINED = "zoom_in_outlined" - ZOOM_IN_ROUNDED = "zoom_in_rounded" - ZOOM_IN_SHARP = "zoom_in_sharp" - ZOOM_OUT = "zoom_out" - ZOOM_OUT_MAP = "zoom_out_map" - ZOOM_OUT_MAP_OUTLINED = "zoom_out_map_outlined" - ZOOM_OUT_MAP_ROUNDED = "zoom_out_map_rounded" - ZOOM_OUT_MAP_SHARP = "zoom_out_map_sharp" - ZOOM_OUT_OUTLINED = "zoom_out_outlined" - ZOOM_OUT_ROUNDED = "zoom_out_rounded" - ZOOM_OUT_SHARP = "zoom_out_sharp" +class Icons(IconData, package_name="flet", class_name="Icons"): + ABC = 0x10000 + ABC_OUTLINED = 0x10001 + ABC_ROUNDED = 0x10002 + ABC_SHARP = 0x10003 + AC_UNIT = 0x10004 + AC_UNIT_OUTLINED = 0x10005 + AC_UNIT_ROUNDED = 0x10006 + AC_UNIT_SHARP = 0x10007 + ACCESS_ALARM = 0x10008 + ACCESS_ALARM_OUTLINED = 0x10009 + ACCESS_ALARM_ROUNDED = 0x1000A + ACCESS_ALARM_SHARP = 0x1000B + ACCESS_ALARMS = 0x1000C + ACCESS_ALARMS_OUTLINED = 0x1000D + ACCESS_ALARMS_ROUNDED = 0x1000E + ACCESS_ALARMS_SHARP = 0x1000F + ACCESS_TIME = 0x10010 + ACCESS_TIME_FILLED = 0x10011 + ACCESS_TIME_FILLED_OUTLINED = 0x10012 + ACCESS_TIME_FILLED_ROUNDED = 0x10013 + ACCESS_TIME_FILLED_SHARP = 0x10014 + ACCESS_TIME_OUTLINED = 0x10015 + ACCESS_TIME_ROUNDED = 0x10016 + ACCESS_TIME_SHARP = 0x10017 + ACCESSIBILITY = 0x10018 + ACCESSIBILITY_NEW = 0x10019 + ACCESSIBILITY_NEW_OUTLINED = 0x1001A + ACCESSIBILITY_NEW_ROUNDED = 0x1001B + ACCESSIBILITY_NEW_SHARP = 0x1001C + ACCESSIBILITY_OUTLINED = 0x1001D + ACCESSIBILITY_ROUNDED = 0x1001E + ACCESSIBILITY_SHARP = 0x1001F + ACCESSIBLE = 0x10020 + ACCESSIBLE_FORWARD = 0x10021 + ACCESSIBLE_FORWARD_OUTLINED = 0x10022 + ACCESSIBLE_FORWARD_ROUNDED = 0x10023 + ACCESSIBLE_FORWARD_SHARP = 0x10024 + ACCESSIBLE_OUTLINED = 0x10025 + ACCESSIBLE_ROUNDED = 0x10026 + ACCESSIBLE_SHARP = 0x10027 + ACCOUNT_BALANCE = 0x10028 + ACCOUNT_BALANCE_OUTLINED = 0x10029 + ACCOUNT_BALANCE_ROUNDED = 0x1002A + ACCOUNT_BALANCE_SHARP = 0x1002B + ACCOUNT_BALANCE_WALLET = 0x1002C + ACCOUNT_BALANCE_WALLET_OUTLINED = 0x1002D + ACCOUNT_BALANCE_WALLET_ROUNDED = 0x1002E + ACCOUNT_BALANCE_WALLET_SHARP = 0x1002F + ACCOUNT_BOX = 0x10030 + ACCOUNT_BOX_OUTLINED = 0x10031 + ACCOUNT_BOX_ROUNDED = 0x10032 + ACCOUNT_BOX_SHARP = 0x10033 + ACCOUNT_CIRCLE = 0x10034 + ACCOUNT_CIRCLE_OUTLINED = 0x10035 + ACCOUNT_CIRCLE_ROUNDED = 0x10036 + ACCOUNT_CIRCLE_SHARP = 0x10037 + ACCOUNT_TREE = 0x10038 + ACCOUNT_TREE_OUTLINED = 0x10039 + ACCOUNT_TREE_ROUNDED = 0x1003A + ACCOUNT_TREE_SHARP = 0x1003B + AD_UNITS = 0x1003C + AD_UNITS_OUTLINED = 0x1003D + AD_UNITS_ROUNDED = 0x1003E + AD_UNITS_SHARP = 0x1003F + ADB = 0x10040 + ADB_OUTLINED = 0x10041 + ADB_ROUNDED = 0x10042 + ADB_SHARP = 0x10043 + ADD = 0x10044 + ADD_A_PHOTO = 0x10045 + ADD_A_PHOTO_OUTLINED = 0x10046 + ADD_A_PHOTO_ROUNDED = 0x10047 + ADD_A_PHOTO_SHARP = 0x10048 + ADD_ALARM = 0x10049 + ADD_ALARM_OUTLINED = 0x1004A + ADD_ALARM_ROUNDED = 0x1004B + ADD_ALARM_SHARP = 0x1004C + ADD_ALERT = 0x1004D + ADD_ALERT_OUTLINED = 0x1004E + ADD_ALERT_ROUNDED = 0x1004F + ADD_ALERT_SHARP = 0x10050 + ADD_BOX = 0x10051 + ADD_BOX_OUTLINED = 0x10052 + ADD_BOX_ROUNDED = 0x10053 + ADD_BOX_SHARP = 0x10054 + ADD_BUSINESS = 0x10055 + ADD_BUSINESS_OUTLINED = 0x10056 + ADD_BUSINESS_ROUNDED = 0x10057 + ADD_BUSINESS_SHARP = 0x10058 + ADD_CALL = 0x10059 + ADD_CARD = 0x1005A + ADD_CARD_OUTLINED = 0x1005B + ADD_CARD_ROUNDED = 0x1005C + ADD_CARD_SHARP = 0x1005D + ADD_CHART = 0x1005E + ADD_CHART_OUTLINED = 0x1005F + ADD_CHART_ROUNDED = 0x10060 + ADD_CHART_SHARP = 0x10061 + ADD_CIRCLE = 0x10062 + ADD_CIRCLE_OUTLINE = 0x10063 + ADD_CIRCLE_OUTLINE_OUTLINED = 0x10064 + ADD_CIRCLE_OUTLINE_ROUNDED = 0x10065 + ADD_CIRCLE_OUTLINE_SHARP = 0x10066 + ADD_CIRCLE_OUTLINED = 0x10067 + ADD_CIRCLE_ROUNDED = 0x10068 + ADD_CIRCLE_SHARP = 0x10069 + ADD_COMMENT = 0x1006A + ADD_COMMENT_OUTLINED = 0x1006B + ADD_COMMENT_ROUNDED = 0x1006C + ADD_COMMENT_SHARP = 0x1006D + ADD_HOME = 0x1006E + ADD_HOME_OUTLINED = 0x1006F + ADD_HOME_ROUNDED = 0x10070 + ADD_HOME_SHARP = 0x10071 + ADD_HOME_WORK = 0x10072 + ADD_HOME_WORK_OUTLINED = 0x10073 + ADD_HOME_WORK_ROUNDED = 0x10074 + ADD_HOME_WORK_SHARP = 0x10075 + ADD_IC_CALL = 0x10076 + ADD_IC_CALL_OUTLINED = 0x10077 + ADD_IC_CALL_ROUNDED = 0x10078 + ADD_IC_CALL_SHARP = 0x10079 + ADD_LINK = 0x1007A + ADD_LINK_OUTLINED = 0x1007B + ADD_LINK_ROUNDED = 0x1007C + ADD_LINK_SHARP = 0x1007D + ADD_LOCATION = 0x1007E + ADD_LOCATION_ALT = 0x1007F + ADD_LOCATION_ALT_OUTLINED = 0x10080 + ADD_LOCATION_ALT_ROUNDED = 0x10081 + ADD_LOCATION_ALT_SHARP = 0x10082 + ADD_LOCATION_OUTLINED = 0x10083 + ADD_LOCATION_ROUNDED = 0x10084 + ADD_LOCATION_SHARP = 0x10085 + ADD_MODERATOR = 0x10086 + ADD_MODERATOR_OUTLINED = 0x10087 + ADD_MODERATOR_ROUNDED = 0x10088 + ADD_MODERATOR_SHARP = 0x10089 + ADD_OUTLINED = 0x1008A + ADD_PHOTO_ALTERNATE = 0x1008B + ADD_PHOTO_ALTERNATE_OUTLINED = 0x1008C + ADD_PHOTO_ALTERNATE_ROUNDED = 0x1008D + ADD_PHOTO_ALTERNATE_SHARP = 0x1008E + ADD_REACTION = 0x1008F + ADD_REACTION_OUTLINED = 0x10090 + ADD_REACTION_ROUNDED = 0x10091 + ADD_REACTION_SHARP = 0x10092 + ADD_ROAD = 0x10093 + ADD_ROAD_OUTLINED = 0x10094 + ADD_ROAD_ROUNDED = 0x10095 + ADD_ROAD_SHARP = 0x10096 + ADD_ROUNDED = 0x10097 + ADD_SHARP = 0x10098 + ADD_SHOPPING_CART = 0x10099 + ADD_SHOPPING_CART_OUTLINED = 0x1009A + ADD_SHOPPING_CART_ROUNDED = 0x1009B + ADD_SHOPPING_CART_SHARP = 0x1009C + ADD_TASK = 0x1009D + ADD_TASK_OUTLINED = 0x1009E + ADD_TASK_ROUNDED = 0x1009F + ADD_TASK_SHARP = 0x100A0 + ADD_TO_DRIVE = 0x100A1 + ADD_TO_DRIVE_OUTLINED = 0x100A2 + ADD_TO_DRIVE_ROUNDED = 0x100A3 + ADD_TO_DRIVE_SHARP = 0x100A4 + ADD_TO_HOME_SCREEN = 0x100A5 + ADD_TO_HOME_SCREEN_OUTLINED = 0x100A6 + ADD_TO_HOME_SCREEN_ROUNDED = 0x100A7 + ADD_TO_HOME_SCREEN_SHARP = 0x100A8 + ADD_TO_PHOTOS = 0x100A9 + ADD_TO_PHOTOS_OUTLINED = 0x100AA + ADD_TO_PHOTOS_ROUNDED = 0x100AB + ADD_TO_PHOTOS_SHARP = 0x100AC + ADD_TO_QUEUE = 0x100AD + ADD_TO_QUEUE_OUTLINED = 0x100AE + ADD_TO_QUEUE_ROUNDED = 0x100AF + ADD_TO_QUEUE_SHARP = 0x100B0 + ADDCHART = 0x100B1 + ADDCHART_OUTLINED = 0x100B2 + ADDCHART_ROUNDED = 0x100B3 + ADDCHART_SHARP = 0x100B4 + ADF_SCANNER = 0x100B5 + ADF_SCANNER_OUTLINED = 0x100B6 + ADF_SCANNER_ROUNDED = 0x100B7 + ADF_SCANNER_SHARP = 0x100B8 + ADJUST = 0x100B9 + ADJUST_OUTLINED = 0x100BA + ADJUST_ROUNDED = 0x100BB + ADJUST_SHARP = 0x100BC + ADMIN_PANEL_SETTINGS = 0x100BD + ADMIN_PANEL_SETTINGS_OUTLINED = 0x100BE + ADMIN_PANEL_SETTINGS_ROUNDED = 0x100BF + ADMIN_PANEL_SETTINGS_SHARP = 0x100C0 + ADOBE = 0x100C1 + ADOBE_OUTLINED = 0x100C2 + ADOBE_ROUNDED = 0x100C3 + ADOBE_SHARP = 0x100C4 + ADS_CLICK = 0x100C5 + ADS_CLICK_OUTLINED = 0x100C6 + ADS_CLICK_ROUNDED = 0x100C7 + ADS_CLICK_SHARP = 0x100C8 + AGRICULTURE = 0x100C9 + AGRICULTURE_OUTLINED = 0x100CA + AGRICULTURE_ROUNDED = 0x100CB + AGRICULTURE_SHARP = 0x100CC + AIR = 0x100CD + AIR_OUTLINED = 0x100CE + AIR_ROUNDED = 0x100CF + AIR_SHARP = 0x100D0 + AIRLINE_SEAT_FLAT = 0x100D1 + AIRLINE_SEAT_FLAT_ANGLED = 0x100D2 + AIRLINE_SEAT_FLAT_ANGLED_OUTLINED = 0x100D3 + AIRLINE_SEAT_FLAT_ANGLED_ROUNDED = 0x100D4 + AIRLINE_SEAT_FLAT_ANGLED_SHARP = 0x100D5 + AIRLINE_SEAT_FLAT_OUTLINED = 0x100D6 + AIRLINE_SEAT_FLAT_ROUNDED = 0x100D7 + AIRLINE_SEAT_FLAT_SHARP = 0x100D8 + AIRLINE_SEAT_INDIVIDUAL_SUITE = 0x100D9 + AIRLINE_SEAT_INDIVIDUAL_SUITE_OUTLINED = 0x100DA + AIRLINE_SEAT_INDIVIDUAL_SUITE_ROUNDED = 0x100DB + AIRLINE_SEAT_INDIVIDUAL_SUITE_SHARP = 0x100DC + AIRLINE_SEAT_LEGROOM_EXTRA = 0x100DD + AIRLINE_SEAT_LEGROOM_EXTRA_OUTLINED = 0x100DE + AIRLINE_SEAT_LEGROOM_EXTRA_ROUNDED = 0x100DF + AIRLINE_SEAT_LEGROOM_EXTRA_SHARP = 0x100E0 + AIRLINE_SEAT_LEGROOM_NORMAL = 0x100E1 + AIRLINE_SEAT_LEGROOM_NORMAL_OUTLINED = 0x100E2 + AIRLINE_SEAT_LEGROOM_NORMAL_ROUNDED = 0x100E3 + AIRLINE_SEAT_LEGROOM_NORMAL_SHARP = 0x100E4 + AIRLINE_SEAT_LEGROOM_REDUCED = 0x100E5 + AIRLINE_SEAT_LEGROOM_REDUCED_OUTLINED = 0x100E6 + AIRLINE_SEAT_LEGROOM_REDUCED_ROUNDED = 0x100E7 + AIRLINE_SEAT_LEGROOM_REDUCED_SHARP = 0x100E8 + AIRLINE_SEAT_RECLINE_EXTRA = 0x100E9 + AIRLINE_SEAT_RECLINE_EXTRA_OUTLINED = 0x100EA + AIRLINE_SEAT_RECLINE_EXTRA_ROUNDED = 0x100EB + AIRLINE_SEAT_RECLINE_EXTRA_SHARP = 0x100EC + AIRLINE_SEAT_RECLINE_NORMAL = 0x100ED + AIRLINE_SEAT_RECLINE_NORMAL_OUTLINED = 0x100EE + AIRLINE_SEAT_RECLINE_NORMAL_ROUNDED = 0x100EF + AIRLINE_SEAT_RECLINE_NORMAL_SHARP = 0x100F0 + AIRLINE_STOPS = 0x100F1 + AIRLINE_STOPS_OUTLINED = 0x100F2 + AIRLINE_STOPS_ROUNDED = 0x100F3 + AIRLINE_STOPS_SHARP = 0x100F4 + AIRLINES = 0x100F5 + AIRLINES_OUTLINED = 0x100F6 + AIRLINES_ROUNDED = 0x100F7 + AIRLINES_SHARP = 0x100F8 + AIRPLANE_TICKET = 0x100F9 + AIRPLANE_TICKET_OUTLINED = 0x100FA + AIRPLANE_TICKET_ROUNDED = 0x100FB + AIRPLANE_TICKET_SHARP = 0x100FC + AIRPLANEMODE_ACTIVE = 0x100FD + AIRPLANEMODE_ACTIVE_OUTLINED = 0x100FE + AIRPLANEMODE_ACTIVE_ROUNDED = 0x100FF + AIRPLANEMODE_ACTIVE_SHARP = 0x10100 + AIRPLANEMODE_INACTIVE = 0x10101 + AIRPLANEMODE_INACTIVE_OUTLINED = 0x10102 + AIRPLANEMODE_INACTIVE_ROUNDED = 0x10103 + AIRPLANEMODE_INACTIVE_SHARP = 0x10104 + AIRPLANEMODE_OFF = 0x10105 + AIRPLANEMODE_OFF_OUTLINED = 0x10106 + AIRPLANEMODE_OFF_ROUNDED = 0x10107 + AIRPLANEMODE_OFF_SHARP = 0x10108 + AIRPLANEMODE_ON = 0x10109 + AIRPLANEMODE_ON_OUTLINED = 0x1010A + AIRPLANEMODE_ON_ROUNDED = 0x1010B + AIRPLANEMODE_ON_SHARP = 0x1010C + AIRPLAY = 0x1010D + AIRPLAY_OUTLINED = 0x1010E + AIRPLAY_ROUNDED = 0x1010F + AIRPLAY_SHARP = 0x10110 + AIRPORT_SHUTTLE = 0x10111 + AIRPORT_SHUTTLE_OUTLINED = 0x10112 + AIRPORT_SHUTTLE_ROUNDED = 0x10113 + AIRPORT_SHUTTLE_SHARP = 0x10114 + ALARM = 0x10115 + ALARM_ADD = 0x10116 + ALARM_ADD_OUTLINED = 0x10117 + ALARM_ADD_ROUNDED = 0x10118 + ALARM_ADD_SHARP = 0x10119 + ALARM_OFF = 0x1011A + ALARM_OFF_OUTLINED = 0x1011B + ALARM_OFF_ROUNDED = 0x1011C + ALARM_OFF_SHARP = 0x1011D + ALARM_ON = 0x1011E + ALARM_ON_OUTLINED = 0x1011F + ALARM_ON_ROUNDED = 0x10120 + ALARM_ON_SHARP = 0x10121 + ALARM_OUTLINED = 0x10122 + ALARM_ROUNDED = 0x10123 + ALARM_SHARP = 0x10124 + ALBUM = 0x10125 + ALBUM_OUTLINED = 0x10126 + ALBUM_ROUNDED = 0x10127 + ALBUM_SHARP = 0x10128 + ALIGN_HORIZONTAL_CENTER = 0x10129 + ALIGN_HORIZONTAL_CENTER_OUTLINED = 0x1012A + ALIGN_HORIZONTAL_CENTER_ROUNDED = 0x1012B + ALIGN_HORIZONTAL_CENTER_SHARP = 0x1012C + ALIGN_HORIZONTAL_LEFT = 0x1012D + ALIGN_HORIZONTAL_LEFT_OUTLINED = 0x1012E + ALIGN_HORIZONTAL_LEFT_ROUNDED = 0x1012F + ALIGN_HORIZONTAL_LEFT_SHARP = 0x10130 + ALIGN_HORIZONTAL_RIGHT = 0x10131 + ALIGN_HORIZONTAL_RIGHT_OUTLINED = 0x10132 + ALIGN_HORIZONTAL_RIGHT_ROUNDED = 0x10133 + ALIGN_HORIZONTAL_RIGHT_SHARP = 0x10134 + ALIGN_VERTICAL_BOTTOM = 0x10135 + ALIGN_VERTICAL_BOTTOM_OUTLINED = 0x10136 + ALIGN_VERTICAL_BOTTOM_ROUNDED = 0x10137 + ALIGN_VERTICAL_BOTTOM_SHARP = 0x10138 + ALIGN_VERTICAL_CENTER = 0x10139 + ALIGN_VERTICAL_CENTER_OUTLINED = 0x1013A + ALIGN_VERTICAL_CENTER_ROUNDED = 0x1013B + ALIGN_VERTICAL_CENTER_SHARP = 0x1013C + ALIGN_VERTICAL_TOP = 0x1013D + ALIGN_VERTICAL_TOP_OUTLINED = 0x1013E + ALIGN_VERTICAL_TOP_ROUNDED = 0x1013F + ALIGN_VERTICAL_TOP_SHARP = 0x10140 + ALL_INBOX = 0x10141 + ALL_INBOX_OUTLINED = 0x10142 + ALL_INBOX_ROUNDED = 0x10143 + ALL_INBOX_SHARP = 0x10144 + ALL_INCLUSIVE = 0x10145 + ALL_INCLUSIVE_OUTLINED = 0x10146 + ALL_INCLUSIVE_ROUNDED = 0x10147 + ALL_INCLUSIVE_SHARP = 0x10148 + ALL_OUT = 0x10149 + ALL_OUT_OUTLINED = 0x1014A + ALL_OUT_ROUNDED = 0x1014B + ALL_OUT_SHARP = 0x1014C + ALT_ROUTE = 0x1014D + ALT_ROUTE_OUTLINED = 0x1014E + ALT_ROUTE_ROUNDED = 0x1014F + ALT_ROUTE_SHARP = 0x10150 + ALTERNATE_EMAIL = 0x10151 + ALTERNATE_EMAIL_OUTLINED = 0x10152 + ALTERNATE_EMAIL_ROUNDED = 0x10153 + ALTERNATE_EMAIL_SHARP = 0x10154 + AMP_STORIES = 0x10155 + AMP_STORIES_OUTLINED = 0x10156 + AMP_STORIES_ROUNDED = 0x10157 + AMP_STORIES_SHARP = 0x10158 + ANALYTICS = 0x10159 + ANALYTICS_OUTLINED = 0x1015A + ANALYTICS_ROUNDED = 0x1015B + ANALYTICS_SHARP = 0x1015C + ANCHOR = 0x1015D + ANCHOR_OUTLINED = 0x1015E + ANCHOR_ROUNDED = 0x1015F + ANCHOR_SHARP = 0x10160 + ANDROID = 0x10161 + ANDROID_OUTLINED = 0x10162 + ANDROID_ROUNDED = 0x10163 + ANDROID_SHARP = 0x10164 + ANIMATION = 0x10165 + ANIMATION_OUTLINED = 0x10166 + ANIMATION_ROUNDED = 0x10167 + ANIMATION_SHARP = 0x10168 + ANNOUNCEMENT = 0x10169 + ANNOUNCEMENT_OUTLINED = 0x1016A + ANNOUNCEMENT_ROUNDED = 0x1016B + ANNOUNCEMENT_SHARP = 0x1016C + AOD = 0x1016D + AOD_OUTLINED = 0x1016E + AOD_ROUNDED = 0x1016F + AOD_SHARP = 0x10170 + APARTMENT = 0x10171 + APARTMENT_OUTLINED = 0x10172 + APARTMENT_ROUNDED = 0x10173 + APARTMENT_SHARP = 0x10174 + API = 0x10175 + API_OUTLINED = 0x10176 + API_ROUNDED = 0x10177 + API_SHARP = 0x10178 + APP_BLOCKING = 0x10179 + APP_BLOCKING_OUTLINED = 0x1017A + APP_BLOCKING_ROUNDED = 0x1017B + APP_BLOCKING_SHARP = 0x1017C + APP_REGISTRATION = 0x1017D + APP_REGISTRATION_OUTLINED = 0x1017E + APP_REGISTRATION_ROUNDED = 0x1017F + APP_REGISTRATION_SHARP = 0x10180 + APP_SETTINGS_ALT = 0x10181 + APP_SETTINGS_ALT_OUTLINED = 0x10182 + APP_SETTINGS_ALT_ROUNDED = 0x10183 + APP_SETTINGS_ALT_SHARP = 0x10184 + APP_SHORTCUT = 0x10185 + APP_SHORTCUT_OUTLINED = 0x10186 + APP_SHORTCUT_ROUNDED = 0x10187 + APP_SHORTCUT_SHARP = 0x10188 + APPLE = 0x10189 + APPLE_OUTLINED = 0x1018A + APPLE_ROUNDED = 0x1018B + APPLE_SHARP = 0x1018C + APPROVAL = 0x1018D + APPROVAL_OUTLINED = 0x1018E + APPROVAL_ROUNDED = 0x1018F + APPROVAL_SHARP = 0x10190 + APPS = 0x10191 + APPS_OUTAGE = 0x10192 + APPS_OUTAGE_OUTLINED = 0x10193 + APPS_OUTAGE_ROUNDED = 0x10194 + APPS_OUTAGE_SHARP = 0x10195 + APPS_OUTLINED = 0x10196 + APPS_ROUNDED = 0x10197 + APPS_SHARP = 0x10198 + ARCHITECTURE = 0x10199 + ARCHITECTURE_OUTLINED = 0x1019A + ARCHITECTURE_ROUNDED = 0x1019B + ARCHITECTURE_SHARP = 0x1019C + ARCHIVE = 0x1019D + ARCHIVE_OUTLINED = 0x1019E + ARCHIVE_ROUNDED = 0x1019F + ARCHIVE_SHARP = 0x101A0 + AREA_CHART = 0x101A1 + AREA_CHART_OUTLINED = 0x101A2 + AREA_CHART_ROUNDED = 0x101A3 + AREA_CHART_SHARP = 0x101A4 + ARROW_BACK = 0x101A5 + ARROW_BACK_IOS = 0x101A6 + ARROW_BACK_IOS_NEW = 0x101A7 + ARROW_BACK_IOS_NEW_OUTLINED = 0x101A8 + ARROW_BACK_IOS_NEW_ROUNDED = 0x101A9 + ARROW_BACK_IOS_NEW_SHARP = 0x101AA + ARROW_BACK_IOS_OUTLINED = 0x101AB + ARROW_BACK_IOS_ROUNDED = 0x101AC + ARROW_BACK_IOS_SHARP = 0x101AD + ARROW_BACK_OUTLINED = 0x101AE + ARROW_BACK_ROUNDED = 0x101AF + ARROW_BACK_SHARP = 0x101B0 + ARROW_CIRCLE_DOWN = 0x101B1 + ARROW_CIRCLE_DOWN_OUTLINED = 0x101B2 + ARROW_CIRCLE_DOWN_ROUNDED = 0x101B3 + ARROW_CIRCLE_DOWN_SHARP = 0x101B4 + ARROW_CIRCLE_LEFT = 0x101B5 + ARROW_CIRCLE_LEFT_OUTLINED = 0x101B6 + ARROW_CIRCLE_LEFT_ROUNDED = 0x101B7 + ARROW_CIRCLE_LEFT_SHARP = 0x101B8 + ARROW_CIRCLE_RIGHT = 0x101B9 + ARROW_CIRCLE_RIGHT_OUTLINED = 0x101BA + ARROW_CIRCLE_RIGHT_ROUNDED = 0x101BB + ARROW_CIRCLE_RIGHT_SHARP = 0x101BC + ARROW_CIRCLE_UP = 0x101BD + ARROW_CIRCLE_UP_OUTLINED = 0x101BE + ARROW_CIRCLE_UP_ROUNDED = 0x101BF + ARROW_CIRCLE_UP_SHARP = 0x101C0 + ARROW_DOWNWARD = 0x101C1 + ARROW_DOWNWARD_OUTLINED = 0x101C2 + ARROW_DOWNWARD_ROUNDED = 0x101C3 + ARROW_DOWNWARD_SHARP = 0x101C4 + ARROW_DROP_DOWN = 0x101C5 + ARROW_DROP_DOWN_CIRCLE = 0x101C6 + ARROW_DROP_DOWN_CIRCLE_OUTLINED = 0x101C7 + ARROW_DROP_DOWN_CIRCLE_ROUNDED = 0x101C8 + ARROW_DROP_DOWN_CIRCLE_SHARP = 0x101C9 + ARROW_DROP_DOWN_OUTLINED = 0x101CA + ARROW_DROP_DOWN_ROUNDED = 0x101CB + ARROW_DROP_DOWN_SHARP = 0x101CC + ARROW_DROP_UP = 0x101CD + ARROW_DROP_UP_OUTLINED = 0x101CE + ARROW_DROP_UP_ROUNDED = 0x101CF + ARROW_DROP_UP_SHARP = 0x101D0 + ARROW_FORWARD = 0x101D1 + ARROW_FORWARD_IOS = 0x101D2 + ARROW_FORWARD_IOS_OUTLINED = 0x101D3 + ARROW_FORWARD_IOS_ROUNDED = 0x101D4 + ARROW_FORWARD_IOS_SHARP = 0x101D5 + ARROW_FORWARD_OUTLINED = 0x101D6 + ARROW_FORWARD_ROUNDED = 0x101D7 + ARROW_FORWARD_SHARP = 0x101D8 + ARROW_LEFT = 0x101D9 + ARROW_LEFT_OUTLINED = 0x101DA + ARROW_LEFT_ROUNDED = 0x101DB + ARROW_LEFT_SHARP = 0x101DC + ARROW_OUTWARD = 0x101DD + ARROW_OUTWARD_OUTLINED = 0x101DE + ARROW_OUTWARD_ROUNDED = 0x101DF + ARROW_OUTWARD_SHARP = 0x101E0 + ARROW_RIGHT = 0x101E1 + ARROW_RIGHT_ALT = 0x101E2 + ARROW_RIGHT_ALT_OUTLINED = 0x101E3 + ARROW_RIGHT_ALT_ROUNDED = 0x101E4 + ARROW_RIGHT_ALT_SHARP = 0x101E5 + ARROW_RIGHT_OUTLINED = 0x101E6 + ARROW_RIGHT_ROUNDED = 0x101E7 + ARROW_RIGHT_SHARP = 0x101E8 + ARROW_UPWARD = 0x101E9 + ARROW_UPWARD_OUTLINED = 0x101EA + ARROW_UPWARD_ROUNDED = 0x101EB + ARROW_UPWARD_SHARP = 0x101EC + ART_TRACK = 0x101ED + ART_TRACK_OUTLINED = 0x101EE + ART_TRACK_ROUNDED = 0x101EF + ART_TRACK_SHARP = 0x101F0 + ARTICLE = 0x101F1 + ARTICLE_OUTLINED = 0x101F2 + ARTICLE_ROUNDED = 0x101F3 + ARTICLE_SHARP = 0x101F4 + ASPECT_RATIO = 0x101F5 + ASPECT_RATIO_OUTLINED = 0x101F6 + ASPECT_RATIO_ROUNDED = 0x101F7 + ASPECT_RATIO_SHARP = 0x101F8 + ASSESSMENT = 0x101F9 + ASSESSMENT_OUTLINED = 0x101FA + ASSESSMENT_ROUNDED = 0x101FB + ASSESSMENT_SHARP = 0x101FC + ASSIGNMENT = 0x101FD + ASSIGNMENT_ADD = 0x101FE + ASSIGNMENT_IND = 0x101FF + ASSIGNMENT_IND_OUTLINED = 0x10200 + ASSIGNMENT_IND_ROUNDED = 0x10201 + ASSIGNMENT_IND_SHARP = 0x10202 + ASSIGNMENT_LATE = 0x10203 + ASSIGNMENT_LATE_OUTLINED = 0x10204 + ASSIGNMENT_LATE_ROUNDED = 0x10205 + ASSIGNMENT_LATE_SHARP = 0x10206 + ASSIGNMENT_OUTLINED = 0x10207 + ASSIGNMENT_RETURN = 0x10208 + ASSIGNMENT_RETURN_OUTLINED = 0x10209 + ASSIGNMENT_RETURN_ROUNDED = 0x1020A + ASSIGNMENT_RETURN_SHARP = 0x1020B + ASSIGNMENT_RETURNED = 0x1020C + ASSIGNMENT_RETURNED_OUTLINED = 0x1020D + ASSIGNMENT_RETURNED_ROUNDED = 0x1020E + ASSIGNMENT_RETURNED_SHARP = 0x1020F + ASSIGNMENT_ROUNDED = 0x10210 + ASSIGNMENT_SHARP = 0x10211 + ASSIGNMENT_TURNED_IN = 0x10212 + ASSIGNMENT_TURNED_IN_OUTLINED = 0x10213 + ASSIGNMENT_TURNED_IN_ROUNDED = 0x10214 + ASSIGNMENT_TURNED_IN_SHARP = 0x10215 + ASSIST_WALKER = 0x10216 + ASSIST_WALKER_OUTLINED = 0x10217 + ASSIST_WALKER_ROUNDED = 0x10218 + ASSIST_WALKER_SHARP = 0x10219 + ASSISTANT = 0x1021A + ASSISTANT_DIRECTION = 0x1021B + ASSISTANT_DIRECTION_OUTLINED = 0x1021C + ASSISTANT_DIRECTION_ROUNDED = 0x1021D + ASSISTANT_DIRECTION_SHARP = 0x1021E + ASSISTANT_NAVIGATION = 0x1021F + ASSISTANT_OUTLINED = 0x10220 + ASSISTANT_PHOTO = 0x10221 + ASSISTANT_PHOTO_OUTLINED = 0x10222 + ASSISTANT_PHOTO_ROUNDED = 0x10223 + ASSISTANT_PHOTO_SHARP = 0x10224 + ASSISTANT_ROUNDED = 0x10225 + ASSISTANT_SHARP = 0x10226 + ASSURED_WORKLOAD = 0x10227 + ASSURED_WORKLOAD_OUTLINED = 0x10228 + ASSURED_WORKLOAD_ROUNDED = 0x10229 + ASSURED_WORKLOAD_SHARP = 0x1022A + ATM = 0x1022B + ATM_OUTLINED = 0x1022C + ATM_ROUNDED = 0x1022D + ATM_SHARP = 0x1022E + ATTACH_EMAIL = 0x1022F + ATTACH_EMAIL_OUTLINED = 0x10230 + ATTACH_EMAIL_ROUNDED = 0x10231 + ATTACH_EMAIL_SHARP = 0x10232 + ATTACH_FILE = 0x10233 + ATTACH_FILE_OUTLINED = 0x10234 + ATTACH_FILE_ROUNDED = 0x10235 + ATTACH_FILE_SHARP = 0x10236 + ATTACH_MONEY = 0x10237 + ATTACH_MONEY_OUTLINED = 0x10238 + ATTACH_MONEY_ROUNDED = 0x10239 + ATTACH_MONEY_SHARP = 0x1023A + ATTACHMENT = 0x1023B + ATTACHMENT_OUTLINED = 0x1023C + ATTACHMENT_ROUNDED = 0x1023D + ATTACHMENT_SHARP = 0x1023E + ATTRACTIONS = 0x1023F + ATTRACTIONS_OUTLINED = 0x10240 + ATTRACTIONS_ROUNDED = 0x10241 + ATTRACTIONS_SHARP = 0x10242 + ATTRIBUTION = 0x10243 + ATTRIBUTION_OUTLINED = 0x10244 + ATTRIBUTION_ROUNDED = 0x10245 + ATTRIBUTION_SHARP = 0x10246 + AUDIO_FILE = 0x10247 + AUDIO_FILE_OUTLINED = 0x10248 + AUDIO_FILE_ROUNDED = 0x10249 + AUDIO_FILE_SHARP = 0x1024A + AUDIOTRACK = 0x1024B + AUDIOTRACK_OUTLINED = 0x1024C + AUDIOTRACK_ROUNDED = 0x1024D + AUDIOTRACK_SHARP = 0x1024E + AUTO_AWESOME = 0x1024F + AUTO_AWESOME_MOSAIC = 0x10250 + AUTO_AWESOME_MOSAIC_OUTLINED = 0x10251 + AUTO_AWESOME_MOSAIC_ROUNDED = 0x10252 + AUTO_AWESOME_MOSAIC_SHARP = 0x10253 + AUTO_AWESOME_MOTION = 0x10254 + AUTO_AWESOME_MOTION_OUTLINED = 0x10255 + AUTO_AWESOME_MOTION_ROUNDED = 0x10256 + AUTO_AWESOME_MOTION_SHARP = 0x10257 + AUTO_AWESOME_OUTLINED = 0x10258 + AUTO_AWESOME_ROUNDED = 0x10259 + AUTO_AWESOME_SHARP = 0x1025A + AUTO_DELETE = 0x1025B + AUTO_DELETE_OUTLINED = 0x1025C + AUTO_DELETE_ROUNDED = 0x1025D + AUTO_DELETE_SHARP = 0x1025E + AUTO_FIX_HIGH = 0x1025F + AUTO_FIX_HIGH_OUTLINED = 0x10260 + AUTO_FIX_HIGH_ROUNDED = 0x10261 + AUTO_FIX_HIGH_SHARP = 0x10262 + AUTO_FIX_NORMAL = 0x10263 + AUTO_FIX_NORMAL_OUTLINED = 0x10264 + AUTO_FIX_NORMAL_ROUNDED = 0x10265 + AUTO_FIX_NORMAL_SHARP = 0x10266 + AUTO_FIX_OFF = 0x10267 + AUTO_FIX_OFF_OUTLINED = 0x10268 + AUTO_FIX_OFF_ROUNDED = 0x10269 + AUTO_FIX_OFF_SHARP = 0x1026A + AUTO_GRAPH = 0x1026B + AUTO_GRAPH_OUTLINED = 0x1026C + AUTO_GRAPH_ROUNDED = 0x1026D + AUTO_GRAPH_SHARP = 0x1026E + AUTO_MODE = 0x1026F + AUTO_MODE_OUTLINED = 0x10270 + AUTO_MODE_ROUNDED = 0x10271 + AUTO_MODE_SHARP = 0x10272 + AUTO_STORIES = 0x10273 + AUTO_STORIES_OUTLINED = 0x10274 + AUTO_STORIES_ROUNDED = 0x10275 + AUTO_STORIES_SHARP = 0x10276 + AUTOFPS_SELECT = 0x10277 + AUTOFPS_SELECT_OUTLINED = 0x10278 + AUTOFPS_SELECT_ROUNDED = 0x10279 + AUTOFPS_SELECT_SHARP = 0x1027A + AUTORENEW = 0x1027B + AUTORENEW_OUTLINED = 0x1027C + AUTORENEW_ROUNDED = 0x1027D + AUTORENEW_SHARP = 0x1027E + AV_TIMER = 0x1027F + AV_TIMER_OUTLINED = 0x10280 + AV_TIMER_ROUNDED = 0x10281 + AV_TIMER_SHARP = 0x10282 + BABY_CHANGING_STATION = 0x10283 + BABY_CHANGING_STATION_OUTLINED = 0x10284 + BABY_CHANGING_STATION_ROUNDED = 0x10285 + BABY_CHANGING_STATION_SHARP = 0x10286 + BACK_HAND = 0x10287 + BACK_HAND_OUTLINED = 0x10288 + BACK_HAND_ROUNDED = 0x10289 + BACK_HAND_SHARP = 0x1028A + BACKPACK = 0x1028B + BACKPACK_OUTLINED = 0x1028C + BACKPACK_ROUNDED = 0x1028D + BACKPACK_SHARP = 0x1028E + BACKSPACE = 0x1028F + BACKSPACE_OUTLINED = 0x10290 + BACKSPACE_ROUNDED = 0x10291 + BACKSPACE_SHARP = 0x10292 + BACKUP = 0x10293 + BACKUP_OUTLINED = 0x10294 + BACKUP_ROUNDED = 0x10295 + BACKUP_SHARP = 0x10296 + BACKUP_TABLE = 0x10297 + BACKUP_TABLE_OUTLINED = 0x10298 + BACKUP_TABLE_ROUNDED = 0x10299 + BACKUP_TABLE_SHARP = 0x1029A + BADGE = 0x1029B + BADGE_OUTLINED = 0x1029C + BADGE_ROUNDED = 0x1029D + BADGE_SHARP = 0x1029E + BAKERY_DINING = 0x1029F + BAKERY_DINING_OUTLINED = 0x102A0 + BAKERY_DINING_ROUNDED = 0x102A1 + BAKERY_DINING_SHARP = 0x102A2 + BALANCE = 0x102A3 + BALANCE_OUTLINED = 0x102A4 + BALANCE_ROUNDED = 0x102A5 + BALANCE_SHARP = 0x102A6 + BALCONY = 0x102A7 + BALCONY_OUTLINED = 0x102A8 + BALCONY_ROUNDED = 0x102A9 + BALCONY_SHARP = 0x102AA + BALLOT = 0x102AB + BALLOT_OUTLINED = 0x102AC + BALLOT_ROUNDED = 0x102AD + BALLOT_SHARP = 0x102AE + BAR_CHART = 0x102AF + BAR_CHART_OUTLINED = 0x102B0 + BAR_CHART_ROUNDED = 0x102B1 + BAR_CHART_SHARP = 0x102B2 + BARCODE_READER = 0x102B3 + BATCH_PREDICTION = 0x102B4 + BATCH_PREDICTION_OUTLINED = 0x102B5 + BATCH_PREDICTION_ROUNDED = 0x102B6 + BATCH_PREDICTION_SHARP = 0x102B7 + BATHROOM = 0x102B8 + BATHROOM_OUTLINED = 0x102B9 + BATHROOM_ROUNDED = 0x102BA + BATHROOM_SHARP = 0x102BB + BATHTUB = 0x102BC + BATHTUB_OUTLINED = 0x102BD + BATHTUB_ROUNDED = 0x102BE + BATHTUB_SHARP = 0x102BF + BATTERY_0_BAR = 0x102C0 + BATTERY_0_BAR_OUTLINED = 0x102C1 + BATTERY_0_BAR_ROUNDED = 0x102C2 + BATTERY_0_BAR_SHARP = 0x102C3 + BATTERY_1_BAR = 0x102C4 + BATTERY_1_BAR_OUTLINED = 0x102C5 + BATTERY_1_BAR_ROUNDED = 0x102C6 + BATTERY_1_BAR_SHARP = 0x102C7 + BATTERY_2_BAR = 0x102C8 + BATTERY_2_BAR_OUTLINED = 0x102C9 + BATTERY_2_BAR_ROUNDED = 0x102CA + BATTERY_2_BAR_SHARP = 0x102CB + BATTERY_3_BAR = 0x102CC + BATTERY_3_BAR_OUTLINED = 0x102CD + BATTERY_3_BAR_ROUNDED = 0x102CE + BATTERY_3_BAR_SHARP = 0x102CF + BATTERY_4_BAR = 0x102D0 + BATTERY_4_BAR_OUTLINED = 0x102D1 + BATTERY_4_BAR_ROUNDED = 0x102D2 + BATTERY_4_BAR_SHARP = 0x102D3 + BATTERY_5_BAR = 0x102D4 + BATTERY_5_BAR_OUTLINED = 0x102D5 + BATTERY_5_BAR_ROUNDED = 0x102D6 + BATTERY_5_BAR_SHARP = 0x102D7 + BATTERY_6_BAR = 0x102D8 + BATTERY_6_BAR_OUTLINED = 0x102D9 + BATTERY_6_BAR_ROUNDED = 0x102DA + BATTERY_6_BAR_SHARP = 0x102DB + BATTERY_ALERT = 0x102DC + BATTERY_ALERT_OUTLINED = 0x102DD + BATTERY_ALERT_ROUNDED = 0x102DE + BATTERY_ALERT_SHARP = 0x102DF + BATTERY_CHARGING_FULL = 0x102E0 + BATTERY_CHARGING_FULL_OUTLINED = 0x102E1 + BATTERY_CHARGING_FULL_ROUNDED = 0x102E2 + BATTERY_CHARGING_FULL_SHARP = 0x102E3 + BATTERY_FULL = 0x102E4 + BATTERY_FULL_OUTLINED = 0x102E5 + BATTERY_FULL_ROUNDED = 0x102E6 + BATTERY_FULL_SHARP = 0x102E7 + BATTERY_SAVER = 0x102E8 + BATTERY_SAVER_OUTLINED = 0x102E9 + BATTERY_SAVER_ROUNDED = 0x102EA + BATTERY_SAVER_SHARP = 0x102EB + BATTERY_STD = 0x102EC + BATTERY_STD_OUTLINED = 0x102ED + BATTERY_STD_ROUNDED = 0x102EE + BATTERY_STD_SHARP = 0x102EF + BATTERY_UNKNOWN = 0x102F0 + BATTERY_UNKNOWN_OUTLINED = 0x102F1 + BATTERY_UNKNOWN_ROUNDED = 0x102F2 + BATTERY_UNKNOWN_SHARP = 0x102F3 + BEACH_ACCESS = 0x102F4 + BEACH_ACCESS_OUTLINED = 0x102F5 + BEACH_ACCESS_ROUNDED = 0x102F6 + BEACH_ACCESS_SHARP = 0x102F7 + BED = 0x102F8 + BED_OUTLINED = 0x102F9 + BED_ROUNDED = 0x102FA + BED_SHARP = 0x102FB + BEDROOM_BABY = 0x102FC + BEDROOM_BABY_OUTLINED = 0x102FD + BEDROOM_BABY_ROUNDED = 0x102FE + BEDROOM_BABY_SHARP = 0x102FF + BEDROOM_CHILD = 0x10300 + BEDROOM_CHILD_OUTLINED = 0x10301 + BEDROOM_CHILD_ROUNDED = 0x10302 + BEDROOM_CHILD_SHARP = 0x10303 + BEDROOM_PARENT = 0x10304 + BEDROOM_PARENT_OUTLINED = 0x10305 + BEDROOM_PARENT_ROUNDED = 0x10306 + BEDROOM_PARENT_SHARP = 0x10307 + BEDTIME = 0x10308 + BEDTIME_OFF = 0x10309 + BEDTIME_OFF_OUTLINED = 0x1030A + BEDTIME_OFF_ROUNDED = 0x1030B + BEDTIME_OFF_SHARP = 0x1030C + BEDTIME_OUTLINED = 0x1030D + BEDTIME_ROUNDED = 0x1030E + BEDTIME_SHARP = 0x1030F + BEENHERE = 0x10310 + BEENHERE_OUTLINED = 0x10311 + BEENHERE_ROUNDED = 0x10312 + BEENHERE_SHARP = 0x10313 + BENTO = 0x10314 + BENTO_OUTLINED = 0x10315 + BENTO_ROUNDED = 0x10316 + BENTO_SHARP = 0x10317 + BIKE_SCOOTER = 0x10318 + BIKE_SCOOTER_OUTLINED = 0x10319 + BIKE_SCOOTER_ROUNDED = 0x1031A + BIKE_SCOOTER_SHARP = 0x1031B + BIOTECH = 0x1031C + BIOTECH_OUTLINED = 0x1031D + BIOTECH_ROUNDED = 0x1031E + BIOTECH_SHARP = 0x1031F + BLENDER = 0x10320 + BLENDER_OUTLINED = 0x10321 + BLENDER_ROUNDED = 0x10322 + BLENDER_SHARP = 0x10323 + BLIND = 0x10324 + BLIND_OUTLINED = 0x10325 + BLIND_ROUNDED = 0x10326 + BLIND_SHARP = 0x10327 + BLINDS = 0x10328 + BLINDS_CLOSED = 0x10329 + BLINDS_CLOSED_OUTLINED = 0x1032A + BLINDS_CLOSED_ROUNDED = 0x1032B + BLINDS_CLOSED_SHARP = 0x1032C + BLINDS_OUTLINED = 0x1032D + BLINDS_ROUNDED = 0x1032E + BLINDS_SHARP = 0x1032F + BLOCK = 0x10330 + BLOCK_FLIPPED = 0x10331 + BLOCK_OUTLINED = 0x10332 + BLOCK_ROUNDED = 0x10333 + BLOCK_SHARP = 0x10334 + BLOODTYPE = 0x10335 + BLOODTYPE_OUTLINED = 0x10336 + BLOODTYPE_ROUNDED = 0x10337 + BLOODTYPE_SHARP = 0x10338 + BLUETOOTH = 0x10339 + BLUETOOTH_AUDIO = 0x1033A + BLUETOOTH_AUDIO_OUTLINED = 0x1033B + BLUETOOTH_AUDIO_ROUNDED = 0x1033C + BLUETOOTH_AUDIO_SHARP = 0x1033D + BLUETOOTH_CONNECTED = 0x1033E + BLUETOOTH_CONNECTED_OUTLINED = 0x1033F + BLUETOOTH_CONNECTED_ROUNDED = 0x10340 + BLUETOOTH_CONNECTED_SHARP = 0x10341 + BLUETOOTH_DISABLED = 0x10342 + BLUETOOTH_DISABLED_OUTLINED = 0x10343 + BLUETOOTH_DISABLED_ROUNDED = 0x10344 + BLUETOOTH_DISABLED_SHARP = 0x10345 + BLUETOOTH_DRIVE = 0x10346 + BLUETOOTH_DRIVE_OUTLINED = 0x10347 + BLUETOOTH_DRIVE_ROUNDED = 0x10348 + BLUETOOTH_DRIVE_SHARP = 0x10349 + BLUETOOTH_OUTLINED = 0x1034A + BLUETOOTH_ROUNDED = 0x1034B + BLUETOOTH_SEARCHING = 0x1034C + BLUETOOTH_SEARCHING_OUTLINED = 0x1034D + BLUETOOTH_SEARCHING_ROUNDED = 0x1034E + BLUETOOTH_SEARCHING_SHARP = 0x1034F + BLUETOOTH_SHARP = 0x10350 + BLUR_CIRCULAR = 0x10351 + BLUR_CIRCULAR_OUTLINED = 0x10352 + BLUR_CIRCULAR_ROUNDED = 0x10353 + BLUR_CIRCULAR_SHARP = 0x10354 + BLUR_LINEAR = 0x10355 + BLUR_LINEAR_OUTLINED = 0x10356 + BLUR_LINEAR_ROUNDED = 0x10357 + BLUR_LINEAR_SHARP = 0x10358 + BLUR_OFF = 0x10359 + BLUR_OFF_OUTLINED = 0x1035A + BLUR_OFF_ROUNDED = 0x1035B + BLUR_OFF_SHARP = 0x1035C + BLUR_ON = 0x1035D + BLUR_ON_OUTLINED = 0x1035E + BLUR_ON_ROUNDED = 0x1035F + BLUR_ON_SHARP = 0x10360 + BOLT = 0x10361 + BOLT_OUTLINED = 0x10362 + BOLT_ROUNDED = 0x10363 + BOLT_SHARP = 0x10364 + BOOK = 0x10365 + BOOK_ONLINE = 0x10366 + BOOK_ONLINE_OUTLINED = 0x10367 + BOOK_ONLINE_ROUNDED = 0x10368 + BOOK_ONLINE_SHARP = 0x10369 + BOOK_OUTLINED = 0x1036A + BOOK_ROUNDED = 0x1036B + BOOK_SHARP = 0x1036C + BOOKMARK = 0x1036D + BOOKMARK_ADD = 0x1036E + BOOKMARK_ADD_OUTLINED = 0x1036F + BOOKMARK_ADD_ROUNDED = 0x10370 + BOOKMARK_ADD_SHARP = 0x10371 + BOOKMARK_ADDED = 0x10372 + BOOKMARK_ADDED_OUTLINED = 0x10373 + BOOKMARK_ADDED_ROUNDED = 0x10374 + BOOKMARK_ADDED_SHARP = 0x10375 + BOOKMARK_BORDER = 0x10376 + BOOKMARK_BORDER_OUTLINED = 0x10377 + BOOKMARK_BORDER_ROUNDED = 0x10378 + BOOKMARK_BORDER_SHARP = 0x10379 + BOOKMARK_OUTLINE = 0x1037A + BOOKMARK_OUTLINE_OUTLINED = 0x1037B + BOOKMARK_OUTLINE_ROUNDED = 0x1037C + BOOKMARK_OUTLINE_SHARP = 0x1037D + BOOKMARK_OUTLINED = 0x1037E + BOOKMARK_REMOVE = 0x1037F + BOOKMARK_REMOVE_OUTLINED = 0x10380 + BOOKMARK_REMOVE_ROUNDED = 0x10381 + BOOKMARK_REMOVE_SHARP = 0x10382 + BOOKMARK_ROUNDED = 0x10383 + BOOKMARK_SHARP = 0x10384 + BOOKMARKS = 0x10385 + BOOKMARKS_OUTLINED = 0x10386 + BOOKMARKS_ROUNDED = 0x10387 + BOOKMARKS_SHARP = 0x10388 + BORDER_ALL = 0x10389 + BORDER_ALL_OUTLINED = 0x1038A + BORDER_ALL_ROUNDED = 0x1038B + BORDER_ALL_SHARP = 0x1038C + BORDER_BOTTOM = 0x1038D + BORDER_BOTTOM_OUTLINED = 0x1038E + BORDER_BOTTOM_ROUNDED = 0x1038F + BORDER_BOTTOM_SHARP = 0x10390 + BORDER_CLEAR = 0x10391 + BORDER_CLEAR_OUTLINED = 0x10392 + BORDER_CLEAR_ROUNDED = 0x10393 + BORDER_CLEAR_SHARP = 0x10394 + BORDER_COLOR = 0x10395 + BORDER_COLOR_OUTLINED = 0x10396 + BORDER_COLOR_ROUNDED = 0x10397 + BORDER_COLOR_SHARP = 0x10398 + BORDER_HORIZONTAL = 0x10399 + BORDER_HORIZONTAL_OUTLINED = 0x1039A + BORDER_HORIZONTAL_ROUNDED = 0x1039B + BORDER_HORIZONTAL_SHARP = 0x1039C + BORDER_INNER = 0x1039D + BORDER_INNER_OUTLINED = 0x1039E + BORDER_INNER_ROUNDED = 0x1039F + BORDER_INNER_SHARP = 0x103A0 + BORDER_LEFT = 0x103A1 + BORDER_LEFT_OUTLINED = 0x103A2 + BORDER_LEFT_ROUNDED = 0x103A3 + BORDER_LEFT_SHARP = 0x103A4 + BORDER_OUTER = 0x103A5 + BORDER_OUTER_OUTLINED = 0x103A6 + BORDER_OUTER_ROUNDED = 0x103A7 + BORDER_OUTER_SHARP = 0x103A8 + BORDER_RIGHT = 0x103A9 + BORDER_RIGHT_OUTLINED = 0x103AA + BORDER_RIGHT_ROUNDED = 0x103AB + BORDER_RIGHT_SHARP = 0x103AC + BORDER_STYLE = 0x103AD + BORDER_STYLE_OUTLINED = 0x103AE + BORDER_STYLE_ROUNDED = 0x103AF + BORDER_STYLE_SHARP = 0x103B0 + BORDER_TOP = 0x103B1 + BORDER_TOP_OUTLINED = 0x103B2 + BORDER_TOP_ROUNDED = 0x103B3 + BORDER_TOP_SHARP = 0x103B4 + BORDER_VERTICAL = 0x103B5 + BORDER_VERTICAL_OUTLINED = 0x103B6 + BORDER_VERTICAL_ROUNDED = 0x103B7 + BORDER_VERTICAL_SHARP = 0x103B8 + BOY = 0x103B9 + BOY_OUTLINED = 0x103BA + BOY_ROUNDED = 0x103BB + BOY_SHARP = 0x103BC + BRANDING_WATERMARK = 0x103BD + BRANDING_WATERMARK_OUTLINED = 0x103BE + BRANDING_WATERMARK_ROUNDED = 0x103BF + BRANDING_WATERMARK_SHARP = 0x103C0 + BREAKFAST_DINING = 0x103C1 + BREAKFAST_DINING_OUTLINED = 0x103C2 + BREAKFAST_DINING_ROUNDED = 0x103C3 + BREAKFAST_DINING_SHARP = 0x103C4 + BRIGHTNESS_1 = 0x103C5 + BRIGHTNESS_1_OUTLINED = 0x103C6 + BRIGHTNESS_1_ROUNDED = 0x103C7 + BRIGHTNESS_1_SHARP = 0x103C8 + BRIGHTNESS_2 = 0x103C9 + BRIGHTNESS_2_OUTLINED = 0x103CA + BRIGHTNESS_2_ROUNDED = 0x103CB + BRIGHTNESS_2_SHARP = 0x103CC + BRIGHTNESS_3 = 0x103CD + BRIGHTNESS_3_OUTLINED = 0x103CE + BRIGHTNESS_3_ROUNDED = 0x103CF + BRIGHTNESS_3_SHARP = 0x103D0 + BRIGHTNESS_4 = 0x103D1 + BRIGHTNESS_4_OUTLINED = 0x103D2 + BRIGHTNESS_4_ROUNDED = 0x103D3 + BRIGHTNESS_4_SHARP = 0x103D4 + BRIGHTNESS_5 = 0x103D5 + BRIGHTNESS_5_OUTLINED = 0x103D6 + BRIGHTNESS_5_ROUNDED = 0x103D7 + BRIGHTNESS_5_SHARP = 0x103D8 + BRIGHTNESS_6 = 0x103D9 + BRIGHTNESS_6_OUTLINED = 0x103DA + BRIGHTNESS_6_ROUNDED = 0x103DB + BRIGHTNESS_6_SHARP = 0x103DC + BRIGHTNESS_7 = 0x103DD + BRIGHTNESS_7_OUTLINED = 0x103DE + BRIGHTNESS_7_ROUNDED = 0x103DF + BRIGHTNESS_7_SHARP = 0x103E0 + BRIGHTNESS_AUTO = 0x103E1 + BRIGHTNESS_AUTO_OUTLINED = 0x103E2 + BRIGHTNESS_AUTO_ROUNDED = 0x103E3 + BRIGHTNESS_AUTO_SHARP = 0x103E4 + BRIGHTNESS_HIGH = 0x103E5 + BRIGHTNESS_HIGH_OUTLINED = 0x103E6 + BRIGHTNESS_HIGH_ROUNDED = 0x103E7 + BRIGHTNESS_HIGH_SHARP = 0x103E8 + BRIGHTNESS_LOW = 0x103E9 + BRIGHTNESS_LOW_OUTLINED = 0x103EA + BRIGHTNESS_LOW_ROUNDED = 0x103EB + BRIGHTNESS_LOW_SHARP = 0x103EC + BRIGHTNESS_MEDIUM = 0x103ED + BRIGHTNESS_MEDIUM_OUTLINED = 0x103EE + BRIGHTNESS_MEDIUM_ROUNDED = 0x103EF + BRIGHTNESS_MEDIUM_SHARP = 0x103F0 + BROADCAST_ON_HOME = 0x103F1 + BROADCAST_ON_HOME_OUTLINED = 0x103F2 + BROADCAST_ON_HOME_ROUNDED = 0x103F3 + BROADCAST_ON_HOME_SHARP = 0x103F4 + BROADCAST_ON_PERSONAL = 0x103F5 + BROADCAST_ON_PERSONAL_OUTLINED = 0x103F6 + BROADCAST_ON_PERSONAL_ROUNDED = 0x103F7 + BROADCAST_ON_PERSONAL_SHARP = 0x103F8 + BROKEN_IMAGE = 0x103F9 + BROKEN_IMAGE_OUTLINED = 0x103FA + BROKEN_IMAGE_ROUNDED = 0x103FB + BROKEN_IMAGE_SHARP = 0x103FC + BROWSE_GALLERY = 0x103FD + BROWSE_GALLERY_OUTLINED = 0x103FE + BROWSE_GALLERY_ROUNDED = 0x103FF + BROWSE_GALLERY_SHARP = 0x10400 + BROWSER_NOT_SUPPORTED = 0x10401 + BROWSER_NOT_SUPPORTED_OUTLINED = 0x10402 + BROWSER_NOT_SUPPORTED_ROUNDED = 0x10403 + BROWSER_NOT_SUPPORTED_SHARP = 0x10404 + BROWSER_UPDATED = 0x10405 + BROWSER_UPDATED_OUTLINED = 0x10406 + BROWSER_UPDATED_ROUNDED = 0x10407 + BROWSER_UPDATED_SHARP = 0x10408 + BRUNCH_DINING = 0x10409 + BRUNCH_DINING_OUTLINED = 0x1040A + BRUNCH_DINING_ROUNDED = 0x1040B + BRUNCH_DINING_SHARP = 0x1040C + BRUSH = 0x1040D + BRUSH_OUTLINED = 0x1040E + BRUSH_ROUNDED = 0x1040F + BRUSH_SHARP = 0x10410 + BUBBLE_CHART = 0x10411 + BUBBLE_CHART_OUTLINED = 0x10412 + BUBBLE_CHART_ROUNDED = 0x10413 + BUBBLE_CHART_SHARP = 0x10414 + BUG_REPORT = 0x10415 + BUG_REPORT_OUTLINED = 0x10416 + BUG_REPORT_ROUNDED = 0x10417 + BUG_REPORT_SHARP = 0x10418 + BUILD = 0x10419 + BUILD_CIRCLE = 0x1041A + BUILD_CIRCLE_OUTLINED = 0x1041B + BUILD_CIRCLE_ROUNDED = 0x1041C + BUILD_CIRCLE_SHARP = 0x1041D + BUILD_OUTLINED = 0x1041E + BUILD_ROUNDED = 0x1041F + BUILD_SHARP = 0x10420 + BUNGALOW = 0x10421 + BUNGALOW_OUTLINED = 0x10422 + BUNGALOW_ROUNDED = 0x10423 + BUNGALOW_SHARP = 0x10424 + BURST_MODE = 0x10425 + BURST_MODE_OUTLINED = 0x10426 + BURST_MODE_ROUNDED = 0x10427 + BURST_MODE_SHARP = 0x10428 + BUS_ALERT = 0x10429 + BUS_ALERT_OUTLINED = 0x1042A + BUS_ALERT_ROUNDED = 0x1042B + BUS_ALERT_SHARP = 0x1042C + BUSINESS = 0x1042D + BUSINESS_CENTER = 0x1042E + BUSINESS_CENTER_OUTLINED = 0x1042F + BUSINESS_CENTER_ROUNDED = 0x10430 + BUSINESS_CENTER_SHARP = 0x10431 + BUSINESS_OUTLINED = 0x10432 + BUSINESS_ROUNDED = 0x10433 + BUSINESS_SHARP = 0x10434 + CABIN = 0x10435 + CABIN_OUTLINED = 0x10436 + CABIN_ROUNDED = 0x10437 + CABIN_SHARP = 0x10438 + CABLE = 0x10439 + CABLE_OUTLINED = 0x1043A + CABLE_ROUNDED = 0x1043B + CABLE_SHARP = 0x1043C + CACHED = 0x1043D + CACHED_OUTLINED = 0x1043E + CACHED_ROUNDED = 0x1043F + CACHED_SHARP = 0x10440 + CAKE = 0x10441 + CAKE_OUTLINED = 0x10442 + CAKE_ROUNDED = 0x10443 + CAKE_SHARP = 0x10444 + CALCULATE = 0x10445 + CALCULATE_OUTLINED = 0x10446 + CALCULATE_ROUNDED = 0x10447 + CALCULATE_SHARP = 0x10448 + CALENDAR_MONTH = 0x10449 + CALENDAR_MONTH_OUTLINED = 0x1044A + CALENDAR_MONTH_ROUNDED = 0x1044B + CALENDAR_MONTH_SHARP = 0x1044C + CALENDAR_TODAY = 0x1044D + CALENDAR_TODAY_OUTLINED = 0x1044E + CALENDAR_TODAY_ROUNDED = 0x1044F + CALENDAR_TODAY_SHARP = 0x10450 + CALENDAR_VIEW_DAY = 0x10451 + CALENDAR_VIEW_DAY_OUTLINED = 0x10452 + CALENDAR_VIEW_DAY_ROUNDED = 0x10453 + CALENDAR_VIEW_DAY_SHARP = 0x10454 + CALENDAR_VIEW_MONTH = 0x10455 + CALENDAR_VIEW_MONTH_OUTLINED = 0x10456 + CALENDAR_VIEW_MONTH_ROUNDED = 0x10457 + CALENDAR_VIEW_MONTH_SHARP = 0x10458 + CALENDAR_VIEW_WEEK = 0x10459 + CALENDAR_VIEW_WEEK_OUTLINED = 0x1045A + CALENDAR_VIEW_WEEK_ROUNDED = 0x1045B + CALENDAR_VIEW_WEEK_SHARP = 0x1045C + CALL = 0x1045D + CALL_END = 0x1045E + CALL_END_OUTLINED = 0x1045F + CALL_END_ROUNDED = 0x10460 + CALL_END_SHARP = 0x10461 + CALL_MADE = 0x10462 + CALL_MADE_OUTLINED = 0x10463 + CALL_MADE_ROUNDED = 0x10464 + CALL_MADE_SHARP = 0x10465 + CALL_MERGE = 0x10466 + CALL_MERGE_OUTLINED = 0x10467 + CALL_MERGE_ROUNDED = 0x10468 + CALL_MERGE_SHARP = 0x10469 + CALL_MISSED = 0x1046A + CALL_MISSED_OUTGOING = 0x1046B + CALL_MISSED_OUTGOING_OUTLINED = 0x1046C + CALL_MISSED_OUTGOING_ROUNDED = 0x1046D + CALL_MISSED_OUTGOING_SHARP = 0x1046E + CALL_MISSED_OUTLINED = 0x1046F + CALL_MISSED_ROUNDED = 0x10470 + CALL_MISSED_SHARP = 0x10471 + CALL_OUTLINED = 0x10472 + CALL_RECEIVED = 0x10473 + CALL_RECEIVED_OUTLINED = 0x10474 + CALL_RECEIVED_ROUNDED = 0x10475 + CALL_RECEIVED_SHARP = 0x10476 + CALL_ROUNDED = 0x10477 + CALL_SHARP = 0x10478 + CALL_SPLIT = 0x10479 + CALL_SPLIT_OUTLINED = 0x1047A + CALL_SPLIT_ROUNDED = 0x1047B + CALL_SPLIT_SHARP = 0x1047C + CALL_TO_ACTION = 0x1047D + CALL_TO_ACTION_OUTLINED = 0x1047E + CALL_TO_ACTION_ROUNDED = 0x1047F + CALL_TO_ACTION_SHARP = 0x10480 + CAMERA = 0x10481 + CAMERA_ALT = 0x10482 + CAMERA_ALT_OUTLINED = 0x10483 + CAMERA_ALT_ROUNDED = 0x10484 + CAMERA_ALT_SHARP = 0x10485 + CAMERA_ENHANCE = 0x10486 + CAMERA_ENHANCE_OUTLINED = 0x10487 + CAMERA_ENHANCE_ROUNDED = 0x10488 + CAMERA_ENHANCE_SHARP = 0x10489 + CAMERA_FRONT = 0x1048A + CAMERA_FRONT_OUTLINED = 0x1048B + CAMERA_FRONT_ROUNDED = 0x1048C + CAMERA_FRONT_SHARP = 0x1048D + CAMERA_INDOOR = 0x1048E + CAMERA_INDOOR_OUTLINED = 0x1048F + CAMERA_INDOOR_ROUNDED = 0x10490 + CAMERA_INDOOR_SHARP = 0x10491 + CAMERA_OUTDOOR = 0x10492 + CAMERA_OUTDOOR_OUTLINED = 0x10493 + CAMERA_OUTDOOR_ROUNDED = 0x10494 + CAMERA_OUTDOOR_SHARP = 0x10495 + CAMERA_OUTLINED = 0x10496 + CAMERA_REAR = 0x10497 + CAMERA_REAR_OUTLINED = 0x10498 + CAMERA_REAR_ROUNDED = 0x10499 + CAMERA_REAR_SHARP = 0x1049A + CAMERA_ROLL = 0x1049B + CAMERA_ROLL_OUTLINED = 0x1049C + CAMERA_ROLL_ROUNDED = 0x1049D + CAMERA_ROLL_SHARP = 0x1049E + CAMERA_ROUNDED = 0x1049F + CAMERA_SHARP = 0x104A0 + CAMERASWITCH = 0x104A1 + CAMERASWITCH_OUTLINED = 0x104A2 + CAMERASWITCH_ROUNDED = 0x104A3 + CAMERASWITCH_SHARP = 0x104A4 + CAMPAIGN = 0x104A5 + CAMPAIGN_OUTLINED = 0x104A6 + CAMPAIGN_ROUNDED = 0x104A7 + CAMPAIGN_SHARP = 0x104A8 + CANCEL = 0x104A9 + CANCEL_OUTLINED = 0x104AA + CANCEL_PRESENTATION = 0x104AB + CANCEL_PRESENTATION_OUTLINED = 0x104AC + CANCEL_PRESENTATION_ROUNDED = 0x104AD + CANCEL_PRESENTATION_SHARP = 0x104AE + CANCEL_ROUNDED = 0x104AF + CANCEL_SCHEDULE_SEND = 0x104B0 + CANCEL_SCHEDULE_SEND_OUTLINED = 0x104B1 + CANCEL_SCHEDULE_SEND_ROUNDED = 0x104B2 + CANCEL_SCHEDULE_SEND_SHARP = 0x104B3 + CANCEL_SHARP = 0x104B4 + CANDLESTICK_CHART = 0x104B5 + CANDLESTICK_CHART_OUTLINED = 0x104B6 + CANDLESTICK_CHART_ROUNDED = 0x104B7 + CANDLESTICK_CHART_SHARP = 0x104B8 + CAR_CRASH = 0x104B9 + CAR_CRASH_OUTLINED = 0x104BA + CAR_CRASH_ROUNDED = 0x104BB + CAR_CRASH_SHARP = 0x104BC + CAR_RENTAL = 0x104BD + CAR_RENTAL_OUTLINED = 0x104BE + CAR_RENTAL_ROUNDED = 0x104BF + CAR_RENTAL_SHARP = 0x104C0 + CAR_REPAIR = 0x104C1 + CAR_REPAIR_OUTLINED = 0x104C2 + CAR_REPAIR_ROUNDED = 0x104C3 + CAR_REPAIR_SHARP = 0x104C4 + CARD_GIFTCARD = 0x104C5 + CARD_GIFTCARD_OUTLINED = 0x104C6 + CARD_GIFTCARD_ROUNDED = 0x104C7 + CARD_GIFTCARD_SHARP = 0x104C8 + CARD_MEMBERSHIP = 0x104C9 + CARD_MEMBERSHIP_OUTLINED = 0x104CA + CARD_MEMBERSHIP_ROUNDED = 0x104CB + CARD_MEMBERSHIP_SHARP = 0x104CC + CARD_TRAVEL = 0x104CD + CARD_TRAVEL_OUTLINED = 0x104CE + CARD_TRAVEL_ROUNDED = 0x104CF + CARD_TRAVEL_SHARP = 0x104D0 + CARPENTER = 0x104D1 + CARPENTER_OUTLINED = 0x104D2 + CARPENTER_ROUNDED = 0x104D3 + CARPENTER_SHARP = 0x104D4 + CASES = 0x104D5 + CASES_OUTLINED = 0x104D6 + CASES_ROUNDED = 0x104D7 + CASES_SHARP = 0x104D8 + CASINO = 0x104D9 + CASINO_OUTLINED = 0x104DA + CASINO_ROUNDED = 0x104DB + CASINO_SHARP = 0x104DC + CAST = 0x104DD + CAST_CONNECTED = 0x104DE + CAST_CONNECTED_OUTLINED = 0x104DF + CAST_CONNECTED_ROUNDED = 0x104E0 + CAST_CONNECTED_SHARP = 0x104E1 + CAST_FOR_EDUCATION = 0x104E2 + CAST_FOR_EDUCATION_OUTLINED = 0x104E3 + CAST_FOR_EDUCATION_ROUNDED = 0x104E4 + CAST_FOR_EDUCATION_SHARP = 0x104E5 + CAST_OUTLINED = 0x104E6 + CAST_ROUNDED = 0x104E7 + CAST_SHARP = 0x104E8 + CASTLE = 0x104E9 + CASTLE_OUTLINED = 0x104EA + CASTLE_ROUNDED = 0x104EB + CASTLE_SHARP = 0x104EC + CATCHING_POKEMON = 0x104ED + CATCHING_POKEMON_OUTLINED = 0x104EE + CATCHING_POKEMON_ROUNDED = 0x104EF + CATCHING_POKEMON_SHARP = 0x104F0 + CATEGORY = 0x104F1 + CATEGORY_OUTLINED = 0x104F2 + CATEGORY_ROUNDED = 0x104F3 + CATEGORY_SHARP = 0x104F4 + CELEBRATION = 0x104F5 + CELEBRATION_OUTLINED = 0x104F6 + CELEBRATION_ROUNDED = 0x104F7 + CELEBRATION_SHARP = 0x104F8 + CELL_TOWER = 0x104F9 + CELL_TOWER_OUTLINED = 0x104FA + CELL_TOWER_ROUNDED = 0x104FB + CELL_TOWER_SHARP = 0x104FC + CELL_WIFI = 0x104FD + CELL_WIFI_OUTLINED = 0x104FE + CELL_WIFI_ROUNDED = 0x104FF + CELL_WIFI_SHARP = 0x10500 + CENTER_FOCUS_STRONG = 0x10501 + CENTER_FOCUS_STRONG_OUTLINED = 0x10502 + CENTER_FOCUS_STRONG_ROUNDED = 0x10503 + CENTER_FOCUS_STRONG_SHARP = 0x10504 + CENTER_FOCUS_WEAK = 0x10505 + CENTER_FOCUS_WEAK_OUTLINED = 0x10506 + CENTER_FOCUS_WEAK_ROUNDED = 0x10507 + CENTER_FOCUS_WEAK_SHARP = 0x10508 + CHAIR = 0x10509 + CHAIR_ALT = 0x1050A + CHAIR_ALT_OUTLINED = 0x1050B + CHAIR_ALT_ROUNDED = 0x1050C + CHAIR_ALT_SHARP = 0x1050D + CHAIR_OUTLINED = 0x1050E + CHAIR_ROUNDED = 0x1050F + CHAIR_SHARP = 0x10510 + CHALET = 0x10511 + CHALET_OUTLINED = 0x10512 + CHALET_ROUNDED = 0x10513 + CHALET_SHARP = 0x10514 + CHANGE_CIRCLE = 0x10515 + CHANGE_CIRCLE_OUTLINED = 0x10516 + CHANGE_CIRCLE_ROUNDED = 0x10517 + CHANGE_CIRCLE_SHARP = 0x10518 + CHANGE_HISTORY = 0x10519 + CHANGE_HISTORY_OUTLINED = 0x1051A + CHANGE_HISTORY_ROUNDED = 0x1051B + CHANGE_HISTORY_SHARP = 0x1051C + CHARGING_STATION = 0x1051D + CHARGING_STATION_OUTLINED = 0x1051E + CHARGING_STATION_ROUNDED = 0x1051F + CHARGING_STATION_SHARP = 0x10520 + CHAT = 0x10521 + CHAT_BUBBLE = 0x10522 + CHAT_BUBBLE_OUTLINE = 0x10523 + CHAT_BUBBLE_OUTLINE_OUTLINED = 0x10524 + CHAT_BUBBLE_OUTLINE_ROUNDED = 0x10525 + CHAT_BUBBLE_OUTLINE_SHARP = 0x10526 + CHAT_BUBBLE_OUTLINED = 0x10527 + CHAT_BUBBLE_ROUNDED = 0x10528 + CHAT_BUBBLE_SHARP = 0x10529 + CHAT_OUTLINED = 0x1052A + CHAT_ROUNDED = 0x1052B + CHAT_SHARP = 0x1052C + CHECK = 0x1052D + CHECK_BOX = 0x1052E + CHECK_BOX_OUTLINE_BLANK = 0x1052F + CHECK_BOX_OUTLINE_BLANK_OUTLINED = 0x10530 + CHECK_BOX_OUTLINE_BLANK_ROUNDED = 0x10531 + CHECK_BOX_OUTLINE_BLANK_SHARP = 0x10532 + CHECK_BOX_OUTLINED = 0x10533 + CHECK_BOX_ROUNDED = 0x10534 + CHECK_BOX_SHARP = 0x10535 + CHECK_CIRCLE = 0x10536 + CHECK_CIRCLE_OUTLINE = 0x10537 + CHECK_CIRCLE_OUTLINE_OUTLINED = 0x10538 + CHECK_CIRCLE_OUTLINE_ROUNDED = 0x10539 + CHECK_CIRCLE_OUTLINE_SHARP = 0x1053A + CHECK_CIRCLE_OUTLINED = 0x1053B + CHECK_CIRCLE_ROUNDED = 0x1053C + CHECK_CIRCLE_SHARP = 0x1053D + CHECK_OUTLINED = 0x1053E + CHECK_ROUNDED = 0x1053F + CHECK_SHARP = 0x10540 + CHECKLIST = 0x10541 + CHECKLIST_OUTLINED = 0x10542 + CHECKLIST_ROUNDED = 0x10543 + CHECKLIST_RTL = 0x10544 + CHECKLIST_RTL_OUTLINED = 0x10545 + CHECKLIST_RTL_ROUNDED = 0x10546 + CHECKLIST_RTL_SHARP = 0x10547 + CHECKLIST_SHARP = 0x10548 + CHECKROOM = 0x10549 + CHECKROOM_OUTLINED = 0x1054A + CHECKROOM_ROUNDED = 0x1054B + CHECKROOM_SHARP = 0x1054C + CHEVRON_LEFT = 0x1054D + CHEVRON_LEFT_OUTLINED = 0x1054E + CHEVRON_LEFT_ROUNDED = 0x1054F + CHEVRON_LEFT_SHARP = 0x10550 + CHEVRON_RIGHT = 0x10551 + CHEVRON_RIGHT_OUTLINED = 0x10552 + CHEVRON_RIGHT_ROUNDED = 0x10553 + CHEVRON_RIGHT_SHARP = 0x10554 + CHILD_CARE = 0x10555 + CHILD_CARE_OUTLINED = 0x10556 + CHILD_CARE_ROUNDED = 0x10557 + CHILD_CARE_SHARP = 0x10558 + CHILD_FRIENDLY = 0x10559 + CHILD_FRIENDLY_OUTLINED = 0x1055A + CHILD_FRIENDLY_ROUNDED = 0x1055B + CHILD_FRIENDLY_SHARP = 0x1055C + CHROME_READER_MODE = 0x1055D + CHROME_READER_MODE_OUTLINED = 0x1055E + CHROME_READER_MODE_ROUNDED = 0x1055F + CHROME_READER_MODE_SHARP = 0x10560 + CHURCH = 0x10561 + CHURCH_OUTLINED = 0x10562 + CHURCH_ROUNDED = 0x10563 + CHURCH_SHARP = 0x10564 + CIRCLE = 0x10565 + CIRCLE_NOTIFICATIONS = 0x10566 + CIRCLE_NOTIFICATIONS_OUTLINED = 0x10567 + CIRCLE_NOTIFICATIONS_ROUNDED = 0x10568 + CIRCLE_NOTIFICATIONS_SHARP = 0x10569 + CIRCLE_OUTLINED = 0x1056A + CIRCLE_ROUNDED = 0x1056B + CIRCLE_SHARP = 0x1056C + CLASS_ = 0x1056D + CLASS_OUTLINED = 0x1056E + CLASS_ROUNDED = 0x1056F + CLASS_SHARP = 0x10570 + CLEAN_HANDS = 0x10571 + CLEAN_HANDS_OUTLINED = 0x10572 + CLEAN_HANDS_ROUNDED = 0x10573 + CLEAN_HANDS_SHARP = 0x10574 + CLEANING_SERVICES = 0x10575 + CLEANING_SERVICES_OUTLINED = 0x10576 + CLEANING_SERVICES_ROUNDED = 0x10577 + CLEANING_SERVICES_SHARP = 0x10578 + CLEAR = 0x10579 + CLEAR_ALL = 0x1057A + CLEAR_ALL_OUTLINED = 0x1057B + CLEAR_ALL_ROUNDED = 0x1057C + CLEAR_ALL_SHARP = 0x1057D + CLEAR_OUTLINED = 0x1057E + CLEAR_ROUNDED = 0x1057F + CLEAR_SHARP = 0x10580 + CLOSE = 0x10581 + CLOSE_FULLSCREEN = 0x10582 + CLOSE_FULLSCREEN_OUTLINED = 0x10583 + CLOSE_FULLSCREEN_ROUNDED = 0x10584 + CLOSE_FULLSCREEN_SHARP = 0x10585 + CLOSE_OUTLINED = 0x10586 + CLOSE_ROUNDED = 0x10587 + CLOSE_SHARP = 0x10588 + CLOSED_CAPTION = 0x10589 + CLOSED_CAPTION_DISABLED = 0x1058A + CLOSED_CAPTION_DISABLED_OUTLINED = 0x1058B + CLOSED_CAPTION_DISABLED_ROUNDED = 0x1058C + CLOSED_CAPTION_DISABLED_SHARP = 0x1058D + CLOSED_CAPTION_OFF = 0x1058E + CLOSED_CAPTION_OFF_OUTLINED = 0x1058F + CLOSED_CAPTION_OFF_ROUNDED = 0x10590 + CLOSED_CAPTION_OFF_SHARP = 0x10591 + CLOSED_CAPTION_OUTLINED = 0x10592 + CLOSED_CAPTION_ROUNDED = 0x10593 + CLOSED_CAPTION_SHARP = 0x10594 + CLOUD = 0x10595 + CLOUD_CIRCLE = 0x10596 + CLOUD_CIRCLE_OUTLINED = 0x10597 + CLOUD_CIRCLE_ROUNDED = 0x10598 + CLOUD_CIRCLE_SHARP = 0x10599 + CLOUD_DONE = 0x1059A + CLOUD_DONE_OUTLINED = 0x1059B + CLOUD_DONE_ROUNDED = 0x1059C + CLOUD_DONE_SHARP = 0x1059D + CLOUD_DOWNLOAD = 0x1059E + CLOUD_DOWNLOAD_OUTLINED = 0x1059F + CLOUD_DOWNLOAD_ROUNDED = 0x105A0 + CLOUD_DOWNLOAD_SHARP = 0x105A1 + CLOUD_OFF = 0x105A2 + CLOUD_OFF_OUTLINED = 0x105A3 + CLOUD_OFF_ROUNDED = 0x105A4 + CLOUD_OFF_SHARP = 0x105A5 + CLOUD_OUTLINED = 0x105A6 + CLOUD_QUEUE = 0x105A7 + CLOUD_QUEUE_OUTLINED = 0x105A8 + CLOUD_QUEUE_ROUNDED = 0x105A9 + CLOUD_QUEUE_SHARP = 0x105AA + CLOUD_ROUNDED = 0x105AB + CLOUD_SHARP = 0x105AC + CLOUD_SYNC = 0x105AD + CLOUD_SYNC_OUTLINED = 0x105AE + CLOUD_SYNC_ROUNDED = 0x105AF + CLOUD_SYNC_SHARP = 0x105B0 + CLOUD_UPLOAD = 0x105B1 + CLOUD_UPLOAD_OUTLINED = 0x105B2 + CLOUD_UPLOAD_ROUNDED = 0x105B3 + CLOUD_UPLOAD_SHARP = 0x105B4 + CLOUDY_SNOWING = 0x105B5 + CO2 = 0x105B6 + CO2_OUTLINED = 0x105B7 + CO2_ROUNDED = 0x105B8 + CO2_SHARP = 0x105B9 + CO_PRESENT = 0x105BA + CO_PRESENT_OUTLINED = 0x105BB + CO_PRESENT_ROUNDED = 0x105BC + CO_PRESENT_SHARP = 0x105BD + CODE = 0x105BE + CODE_OFF = 0x105BF + CODE_OFF_OUTLINED = 0x105C0 + CODE_OFF_ROUNDED = 0x105C1 + CODE_OFF_SHARP = 0x105C2 + CODE_OUTLINED = 0x105C3 + CODE_ROUNDED = 0x105C4 + CODE_SHARP = 0x105C5 + COFFEE = 0x105C6 + COFFEE_MAKER = 0x105C7 + COFFEE_MAKER_OUTLINED = 0x105C8 + COFFEE_MAKER_ROUNDED = 0x105C9 + COFFEE_MAKER_SHARP = 0x105CA + COFFEE_OUTLINED = 0x105CB + COFFEE_ROUNDED = 0x105CC + COFFEE_SHARP = 0x105CD + COLLECTIONS = 0x105CE + COLLECTIONS_BOOKMARK = 0x105CF + COLLECTIONS_BOOKMARK_OUTLINED = 0x105D0 + COLLECTIONS_BOOKMARK_ROUNDED = 0x105D1 + COLLECTIONS_BOOKMARK_SHARP = 0x105D2 + COLLECTIONS_OUTLINED = 0x105D3 + COLLECTIONS_ROUNDED = 0x105D4 + COLLECTIONS_SHARP = 0x105D5 + COLOR_LENS = 0x105D6 + COLOR_LENS_OUTLINED = 0x105D7 + COLOR_LENS_ROUNDED = 0x105D8 + COLOR_LENS_SHARP = 0x105D9 + COLORIZE = 0x105DA + COLORIZE_OUTLINED = 0x105DB + COLORIZE_ROUNDED = 0x105DC + COLORIZE_SHARP = 0x105DD + COMMENT = 0x105DE + COMMENT_BANK = 0x105DF + COMMENT_BANK_OUTLINED = 0x105E0 + COMMENT_BANK_ROUNDED = 0x105E1 + COMMENT_BANK_SHARP = 0x105E2 + COMMENT_OUTLINED = 0x105E3 + COMMENT_ROUNDED = 0x105E4 + COMMENT_SHARP = 0x105E5 + COMMENTS_DISABLED = 0x105E6 + COMMENTS_DISABLED_OUTLINED = 0x105E7 + COMMENTS_DISABLED_ROUNDED = 0x105E8 + COMMENTS_DISABLED_SHARP = 0x105E9 + COMMIT = 0x105EA + COMMIT_OUTLINED = 0x105EB + COMMIT_ROUNDED = 0x105EC + COMMIT_SHARP = 0x105ED + COMMUTE = 0x105EE + COMMUTE_OUTLINED = 0x105EF + COMMUTE_ROUNDED = 0x105F0 + COMMUTE_SHARP = 0x105F1 + COMPARE = 0x105F2 + COMPARE_ARROWS = 0x105F3 + COMPARE_ARROWS_OUTLINED = 0x105F4 + COMPARE_ARROWS_ROUNDED = 0x105F5 + COMPARE_ARROWS_SHARP = 0x105F6 + COMPARE_OUTLINED = 0x105F7 + COMPARE_ROUNDED = 0x105F8 + COMPARE_SHARP = 0x105F9 + COMPASS_CALIBRATION = 0x105FA + COMPASS_CALIBRATION_OUTLINED = 0x105FB + COMPASS_CALIBRATION_ROUNDED = 0x105FC + COMPASS_CALIBRATION_SHARP = 0x105FD + COMPOST = 0x105FE + COMPOST_OUTLINED = 0x105FF + COMPOST_ROUNDED = 0x10600 + COMPOST_SHARP = 0x10601 + COMPRESS = 0x10602 + COMPRESS_OUTLINED = 0x10603 + COMPRESS_ROUNDED = 0x10604 + COMPRESS_SHARP = 0x10605 + COMPUTER = 0x10606 + COMPUTER_OUTLINED = 0x10607 + COMPUTER_ROUNDED = 0x10608 + COMPUTER_SHARP = 0x10609 + CONFIRMATION_NUM = 0x1060A + CONFIRMATION_NUM_OUTLINED = 0x1060B + CONFIRMATION_NUM_ROUNDED = 0x1060C + CONFIRMATION_NUM_SHARP = 0x1060D + CONFIRMATION_NUMBER = 0x1060E + CONFIRMATION_NUMBER_OUTLINED = 0x1060F + CONFIRMATION_NUMBER_ROUNDED = 0x10610 + CONFIRMATION_NUMBER_SHARP = 0x10611 + CONNECT_WITHOUT_CONTACT = 0x10612 + CONNECT_WITHOUT_CONTACT_OUTLINED = 0x10613 + CONNECT_WITHOUT_CONTACT_ROUNDED = 0x10614 + CONNECT_WITHOUT_CONTACT_SHARP = 0x10615 + CONNECTED_TV = 0x10616 + CONNECTED_TV_OUTLINED = 0x10617 + CONNECTED_TV_ROUNDED = 0x10618 + CONNECTED_TV_SHARP = 0x10619 + CONNECTING_AIRPORTS = 0x1061A + CONNECTING_AIRPORTS_OUTLINED = 0x1061B + CONNECTING_AIRPORTS_ROUNDED = 0x1061C + CONNECTING_AIRPORTS_SHARP = 0x1061D + CONSTRUCTION = 0x1061E + CONSTRUCTION_OUTLINED = 0x1061F + CONSTRUCTION_ROUNDED = 0x10620 + CONSTRUCTION_SHARP = 0x10621 + CONTACT_EMERGENCY = 0x10622 + CONTACT_EMERGENCY_OUTLINED = 0x10623 + CONTACT_EMERGENCY_ROUNDED = 0x10624 + CONTACT_EMERGENCY_SHARP = 0x10625 + CONTACT_MAIL = 0x10626 + CONTACT_MAIL_OUTLINED = 0x10627 + CONTACT_MAIL_ROUNDED = 0x10628 + CONTACT_MAIL_SHARP = 0x10629 + CONTACT_PAGE = 0x1062A + CONTACT_PAGE_OUTLINED = 0x1062B + CONTACT_PAGE_ROUNDED = 0x1062C + CONTACT_PAGE_SHARP = 0x1062D + CONTACT_PHONE = 0x1062E + CONTACT_PHONE_OUTLINED = 0x1062F + CONTACT_PHONE_ROUNDED = 0x10630 + CONTACT_PHONE_SHARP = 0x10631 + CONTACT_SUPPORT = 0x10632 + CONTACT_SUPPORT_OUTLINED = 0x10633 + CONTACT_SUPPORT_ROUNDED = 0x10634 + CONTACT_SUPPORT_SHARP = 0x10635 + CONTACTLESS = 0x10636 + CONTACTLESS_OUTLINED = 0x10637 + CONTACTLESS_ROUNDED = 0x10638 + CONTACTLESS_SHARP = 0x10639 + CONTACTS = 0x1063A + CONTACTS_OUTLINED = 0x1063B + CONTACTS_ROUNDED = 0x1063C + CONTACTS_SHARP = 0x1063D + CONTENT_COPY = 0x1063E + CONTENT_COPY_OUTLINED = 0x1063F + CONTENT_COPY_ROUNDED = 0x10640 + CONTENT_COPY_SHARP = 0x10641 + CONTENT_CUT = 0x10642 + CONTENT_CUT_OUTLINED = 0x10643 + CONTENT_CUT_ROUNDED = 0x10644 + CONTENT_CUT_SHARP = 0x10645 + CONTENT_PASTE = 0x10646 + CONTENT_PASTE_GO = 0x10647 + CONTENT_PASTE_GO_OUTLINED = 0x10648 + CONTENT_PASTE_GO_ROUNDED = 0x10649 + CONTENT_PASTE_GO_SHARP = 0x1064A + CONTENT_PASTE_OFF = 0x1064B + CONTENT_PASTE_OFF_OUTLINED = 0x1064C + CONTENT_PASTE_OFF_ROUNDED = 0x1064D + CONTENT_PASTE_OFF_SHARP = 0x1064E + CONTENT_PASTE_OUTLINED = 0x1064F + CONTENT_PASTE_ROUNDED = 0x10650 + CONTENT_PASTE_SEARCH = 0x10651 + CONTENT_PASTE_SEARCH_OUTLINED = 0x10652 + CONTENT_PASTE_SEARCH_ROUNDED = 0x10653 + CONTENT_PASTE_SEARCH_SHARP = 0x10654 + CONTENT_PASTE_SHARP = 0x10655 + CONTRAST = 0x10656 + CONTRAST_OUTLINED = 0x10657 + CONTRAST_ROUNDED = 0x10658 + CONTRAST_SHARP = 0x10659 + CONTROL_CAMERA = 0x1065A + CONTROL_CAMERA_OUTLINED = 0x1065B + CONTROL_CAMERA_ROUNDED = 0x1065C + CONTROL_CAMERA_SHARP = 0x1065D + CONTROL_POINT = 0x1065E + CONTROL_POINT_DUPLICATE = 0x1065F + CONTROL_POINT_DUPLICATE_OUTLINED = 0x10660 + CONTROL_POINT_DUPLICATE_ROUNDED = 0x10661 + CONTROL_POINT_DUPLICATE_SHARP = 0x10662 + CONTROL_POINT_OUTLINED = 0x10663 + CONTROL_POINT_ROUNDED = 0x10664 + CONTROL_POINT_SHARP = 0x10665 + CONVEYOR_BELT = 0x10666 + COOKIE = 0x10667 + COOKIE_OUTLINED = 0x10668 + COOKIE_ROUNDED = 0x10669 + COOKIE_SHARP = 0x1066A + COPY = 0x1066B + COPY_ALL = 0x1066C + COPY_ALL_OUTLINED = 0x1066D + COPY_ALL_ROUNDED = 0x1066E + COPY_ALL_SHARP = 0x1066F + COPY_OUTLINED = 0x10670 + COPY_ROUNDED = 0x10671 + COPY_SHARP = 0x10672 + COPYRIGHT = 0x10673 + COPYRIGHT_OUTLINED = 0x10674 + COPYRIGHT_ROUNDED = 0x10675 + COPYRIGHT_SHARP = 0x10676 + CORONAVIRUS = 0x10677 + CORONAVIRUS_OUTLINED = 0x10678 + CORONAVIRUS_ROUNDED = 0x10679 + CORONAVIRUS_SHARP = 0x1067A + CORPORATE_FARE = 0x1067B + CORPORATE_FARE_OUTLINED = 0x1067C + CORPORATE_FARE_ROUNDED = 0x1067D + CORPORATE_FARE_SHARP = 0x1067E + COTTAGE = 0x1067F + COTTAGE_OUTLINED = 0x10680 + COTTAGE_ROUNDED = 0x10681 + COTTAGE_SHARP = 0x10682 + COUNTERTOPS = 0x10683 + COUNTERTOPS_OUTLINED = 0x10684 + COUNTERTOPS_ROUNDED = 0x10685 + COUNTERTOPS_SHARP = 0x10686 + CREATE = 0x10687 + CREATE_NEW_FOLDER = 0x10688 + CREATE_NEW_FOLDER_OUTLINED = 0x10689 + CREATE_NEW_FOLDER_ROUNDED = 0x1068A + CREATE_NEW_FOLDER_SHARP = 0x1068B + CREATE_OUTLINED = 0x1068C + CREATE_ROUNDED = 0x1068D + CREATE_SHARP = 0x1068E + CREDIT_CARD = 0x1068F + CREDIT_CARD_OFF = 0x10690 + CREDIT_CARD_OFF_OUTLINED = 0x10691 + CREDIT_CARD_OFF_ROUNDED = 0x10692 + CREDIT_CARD_OFF_SHARP = 0x10693 + CREDIT_CARD_OUTLINED = 0x10694 + CREDIT_CARD_ROUNDED = 0x10695 + CREDIT_CARD_SHARP = 0x10696 + CREDIT_SCORE = 0x10697 + CREDIT_SCORE_OUTLINED = 0x10698 + CREDIT_SCORE_ROUNDED = 0x10699 + CREDIT_SCORE_SHARP = 0x1069A + CRIB = 0x1069B + CRIB_OUTLINED = 0x1069C + CRIB_ROUNDED = 0x1069D + CRIB_SHARP = 0x1069E + CRISIS_ALERT = 0x1069F + CRISIS_ALERT_OUTLINED = 0x106A0 + CRISIS_ALERT_ROUNDED = 0x106A1 + CRISIS_ALERT_SHARP = 0x106A2 + CROP = 0x106A3 + CROP_16_9 = 0x106A4 + CROP_16_9_OUTLINED = 0x106A5 + CROP_16_9_ROUNDED = 0x106A6 + CROP_16_9_SHARP = 0x106A7 + CROP_3_2 = 0x106A8 + CROP_3_2_OUTLINED = 0x106A9 + CROP_3_2_ROUNDED = 0x106AA + CROP_3_2_SHARP = 0x106AB + CROP_5_4 = 0x106AC + CROP_5_4_OUTLINED = 0x106AD + CROP_5_4_ROUNDED = 0x106AE + CROP_5_4_SHARP = 0x106AF + CROP_7_5 = 0x106B0 + CROP_7_5_OUTLINED = 0x106B1 + CROP_7_5_ROUNDED = 0x106B2 + CROP_7_5_SHARP = 0x106B3 + CROP_DIN = 0x106B4 + CROP_DIN_OUTLINED = 0x106B5 + CROP_DIN_ROUNDED = 0x106B6 + CROP_DIN_SHARP = 0x106B7 + CROP_FREE = 0x106B8 + CROP_FREE_OUTLINED = 0x106B9 + CROP_FREE_ROUNDED = 0x106BA + CROP_FREE_SHARP = 0x106BB + CROP_LANDSCAPE = 0x106BC + CROP_LANDSCAPE_OUTLINED = 0x106BD + CROP_LANDSCAPE_ROUNDED = 0x106BE + CROP_LANDSCAPE_SHARP = 0x106BF + CROP_ORIGINAL = 0x106C0 + CROP_ORIGINAL_OUTLINED = 0x106C1 + CROP_ORIGINAL_ROUNDED = 0x106C2 + CROP_ORIGINAL_SHARP = 0x106C3 + CROP_OUTLINED = 0x106C4 + CROP_PORTRAIT = 0x106C5 + CROP_PORTRAIT_OUTLINED = 0x106C6 + CROP_PORTRAIT_ROUNDED = 0x106C7 + CROP_PORTRAIT_SHARP = 0x106C8 + CROP_ROTATE = 0x106C9 + CROP_ROTATE_OUTLINED = 0x106CA + CROP_ROTATE_ROUNDED = 0x106CB + CROP_ROTATE_SHARP = 0x106CC + CROP_ROUNDED = 0x106CD + CROP_SHARP = 0x106CE + CROP_SQUARE = 0x106CF + CROP_SQUARE_OUTLINED = 0x106D0 + CROP_SQUARE_ROUNDED = 0x106D1 + CROP_SQUARE_SHARP = 0x106D2 + CRUELTY_FREE = 0x106D3 + CRUELTY_FREE_OUTLINED = 0x106D4 + CRUELTY_FREE_ROUNDED = 0x106D5 + CRUELTY_FREE_SHARP = 0x106D6 + CSS = 0x106D7 + CSS_OUTLINED = 0x106D8 + CSS_ROUNDED = 0x106D9 + CSS_SHARP = 0x106DA + CURRENCY_BITCOIN = 0x106DB + CURRENCY_BITCOIN_OUTLINED = 0x106DC + CURRENCY_BITCOIN_ROUNDED = 0x106DD + CURRENCY_BITCOIN_SHARP = 0x106DE + CURRENCY_EXCHANGE = 0x106DF + CURRENCY_EXCHANGE_OUTLINED = 0x106E0 + CURRENCY_EXCHANGE_ROUNDED = 0x106E1 + CURRENCY_EXCHANGE_SHARP = 0x106E2 + CURRENCY_FRANC = 0x106E3 + CURRENCY_FRANC_OUTLINED = 0x106E4 + CURRENCY_FRANC_ROUNDED = 0x106E5 + CURRENCY_FRANC_SHARP = 0x106E6 + CURRENCY_LIRA = 0x106E7 + CURRENCY_LIRA_OUTLINED = 0x106E8 + CURRENCY_LIRA_ROUNDED = 0x106E9 + CURRENCY_LIRA_SHARP = 0x106EA + CURRENCY_POUND = 0x106EB + CURRENCY_POUND_OUTLINED = 0x106EC + CURRENCY_POUND_ROUNDED = 0x106ED + CURRENCY_POUND_SHARP = 0x106EE + CURRENCY_RUBLE = 0x106EF + CURRENCY_RUBLE_OUTLINED = 0x106F0 + CURRENCY_RUBLE_ROUNDED = 0x106F1 + CURRENCY_RUBLE_SHARP = 0x106F2 + CURRENCY_RUPEE = 0x106F3 + CURRENCY_RUPEE_OUTLINED = 0x106F4 + CURRENCY_RUPEE_ROUNDED = 0x106F5 + CURRENCY_RUPEE_SHARP = 0x106F6 + CURRENCY_YEN = 0x106F7 + CURRENCY_YEN_OUTLINED = 0x106F8 + CURRENCY_YEN_ROUNDED = 0x106F9 + CURRENCY_YEN_SHARP = 0x106FA + CURRENCY_YUAN = 0x106FB + CURRENCY_YUAN_OUTLINED = 0x106FC + CURRENCY_YUAN_ROUNDED = 0x106FD + CURRENCY_YUAN_SHARP = 0x106FE + CURTAINS = 0x106FF + CURTAINS_CLOSED = 0x10700 + CURTAINS_CLOSED_OUTLINED = 0x10701 + CURTAINS_CLOSED_ROUNDED = 0x10702 + CURTAINS_CLOSED_SHARP = 0x10703 + CURTAINS_OUTLINED = 0x10704 + CURTAINS_ROUNDED = 0x10705 + CURTAINS_SHARP = 0x10706 + CUT = 0x10707 + CUT_OUTLINED = 0x10708 + CUT_ROUNDED = 0x10709 + CUT_SHARP = 0x1070A + CYCLONE = 0x1070B + CYCLONE_OUTLINED = 0x1070C + CYCLONE_ROUNDED = 0x1070D + CYCLONE_SHARP = 0x1070E + DANGEROUS = 0x1070F + DANGEROUS_OUTLINED = 0x10710 + DANGEROUS_ROUNDED = 0x10711 + DANGEROUS_SHARP = 0x10712 + DARK_MODE = 0x10713 + DARK_MODE_OUTLINED = 0x10714 + DARK_MODE_ROUNDED = 0x10715 + DARK_MODE_SHARP = 0x10716 + DASHBOARD = 0x10717 + DASHBOARD_CUSTOMIZE = 0x10718 + DASHBOARD_CUSTOMIZE_OUTLINED = 0x10719 + DASHBOARD_CUSTOMIZE_ROUNDED = 0x1071A + DASHBOARD_CUSTOMIZE_SHARP = 0x1071B + DASHBOARD_OUTLINED = 0x1071C + DASHBOARD_ROUNDED = 0x1071D + DASHBOARD_SHARP = 0x1071E + DATA_ARRAY = 0x1071F + DATA_ARRAY_OUTLINED = 0x10720 + DATA_ARRAY_ROUNDED = 0x10721 + DATA_ARRAY_SHARP = 0x10722 + DATA_EXPLORATION = 0x10723 + DATA_EXPLORATION_OUTLINED = 0x10724 + DATA_EXPLORATION_ROUNDED = 0x10725 + DATA_EXPLORATION_SHARP = 0x10726 + DATA_OBJECT = 0x10727 + DATA_OBJECT_OUTLINED = 0x10728 + DATA_OBJECT_ROUNDED = 0x10729 + DATA_OBJECT_SHARP = 0x1072A + DATA_SAVER_OFF = 0x1072B + DATA_SAVER_OFF_OUTLINED = 0x1072C + DATA_SAVER_OFF_ROUNDED = 0x1072D + DATA_SAVER_OFF_SHARP = 0x1072E + DATA_SAVER_ON = 0x1072F + DATA_SAVER_ON_OUTLINED = 0x10730 + DATA_SAVER_ON_ROUNDED = 0x10731 + DATA_SAVER_ON_SHARP = 0x10732 + DATA_THRESHOLDING = 0x10733 + DATA_THRESHOLDING_OUTLINED = 0x10734 + DATA_THRESHOLDING_ROUNDED = 0x10735 + DATA_THRESHOLDING_SHARP = 0x10736 + DATA_USAGE = 0x10737 + DATA_USAGE_OUTLINED = 0x10738 + DATA_USAGE_ROUNDED = 0x10739 + DATA_USAGE_SHARP = 0x1073A + DATASET = 0x1073B + DATASET_LINKED = 0x1073C + DATASET_LINKED_OUTLINED = 0x1073D + DATASET_LINKED_ROUNDED = 0x1073E + DATASET_LINKED_SHARP = 0x1073F + DATASET_OUTLINED = 0x10740 + DATASET_ROUNDED = 0x10741 + DATASET_SHARP = 0x10742 + DATE_RANGE = 0x10743 + DATE_RANGE_OUTLINED = 0x10744 + DATE_RANGE_ROUNDED = 0x10745 + DATE_RANGE_SHARP = 0x10746 + DEBLUR = 0x10747 + DEBLUR_OUTLINED = 0x10748 + DEBLUR_ROUNDED = 0x10749 + DEBLUR_SHARP = 0x1074A + DECK = 0x1074B + DECK_OUTLINED = 0x1074C + DECK_ROUNDED = 0x1074D + DECK_SHARP = 0x1074E + DEHAZE = 0x1074F + DEHAZE_OUTLINED = 0x10750 + DEHAZE_ROUNDED = 0x10751 + DEHAZE_SHARP = 0x10752 + DELETE = 0x10753 + DELETE_FOREVER = 0x10754 + DELETE_FOREVER_OUTLINED = 0x10755 + DELETE_FOREVER_ROUNDED = 0x10756 + DELETE_FOREVER_SHARP = 0x10757 + DELETE_OUTLINE = 0x10758 + DELETE_OUTLINE_OUTLINED = 0x10759 + DELETE_OUTLINE_ROUNDED = 0x1075A + DELETE_OUTLINE_SHARP = 0x1075B + DELETE_OUTLINED = 0x1075C + DELETE_ROUNDED = 0x1075D + DELETE_SHARP = 0x1075E + DELETE_SWEEP = 0x1075F + DELETE_SWEEP_OUTLINED = 0x10760 + DELETE_SWEEP_ROUNDED = 0x10761 + DELETE_SWEEP_SHARP = 0x10762 + DELIVERY_DINING = 0x10763 + DELIVERY_DINING_OUTLINED = 0x10764 + DELIVERY_DINING_ROUNDED = 0x10765 + DELIVERY_DINING_SHARP = 0x10766 + DENSITY_LARGE = 0x10767 + DENSITY_LARGE_OUTLINED = 0x10768 + DENSITY_LARGE_ROUNDED = 0x10769 + DENSITY_LARGE_SHARP = 0x1076A + DENSITY_MEDIUM = 0x1076B + DENSITY_MEDIUM_OUTLINED = 0x1076C + DENSITY_MEDIUM_ROUNDED = 0x1076D + DENSITY_MEDIUM_SHARP = 0x1076E + DENSITY_SMALL = 0x1076F + DENSITY_SMALL_OUTLINED = 0x10770 + DENSITY_SMALL_ROUNDED = 0x10771 + DENSITY_SMALL_SHARP = 0x10772 + DEPARTURE_BOARD = 0x10773 + DEPARTURE_BOARD_OUTLINED = 0x10774 + DEPARTURE_BOARD_ROUNDED = 0x10775 + DEPARTURE_BOARD_SHARP = 0x10776 + DESCRIPTION = 0x10777 + DESCRIPTION_OUTLINED = 0x10778 + DESCRIPTION_ROUNDED = 0x10779 + DESCRIPTION_SHARP = 0x1077A + DESELECT = 0x1077B + DESELECT_OUTLINED = 0x1077C + DESELECT_ROUNDED = 0x1077D + DESELECT_SHARP = 0x1077E + DESIGN_SERVICES = 0x1077F + DESIGN_SERVICES_OUTLINED = 0x10780 + DESIGN_SERVICES_ROUNDED = 0x10781 + DESIGN_SERVICES_SHARP = 0x10782 + DESK = 0x10783 + DESK_OUTLINED = 0x10784 + DESK_ROUNDED = 0x10785 + DESK_SHARP = 0x10786 + DESKTOP_ACCESS_DISABLED = 0x10787 + DESKTOP_ACCESS_DISABLED_OUTLINED = 0x10788 + DESKTOP_ACCESS_DISABLED_ROUNDED = 0x10789 + DESKTOP_ACCESS_DISABLED_SHARP = 0x1078A + DESKTOP_MAC = 0x1078B + DESKTOP_MAC_OUTLINED = 0x1078C + DESKTOP_MAC_ROUNDED = 0x1078D + DESKTOP_MAC_SHARP = 0x1078E + DESKTOP_WINDOWS = 0x1078F + DESKTOP_WINDOWS_OUTLINED = 0x10790 + DESKTOP_WINDOWS_ROUNDED = 0x10791 + DESKTOP_WINDOWS_SHARP = 0x10792 + DETAILS = 0x10793 + DETAILS_OUTLINED = 0x10794 + DETAILS_ROUNDED = 0x10795 + DETAILS_SHARP = 0x10796 + DEVELOPER_BOARD = 0x10797 + DEVELOPER_BOARD_OFF = 0x10798 + DEVELOPER_BOARD_OFF_OUTLINED = 0x10799 + DEVELOPER_BOARD_OFF_ROUNDED = 0x1079A + DEVELOPER_BOARD_OFF_SHARP = 0x1079B + DEVELOPER_BOARD_OUTLINED = 0x1079C + DEVELOPER_BOARD_ROUNDED = 0x1079D + DEVELOPER_BOARD_SHARP = 0x1079E + DEVELOPER_MODE = 0x1079F + DEVELOPER_MODE_OUTLINED = 0x107A0 + DEVELOPER_MODE_ROUNDED = 0x107A1 + DEVELOPER_MODE_SHARP = 0x107A2 + DEVICE_HUB = 0x107A3 + DEVICE_HUB_OUTLINED = 0x107A4 + DEVICE_HUB_ROUNDED = 0x107A5 + DEVICE_HUB_SHARP = 0x107A6 + DEVICE_THERMOSTAT = 0x107A7 + DEVICE_THERMOSTAT_OUTLINED = 0x107A8 + DEVICE_THERMOSTAT_ROUNDED = 0x107A9 + DEVICE_THERMOSTAT_SHARP = 0x107AA + DEVICE_UNKNOWN = 0x107AB + DEVICE_UNKNOWN_OUTLINED = 0x107AC + DEVICE_UNKNOWN_ROUNDED = 0x107AD + DEVICE_UNKNOWN_SHARP = 0x107AE + DEVICES = 0x107AF + DEVICES_FOLD = 0x107B0 + DEVICES_FOLD_OUTLINED = 0x107B1 + DEVICES_FOLD_ROUNDED = 0x107B2 + DEVICES_FOLD_SHARP = 0x107B3 + DEVICES_OTHER = 0x107B4 + DEVICES_OTHER_OUTLINED = 0x107B5 + DEVICES_OTHER_ROUNDED = 0x107B6 + DEVICES_OTHER_SHARP = 0x107B7 + DEVICES_OUTLINED = 0x107B8 + DEVICES_ROUNDED = 0x107B9 + DEVICES_SHARP = 0x107BA + DEW_POINT = 0x107BB + DIALER_SIP = 0x107BC + DIALER_SIP_OUTLINED = 0x107BD + DIALER_SIP_ROUNDED = 0x107BE + DIALER_SIP_SHARP = 0x107BF + DIALPAD = 0x107C0 + DIALPAD_OUTLINED = 0x107C1 + DIALPAD_ROUNDED = 0x107C2 + DIALPAD_SHARP = 0x107C3 + DIAMOND = 0x107C4 + DIAMOND_OUTLINED = 0x107C5 + DIAMOND_ROUNDED = 0x107C6 + DIAMOND_SHARP = 0x107C7 + DIFFERENCE = 0x107C8 + DIFFERENCE_OUTLINED = 0x107C9 + DIFFERENCE_ROUNDED = 0x107CA + DIFFERENCE_SHARP = 0x107CB + DINING = 0x107CC + DINING_OUTLINED = 0x107CD + DINING_ROUNDED = 0x107CE + DINING_SHARP = 0x107CF + DINNER_DINING = 0x107D0 + DINNER_DINING_OUTLINED = 0x107D1 + DINNER_DINING_ROUNDED = 0x107D2 + DINNER_DINING_SHARP = 0x107D3 + DIRECTIONS = 0x107D4 + DIRECTIONS_BIKE = 0x107D5 + DIRECTIONS_BIKE_OUTLINED = 0x107D6 + DIRECTIONS_BIKE_ROUNDED = 0x107D7 + DIRECTIONS_BIKE_SHARP = 0x107D8 + DIRECTIONS_BOAT = 0x107D9 + DIRECTIONS_BOAT_FILLED = 0x107DA + DIRECTIONS_BOAT_FILLED_OUTLINED = 0x107DB + DIRECTIONS_BOAT_FILLED_ROUNDED = 0x107DC + DIRECTIONS_BOAT_FILLED_SHARP = 0x107DD + DIRECTIONS_BOAT_OUTLINED = 0x107DE + DIRECTIONS_BOAT_ROUNDED = 0x107DF + DIRECTIONS_BOAT_SHARP = 0x107E0 + DIRECTIONS_BUS = 0x107E1 + DIRECTIONS_BUS_FILLED = 0x107E2 + DIRECTIONS_BUS_FILLED_OUTLINED = 0x107E3 + DIRECTIONS_BUS_FILLED_ROUNDED = 0x107E4 + DIRECTIONS_BUS_FILLED_SHARP = 0x107E5 + DIRECTIONS_BUS_OUTLINED = 0x107E6 + DIRECTIONS_BUS_ROUNDED = 0x107E7 + DIRECTIONS_BUS_SHARP = 0x107E8 + DIRECTIONS_CAR = 0x107E9 + DIRECTIONS_CAR_FILLED = 0x107EA + DIRECTIONS_CAR_FILLED_OUTLINED = 0x107EB + DIRECTIONS_CAR_FILLED_ROUNDED = 0x107EC + DIRECTIONS_CAR_FILLED_SHARP = 0x107ED + DIRECTIONS_CAR_OUTLINED = 0x107EE + DIRECTIONS_CAR_ROUNDED = 0x107EF + DIRECTIONS_CAR_SHARP = 0x107F0 + DIRECTIONS_FERRY = 0x107F1 + DIRECTIONS_FERRY_OUTLINED = 0x107F2 + DIRECTIONS_FERRY_ROUNDED = 0x107F3 + DIRECTIONS_FERRY_SHARP = 0x107F4 + DIRECTIONS_OFF = 0x107F5 + DIRECTIONS_OFF_OUTLINED = 0x107F6 + DIRECTIONS_OFF_ROUNDED = 0x107F7 + DIRECTIONS_OFF_SHARP = 0x107F8 + DIRECTIONS_OUTLINED = 0x107F9 + DIRECTIONS_RAILWAY = 0x107FA + DIRECTIONS_RAILWAY_FILLED = 0x107FB + DIRECTIONS_RAILWAY_FILLED_OUTLINED = 0x107FC + DIRECTIONS_RAILWAY_FILLED_ROUNDED = 0x107FD + DIRECTIONS_RAILWAY_FILLED_SHARP = 0x107FE + DIRECTIONS_RAILWAY_OUTLINED = 0x107FF + DIRECTIONS_RAILWAY_ROUNDED = 0x10800 + DIRECTIONS_RAILWAY_SHARP = 0x10801 + DIRECTIONS_ROUNDED = 0x10802 + DIRECTIONS_RUN = 0x10803 + DIRECTIONS_RUN_OUTLINED = 0x10804 + DIRECTIONS_RUN_ROUNDED = 0x10805 + DIRECTIONS_RUN_SHARP = 0x10806 + DIRECTIONS_SHARP = 0x10807 + DIRECTIONS_SUBWAY = 0x10808 + DIRECTIONS_SUBWAY_FILLED = 0x10809 + DIRECTIONS_SUBWAY_FILLED_OUTLINED = 0x1080A + DIRECTIONS_SUBWAY_FILLED_ROUNDED = 0x1080B + DIRECTIONS_SUBWAY_FILLED_SHARP = 0x1080C + DIRECTIONS_SUBWAY_OUTLINED = 0x1080D + DIRECTIONS_SUBWAY_ROUNDED = 0x1080E + DIRECTIONS_SUBWAY_SHARP = 0x1080F + DIRECTIONS_TRAIN = 0x10810 + DIRECTIONS_TRAIN_OUTLINED = 0x10811 + DIRECTIONS_TRAIN_ROUNDED = 0x10812 + DIRECTIONS_TRAIN_SHARP = 0x10813 + DIRECTIONS_TRANSIT = 0x10814 + DIRECTIONS_TRANSIT_FILLED = 0x10815 + DIRECTIONS_TRANSIT_FILLED_OUTLINED = 0x10816 + DIRECTIONS_TRANSIT_FILLED_ROUNDED = 0x10817 + DIRECTIONS_TRANSIT_FILLED_SHARP = 0x10818 + DIRECTIONS_TRANSIT_OUTLINED = 0x10819 + DIRECTIONS_TRANSIT_ROUNDED = 0x1081A + DIRECTIONS_TRANSIT_SHARP = 0x1081B + DIRECTIONS_WALK = 0x1081C + DIRECTIONS_WALK_OUTLINED = 0x1081D + DIRECTIONS_WALK_ROUNDED = 0x1081E + DIRECTIONS_WALK_SHARP = 0x1081F + DIRTY_LENS = 0x10820 + DIRTY_LENS_OUTLINED = 0x10821 + DIRTY_LENS_ROUNDED = 0x10822 + DIRTY_LENS_SHARP = 0x10823 + DISABLED_BY_DEFAULT = 0x10824 + DISABLED_BY_DEFAULT_OUTLINED = 0x10825 + DISABLED_BY_DEFAULT_ROUNDED = 0x10826 + DISABLED_BY_DEFAULT_SHARP = 0x10827 + DISABLED_VISIBLE = 0x10828 + DISABLED_VISIBLE_OUTLINED = 0x10829 + DISABLED_VISIBLE_ROUNDED = 0x1082A + DISABLED_VISIBLE_SHARP = 0x1082B + DISC_FULL = 0x1082C + DISC_FULL_OUTLINED = 0x1082D + DISC_FULL_ROUNDED = 0x1082E + DISC_FULL_SHARP = 0x1082F + DISCORD = 0x10830 + DISCORD_OUTLINED = 0x10831 + DISCORD_ROUNDED = 0x10832 + DISCORD_SHARP = 0x10833 + DISCOUNT = 0x10834 + DISCOUNT_OUTLINED = 0x10835 + DISCOUNT_ROUNDED = 0x10836 + DISCOUNT_SHARP = 0x10837 + DISPLAY_SETTINGS = 0x10838 + DISPLAY_SETTINGS_OUTLINED = 0x10839 + DISPLAY_SETTINGS_ROUNDED = 0x1083A + DISPLAY_SETTINGS_SHARP = 0x1083B + DIVERSITY_1 = 0x1083C + DIVERSITY_1_OUTLINED = 0x1083D + DIVERSITY_1_ROUNDED = 0x1083E + DIVERSITY_1_SHARP = 0x1083F + DIVERSITY_2 = 0x10840 + DIVERSITY_2_OUTLINED = 0x10841 + DIVERSITY_2_ROUNDED = 0x10842 + DIVERSITY_2_SHARP = 0x10843 + DIVERSITY_3 = 0x10844 + DIVERSITY_3_OUTLINED = 0x10845 + DIVERSITY_3_ROUNDED = 0x10846 + DIVERSITY_3_SHARP = 0x10847 + DND_FORWARDSLASH = 0x10848 + DND_FORWARDSLASH_OUTLINED = 0x10849 + DND_FORWARDSLASH_ROUNDED = 0x1084A + DND_FORWARDSLASH_SHARP = 0x1084B + DNS = 0x1084C + DNS_OUTLINED = 0x1084D + DNS_ROUNDED = 0x1084E + DNS_SHARP = 0x1084F + DO_DISTURB = 0x10850 + DO_DISTURB_ALT = 0x10851 + DO_DISTURB_ALT_OUTLINED = 0x10852 + DO_DISTURB_ALT_ROUNDED = 0x10853 + DO_DISTURB_ALT_SHARP = 0x10854 + DO_DISTURB_OFF = 0x10855 + DO_DISTURB_OFF_OUTLINED = 0x10856 + DO_DISTURB_OFF_ROUNDED = 0x10857 + DO_DISTURB_OFF_SHARP = 0x10858 + DO_DISTURB_ON = 0x10859 + DO_DISTURB_ON_OUTLINED = 0x1085A + DO_DISTURB_ON_ROUNDED = 0x1085B + DO_DISTURB_ON_SHARP = 0x1085C + DO_DISTURB_OUTLINED = 0x1085D + DO_DISTURB_ROUNDED = 0x1085E + DO_DISTURB_SHARP = 0x1085F + DO_NOT_DISTURB = 0x10860 + DO_NOT_DISTURB_ALT = 0x10861 + DO_NOT_DISTURB_ALT_OUTLINED = 0x10862 + DO_NOT_DISTURB_ALT_ROUNDED = 0x10863 + DO_NOT_DISTURB_ALT_SHARP = 0x10864 + DO_NOT_DISTURB_OFF = 0x10865 + DO_NOT_DISTURB_OFF_OUTLINED = 0x10866 + DO_NOT_DISTURB_OFF_ROUNDED = 0x10867 + DO_NOT_DISTURB_OFF_SHARP = 0x10868 + DO_NOT_DISTURB_ON = 0x10869 + DO_NOT_DISTURB_ON_OUTLINED = 0x1086A + DO_NOT_DISTURB_ON_ROUNDED = 0x1086B + DO_NOT_DISTURB_ON_SHARP = 0x1086C + DO_NOT_DISTURB_ON_TOTAL_SILENCE = 0x1086D + DO_NOT_DISTURB_ON_TOTAL_SILENCE_OUTLINED = 0x1086E + DO_NOT_DISTURB_ON_TOTAL_SILENCE_ROUNDED = 0x1086F + DO_NOT_DISTURB_ON_TOTAL_SILENCE_SHARP = 0x10870 + DO_NOT_DISTURB_OUTLINED = 0x10871 + DO_NOT_DISTURB_ROUNDED = 0x10872 + DO_NOT_DISTURB_SHARP = 0x10873 + DO_NOT_STEP = 0x10874 + DO_NOT_STEP_OUTLINED = 0x10875 + DO_NOT_STEP_ROUNDED = 0x10876 + DO_NOT_STEP_SHARP = 0x10877 + DO_NOT_TOUCH = 0x10878 + DO_NOT_TOUCH_OUTLINED = 0x10879 + DO_NOT_TOUCH_ROUNDED = 0x1087A + DO_NOT_TOUCH_SHARP = 0x1087B + DOCK = 0x1087C + DOCK_OUTLINED = 0x1087D + DOCK_ROUNDED = 0x1087E + DOCK_SHARP = 0x1087F + DOCUMENT_SCANNER = 0x10880 + DOCUMENT_SCANNER_OUTLINED = 0x10881 + DOCUMENT_SCANNER_ROUNDED = 0x10882 + DOCUMENT_SCANNER_SHARP = 0x10883 + DOMAIN = 0x10884 + DOMAIN_ADD = 0x10885 + DOMAIN_ADD_OUTLINED = 0x10886 + DOMAIN_ADD_ROUNDED = 0x10887 + DOMAIN_ADD_SHARP = 0x10888 + DOMAIN_DISABLED = 0x10889 + DOMAIN_DISABLED_OUTLINED = 0x1088A + DOMAIN_DISABLED_ROUNDED = 0x1088B + DOMAIN_DISABLED_SHARP = 0x1088C + DOMAIN_OUTLINED = 0x1088D + DOMAIN_ROUNDED = 0x1088E + DOMAIN_SHARP = 0x1088F + DOMAIN_VERIFICATION = 0x10890 + DOMAIN_VERIFICATION_OUTLINED = 0x10891 + DOMAIN_VERIFICATION_ROUNDED = 0x10892 + DOMAIN_VERIFICATION_SHARP = 0x10893 + DONE = 0x10894 + DONE_ALL = 0x10895 + DONE_ALL_OUTLINED = 0x10896 + DONE_ALL_ROUNDED = 0x10897 + DONE_ALL_SHARP = 0x10898 + DONE_OUTLINE = 0x10899 + DONE_OUTLINE_OUTLINED = 0x1089A + DONE_OUTLINE_ROUNDED = 0x1089B + DONE_OUTLINE_SHARP = 0x1089C + DONE_OUTLINED = 0x1089D + DONE_ROUNDED = 0x1089E + DONE_SHARP = 0x1089F + DONUT_LARGE = 0x108A0 + DONUT_LARGE_OUTLINED = 0x108A1 + DONUT_LARGE_ROUNDED = 0x108A2 + DONUT_LARGE_SHARP = 0x108A3 + DONUT_SMALL = 0x108A4 + DONUT_SMALL_OUTLINED = 0x108A5 + DONUT_SMALL_ROUNDED = 0x108A6 + DONUT_SMALL_SHARP = 0x108A7 + DOOR_BACK_DOOR = 0x108A8 + DOOR_BACK_DOOR_OUTLINED = 0x108A9 + DOOR_BACK_DOOR_ROUNDED = 0x108AA + DOOR_BACK_DOOR_SHARP = 0x108AB + DOOR_FRONT_DOOR = 0x108AC + DOOR_FRONT_DOOR_OUTLINED = 0x108AD + DOOR_FRONT_DOOR_ROUNDED = 0x108AE + DOOR_FRONT_DOOR_SHARP = 0x108AF + DOOR_SLIDING = 0x108B0 + DOOR_SLIDING_OUTLINED = 0x108B1 + DOOR_SLIDING_ROUNDED = 0x108B2 + DOOR_SLIDING_SHARP = 0x108B3 + DOORBELL = 0x108B4 + DOORBELL_OUTLINED = 0x108B5 + DOORBELL_ROUNDED = 0x108B6 + DOORBELL_SHARP = 0x108B7 + DOUBLE_ARROW = 0x108B8 + DOUBLE_ARROW_OUTLINED = 0x108B9 + DOUBLE_ARROW_ROUNDED = 0x108BA + DOUBLE_ARROW_SHARP = 0x108BB + DOWNHILL_SKIING = 0x108BC + DOWNHILL_SKIING_OUTLINED = 0x108BD + DOWNHILL_SKIING_ROUNDED = 0x108BE + DOWNHILL_SKIING_SHARP = 0x108BF + DOWNLOAD = 0x108C0 + DOWNLOAD_DONE = 0x108C1 + DOWNLOAD_DONE_OUTLINED = 0x108C2 + DOWNLOAD_DONE_ROUNDED = 0x108C3 + DOWNLOAD_DONE_SHARP = 0x108C4 + DOWNLOAD_FOR_OFFLINE = 0x108C5 + DOWNLOAD_FOR_OFFLINE_OUTLINED = 0x108C6 + DOWNLOAD_FOR_OFFLINE_ROUNDED = 0x108C7 + DOWNLOAD_FOR_OFFLINE_SHARP = 0x108C8 + DOWNLOAD_OUTLINED = 0x108C9 + DOWNLOAD_ROUNDED = 0x108CA + DOWNLOAD_SHARP = 0x108CB + DOWNLOADING = 0x108CC + DOWNLOADING_OUTLINED = 0x108CD + DOWNLOADING_ROUNDED = 0x108CE + DOWNLOADING_SHARP = 0x108CF + DRAFTS = 0x108D0 + DRAFTS_OUTLINED = 0x108D1 + DRAFTS_ROUNDED = 0x108D2 + DRAFTS_SHARP = 0x108D3 + DRAG_HANDLE = 0x108D4 + DRAG_HANDLE_OUTLINED = 0x108D5 + DRAG_HANDLE_ROUNDED = 0x108D6 + DRAG_HANDLE_SHARP = 0x108D7 + DRAG_INDICATOR = 0x108D8 + DRAG_INDICATOR_OUTLINED = 0x108D9 + DRAG_INDICATOR_ROUNDED = 0x108DA + DRAG_INDICATOR_SHARP = 0x108DB + DRAW = 0x108DC + DRAW_OUTLINED = 0x108DD + DRAW_ROUNDED = 0x108DE + DRAW_SHARP = 0x108DF + DRIVE_ETA = 0x108E0 + DRIVE_ETA_OUTLINED = 0x108E1 + DRIVE_ETA_ROUNDED = 0x108E2 + DRIVE_ETA_SHARP = 0x108E3 + DRIVE_FILE_MOVE = 0x108E4 + DRIVE_FILE_MOVE_OUTLINE = 0x108E5 + DRIVE_FILE_MOVE_OUTLINED = 0x108E6 + DRIVE_FILE_MOVE_ROUNDED = 0x108E7 + DRIVE_FILE_MOVE_RTL = 0x108E8 + DRIVE_FILE_MOVE_RTL_OUTLINED = 0x108E9 + DRIVE_FILE_MOVE_RTL_ROUNDED = 0x108EA + DRIVE_FILE_MOVE_RTL_SHARP = 0x108EB + DRIVE_FILE_MOVE_SHARP = 0x108EC + DRIVE_FILE_RENAME_OUTLINE = 0x108ED + DRIVE_FILE_RENAME_OUTLINE_OUTLINED = 0x108EE + DRIVE_FILE_RENAME_OUTLINE_ROUNDED = 0x108EF + DRIVE_FILE_RENAME_OUTLINE_SHARP = 0x108F0 + DRIVE_FOLDER_UPLOAD = 0x108F1 + DRIVE_FOLDER_UPLOAD_OUTLINED = 0x108F2 + DRIVE_FOLDER_UPLOAD_ROUNDED = 0x108F3 + DRIVE_FOLDER_UPLOAD_SHARP = 0x108F4 + DRY = 0x108F5 + DRY_CLEANING = 0x108F6 + DRY_CLEANING_OUTLINED = 0x108F7 + DRY_CLEANING_ROUNDED = 0x108F8 + DRY_CLEANING_SHARP = 0x108F9 + DRY_OUTLINED = 0x108FA + DRY_ROUNDED = 0x108FB + DRY_SHARP = 0x108FC + DUO = 0x108FD + DUO_OUTLINED = 0x108FE + DUO_ROUNDED = 0x108FF + DUO_SHARP = 0x10900 + DVR = 0x10901 + DVR_OUTLINED = 0x10902 + DVR_ROUNDED = 0x10903 + DVR_SHARP = 0x10904 + DYNAMIC_FEED = 0x10905 + DYNAMIC_FEED_OUTLINED = 0x10906 + DYNAMIC_FEED_ROUNDED = 0x10907 + DYNAMIC_FEED_SHARP = 0x10908 + DYNAMIC_FORM = 0x10909 + DYNAMIC_FORM_OUTLINED = 0x1090A + DYNAMIC_FORM_ROUNDED = 0x1090B + DYNAMIC_FORM_SHARP = 0x1090C + E_MOBILEDATA = 0x1090D + E_MOBILEDATA_OUTLINED = 0x1090E + E_MOBILEDATA_ROUNDED = 0x1090F + E_MOBILEDATA_SHARP = 0x10910 + EARBUDS = 0x10911 + EARBUDS_BATTERY = 0x10912 + EARBUDS_BATTERY_OUTLINED = 0x10913 + EARBUDS_BATTERY_ROUNDED = 0x10914 + EARBUDS_BATTERY_SHARP = 0x10915 + EARBUDS_OUTLINED = 0x10916 + EARBUDS_ROUNDED = 0x10917 + EARBUDS_SHARP = 0x10918 + EAST = 0x10919 + EAST_OUTLINED = 0x1091A + EAST_ROUNDED = 0x1091B + EAST_SHARP = 0x1091C + ECO = 0x1091D + ECO_OUTLINED = 0x1091E + ECO_ROUNDED = 0x1091F + ECO_SHARP = 0x10920 + EDGESENSOR_HIGH = 0x10921 + EDGESENSOR_HIGH_OUTLINED = 0x10922 + EDGESENSOR_HIGH_ROUNDED = 0x10923 + EDGESENSOR_HIGH_SHARP = 0x10924 + EDGESENSOR_LOW = 0x10925 + EDGESENSOR_LOW_OUTLINED = 0x10926 + EDGESENSOR_LOW_ROUNDED = 0x10927 + EDGESENSOR_LOW_SHARP = 0x10928 + EDIT = 0x10929 + EDIT_ATTRIBUTES = 0x1092A + EDIT_ATTRIBUTES_OUTLINED = 0x1092B + EDIT_ATTRIBUTES_ROUNDED = 0x1092C + EDIT_ATTRIBUTES_SHARP = 0x1092D + EDIT_CALENDAR = 0x1092E + EDIT_CALENDAR_OUTLINED = 0x1092F + EDIT_CALENDAR_ROUNDED = 0x10930 + EDIT_CALENDAR_SHARP = 0x10931 + EDIT_DOCUMENT = 0x10932 + EDIT_LOCATION = 0x10933 + EDIT_LOCATION_ALT = 0x10934 + EDIT_LOCATION_ALT_OUTLINED = 0x10935 + EDIT_LOCATION_ALT_ROUNDED = 0x10936 + EDIT_LOCATION_ALT_SHARP = 0x10937 + EDIT_LOCATION_OUTLINED = 0x10938 + EDIT_LOCATION_ROUNDED = 0x10939 + EDIT_LOCATION_SHARP = 0x1093A + EDIT_NOTE = 0x1093B + EDIT_NOTE_OUTLINED = 0x1093C + EDIT_NOTE_ROUNDED = 0x1093D + EDIT_NOTE_SHARP = 0x1093E + EDIT_NOTIFICATIONS = 0x1093F + EDIT_NOTIFICATIONS_OUTLINED = 0x10940 + EDIT_NOTIFICATIONS_ROUNDED = 0x10941 + EDIT_NOTIFICATIONS_SHARP = 0x10942 + EDIT_OFF = 0x10943 + EDIT_OFF_OUTLINED = 0x10944 + EDIT_OFF_ROUNDED = 0x10945 + EDIT_OFF_SHARP = 0x10946 + EDIT_OUTLINED = 0x10947 + EDIT_ROAD = 0x10948 + EDIT_ROAD_OUTLINED = 0x10949 + EDIT_ROAD_ROUNDED = 0x1094A + EDIT_ROAD_SHARP = 0x1094B + EDIT_ROUNDED = 0x1094C + EDIT_SHARP = 0x1094D + EDIT_SQUARE = 0x1094E + EGG = 0x1094F + EGG_ALT = 0x10950 + EGG_ALT_OUTLINED = 0x10951 + EGG_ALT_ROUNDED = 0x10952 + EGG_ALT_SHARP = 0x10953 + EGG_OUTLINED = 0x10954 + EGG_ROUNDED = 0x10955 + EGG_SHARP = 0x10956 + EIGHT_K = 0x10957 + EIGHT_K_OUTLINED = 0x10958 + EIGHT_K_PLUS = 0x10959 + EIGHT_K_PLUS_OUTLINED = 0x1095A + EIGHT_K_PLUS_ROUNDED = 0x1095B + EIGHT_K_PLUS_SHARP = 0x1095C + EIGHT_K_ROUNDED = 0x1095D + EIGHT_K_SHARP = 0x1095E + EIGHT_MP = 0x1095F + EIGHT_MP_OUTLINED = 0x10960 + EIGHT_MP_ROUNDED = 0x10961 + EIGHT_MP_SHARP = 0x10962 + EIGHTEEN_MP = 0x10963 + EIGHTEEN_MP_OUTLINED = 0x10964 + EIGHTEEN_MP_ROUNDED = 0x10965 + EIGHTEEN_MP_SHARP = 0x10966 + EIGHTEEN_UP_RATING = 0x10967 + EIGHTEEN_UP_RATING_OUTLINED = 0x10968 + EIGHTEEN_UP_RATING_ROUNDED = 0x10969 + EIGHTEEN_UP_RATING_SHARP = 0x1096A + EJECT = 0x1096B + EJECT_OUTLINED = 0x1096C + EJECT_ROUNDED = 0x1096D + EJECT_SHARP = 0x1096E + ELDERLY = 0x1096F + ELDERLY_OUTLINED = 0x10970 + ELDERLY_ROUNDED = 0x10971 + ELDERLY_SHARP = 0x10972 + ELDERLY_WOMAN = 0x10973 + ELDERLY_WOMAN_OUTLINED = 0x10974 + ELDERLY_WOMAN_ROUNDED = 0x10975 + ELDERLY_WOMAN_SHARP = 0x10976 + ELECTRIC_BIKE = 0x10977 + ELECTRIC_BIKE_OUTLINED = 0x10978 + ELECTRIC_BIKE_ROUNDED = 0x10979 + ELECTRIC_BIKE_SHARP = 0x1097A + ELECTRIC_BOLT = 0x1097B + ELECTRIC_BOLT_OUTLINED = 0x1097C + ELECTRIC_BOLT_ROUNDED = 0x1097D + ELECTRIC_BOLT_SHARP = 0x1097E + ELECTRIC_CAR = 0x1097F + ELECTRIC_CAR_OUTLINED = 0x10980 + ELECTRIC_CAR_ROUNDED = 0x10981 + ELECTRIC_CAR_SHARP = 0x10982 + ELECTRIC_METER = 0x10983 + ELECTRIC_METER_OUTLINED = 0x10984 + ELECTRIC_METER_ROUNDED = 0x10985 + ELECTRIC_METER_SHARP = 0x10986 + ELECTRIC_MOPED = 0x10987 + ELECTRIC_MOPED_OUTLINED = 0x10988 + ELECTRIC_MOPED_ROUNDED = 0x10989 + ELECTRIC_MOPED_SHARP = 0x1098A + ELECTRIC_RICKSHAW = 0x1098B + ELECTRIC_RICKSHAW_OUTLINED = 0x1098C + ELECTRIC_RICKSHAW_ROUNDED = 0x1098D + ELECTRIC_RICKSHAW_SHARP = 0x1098E + ELECTRIC_SCOOTER = 0x1098F + ELECTRIC_SCOOTER_OUTLINED = 0x10990 + ELECTRIC_SCOOTER_ROUNDED = 0x10991 + ELECTRIC_SCOOTER_SHARP = 0x10992 + ELECTRICAL_SERVICES = 0x10993 + ELECTRICAL_SERVICES_OUTLINED = 0x10994 + ELECTRICAL_SERVICES_ROUNDED = 0x10995 + ELECTRICAL_SERVICES_SHARP = 0x10996 + ELEVATOR = 0x10997 + ELEVATOR_OUTLINED = 0x10998 + ELEVATOR_ROUNDED = 0x10999 + ELEVATOR_SHARP = 0x1099A + ELEVEN_MP = 0x1099B + ELEVEN_MP_OUTLINED = 0x1099C + ELEVEN_MP_ROUNDED = 0x1099D + ELEVEN_MP_SHARP = 0x1099E + EMAIL = 0x1099F + EMAIL_OUTLINED = 0x109A0 + EMAIL_ROUNDED = 0x109A1 + EMAIL_SHARP = 0x109A2 + EMERGENCY = 0x109A3 + EMERGENCY_OUTLINED = 0x109A4 + EMERGENCY_RECORDING = 0x109A5 + EMERGENCY_RECORDING_OUTLINED = 0x109A6 + EMERGENCY_RECORDING_ROUNDED = 0x109A7 + EMERGENCY_RECORDING_SHARP = 0x109A8 + EMERGENCY_ROUNDED = 0x109A9 + EMERGENCY_SHARE = 0x109AA + EMERGENCY_SHARE_OUTLINED = 0x109AB + EMERGENCY_SHARE_ROUNDED = 0x109AC + EMERGENCY_SHARE_SHARP = 0x109AD + EMERGENCY_SHARP = 0x109AE + EMOJI_EMOTIONS = 0x109AF + EMOJI_EMOTIONS_OUTLINED = 0x109B0 + EMOJI_EMOTIONS_ROUNDED = 0x109B1 + EMOJI_EMOTIONS_SHARP = 0x109B2 + EMOJI_EVENTS = 0x109B3 + EMOJI_EVENTS_OUTLINED = 0x109B4 + EMOJI_EVENTS_ROUNDED = 0x109B5 + EMOJI_EVENTS_SHARP = 0x109B6 + EMOJI_FLAGS = 0x109B7 + EMOJI_FLAGS_OUTLINED = 0x109B8 + EMOJI_FLAGS_ROUNDED = 0x109B9 + EMOJI_FLAGS_SHARP = 0x109BA + EMOJI_FOOD_BEVERAGE = 0x109BB + EMOJI_FOOD_BEVERAGE_OUTLINED = 0x109BC + EMOJI_FOOD_BEVERAGE_ROUNDED = 0x109BD + EMOJI_FOOD_BEVERAGE_SHARP = 0x109BE + EMOJI_NATURE = 0x109BF + EMOJI_NATURE_OUTLINED = 0x109C0 + EMOJI_NATURE_ROUNDED = 0x109C1 + EMOJI_NATURE_SHARP = 0x109C2 + EMOJI_OBJECTS = 0x109C3 + EMOJI_OBJECTS_OUTLINED = 0x109C4 + EMOJI_OBJECTS_ROUNDED = 0x109C5 + EMOJI_OBJECTS_SHARP = 0x109C6 + EMOJI_PEOPLE = 0x109C7 + EMOJI_PEOPLE_OUTLINED = 0x109C8 + EMOJI_PEOPLE_ROUNDED = 0x109C9 + EMOJI_PEOPLE_SHARP = 0x109CA + EMOJI_SYMBOLS = 0x109CB + EMOJI_SYMBOLS_OUTLINED = 0x109CC + EMOJI_SYMBOLS_ROUNDED = 0x109CD + EMOJI_SYMBOLS_SHARP = 0x109CE + EMOJI_TRANSPORTATION = 0x109CF + EMOJI_TRANSPORTATION_OUTLINED = 0x109D0 + EMOJI_TRANSPORTATION_ROUNDED = 0x109D1 + EMOJI_TRANSPORTATION_SHARP = 0x109D2 + ENERGY_SAVINGS_LEAF = 0x109D3 + ENERGY_SAVINGS_LEAF_OUTLINED = 0x109D4 + ENERGY_SAVINGS_LEAF_ROUNDED = 0x109D5 + ENERGY_SAVINGS_LEAF_SHARP = 0x109D6 + ENGINEERING = 0x109D7 + ENGINEERING_OUTLINED = 0x109D8 + ENGINEERING_ROUNDED = 0x109D9 + ENGINEERING_SHARP = 0x109DA + ENHANCE_PHOTO_TRANSLATE = 0x109DB + ENHANCE_PHOTO_TRANSLATE_OUTLINED = 0x109DC + ENHANCE_PHOTO_TRANSLATE_ROUNDED = 0x109DD + ENHANCE_PHOTO_TRANSLATE_SHARP = 0x109DE + ENHANCED_ENCRYPTION = 0x109DF + ENHANCED_ENCRYPTION_OUTLINED = 0x109E0 + ENHANCED_ENCRYPTION_ROUNDED = 0x109E1 + ENHANCED_ENCRYPTION_SHARP = 0x109E2 + EQUALIZER = 0x109E3 + EQUALIZER_OUTLINED = 0x109E4 + EQUALIZER_ROUNDED = 0x109E5 + EQUALIZER_SHARP = 0x109E6 + ERROR = 0x109E7 + ERROR_OUTLINE = 0x109E8 + ERROR_OUTLINE_OUTLINED = 0x109E9 + ERROR_OUTLINE_ROUNDED = 0x109EA + ERROR_OUTLINE_SHARP = 0x109EB + ERROR_OUTLINED = 0x109EC + ERROR_ROUNDED = 0x109ED + ERROR_SHARP = 0x109EE + ESCALATOR = 0x109EF + ESCALATOR_OUTLINED = 0x109F0 + ESCALATOR_ROUNDED = 0x109F1 + ESCALATOR_SHARP = 0x109F2 + ESCALATOR_WARNING = 0x109F3 + ESCALATOR_WARNING_OUTLINED = 0x109F4 + ESCALATOR_WARNING_ROUNDED = 0x109F5 + ESCALATOR_WARNING_SHARP = 0x109F6 + EURO = 0x109F7 + EURO_OUTLINED = 0x109F8 + EURO_ROUNDED = 0x109F9 + EURO_SHARP = 0x109FA + EURO_SYMBOL = 0x109FB + EURO_SYMBOL_OUTLINED = 0x109FC + EURO_SYMBOL_ROUNDED = 0x109FD + EURO_SYMBOL_SHARP = 0x109FE + EV_STATION = 0x109FF + EV_STATION_OUTLINED = 0x10A00 + EV_STATION_ROUNDED = 0x10A01 + EV_STATION_SHARP = 0x10A02 + EVENT = 0x10A03 + EVENT_AVAILABLE = 0x10A04 + EVENT_AVAILABLE_OUTLINED = 0x10A05 + EVENT_AVAILABLE_ROUNDED = 0x10A06 + EVENT_AVAILABLE_SHARP = 0x10A07 + EVENT_BUSY = 0x10A08 + EVENT_BUSY_OUTLINED = 0x10A09 + EVENT_BUSY_ROUNDED = 0x10A0A + EVENT_BUSY_SHARP = 0x10A0B + EVENT_NOTE = 0x10A0C + EVENT_NOTE_OUTLINED = 0x10A0D + EVENT_NOTE_ROUNDED = 0x10A0E + EVENT_NOTE_SHARP = 0x10A0F + EVENT_OUTLINED = 0x10A10 + EVENT_REPEAT = 0x10A11 + EVENT_REPEAT_OUTLINED = 0x10A12 + EVENT_REPEAT_ROUNDED = 0x10A13 + EVENT_REPEAT_SHARP = 0x10A14 + EVENT_ROUNDED = 0x10A15 + EVENT_SEAT = 0x10A16 + EVENT_SEAT_OUTLINED = 0x10A17 + EVENT_SEAT_ROUNDED = 0x10A18 + EVENT_SEAT_SHARP = 0x10A19 + EVENT_SHARP = 0x10A1A + EXIT_TO_APP = 0x10A1B + EXIT_TO_APP_OUTLINED = 0x10A1C + EXIT_TO_APP_ROUNDED = 0x10A1D + EXIT_TO_APP_SHARP = 0x10A1E + EXPAND = 0x10A1F + EXPAND_CIRCLE_DOWN = 0x10A20 + EXPAND_CIRCLE_DOWN_OUTLINED = 0x10A21 + EXPAND_CIRCLE_DOWN_ROUNDED = 0x10A22 + EXPAND_CIRCLE_DOWN_SHARP = 0x10A23 + EXPAND_LESS = 0x10A24 + EXPAND_LESS_OUTLINED = 0x10A25 + EXPAND_LESS_ROUNDED = 0x10A26 + EXPAND_LESS_SHARP = 0x10A27 + EXPAND_MORE = 0x10A28 + EXPAND_MORE_OUTLINED = 0x10A29 + EXPAND_MORE_ROUNDED = 0x10A2A + EXPAND_MORE_SHARP = 0x10A2B + EXPAND_OUTLINED = 0x10A2C + EXPAND_ROUNDED = 0x10A2D + EXPAND_SHARP = 0x10A2E + EXPLICIT = 0x10A2F + EXPLICIT_OUTLINED = 0x10A30 + EXPLICIT_ROUNDED = 0x10A31 + EXPLICIT_SHARP = 0x10A32 + EXPLORE = 0x10A33 + EXPLORE_OFF = 0x10A34 + EXPLORE_OFF_OUTLINED = 0x10A35 + EXPLORE_OFF_ROUNDED = 0x10A36 + EXPLORE_OFF_SHARP = 0x10A37 + EXPLORE_OUTLINED = 0x10A38 + EXPLORE_ROUNDED = 0x10A39 + EXPLORE_SHARP = 0x10A3A + EXPOSURE = 0x10A3B + EXPOSURE_MINUS_1 = 0x10A3C + EXPOSURE_MINUS_1_OUTLINED = 0x10A3D + EXPOSURE_MINUS_1_ROUNDED = 0x10A3E + EXPOSURE_MINUS_1_SHARP = 0x10A3F + EXPOSURE_MINUS_2 = 0x10A40 + EXPOSURE_MINUS_2_OUTLINED = 0x10A41 + EXPOSURE_MINUS_2_ROUNDED = 0x10A42 + EXPOSURE_MINUS_2_SHARP = 0x10A43 + EXPOSURE_NEG_1 = 0x10A44 + EXPOSURE_NEG_1_OUTLINED = 0x10A45 + EXPOSURE_NEG_1_ROUNDED = 0x10A46 + EXPOSURE_NEG_1_SHARP = 0x10A47 + EXPOSURE_NEG_2 = 0x10A48 + EXPOSURE_NEG_2_OUTLINED = 0x10A49 + EXPOSURE_NEG_2_ROUNDED = 0x10A4A + EXPOSURE_NEG_2_SHARP = 0x10A4B + EXPOSURE_OUTLINED = 0x10A4C + EXPOSURE_PLUS_1 = 0x10A4D + EXPOSURE_PLUS_1_OUTLINED = 0x10A4E + EXPOSURE_PLUS_1_ROUNDED = 0x10A4F + EXPOSURE_PLUS_1_SHARP = 0x10A50 + EXPOSURE_PLUS_2 = 0x10A51 + EXPOSURE_PLUS_2_OUTLINED = 0x10A52 + EXPOSURE_PLUS_2_ROUNDED = 0x10A53 + EXPOSURE_PLUS_2_SHARP = 0x10A54 + EXPOSURE_ROUNDED = 0x10A55 + EXPOSURE_SHARP = 0x10A56 + EXPOSURE_ZERO = 0x10A57 + EXPOSURE_ZERO_OUTLINED = 0x10A58 + EXPOSURE_ZERO_ROUNDED = 0x10A59 + EXPOSURE_ZERO_SHARP = 0x10A5A + EXTENSION = 0x10A5B + EXTENSION_OFF = 0x10A5C + EXTENSION_OFF_OUTLINED = 0x10A5D + EXTENSION_OFF_ROUNDED = 0x10A5E + EXTENSION_OFF_SHARP = 0x10A5F + EXTENSION_OUTLINED = 0x10A60 + EXTENSION_ROUNDED = 0x10A61 + EXTENSION_SHARP = 0x10A62 + FACE = 0x10A63 + FACE_2 = 0x10A64 + FACE_2_OUTLINED = 0x10A65 + FACE_2_ROUNDED = 0x10A66 + FACE_2_SHARP = 0x10A67 + FACE_3 = 0x10A68 + FACE_3_OUTLINED = 0x10A69 + FACE_3_ROUNDED = 0x10A6A + FACE_3_SHARP = 0x10A6B + FACE_4 = 0x10A6C + FACE_4_OUTLINED = 0x10A6D + FACE_4_ROUNDED = 0x10A6E + FACE_4_SHARP = 0x10A6F + FACE_5 = 0x10A70 + FACE_5_OUTLINED = 0x10A71 + FACE_5_ROUNDED = 0x10A72 + FACE_5_SHARP = 0x10A73 + FACE_6 = 0x10A74 + FACE_6_OUTLINED = 0x10A75 + FACE_6_ROUNDED = 0x10A76 + FACE_6_SHARP = 0x10A77 + FACE_OUTLINED = 0x10A78 + FACE_RETOUCHING_NATURAL = 0x10A79 + FACE_RETOUCHING_NATURAL_OUTLINED = 0x10A7A + FACE_RETOUCHING_NATURAL_ROUNDED = 0x10A7B + FACE_RETOUCHING_NATURAL_SHARP = 0x10A7C + FACE_RETOUCHING_OFF = 0x10A7D + FACE_RETOUCHING_OFF_OUTLINED = 0x10A7E + FACE_RETOUCHING_OFF_ROUNDED = 0x10A7F + FACE_RETOUCHING_OFF_SHARP = 0x10A80 + FACE_ROUNDED = 0x10A81 + FACE_SHARP = 0x10A82 + FACE_UNLOCK_OUTLINED = 0x10A83 + FACE_UNLOCK_ROUNDED = 0x10A84 + FACE_UNLOCK_SHARP = 0x10A85 + FACEBOOK = 0x10A86 + FACEBOOK_OUTLINED = 0x10A87 + FACEBOOK_ROUNDED = 0x10A88 + FACEBOOK_SHARP = 0x10A89 + FACT_CHECK = 0x10A8A + FACT_CHECK_OUTLINED = 0x10A8B + FACT_CHECK_ROUNDED = 0x10A8C + FACT_CHECK_SHARP = 0x10A8D + FACTORY = 0x10A8E + FACTORY_OUTLINED = 0x10A8F + FACTORY_ROUNDED = 0x10A90 + FACTORY_SHARP = 0x10A91 + FAMILY_RESTROOM = 0x10A92 + FAMILY_RESTROOM_OUTLINED = 0x10A93 + FAMILY_RESTROOM_ROUNDED = 0x10A94 + FAMILY_RESTROOM_SHARP = 0x10A95 + FAST_FORWARD = 0x10A96 + FAST_FORWARD_OUTLINED = 0x10A97 + FAST_FORWARD_ROUNDED = 0x10A98 + FAST_FORWARD_SHARP = 0x10A99 + FAST_REWIND = 0x10A9A + FAST_REWIND_OUTLINED = 0x10A9B + FAST_REWIND_ROUNDED = 0x10A9C + FAST_REWIND_SHARP = 0x10A9D + FASTFOOD = 0x10A9E + FASTFOOD_OUTLINED = 0x10A9F + FASTFOOD_ROUNDED = 0x10AA0 + FASTFOOD_SHARP = 0x10AA1 + FAVORITE = 0x10AA2 + FAVORITE_BORDER = 0x10AA3 + FAVORITE_BORDER_OUTLINED = 0x10AA4 + FAVORITE_BORDER_ROUNDED = 0x10AA5 + FAVORITE_BORDER_SHARP = 0x10AA6 + FAVORITE_OUTLINE = 0x10AA7 + FAVORITE_OUTLINE_OUTLINED = 0x10AA8 + FAVORITE_OUTLINE_ROUNDED = 0x10AA9 + FAVORITE_OUTLINE_SHARP = 0x10AAA + FAVORITE_OUTLINED = 0x10AAB + FAVORITE_ROUNDED = 0x10AAC + FAVORITE_SHARP = 0x10AAD + FAX = 0x10AAE + FAX_OUTLINED = 0x10AAF + FAX_ROUNDED = 0x10AB0 + FAX_SHARP = 0x10AB1 + FEATURED_PLAY_LIST = 0x10AB2 + FEATURED_PLAY_LIST_OUTLINED = 0x10AB3 + FEATURED_PLAY_LIST_ROUNDED = 0x10AB4 + FEATURED_PLAY_LIST_SHARP = 0x10AB5 + FEATURED_VIDEO = 0x10AB6 + FEATURED_VIDEO_OUTLINED = 0x10AB7 + FEATURED_VIDEO_ROUNDED = 0x10AB8 + FEATURED_VIDEO_SHARP = 0x10AB9 + FEED = 0x10ABA + FEED_OUTLINED = 0x10ABB + FEED_ROUNDED = 0x10ABC + FEED_SHARP = 0x10ABD + FEEDBACK = 0x10ABE + FEEDBACK_OUTLINED = 0x10ABF + FEEDBACK_ROUNDED = 0x10AC0 + FEEDBACK_SHARP = 0x10AC1 + FEMALE = 0x10AC2 + FEMALE_OUTLINED = 0x10AC3 + FEMALE_ROUNDED = 0x10AC4 + FEMALE_SHARP = 0x10AC5 + FENCE = 0x10AC6 + FENCE_OUTLINED = 0x10AC7 + FENCE_ROUNDED = 0x10AC8 + FENCE_SHARP = 0x10AC9 + FESTIVAL = 0x10ACA + FESTIVAL_OUTLINED = 0x10ACB + FESTIVAL_ROUNDED = 0x10ACC + FESTIVAL_SHARP = 0x10ACD + FIBER_DVR = 0x10ACE + FIBER_DVR_OUTLINED = 0x10ACF + FIBER_DVR_ROUNDED = 0x10AD0 + FIBER_DVR_SHARP = 0x10AD1 + FIBER_MANUAL_RECORD = 0x10AD2 + FIBER_MANUAL_RECORD_OUTLINED = 0x10AD3 + FIBER_MANUAL_RECORD_ROUNDED = 0x10AD4 + FIBER_MANUAL_RECORD_SHARP = 0x10AD5 + FIBER_NEW = 0x10AD6 + FIBER_NEW_OUTLINED = 0x10AD7 + FIBER_NEW_ROUNDED = 0x10AD8 + FIBER_NEW_SHARP = 0x10AD9 + FIBER_PIN = 0x10ADA + FIBER_PIN_OUTLINED = 0x10ADB + FIBER_PIN_ROUNDED = 0x10ADC + FIBER_PIN_SHARP = 0x10ADD + FIBER_SMART_RECORD = 0x10ADE + FIBER_SMART_RECORD_OUTLINED = 0x10ADF + FIBER_SMART_RECORD_ROUNDED = 0x10AE0 + FIBER_SMART_RECORD_SHARP = 0x10AE1 + FIFTEEN_MP = 0x10AE2 + FIFTEEN_MP_OUTLINED = 0x10AE3 + FIFTEEN_MP_ROUNDED = 0x10AE4 + FIFTEEN_MP_SHARP = 0x10AE5 + FILE_COPY = 0x10AE6 + FILE_COPY_OUTLINED = 0x10AE7 + FILE_COPY_ROUNDED = 0x10AE8 + FILE_COPY_SHARP = 0x10AE9 + FILE_DOWNLOAD = 0x10AEA + FILE_DOWNLOAD_DONE = 0x10AEB + FILE_DOWNLOAD_DONE_OUTLINED = 0x10AEC + FILE_DOWNLOAD_DONE_ROUNDED = 0x10AED + FILE_DOWNLOAD_DONE_SHARP = 0x10AEE + FILE_DOWNLOAD_OFF = 0x10AEF + FILE_DOWNLOAD_OFF_OUTLINED = 0x10AF0 + FILE_DOWNLOAD_OFF_ROUNDED = 0x10AF1 + FILE_DOWNLOAD_OFF_SHARP = 0x10AF2 + FILE_DOWNLOAD_OUTLINED = 0x10AF3 + FILE_DOWNLOAD_ROUNDED = 0x10AF4 + FILE_DOWNLOAD_SHARP = 0x10AF5 + FILE_OPEN = 0x10AF6 + FILE_OPEN_OUTLINED = 0x10AF7 + FILE_OPEN_ROUNDED = 0x10AF8 + FILE_OPEN_SHARP = 0x10AF9 + FILE_PRESENT = 0x10AFA + FILE_PRESENT_OUTLINED = 0x10AFB + FILE_PRESENT_ROUNDED = 0x10AFC + FILE_PRESENT_SHARP = 0x10AFD + FILE_UPLOAD = 0x10AFE + FILE_UPLOAD_OFF = 0x10AFF + FILE_UPLOAD_OUTLINED = 0x10B00 + FILE_UPLOAD_ROUNDED = 0x10B01 + FILE_UPLOAD_SHARP = 0x10B02 + FILTER = 0x10B03 + FILTER_1 = 0x10B04 + FILTER_1_OUTLINED = 0x10B05 + FILTER_1_ROUNDED = 0x10B06 + FILTER_1_SHARP = 0x10B07 + FILTER_2 = 0x10B08 + FILTER_2_OUTLINED = 0x10B09 + FILTER_2_ROUNDED = 0x10B0A + FILTER_2_SHARP = 0x10B0B + FILTER_3 = 0x10B0C + FILTER_3_OUTLINED = 0x10B0D + FILTER_3_ROUNDED = 0x10B0E + FILTER_3_SHARP = 0x10B0F + FILTER_4 = 0x10B10 + FILTER_4_OUTLINED = 0x10B11 + FILTER_4_ROUNDED = 0x10B12 + FILTER_4_SHARP = 0x10B13 + FILTER_5 = 0x10B14 + FILTER_5_OUTLINED = 0x10B15 + FILTER_5_ROUNDED = 0x10B16 + FILTER_5_SHARP = 0x10B17 + FILTER_6 = 0x10B18 + FILTER_6_OUTLINED = 0x10B19 + FILTER_6_ROUNDED = 0x10B1A + FILTER_6_SHARP = 0x10B1B + FILTER_7 = 0x10B1C + FILTER_7_OUTLINED = 0x10B1D + FILTER_7_ROUNDED = 0x10B1E + FILTER_7_SHARP = 0x10B1F + FILTER_8 = 0x10B20 + FILTER_8_OUTLINED = 0x10B21 + FILTER_8_ROUNDED = 0x10B22 + FILTER_8_SHARP = 0x10B23 + FILTER_9 = 0x10B24 + FILTER_9_OUTLINED = 0x10B25 + FILTER_9_PLUS = 0x10B26 + FILTER_9_PLUS_OUTLINED = 0x10B27 + FILTER_9_PLUS_ROUNDED = 0x10B28 + FILTER_9_PLUS_SHARP = 0x10B29 + FILTER_9_ROUNDED = 0x10B2A + FILTER_9_SHARP = 0x10B2B + FILTER_ALT = 0x10B2C + FILTER_ALT_OFF = 0x10B2D + FILTER_ALT_OFF_OUTLINED = 0x10B2E + FILTER_ALT_OFF_ROUNDED = 0x10B2F + FILTER_ALT_OFF_SHARP = 0x10B30 + FILTER_ALT_OUTLINED = 0x10B31 + FILTER_ALT_ROUNDED = 0x10B32 + FILTER_ALT_SHARP = 0x10B33 + FILTER_B_AND_W = 0x10B34 + FILTER_B_AND_W_OUTLINED = 0x10B35 + FILTER_B_AND_W_ROUNDED = 0x10B36 + FILTER_B_AND_W_SHARP = 0x10B37 + FILTER_CENTER_FOCUS = 0x10B38 + FILTER_CENTER_FOCUS_OUTLINED = 0x10B39 + FILTER_CENTER_FOCUS_ROUNDED = 0x10B3A + FILTER_CENTER_FOCUS_SHARP = 0x10B3B + FILTER_DRAMA = 0x10B3C + FILTER_DRAMA_OUTLINED = 0x10B3D + FILTER_DRAMA_ROUNDED = 0x10B3E + FILTER_DRAMA_SHARP = 0x10B3F + FILTER_FRAMES = 0x10B40 + FILTER_FRAMES_OUTLINED = 0x10B41 + FILTER_FRAMES_ROUNDED = 0x10B42 + FILTER_FRAMES_SHARP = 0x10B43 + FILTER_HDR = 0x10B44 + FILTER_HDR_OUTLINED = 0x10B45 + FILTER_HDR_ROUNDED = 0x10B46 + FILTER_HDR_SHARP = 0x10B47 + FILTER_LIST = 0x10B48 + FILTER_LIST_ALT = 0x10B49 + FILTER_LIST_OFF = 0x10B4A + FILTER_LIST_OFF_OUTLINED = 0x10B4B + FILTER_LIST_OFF_ROUNDED = 0x10B4C + FILTER_LIST_OFF_SHARP = 0x10B4D + FILTER_LIST_OUTLINED = 0x10B4E + FILTER_LIST_ROUNDED = 0x10B4F + FILTER_LIST_SHARP = 0x10B50 + FILTER_NONE = 0x10B51 + FILTER_NONE_OUTLINED = 0x10B52 + FILTER_NONE_ROUNDED = 0x10B53 + FILTER_NONE_SHARP = 0x10B54 + FILTER_OUTLINED = 0x10B55 + FILTER_ROUNDED = 0x10B56 + FILTER_SHARP = 0x10B57 + FILTER_TILT_SHIFT = 0x10B58 + FILTER_TILT_SHIFT_OUTLINED = 0x10B59 + FILTER_TILT_SHIFT_ROUNDED = 0x10B5A + FILTER_TILT_SHIFT_SHARP = 0x10B5B + FILTER_VINTAGE = 0x10B5C + FILTER_VINTAGE_OUTLINED = 0x10B5D + FILTER_VINTAGE_ROUNDED = 0x10B5E + FILTER_VINTAGE_SHARP = 0x10B5F + FIND_IN_PAGE = 0x10B60 + FIND_IN_PAGE_OUTLINED = 0x10B61 + FIND_IN_PAGE_ROUNDED = 0x10B62 + FIND_IN_PAGE_SHARP = 0x10B63 + FIND_REPLACE = 0x10B64 + FIND_REPLACE_OUTLINED = 0x10B65 + FIND_REPLACE_ROUNDED = 0x10B66 + FIND_REPLACE_SHARP = 0x10B67 + FINGERPRINT = 0x10B68 + FINGERPRINT_OUTLINED = 0x10B69 + FINGERPRINT_ROUNDED = 0x10B6A + FINGERPRINT_SHARP = 0x10B6B + FIRE_EXTINGUISHER = 0x10B6C + FIRE_EXTINGUISHER_OUTLINED = 0x10B6D + FIRE_EXTINGUISHER_ROUNDED = 0x10B6E + FIRE_EXTINGUISHER_SHARP = 0x10B6F + FIRE_HYDRANT = 0x10B70 + FIRE_HYDRANT_ALT = 0x10B71 + FIRE_HYDRANT_ALT_OUTLINED = 0x10B72 + FIRE_HYDRANT_ALT_ROUNDED = 0x10B73 + FIRE_HYDRANT_ALT_SHARP = 0x10B74 + FIRE_TRUCK = 0x10B75 + FIRE_TRUCK_OUTLINED = 0x10B76 + FIRE_TRUCK_ROUNDED = 0x10B77 + FIRE_TRUCK_SHARP = 0x10B78 + FIREPLACE = 0x10B79 + FIREPLACE_OUTLINED = 0x10B7A + FIREPLACE_ROUNDED = 0x10B7B + FIREPLACE_SHARP = 0x10B7C + FIRST_PAGE = 0x10B7D + FIRST_PAGE_OUTLINED = 0x10B7E + FIRST_PAGE_ROUNDED = 0x10B7F + FIRST_PAGE_SHARP = 0x10B80 + FIT_SCREEN = 0x10B81 + FIT_SCREEN_OUTLINED = 0x10B82 + FIT_SCREEN_ROUNDED = 0x10B83 + FIT_SCREEN_SHARP = 0x10B84 + FITBIT = 0x10B85 + FITBIT_OUTLINED = 0x10B86 + FITBIT_ROUNDED = 0x10B87 + FITBIT_SHARP = 0x10B88 + FITNESS_CENTER = 0x10B89 + FITNESS_CENTER_OUTLINED = 0x10B8A + FITNESS_CENTER_ROUNDED = 0x10B8B + FITNESS_CENTER_SHARP = 0x10B8C + FIVE_G = 0x10B8D + FIVE_G_OUTLINED = 0x10B8E + FIVE_G_ROUNDED = 0x10B8F + FIVE_G_SHARP = 0x10B90 + FIVE_K = 0x10B91 + FIVE_K_OUTLINED = 0x10B92 + FIVE_K_PLUS = 0x10B93 + FIVE_K_PLUS_OUTLINED = 0x10B94 + FIVE_K_PLUS_ROUNDED = 0x10B95 + FIVE_K_PLUS_SHARP = 0x10B96 + FIVE_K_ROUNDED = 0x10B97 + FIVE_K_SHARP = 0x10B98 + FIVE_MP = 0x10B99 + FIVE_MP_OUTLINED = 0x10B9A + FIVE_MP_ROUNDED = 0x10B9B + FIVE_MP_SHARP = 0x10B9C + FLAG = 0x10B9D + FLAG_CIRCLE = 0x10B9E + FLAG_CIRCLE_OUTLINED = 0x10B9F + FLAG_CIRCLE_ROUNDED = 0x10BA0 + FLAG_CIRCLE_SHARP = 0x10BA1 + FLAG_OUTLINED = 0x10BA2 + FLAG_ROUNDED = 0x10BA3 + FLAG_SHARP = 0x10BA4 + FLAKY = 0x10BA5 + FLAKY_OUTLINED = 0x10BA6 + FLAKY_ROUNDED = 0x10BA7 + FLAKY_SHARP = 0x10BA8 + FLARE = 0x10BA9 + FLARE_OUTLINED = 0x10BAA + FLARE_ROUNDED = 0x10BAB + FLARE_SHARP = 0x10BAC + FLASH_AUTO = 0x10BAD + FLASH_AUTO_OUTLINED = 0x10BAE + FLASH_AUTO_ROUNDED = 0x10BAF + FLASH_AUTO_SHARP = 0x10BB0 + FLASH_OFF = 0x10BB1 + FLASH_OFF_OUTLINED = 0x10BB2 + FLASH_OFF_ROUNDED = 0x10BB3 + FLASH_OFF_SHARP = 0x10BB4 + FLASH_ON = 0x10BB5 + FLASH_ON_OUTLINED = 0x10BB6 + FLASH_ON_ROUNDED = 0x10BB7 + FLASH_ON_SHARP = 0x10BB8 + FLASHLIGHT_OFF = 0x10BB9 + FLASHLIGHT_OFF_OUTLINED = 0x10BBA + FLASHLIGHT_OFF_ROUNDED = 0x10BBB + FLASHLIGHT_OFF_SHARP = 0x10BBC + FLASHLIGHT_ON = 0x10BBD + FLASHLIGHT_ON_OUTLINED = 0x10BBE + FLASHLIGHT_ON_ROUNDED = 0x10BBF + FLASHLIGHT_ON_SHARP = 0x10BC0 + FLATWARE = 0x10BC1 + FLATWARE_OUTLINED = 0x10BC2 + FLATWARE_ROUNDED = 0x10BC3 + FLATWARE_SHARP = 0x10BC4 + FLIGHT = 0x10BC5 + FLIGHT_CLASS = 0x10BC6 + FLIGHT_CLASS_OUTLINED = 0x10BC7 + FLIGHT_CLASS_ROUNDED = 0x10BC8 + FLIGHT_CLASS_SHARP = 0x10BC9 + FLIGHT_LAND = 0x10BCA + FLIGHT_LAND_OUTLINED = 0x10BCB + FLIGHT_LAND_ROUNDED = 0x10BCC + FLIGHT_LAND_SHARP = 0x10BCD + FLIGHT_OUTLINED = 0x10BCE + FLIGHT_ROUNDED = 0x10BCF + FLIGHT_SHARP = 0x10BD0 + FLIGHT_TAKEOFF = 0x10BD1 + FLIGHT_TAKEOFF_OUTLINED = 0x10BD2 + FLIGHT_TAKEOFF_ROUNDED = 0x10BD3 + FLIGHT_TAKEOFF_SHARP = 0x10BD4 + FLIP = 0x10BD5 + FLIP_CAMERA_ANDROID = 0x10BD6 + FLIP_CAMERA_ANDROID_OUTLINED = 0x10BD7 + FLIP_CAMERA_ANDROID_ROUNDED = 0x10BD8 + FLIP_CAMERA_ANDROID_SHARP = 0x10BD9 + FLIP_CAMERA_IOS = 0x10BDA + FLIP_CAMERA_IOS_OUTLINED = 0x10BDB + FLIP_CAMERA_IOS_ROUNDED = 0x10BDC + FLIP_CAMERA_IOS_SHARP = 0x10BDD + FLIP_OUTLINED = 0x10BDE + FLIP_ROUNDED = 0x10BDF + FLIP_SHARP = 0x10BE0 + FLIP_TO_BACK = 0x10BE1 + FLIP_TO_BACK_OUTLINED = 0x10BE2 + FLIP_TO_BACK_ROUNDED = 0x10BE3 + FLIP_TO_BACK_SHARP = 0x10BE4 + FLIP_TO_FRONT = 0x10BE5 + FLIP_TO_FRONT_OUTLINED = 0x10BE6 + FLIP_TO_FRONT_ROUNDED = 0x10BE7 + FLIP_TO_FRONT_SHARP = 0x10BE8 + FLOOD = 0x10BE9 + FLOOD_OUTLINED = 0x10BEA + FLOOD_ROUNDED = 0x10BEB + FLOOD_SHARP = 0x10BEC + FLOURESCENT = 0x10BED + FLOURESCENT_OUTLINED = 0x10BEE + FLOURESCENT_ROUNDED = 0x10BEF + FLOURESCENT_SHARP = 0x10BF0 + FLUORESCENT = 0x10BF1 + FLUORESCENT_OUTLINED = 0x10BF2 + FLUORESCENT_ROUNDED = 0x10BF3 + FLUORESCENT_SHARP = 0x10BF4 + FLUTTER_DASH = 0x10BF5 + FLUTTER_DASH_OUTLINED = 0x10BF6 + FLUTTER_DASH_ROUNDED = 0x10BF7 + FLUTTER_DASH_SHARP = 0x10BF8 + FMD_BAD = 0x10BF9 + FMD_BAD_OUTLINED = 0x10BFA + FMD_BAD_ROUNDED = 0x10BFB + FMD_BAD_SHARP = 0x10BFC + FMD_GOOD = 0x10BFD + FMD_GOOD_OUTLINED = 0x10BFE + FMD_GOOD_ROUNDED = 0x10BFF + FMD_GOOD_SHARP = 0x10C00 + FOGGY = 0x10C01 + FOLDER = 0x10C02 + FOLDER_COPY = 0x10C03 + FOLDER_COPY_OUTLINED = 0x10C04 + FOLDER_COPY_ROUNDED = 0x10C05 + FOLDER_COPY_SHARP = 0x10C06 + FOLDER_DELETE = 0x10C07 + FOLDER_DELETE_OUTLINED = 0x10C08 + FOLDER_DELETE_ROUNDED = 0x10C09 + FOLDER_DELETE_SHARP = 0x10C0A + FOLDER_OFF = 0x10C0B + FOLDER_OFF_OUTLINED = 0x10C0C + FOLDER_OFF_ROUNDED = 0x10C0D + FOLDER_OFF_SHARP = 0x10C0E + FOLDER_OPEN = 0x10C0F + FOLDER_OPEN_OUTLINED = 0x10C10 + FOLDER_OPEN_ROUNDED = 0x10C11 + FOLDER_OPEN_SHARP = 0x10C12 + FOLDER_OUTLINED = 0x10C13 + FOLDER_ROUNDED = 0x10C14 + FOLDER_SHARED = 0x10C15 + FOLDER_SHARED_OUTLINED = 0x10C16 + FOLDER_SHARED_ROUNDED = 0x10C17 + FOLDER_SHARED_SHARP = 0x10C18 + FOLDER_SHARP = 0x10C19 + FOLDER_SPECIAL = 0x10C1A + FOLDER_SPECIAL_OUTLINED = 0x10C1B + FOLDER_SPECIAL_ROUNDED = 0x10C1C + FOLDER_SPECIAL_SHARP = 0x10C1D + FOLDER_ZIP = 0x10C1E + FOLDER_ZIP_OUTLINED = 0x10C1F + FOLDER_ZIP_ROUNDED = 0x10C20 + FOLDER_ZIP_SHARP = 0x10C21 + FOLLOW_THE_SIGNS = 0x10C22 + FOLLOW_THE_SIGNS_OUTLINED = 0x10C23 + FOLLOW_THE_SIGNS_ROUNDED = 0x10C24 + FOLLOW_THE_SIGNS_SHARP = 0x10C25 + FONT_DOWNLOAD = 0x10C26 + FONT_DOWNLOAD_OFF = 0x10C27 + FONT_DOWNLOAD_OFF_OUTLINED = 0x10C28 + FONT_DOWNLOAD_OFF_ROUNDED = 0x10C29 + FONT_DOWNLOAD_OFF_SHARP = 0x10C2A + FONT_DOWNLOAD_OUTLINED = 0x10C2B + FONT_DOWNLOAD_ROUNDED = 0x10C2C + FONT_DOWNLOAD_SHARP = 0x10C2D + FOOD_BANK = 0x10C2E + FOOD_BANK_OUTLINED = 0x10C2F + FOOD_BANK_ROUNDED = 0x10C30 + FOOD_BANK_SHARP = 0x10C31 + FOREST = 0x10C32 + FOREST_OUTLINED = 0x10C33 + FOREST_ROUNDED = 0x10C34 + FOREST_SHARP = 0x10C35 + FORK_LEFT = 0x10C36 + FORK_LEFT_OUTLINED = 0x10C37 + FORK_LEFT_ROUNDED = 0x10C38 + FORK_LEFT_SHARP = 0x10C39 + FORK_RIGHT = 0x10C3A + FORK_RIGHT_OUTLINED = 0x10C3B + FORK_RIGHT_ROUNDED = 0x10C3C + FORK_RIGHT_SHARP = 0x10C3D + FORKLIFT = 0x10C3E + FORMAT_ALIGN_CENTER = 0x10C3F + FORMAT_ALIGN_CENTER_OUTLINED = 0x10C40 + FORMAT_ALIGN_CENTER_ROUNDED = 0x10C41 + FORMAT_ALIGN_CENTER_SHARP = 0x10C42 + FORMAT_ALIGN_JUSTIFY = 0x10C43 + FORMAT_ALIGN_JUSTIFY_OUTLINED = 0x10C44 + FORMAT_ALIGN_JUSTIFY_ROUNDED = 0x10C45 + FORMAT_ALIGN_JUSTIFY_SHARP = 0x10C46 + FORMAT_ALIGN_LEFT = 0x10C47 + FORMAT_ALIGN_LEFT_OUTLINED = 0x10C48 + FORMAT_ALIGN_LEFT_ROUNDED = 0x10C49 + FORMAT_ALIGN_LEFT_SHARP = 0x10C4A + FORMAT_ALIGN_RIGHT = 0x10C4B + FORMAT_ALIGN_RIGHT_OUTLINED = 0x10C4C + FORMAT_ALIGN_RIGHT_ROUNDED = 0x10C4D + FORMAT_ALIGN_RIGHT_SHARP = 0x10C4E + FORMAT_BOLD = 0x10C4F + FORMAT_BOLD_OUTLINED = 0x10C50 + FORMAT_BOLD_ROUNDED = 0x10C51 + FORMAT_BOLD_SHARP = 0x10C52 + FORMAT_CLEAR = 0x10C53 + FORMAT_CLEAR_OUTLINED = 0x10C54 + FORMAT_CLEAR_ROUNDED = 0x10C55 + FORMAT_CLEAR_SHARP = 0x10C56 + FORMAT_COLOR_FILL = 0x10C57 + FORMAT_COLOR_FILL_OUTLINED = 0x10C58 + FORMAT_COLOR_FILL_ROUNDED = 0x10C59 + FORMAT_COLOR_FILL_SHARP = 0x10C5A + FORMAT_COLOR_RESET = 0x10C5B + FORMAT_COLOR_RESET_OUTLINED = 0x10C5C + FORMAT_COLOR_RESET_ROUNDED = 0x10C5D + FORMAT_COLOR_RESET_SHARP = 0x10C5E + FORMAT_COLOR_TEXT = 0x10C5F + FORMAT_COLOR_TEXT_OUTLINED = 0x10C60 + FORMAT_COLOR_TEXT_ROUNDED = 0x10C61 + FORMAT_COLOR_TEXT_SHARP = 0x10C62 + FORMAT_INDENT_DECREASE = 0x10C63 + FORMAT_INDENT_DECREASE_OUTLINED = 0x10C64 + FORMAT_INDENT_DECREASE_ROUNDED = 0x10C65 + FORMAT_INDENT_DECREASE_SHARP = 0x10C66 + FORMAT_INDENT_INCREASE = 0x10C67 + FORMAT_INDENT_INCREASE_OUTLINED = 0x10C68 + FORMAT_INDENT_INCREASE_ROUNDED = 0x10C69 + FORMAT_INDENT_INCREASE_SHARP = 0x10C6A + FORMAT_ITALIC = 0x10C6B + FORMAT_ITALIC_OUTLINED = 0x10C6C + FORMAT_ITALIC_ROUNDED = 0x10C6D + FORMAT_ITALIC_SHARP = 0x10C6E + FORMAT_LINE_SPACING = 0x10C6F + FORMAT_LINE_SPACING_OUTLINED = 0x10C70 + FORMAT_LINE_SPACING_ROUNDED = 0x10C71 + FORMAT_LINE_SPACING_SHARP = 0x10C72 + FORMAT_LIST_BULLETED = 0x10C73 + FORMAT_LIST_BULLETED_ADD = 0x10C74 + FORMAT_LIST_BULLETED_OUTLINED = 0x10C75 + FORMAT_LIST_BULLETED_ROUNDED = 0x10C76 + FORMAT_LIST_BULLETED_SHARP = 0x10C77 + FORMAT_LIST_NUMBERED = 0x10C78 + FORMAT_LIST_NUMBERED_OUTLINED = 0x10C79 + FORMAT_LIST_NUMBERED_ROUNDED = 0x10C7A + FORMAT_LIST_NUMBERED_RTL = 0x10C7B + FORMAT_LIST_NUMBERED_RTL_OUTLINED = 0x10C7C + FORMAT_LIST_NUMBERED_RTL_ROUNDED = 0x10C7D + FORMAT_LIST_NUMBERED_RTL_SHARP = 0x10C7E + FORMAT_LIST_NUMBERED_SHARP = 0x10C7F + FORMAT_OVERLINE = 0x10C80 + FORMAT_OVERLINE_OUTLINED = 0x10C81 + FORMAT_OVERLINE_ROUNDED = 0x10C82 + FORMAT_OVERLINE_SHARP = 0x10C83 + FORMAT_PAINT = 0x10C84 + FORMAT_PAINT_OUTLINED = 0x10C85 + FORMAT_PAINT_ROUNDED = 0x10C86 + FORMAT_PAINT_SHARP = 0x10C87 + FORMAT_QUOTE = 0x10C88 + FORMAT_QUOTE_OUTLINED = 0x10C89 + FORMAT_QUOTE_ROUNDED = 0x10C8A + FORMAT_QUOTE_SHARP = 0x10C8B + FORMAT_SHAPES = 0x10C8C + FORMAT_SHAPES_OUTLINED = 0x10C8D + FORMAT_SHAPES_ROUNDED = 0x10C8E + FORMAT_SHAPES_SHARP = 0x10C8F + FORMAT_SIZE = 0x10C90 + FORMAT_SIZE_OUTLINED = 0x10C91 + FORMAT_SIZE_ROUNDED = 0x10C92 + FORMAT_SIZE_SHARP = 0x10C93 + FORMAT_STRIKETHROUGH = 0x10C94 + FORMAT_STRIKETHROUGH_OUTLINED = 0x10C95 + FORMAT_STRIKETHROUGH_ROUNDED = 0x10C96 + FORMAT_STRIKETHROUGH_SHARP = 0x10C97 + FORMAT_TEXTDIRECTION_L_TO_R = 0x10C98 + FORMAT_TEXTDIRECTION_L_TO_R_OUTLINED = 0x10C99 + FORMAT_TEXTDIRECTION_L_TO_R_ROUNDED = 0x10C9A + FORMAT_TEXTDIRECTION_L_TO_R_SHARP = 0x10C9B + FORMAT_TEXTDIRECTION_R_TO_L = 0x10C9C + FORMAT_TEXTDIRECTION_R_TO_L_OUTLINED = 0x10C9D + FORMAT_TEXTDIRECTION_R_TO_L_ROUNDED = 0x10C9E + FORMAT_TEXTDIRECTION_R_TO_L_SHARP = 0x10C9F + FORMAT_UNDERLINE = 0x10CA0 + FORMAT_UNDERLINE_OUTLINED = 0x10CA1 + FORMAT_UNDERLINE_ROUNDED = 0x10CA2 + FORMAT_UNDERLINE_SHARP = 0x10CA3 + FORMAT_UNDERLINED = 0x10CA4 + FORMAT_UNDERLINED_OUTLINED = 0x10CA5 + FORMAT_UNDERLINED_ROUNDED = 0x10CA6 + FORMAT_UNDERLINED_SHARP = 0x10CA7 + FORT = 0x10CA8 + FORT_OUTLINED = 0x10CA9 + FORT_ROUNDED = 0x10CAA + FORT_SHARP = 0x10CAB + FORUM = 0x10CAC + FORUM_OUTLINED = 0x10CAD + FORUM_ROUNDED = 0x10CAE + FORUM_SHARP = 0x10CAF + FORWARD = 0x10CB0 + FORWARD_10 = 0x10CB1 + FORWARD_10_OUTLINED = 0x10CB2 + FORWARD_10_ROUNDED = 0x10CB3 + FORWARD_10_SHARP = 0x10CB4 + FORWARD_30 = 0x10CB5 + FORWARD_30_OUTLINED = 0x10CB6 + FORWARD_30_ROUNDED = 0x10CB7 + FORWARD_30_SHARP = 0x10CB8 + FORWARD_5 = 0x10CB9 + FORWARD_5_OUTLINED = 0x10CBA + FORWARD_5_ROUNDED = 0x10CBB + FORWARD_5_SHARP = 0x10CBC + FORWARD_OUTLINED = 0x10CBD + FORWARD_ROUNDED = 0x10CBE + FORWARD_SHARP = 0x10CBF + FORWARD_TO_INBOX = 0x10CC0 + FORWARD_TO_INBOX_OUTLINED = 0x10CC1 + FORWARD_TO_INBOX_ROUNDED = 0x10CC2 + FORWARD_TO_INBOX_SHARP = 0x10CC3 + FOUNDATION = 0x10CC4 + FOUNDATION_OUTLINED = 0x10CC5 + FOUNDATION_ROUNDED = 0x10CC6 + FOUNDATION_SHARP = 0x10CC7 + FOUR_G_MOBILEDATA = 0x10CC8 + FOUR_G_MOBILEDATA_OUTLINED = 0x10CC9 + FOUR_G_MOBILEDATA_ROUNDED = 0x10CCA + FOUR_G_MOBILEDATA_SHARP = 0x10CCB + FOUR_G_PLUS_MOBILEDATA = 0x10CCC + FOUR_G_PLUS_MOBILEDATA_OUTLINED = 0x10CCD + FOUR_G_PLUS_MOBILEDATA_ROUNDED = 0x10CCE + FOUR_G_PLUS_MOBILEDATA_SHARP = 0x10CCF + FOUR_K = 0x10CD0 + FOUR_K_OUTLINED = 0x10CD1 + FOUR_K_PLUS = 0x10CD2 + FOUR_K_PLUS_OUTLINED = 0x10CD3 + FOUR_K_PLUS_ROUNDED = 0x10CD4 + FOUR_K_PLUS_SHARP = 0x10CD5 + FOUR_K_ROUNDED = 0x10CD6 + FOUR_K_SHARP = 0x10CD7 + FOUR_MP = 0x10CD8 + FOUR_MP_OUTLINED = 0x10CD9 + FOUR_MP_ROUNDED = 0x10CDA + FOUR_MP_SHARP = 0x10CDB + FOURTEEN_MP = 0x10CDC + FOURTEEN_MP_OUTLINED = 0x10CDD + FOURTEEN_MP_ROUNDED = 0x10CDE + FOURTEEN_MP_SHARP = 0x10CDF + FREE_BREAKFAST = 0x10CE0 + FREE_BREAKFAST_OUTLINED = 0x10CE1 + FREE_BREAKFAST_ROUNDED = 0x10CE2 + FREE_BREAKFAST_SHARP = 0x10CE3 + FREE_CANCELLATION = 0x10CE4 + FREE_CANCELLATION_OUTLINED = 0x10CE5 + FREE_CANCELLATION_ROUNDED = 0x10CE6 + FREE_CANCELLATION_SHARP = 0x10CE7 + FRONT_HAND = 0x10CE8 + FRONT_HAND_OUTLINED = 0x10CE9 + FRONT_HAND_ROUNDED = 0x10CEA + FRONT_HAND_SHARP = 0x10CEB + FRONT_LOADER = 0x10CEC + FULLSCREEN = 0x10CED + FULLSCREEN_EXIT = 0x10CEE + FULLSCREEN_EXIT_OUTLINED = 0x10CEF + FULLSCREEN_EXIT_ROUNDED = 0x10CF0 + FULLSCREEN_EXIT_SHARP = 0x10CF1 + FULLSCREEN_OUTLINED = 0x10CF2 + FULLSCREEN_ROUNDED = 0x10CF3 + FULLSCREEN_SHARP = 0x10CF4 + FUNCTIONS = 0x10CF5 + FUNCTIONS_OUTLINED = 0x10CF6 + FUNCTIONS_ROUNDED = 0x10CF7 + FUNCTIONS_SHARP = 0x10CF8 + G_MOBILEDATA = 0x10CF9 + G_MOBILEDATA_OUTLINED = 0x10CFA + G_MOBILEDATA_ROUNDED = 0x10CFB + G_MOBILEDATA_SHARP = 0x10CFC + G_TRANSLATE = 0x10CFD + G_TRANSLATE_OUTLINED = 0x10CFE + G_TRANSLATE_ROUNDED = 0x10CFF + G_TRANSLATE_SHARP = 0x10D00 + GAMEPAD = 0x10D01 + GAMEPAD_OUTLINED = 0x10D02 + GAMEPAD_ROUNDED = 0x10D03 + GAMEPAD_SHARP = 0x10D04 + GAMES = 0x10D05 + GAMES_OUTLINED = 0x10D06 + GAMES_ROUNDED = 0x10D07 + GAMES_SHARP = 0x10D08 + GARAGE = 0x10D09 + GARAGE_OUTLINED = 0x10D0A + GARAGE_ROUNDED = 0x10D0B + GARAGE_SHARP = 0x10D0C + GAS_METER = 0x10D0D + GAS_METER_OUTLINED = 0x10D0E + GAS_METER_ROUNDED = 0x10D0F + GAS_METER_SHARP = 0x10D10 + GAVEL = 0x10D11 + GAVEL_OUTLINED = 0x10D12 + GAVEL_ROUNDED = 0x10D13 + GAVEL_SHARP = 0x10D14 + GENERATING_TOKENS = 0x10D15 + GENERATING_TOKENS_OUTLINED = 0x10D16 + GENERATING_TOKENS_ROUNDED = 0x10D17 + GENERATING_TOKENS_SHARP = 0x10D18 + GESTURE = 0x10D19 + GESTURE_OUTLINED = 0x10D1A + GESTURE_ROUNDED = 0x10D1B + GESTURE_SHARP = 0x10D1C + GET_APP = 0x10D1D + GET_APP_OUTLINED = 0x10D1E + GET_APP_ROUNDED = 0x10D1F + GET_APP_SHARP = 0x10D20 + GIF = 0x10D21 + GIF_BOX = 0x10D22 + GIF_BOX_OUTLINED = 0x10D23 + GIF_BOX_ROUNDED = 0x10D24 + GIF_BOX_SHARP = 0x10D25 + GIF_OUTLINED = 0x10D26 + GIF_ROUNDED = 0x10D27 + GIF_SHARP = 0x10D28 + GIRL = 0x10D29 + GIRL_OUTLINED = 0x10D2A + GIRL_ROUNDED = 0x10D2B + GIRL_SHARP = 0x10D2C + GITE = 0x10D2D + GITE_OUTLINED = 0x10D2E + GITE_ROUNDED = 0x10D2F + GITE_SHARP = 0x10D30 + GOLF_COURSE = 0x10D31 + GOLF_COURSE_OUTLINED = 0x10D32 + GOLF_COURSE_ROUNDED = 0x10D33 + GOLF_COURSE_SHARP = 0x10D34 + GPP_BAD = 0x10D35 + GPP_BAD_OUTLINED = 0x10D36 + GPP_BAD_ROUNDED = 0x10D37 + GPP_BAD_SHARP = 0x10D38 + GPP_GOOD = 0x10D39 + GPP_GOOD_OUTLINED = 0x10D3A + GPP_GOOD_ROUNDED = 0x10D3B + GPP_GOOD_SHARP = 0x10D3C + GPP_MAYBE = 0x10D3D + GPP_MAYBE_OUTLINED = 0x10D3E + GPP_MAYBE_ROUNDED = 0x10D3F + GPP_MAYBE_SHARP = 0x10D40 + GPS_FIXED = 0x10D41 + GPS_FIXED_OUTLINED = 0x10D42 + GPS_FIXED_ROUNDED = 0x10D43 + GPS_FIXED_SHARP = 0x10D44 + GPS_NOT_FIXED = 0x10D45 + GPS_NOT_FIXED_OUTLINED = 0x10D46 + GPS_NOT_FIXED_ROUNDED = 0x10D47 + GPS_NOT_FIXED_SHARP = 0x10D48 + GPS_OFF = 0x10D49 + GPS_OFF_OUTLINED = 0x10D4A + GPS_OFF_ROUNDED = 0x10D4B + GPS_OFF_SHARP = 0x10D4C + GRADE = 0x10D4D + GRADE_OUTLINED = 0x10D4E + GRADE_ROUNDED = 0x10D4F + GRADE_SHARP = 0x10D50 + GRADIENT = 0x10D51 + GRADIENT_OUTLINED = 0x10D52 + GRADIENT_ROUNDED = 0x10D53 + GRADIENT_SHARP = 0x10D54 + GRADING = 0x10D55 + GRADING_OUTLINED = 0x10D56 + GRADING_ROUNDED = 0x10D57 + GRADING_SHARP = 0x10D58 + GRAIN = 0x10D59 + GRAIN_OUTLINED = 0x10D5A + GRAIN_ROUNDED = 0x10D5B + GRAIN_SHARP = 0x10D5C + GRAPHIC_EQ = 0x10D5D + GRAPHIC_EQ_OUTLINED = 0x10D5E + GRAPHIC_EQ_ROUNDED = 0x10D5F + GRAPHIC_EQ_SHARP = 0x10D60 + GRASS = 0x10D61 + GRASS_OUTLINED = 0x10D62 + GRASS_ROUNDED = 0x10D63 + GRASS_SHARP = 0x10D64 + GRID_3X3 = 0x10D65 + GRID_3X3_OUTLINED = 0x10D66 + GRID_3X3_ROUNDED = 0x10D67 + GRID_3X3_SHARP = 0x10D68 + GRID_4X4 = 0x10D69 + GRID_4X4_OUTLINED = 0x10D6A + GRID_4X4_ROUNDED = 0x10D6B + GRID_4X4_SHARP = 0x10D6C + GRID_GOLDENRATIO = 0x10D6D + GRID_GOLDENRATIO_OUTLINED = 0x10D6E + GRID_GOLDENRATIO_ROUNDED = 0x10D6F + GRID_GOLDENRATIO_SHARP = 0x10D70 + GRID_OFF = 0x10D71 + GRID_OFF_OUTLINED = 0x10D72 + GRID_OFF_ROUNDED = 0x10D73 + GRID_OFF_SHARP = 0x10D74 + GRID_ON = 0x10D75 + GRID_ON_OUTLINED = 0x10D76 + GRID_ON_ROUNDED = 0x10D77 + GRID_ON_SHARP = 0x10D78 + GRID_VIEW = 0x10D79 + GRID_VIEW_OUTLINED = 0x10D7A + GRID_VIEW_ROUNDED = 0x10D7B + GRID_VIEW_SHARP = 0x10D7C + GROUP = 0x10D7D + GROUP_ADD = 0x10D7E + GROUP_ADD_OUTLINED = 0x10D7F + GROUP_ADD_ROUNDED = 0x10D80 + GROUP_ADD_SHARP = 0x10D81 + GROUP_OFF = 0x10D82 + GROUP_OFF_OUTLINED = 0x10D83 + GROUP_OFF_ROUNDED = 0x10D84 + GROUP_OFF_SHARP = 0x10D85 + GROUP_OUTLINED = 0x10D86 + GROUP_REMOVE = 0x10D87 + GROUP_REMOVE_OUTLINED = 0x10D88 + GROUP_REMOVE_ROUNDED = 0x10D89 + GROUP_REMOVE_SHARP = 0x10D8A + GROUP_ROUNDED = 0x10D8B + GROUP_SHARP = 0x10D8C + GROUP_WORK = 0x10D8D + GROUP_WORK_OUTLINED = 0x10D8E + GROUP_WORK_ROUNDED = 0x10D8F + GROUP_WORK_SHARP = 0x10D90 + GROUPS = 0x10D91 + GROUPS_2 = 0x10D92 + GROUPS_2_OUTLINED = 0x10D93 + GROUPS_2_ROUNDED = 0x10D94 + GROUPS_2_SHARP = 0x10D95 + GROUPS_3 = 0x10D96 + GROUPS_3_OUTLINED = 0x10D97 + GROUPS_3_ROUNDED = 0x10D98 + GROUPS_3_SHARP = 0x10D99 + GROUPS_OUTLINED = 0x10D9A + GROUPS_ROUNDED = 0x10D9B + GROUPS_SHARP = 0x10D9C + H_MOBILEDATA = 0x10D9D + H_MOBILEDATA_OUTLINED = 0x10D9E + H_MOBILEDATA_ROUNDED = 0x10D9F + H_MOBILEDATA_SHARP = 0x10DA0 + H_PLUS_MOBILEDATA = 0x10DA1 + H_PLUS_MOBILEDATA_OUTLINED = 0x10DA2 + H_PLUS_MOBILEDATA_ROUNDED = 0x10DA3 + H_PLUS_MOBILEDATA_SHARP = 0x10DA4 + HAIL = 0x10DA5 + HAIL_OUTLINED = 0x10DA6 + HAIL_ROUNDED = 0x10DA7 + HAIL_SHARP = 0x10DA8 + HANDSHAKE = 0x10DA9 + HANDSHAKE_OUTLINED = 0x10DAA + HANDSHAKE_ROUNDED = 0x10DAB + HANDSHAKE_SHARP = 0x10DAC + HANDYMAN = 0x10DAD + HANDYMAN_OUTLINED = 0x10DAE + HANDYMAN_ROUNDED = 0x10DAF + HANDYMAN_SHARP = 0x10DB0 + HARDWARE = 0x10DB1 + HARDWARE_OUTLINED = 0x10DB2 + HARDWARE_ROUNDED = 0x10DB3 + HARDWARE_SHARP = 0x10DB4 + HD = 0x10DB5 + HD_OUTLINED = 0x10DB6 + HD_ROUNDED = 0x10DB7 + HD_SHARP = 0x10DB8 + HDR_AUTO = 0x10DB9 + HDR_AUTO_OUTLINED = 0x10DBA + HDR_AUTO_ROUNDED = 0x10DBB + HDR_AUTO_SELECT = 0x10DBC + HDR_AUTO_SELECT_OUTLINED = 0x10DBD + HDR_AUTO_SELECT_ROUNDED = 0x10DBE + HDR_AUTO_SELECT_SHARP = 0x10DBF + HDR_AUTO_SHARP = 0x10DC0 + HDR_ENHANCED_SELECT = 0x10DC1 + HDR_ENHANCED_SELECT_OUTLINED = 0x10DC2 + HDR_ENHANCED_SELECT_ROUNDED = 0x10DC3 + HDR_ENHANCED_SELECT_SHARP = 0x10DC4 + HDR_OFF = 0x10DC5 + HDR_OFF_OUTLINED = 0x10DC6 + HDR_OFF_ROUNDED = 0x10DC7 + HDR_OFF_SELECT = 0x10DC8 + HDR_OFF_SELECT_OUTLINED = 0x10DC9 + HDR_OFF_SELECT_ROUNDED = 0x10DCA + HDR_OFF_SELECT_SHARP = 0x10DCB + HDR_OFF_SHARP = 0x10DCC + HDR_ON = 0x10DCD + HDR_ON_OUTLINED = 0x10DCE + HDR_ON_ROUNDED = 0x10DCF + HDR_ON_SELECT = 0x10DD0 + HDR_ON_SELECT_OUTLINED = 0x10DD1 + HDR_ON_SELECT_ROUNDED = 0x10DD2 + HDR_ON_SELECT_SHARP = 0x10DD3 + HDR_ON_SHARP = 0x10DD4 + HDR_PLUS = 0x10DD5 + HDR_PLUS_OUTLINED = 0x10DD6 + HDR_PLUS_ROUNDED = 0x10DD7 + HDR_PLUS_SHARP = 0x10DD8 + HDR_STRONG = 0x10DD9 + HDR_STRONG_OUTLINED = 0x10DDA + HDR_STRONG_ROUNDED = 0x10DDB + HDR_STRONG_SHARP = 0x10DDC + HDR_WEAK = 0x10DDD + HDR_WEAK_OUTLINED = 0x10DDE + HDR_WEAK_ROUNDED = 0x10DDF + HDR_WEAK_SHARP = 0x10DE0 + HEADPHONES = 0x10DE1 + HEADPHONES_BATTERY = 0x10DE2 + HEADPHONES_BATTERY_OUTLINED = 0x10DE3 + HEADPHONES_BATTERY_ROUNDED = 0x10DE4 + HEADPHONES_BATTERY_SHARP = 0x10DE5 + HEADPHONES_OUTLINED = 0x10DE6 + HEADPHONES_ROUNDED = 0x10DE7 + HEADPHONES_SHARP = 0x10DE8 + HEADSET = 0x10DE9 + HEADSET_MIC = 0x10DEA + HEADSET_MIC_OUTLINED = 0x10DEB + HEADSET_MIC_ROUNDED = 0x10DEC + HEADSET_MIC_SHARP = 0x10DED + HEADSET_OFF = 0x10DEE + HEADSET_OFF_OUTLINED = 0x10DEF + HEADSET_OFF_ROUNDED = 0x10DF0 + HEADSET_OFF_SHARP = 0x10DF1 + HEADSET_OUTLINED = 0x10DF2 + HEADSET_ROUNDED = 0x10DF3 + HEADSET_SHARP = 0x10DF4 + HEALING = 0x10DF5 + HEALING_OUTLINED = 0x10DF6 + HEALING_ROUNDED = 0x10DF7 + HEALING_SHARP = 0x10DF8 + HEALTH_AND_SAFETY = 0x10DF9 + HEALTH_AND_SAFETY_OUTLINED = 0x10DFA + HEALTH_AND_SAFETY_ROUNDED = 0x10DFB + HEALTH_AND_SAFETY_SHARP = 0x10DFC + HEARING = 0x10DFD + HEARING_DISABLED = 0x10DFE + HEARING_DISABLED_OUTLINED = 0x10DFF + HEARING_DISABLED_ROUNDED = 0x10E00 + HEARING_DISABLED_SHARP = 0x10E01 + HEARING_OUTLINED = 0x10E02 + HEARING_ROUNDED = 0x10E03 + HEARING_SHARP = 0x10E04 + HEART_BROKEN = 0x10E05 + HEART_BROKEN_OUTLINED = 0x10E06 + HEART_BROKEN_ROUNDED = 0x10E07 + HEART_BROKEN_SHARP = 0x10E08 + HEAT_PUMP = 0x10E09 + HEAT_PUMP_OUTLINED = 0x10E0A + HEAT_PUMP_ROUNDED = 0x10E0B + HEAT_PUMP_SHARP = 0x10E0C + HEIGHT = 0x10E0D + HEIGHT_OUTLINED = 0x10E0E + HEIGHT_ROUNDED = 0x10E0F + HEIGHT_SHARP = 0x10E10 + HELP = 0x10E11 + HELP_CENTER = 0x10E12 + HELP_CENTER_OUTLINED = 0x10E13 + HELP_CENTER_ROUNDED = 0x10E14 + HELP_CENTER_SHARP = 0x10E15 + HELP_OUTLINE = 0x10E16 + HELP_OUTLINE_OUTLINED = 0x10E17 + HELP_OUTLINE_ROUNDED = 0x10E18 + HELP_OUTLINE_SHARP = 0x10E19 + HELP_OUTLINED = 0x10E1A + HELP_ROUNDED = 0x10E1B + HELP_SHARP = 0x10E1C + HEVC = 0x10E1D + HEVC_OUTLINED = 0x10E1E + HEVC_ROUNDED = 0x10E1F + HEVC_SHARP = 0x10E20 + HEXAGON = 0x10E21 + HEXAGON_OUTLINED = 0x10E22 + HEXAGON_ROUNDED = 0x10E23 + HEXAGON_SHARP = 0x10E24 + HIDE_IMAGE = 0x10E25 + HIDE_IMAGE_OUTLINED = 0x10E26 + HIDE_IMAGE_ROUNDED = 0x10E27 + HIDE_IMAGE_SHARP = 0x10E28 + HIDE_SOURCE = 0x10E29 + HIDE_SOURCE_OUTLINED = 0x10E2A + HIDE_SOURCE_ROUNDED = 0x10E2B + HIDE_SOURCE_SHARP = 0x10E2C + HIGH_QUALITY = 0x10E2D + HIGH_QUALITY_OUTLINED = 0x10E2E + HIGH_QUALITY_ROUNDED = 0x10E2F + HIGH_QUALITY_SHARP = 0x10E30 + HIGHLIGHT = 0x10E31 + HIGHLIGHT_ALT = 0x10E32 + HIGHLIGHT_ALT_OUTLINED = 0x10E33 + HIGHLIGHT_ALT_ROUNDED = 0x10E34 + HIGHLIGHT_ALT_SHARP = 0x10E35 + HIGHLIGHT_OFF = 0x10E36 + HIGHLIGHT_OFF_OUTLINED = 0x10E37 + HIGHLIGHT_OFF_ROUNDED = 0x10E38 + HIGHLIGHT_OFF_SHARP = 0x10E39 + HIGHLIGHT_OUTLINED = 0x10E3A + HIGHLIGHT_REMOVE = 0x10E3B + HIGHLIGHT_REMOVE_OUTLINED = 0x10E3C + HIGHLIGHT_REMOVE_ROUNDED = 0x10E3D + HIGHLIGHT_REMOVE_SHARP = 0x10E3E + HIGHLIGHT_ROUNDED = 0x10E3F + HIGHLIGHT_SHARP = 0x10E40 + HIKING = 0x10E41 + HIKING_OUTLINED = 0x10E42 + HIKING_ROUNDED = 0x10E43 + HIKING_SHARP = 0x10E44 + HISTORY = 0x10E45 + HISTORY_EDU = 0x10E46 + HISTORY_EDU_OUTLINED = 0x10E47 + HISTORY_EDU_ROUNDED = 0x10E48 + HISTORY_EDU_SHARP = 0x10E49 + HISTORY_OUTLINED = 0x10E4A + HISTORY_ROUNDED = 0x10E4B + HISTORY_SHARP = 0x10E4C + HISTORY_TOGGLE_OFF = 0x10E4D + HISTORY_TOGGLE_OFF_OUTLINED = 0x10E4E + HISTORY_TOGGLE_OFF_ROUNDED = 0x10E4F + HISTORY_TOGGLE_OFF_SHARP = 0x10E50 + HIVE = 0x10E51 + HIVE_OUTLINED = 0x10E52 + HIVE_ROUNDED = 0x10E53 + HIVE_SHARP = 0x10E54 + HLS = 0x10E55 + HLS_OFF = 0x10E56 + HLS_OFF_OUTLINED = 0x10E57 + HLS_OFF_ROUNDED = 0x10E58 + HLS_OFF_SHARP = 0x10E59 + HLS_OUTLINED = 0x10E5A + HLS_ROUNDED = 0x10E5B + HLS_SHARP = 0x10E5C + HOLIDAY_VILLAGE = 0x10E5D + HOLIDAY_VILLAGE_OUTLINED = 0x10E5E + HOLIDAY_VILLAGE_ROUNDED = 0x10E5F + HOLIDAY_VILLAGE_SHARP = 0x10E60 + HOME = 0x10E61 + HOME_FILLED = 0x10E62 + HOME_MAX = 0x10E63 + HOME_MAX_OUTLINED = 0x10E64 + HOME_MAX_ROUNDED = 0x10E65 + HOME_MAX_SHARP = 0x10E66 + HOME_MINI = 0x10E67 + HOME_MINI_OUTLINED = 0x10E68 + HOME_MINI_ROUNDED = 0x10E69 + HOME_MINI_SHARP = 0x10E6A + HOME_OUTLINED = 0x10E6B + HOME_REPAIR_SERVICE = 0x10E6C + HOME_REPAIR_SERVICE_OUTLINED = 0x10E6D + HOME_REPAIR_SERVICE_ROUNDED = 0x10E6E + HOME_REPAIR_SERVICE_SHARP = 0x10E6F + HOME_ROUNDED = 0x10E70 + HOME_SHARP = 0x10E71 + HOME_WORK = 0x10E72 + HOME_WORK_OUTLINED = 0x10E73 + HOME_WORK_ROUNDED = 0x10E74 + HOME_WORK_SHARP = 0x10E75 + HORIZONTAL_DISTRIBUTE = 0x10E76 + HORIZONTAL_DISTRIBUTE_OUTLINED = 0x10E77 + HORIZONTAL_DISTRIBUTE_ROUNDED = 0x10E78 + HORIZONTAL_DISTRIBUTE_SHARP = 0x10E79 + HORIZONTAL_RULE = 0x10E7A + HORIZONTAL_RULE_OUTLINED = 0x10E7B + HORIZONTAL_RULE_ROUNDED = 0x10E7C + HORIZONTAL_RULE_SHARP = 0x10E7D + HORIZONTAL_SPLIT = 0x10E7E + HORIZONTAL_SPLIT_OUTLINED = 0x10E7F + HORIZONTAL_SPLIT_ROUNDED = 0x10E80 + HORIZONTAL_SPLIT_SHARP = 0x10E81 + HOT_TUB = 0x10E82 + HOT_TUB_OUTLINED = 0x10E83 + HOT_TUB_ROUNDED = 0x10E84 + HOT_TUB_SHARP = 0x10E85 + HOTEL = 0x10E86 + HOTEL_CLASS = 0x10E87 + HOTEL_CLASS_OUTLINED = 0x10E88 + HOTEL_CLASS_ROUNDED = 0x10E89 + HOTEL_CLASS_SHARP = 0x10E8A + HOTEL_OUTLINED = 0x10E8B + HOTEL_ROUNDED = 0x10E8C + HOTEL_SHARP = 0x10E8D + HOURGLASS_BOTTOM = 0x10E8E + HOURGLASS_BOTTOM_OUTLINED = 0x10E8F + HOURGLASS_BOTTOM_ROUNDED = 0x10E90 + HOURGLASS_BOTTOM_SHARP = 0x10E91 + HOURGLASS_DISABLED = 0x10E92 + HOURGLASS_DISABLED_OUTLINED = 0x10E93 + HOURGLASS_DISABLED_ROUNDED = 0x10E94 + HOURGLASS_DISABLED_SHARP = 0x10E95 + HOURGLASS_EMPTY = 0x10E96 + HOURGLASS_EMPTY_OUTLINED = 0x10E97 + HOURGLASS_EMPTY_ROUNDED = 0x10E98 + HOURGLASS_EMPTY_SHARP = 0x10E99 + HOURGLASS_FULL = 0x10E9A + HOURGLASS_FULL_OUTLINED = 0x10E9B + HOURGLASS_FULL_ROUNDED = 0x10E9C + HOURGLASS_FULL_SHARP = 0x10E9D + HOURGLASS_TOP = 0x10E9E + HOURGLASS_TOP_OUTLINED = 0x10E9F + HOURGLASS_TOP_ROUNDED = 0x10EA0 + HOURGLASS_TOP_SHARP = 0x10EA1 + HOUSE = 0x10EA2 + HOUSE_OUTLINED = 0x10EA3 + HOUSE_ROUNDED = 0x10EA4 + HOUSE_SHARP = 0x10EA5 + HOUSE_SIDING = 0x10EA6 + HOUSE_SIDING_OUTLINED = 0x10EA7 + HOUSE_SIDING_ROUNDED = 0x10EA8 + HOUSE_SIDING_SHARP = 0x10EA9 + HOUSEBOAT = 0x10EAA + HOUSEBOAT_OUTLINED = 0x10EAB + HOUSEBOAT_ROUNDED = 0x10EAC + HOUSEBOAT_SHARP = 0x10EAD + HOW_TO_REG = 0x10EAE + HOW_TO_REG_OUTLINED = 0x10EAF + HOW_TO_REG_ROUNDED = 0x10EB0 + HOW_TO_REG_SHARP = 0x10EB1 + HOW_TO_VOTE = 0x10EB2 + HOW_TO_VOTE_OUTLINED = 0x10EB3 + HOW_TO_VOTE_ROUNDED = 0x10EB4 + HOW_TO_VOTE_SHARP = 0x10EB5 + HTML = 0x10EB6 + HTML_OUTLINED = 0x10EB7 + HTML_ROUNDED = 0x10EB8 + HTML_SHARP = 0x10EB9 + HTTP = 0x10EBA + HTTP_OUTLINED = 0x10EBB + HTTP_ROUNDED = 0x10EBC + HTTP_SHARP = 0x10EBD + HTTPS = 0x10EBE + HTTPS_OUTLINED = 0x10EBF + HTTPS_ROUNDED = 0x10EC0 + HTTPS_SHARP = 0x10EC1 + HUB = 0x10EC2 + HUB_OUTLINED = 0x10EC3 + HUB_ROUNDED = 0x10EC4 + HUB_SHARP = 0x10EC5 + HVAC = 0x10EC6 + HVAC_OUTLINED = 0x10EC7 + HVAC_ROUNDED = 0x10EC8 + HVAC_SHARP = 0x10EC9 + ICE_SKATING = 0x10ECA + ICE_SKATING_OUTLINED = 0x10ECB + ICE_SKATING_ROUNDED = 0x10ECC + ICE_SKATING_SHARP = 0x10ECD + ICECREAM = 0x10ECE + ICECREAM_OUTLINED = 0x10ECF + ICECREAM_ROUNDED = 0x10ED0 + ICECREAM_SHARP = 0x10ED1 + IMAGE = 0x10ED2 + IMAGE_ASPECT_RATIO = 0x10ED3 + IMAGE_ASPECT_RATIO_OUTLINED = 0x10ED4 + IMAGE_ASPECT_RATIO_ROUNDED = 0x10ED5 + IMAGE_ASPECT_RATIO_SHARP = 0x10ED6 + IMAGE_NOT_SUPPORTED = 0x10ED7 + IMAGE_NOT_SUPPORTED_OUTLINED = 0x10ED8 + IMAGE_NOT_SUPPORTED_ROUNDED = 0x10ED9 + IMAGE_NOT_SUPPORTED_SHARP = 0x10EDA + IMAGE_OUTLINED = 0x10EDB + IMAGE_ROUNDED = 0x10EDC + IMAGE_SEARCH = 0x10EDD + IMAGE_SEARCH_OUTLINED = 0x10EDE + IMAGE_SEARCH_ROUNDED = 0x10EDF + IMAGE_SEARCH_SHARP = 0x10EE0 + IMAGE_SHARP = 0x10EE1 + IMAGESEARCH_ROLLER = 0x10EE2 + IMAGESEARCH_ROLLER_OUTLINED = 0x10EE3 + IMAGESEARCH_ROLLER_ROUNDED = 0x10EE4 + IMAGESEARCH_ROLLER_SHARP = 0x10EE5 + IMPORT_CONTACTS = 0x10EE6 + IMPORT_CONTACTS_OUTLINED = 0x10EE7 + IMPORT_CONTACTS_ROUNDED = 0x10EE8 + IMPORT_CONTACTS_SHARP = 0x10EE9 + IMPORT_EXPORT = 0x10EEA + IMPORT_EXPORT_OUTLINED = 0x10EEB + IMPORT_EXPORT_ROUNDED = 0x10EEC + IMPORT_EXPORT_SHARP = 0x10EED + IMPORTANT_DEVICES = 0x10EEE + IMPORTANT_DEVICES_OUTLINED = 0x10EEF + IMPORTANT_DEVICES_ROUNDED = 0x10EF0 + IMPORTANT_DEVICES_SHARP = 0x10EF1 + INBOX = 0x10EF2 + INBOX_OUTLINED = 0x10EF3 + INBOX_ROUNDED = 0x10EF4 + INBOX_SHARP = 0x10EF5 + INCOMPLETE_CIRCLE = 0x10EF6 + INCOMPLETE_CIRCLE_OUTLINED = 0x10EF7 + INCOMPLETE_CIRCLE_ROUNDED = 0x10EF8 + INCOMPLETE_CIRCLE_SHARP = 0x10EF9 + INDETERMINATE_CHECK_BOX = 0x10EFA + INDETERMINATE_CHECK_BOX_OUTLINED = 0x10EFB + INDETERMINATE_CHECK_BOX_ROUNDED = 0x10EFC + INDETERMINATE_CHECK_BOX_SHARP = 0x10EFD + INFO = 0x10EFE + INFO_OUTLINE = 0x10EFF + INFO_OUTLINE_ROUNDED = 0x10F00 + INFO_OUTLINE_SHARP = 0x10F01 + INFO_OUTLINED = 0x10F02 + INFO_ROUNDED = 0x10F03 + INFO_SHARP = 0x10F04 + INPUT = 0x10F05 + INPUT_OUTLINED = 0x10F06 + INPUT_ROUNDED = 0x10F07 + INPUT_SHARP = 0x10F08 + INSERT_CHART = 0x10F09 + INSERT_CHART_OUTLINED = 0x10F0A + INSERT_CHART_OUTLINED_OUTLINED = 0x10F0B + INSERT_CHART_OUTLINED_ROUNDED = 0x10F0C + INSERT_CHART_OUTLINED_SHARP = 0x10F0D + INSERT_CHART_ROUNDED = 0x10F0E + INSERT_CHART_SHARP = 0x10F0F + INSERT_COMMENT = 0x10F10 + INSERT_COMMENT_OUTLINED = 0x10F11 + INSERT_COMMENT_ROUNDED = 0x10F12 + INSERT_COMMENT_SHARP = 0x10F13 + INSERT_DRIVE_FILE = 0x10F14 + INSERT_DRIVE_FILE_OUTLINED = 0x10F15 + INSERT_DRIVE_FILE_ROUNDED = 0x10F16 + INSERT_DRIVE_FILE_SHARP = 0x10F17 + INSERT_EMOTICON = 0x10F18 + INSERT_EMOTICON_OUTLINED = 0x10F19 + INSERT_EMOTICON_ROUNDED = 0x10F1A + INSERT_EMOTICON_SHARP = 0x10F1B + INSERT_INVITATION = 0x10F1C + INSERT_INVITATION_OUTLINED = 0x10F1D + INSERT_INVITATION_ROUNDED = 0x10F1E + INSERT_INVITATION_SHARP = 0x10F1F + INSERT_LINK = 0x10F20 + INSERT_LINK_OUTLINED = 0x10F21 + INSERT_LINK_ROUNDED = 0x10F22 + INSERT_LINK_SHARP = 0x10F23 + INSERT_PAGE_BREAK = 0x10F24 + INSERT_PAGE_BREAK_OUTLINED = 0x10F25 + INSERT_PAGE_BREAK_ROUNDED = 0x10F26 + INSERT_PAGE_BREAK_SHARP = 0x10F27 + INSERT_PHOTO = 0x10F28 + INSERT_PHOTO_OUTLINED = 0x10F29 + INSERT_PHOTO_ROUNDED = 0x10F2A + INSERT_PHOTO_SHARP = 0x10F2B + INSIGHTS = 0x10F2C + INSIGHTS_OUTLINED = 0x10F2D + INSIGHTS_ROUNDED = 0x10F2E + INSIGHTS_SHARP = 0x10F2F + INSTALL_DESKTOP = 0x10F30 + INSTALL_DESKTOP_OUTLINED = 0x10F31 + INSTALL_DESKTOP_ROUNDED = 0x10F32 + INSTALL_DESKTOP_SHARP = 0x10F33 + INSTALL_MOBILE = 0x10F34 + INSTALL_MOBILE_OUTLINED = 0x10F35 + INSTALL_MOBILE_ROUNDED = 0x10F36 + INSTALL_MOBILE_SHARP = 0x10F37 + INTEGRATION_INSTRUCTIONS = 0x10F38 + INTEGRATION_INSTRUCTIONS_OUTLINED = 0x10F39 + INTEGRATION_INSTRUCTIONS_ROUNDED = 0x10F3A + INTEGRATION_INSTRUCTIONS_SHARP = 0x10F3B + INTERESTS = 0x10F3C + INTERESTS_OUTLINED = 0x10F3D + INTERESTS_ROUNDED = 0x10F3E + INTERESTS_SHARP = 0x10F3F + INTERPRETER_MODE = 0x10F40 + INTERPRETER_MODE_OUTLINED = 0x10F41 + INTERPRETER_MODE_ROUNDED = 0x10F42 + INTERPRETER_MODE_SHARP = 0x10F43 + INVENTORY = 0x10F44 + INVENTORY_2 = 0x10F45 + INVENTORY_2_OUTLINED = 0x10F46 + INVENTORY_2_ROUNDED = 0x10F47 + INVENTORY_2_SHARP = 0x10F48 + INVENTORY_OUTLINED = 0x10F49 + INVENTORY_ROUNDED = 0x10F4A + INVENTORY_SHARP = 0x10F4B + INVERT_COLORS = 0x10F4C + INVERT_COLORS_OFF = 0x10F4D + INVERT_COLORS_OFF_OUTLINED = 0x10F4E + INVERT_COLORS_OFF_ROUNDED = 0x10F4F + INVERT_COLORS_OFF_SHARP = 0x10F50 + INVERT_COLORS_ON = 0x10F51 + INVERT_COLORS_ON_OUTLINED = 0x10F52 + INVERT_COLORS_ON_ROUNDED = 0x10F53 + INVERT_COLORS_ON_SHARP = 0x10F54 + INVERT_COLORS_OUTLINED = 0x10F55 + INVERT_COLORS_ROUNDED = 0x10F56 + INVERT_COLORS_SHARP = 0x10F57 + IOS_SHARE = 0x10F58 + IOS_SHARE_OUTLINED = 0x10F59 + IOS_SHARE_ROUNDED = 0x10F5A + IOS_SHARE_SHARP = 0x10F5B + IRON = 0x10F5C + IRON_OUTLINED = 0x10F5D + IRON_ROUNDED = 0x10F5E + IRON_SHARP = 0x10F5F + ISO = 0x10F60 + ISO_OUTLINED = 0x10F61 + ISO_ROUNDED = 0x10F62 + ISO_SHARP = 0x10F63 + JAVASCRIPT = 0x10F64 + JAVASCRIPT_OUTLINED = 0x10F65 + JAVASCRIPT_ROUNDED = 0x10F66 + JAVASCRIPT_SHARP = 0x10F67 + JOIN_FULL = 0x10F68 + JOIN_FULL_OUTLINED = 0x10F69 + JOIN_FULL_ROUNDED = 0x10F6A + JOIN_FULL_SHARP = 0x10F6B + JOIN_INNER = 0x10F6C + JOIN_INNER_OUTLINED = 0x10F6D + JOIN_INNER_ROUNDED = 0x10F6E + JOIN_INNER_SHARP = 0x10F6F + JOIN_LEFT = 0x10F70 + JOIN_LEFT_OUTLINED = 0x10F71 + JOIN_LEFT_ROUNDED = 0x10F72 + JOIN_LEFT_SHARP = 0x10F73 + JOIN_RIGHT = 0x10F74 + JOIN_RIGHT_OUTLINED = 0x10F75 + JOIN_RIGHT_ROUNDED = 0x10F76 + JOIN_RIGHT_SHARP = 0x10F77 + KAYAKING = 0x10F78 + KAYAKING_OUTLINED = 0x10F79 + KAYAKING_ROUNDED = 0x10F7A + KAYAKING_SHARP = 0x10F7B + KEBAB_DINING = 0x10F7C + KEBAB_DINING_OUTLINED = 0x10F7D + KEBAB_DINING_ROUNDED = 0x10F7E + KEBAB_DINING_SHARP = 0x10F7F + KEY = 0x10F80 + KEY_OFF = 0x10F81 + KEY_OFF_OUTLINED = 0x10F82 + KEY_OFF_ROUNDED = 0x10F83 + KEY_OFF_SHARP = 0x10F84 + KEY_OUTLINED = 0x10F85 + KEY_ROUNDED = 0x10F86 + KEY_SHARP = 0x10F87 + KEYBOARD = 0x10F88 + KEYBOARD_ALT = 0x10F89 + KEYBOARD_ALT_OUTLINED = 0x10F8A + KEYBOARD_ALT_ROUNDED = 0x10F8B + KEYBOARD_ALT_SHARP = 0x10F8C + KEYBOARD_ARROW_DOWN = 0x10F8D + KEYBOARD_ARROW_DOWN_OUTLINED = 0x10F8E + KEYBOARD_ARROW_DOWN_ROUNDED = 0x10F8F + KEYBOARD_ARROW_DOWN_SHARP = 0x10F90 + KEYBOARD_ARROW_LEFT = 0x10F91 + KEYBOARD_ARROW_LEFT_OUTLINED = 0x10F92 + KEYBOARD_ARROW_LEFT_ROUNDED = 0x10F93 + KEYBOARD_ARROW_LEFT_SHARP = 0x10F94 + KEYBOARD_ARROW_RIGHT = 0x10F95 + KEYBOARD_ARROW_RIGHT_OUTLINED = 0x10F96 + KEYBOARD_ARROW_RIGHT_ROUNDED = 0x10F97 + KEYBOARD_ARROW_RIGHT_SHARP = 0x10F98 + KEYBOARD_ARROW_UP = 0x10F99 + KEYBOARD_ARROW_UP_OUTLINED = 0x10F9A + KEYBOARD_ARROW_UP_ROUNDED = 0x10F9B + KEYBOARD_ARROW_UP_SHARP = 0x10F9C + KEYBOARD_BACKSPACE = 0x10F9D + KEYBOARD_BACKSPACE_OUTLINED = 0x10F9E + KEYBOARD_BACKSPACE_ROUNDED = 0x10F9F + KEYBOARD_BACKSPACE_SHARP = 0x10FA0 + KEYBOARD_CAPSLOCK = 0x10FA1 + KEYBOARD_CAPSLOCK_OUTLINED = 0x10FA2 + KEYBOARD_CAPSLOCK_ROUNDED = 0x10FA3 + KEYBOARD_CAPSLOCK_SHARP = 0x10FA4 + KEYBOARD_COMMAND_KEY = 0x10FA5 + KEYBOARD_COMMAND_KEY_OUTLINED = 0x10FA6 + KEYBOARD_COMMAND_KEY_ROUNDED = 0x10FA7 + KEYBOARD_COMMAND_KEY_SHARP = 0x10FA8 + KEYBOARD_CONTROL = 0x10FA9 + KEYBOARD_CONTROL_KEY = 0x10FAA + KEYBOARD_CONTROL_KEY_OUTLINED = 0x10FAB + KEYBOARD_CONTROL_KEY_ROUNDED = 0x10FAC + KEYBOARD_CONTROL_KEY_SHARP = 0x10FAD + KEYBOARD_CONTROL_OUTLINED = 0x10FAE + KEYBOARD_CONTROL_ROUNDED = 0x10FAF + KEYBOARD_CONTROL_SHARP = 0x10FB0 + KEYBOARD_DOUBLE_ARROW_DOWN = 0x10FB1 + KEYBOARD_DOUBLE_ARROW_DOWN_OUTLINED = 0x10FB2 + KEYBOARD_DOUBLE_ARROW_DOWN_ROUNDED = 0x10FB3 + KEYBOARD_DOUBLE_ARROW_DOWN_SHARP = 0x10FB4 + KEYBOARD_DOUBLE_ARROW_LEFT = 0x10FB5 + KEYBOARD_DOUBLE_ARROW_LEFT_OUTLINED = 0x10FB6 + KEYBOARD_DOUBLE_ARROW_LEFT_ROUNDED = 0x10FB7 + KEYBOARD_DOUBLE_ARROW_LEFT_SHARP = 0x10FB8 + KEYBOARD_DOUBLE_ARROW_RIGHT = 0x10FB9 + KEYBOARD_DOUBLE_ARROW_RIGHT_OUTLINED = 0x10FBA + KEYBOARD_DOUBLE_ARROW_RIGHT_ROUNDED = 0x10FBB + KEYBOARD_DOUBLE_ARROW_RIGHT_SHARP = 0x10FBC + KEYBOARD_DOUBLE_ARROW_UP = 0x10FBD + KEYBOARD_DOUBLE_ARROW_UP_OUTLINED = 0x10FBE + KEYBOARD_DOUBLE_ARROW_UP_ROUNDED = 0x10FBF + KEYBOARD_DOUBLE_ARROW_UP_SHARP = 0x10FC0 + KEYBOARD_HIDE = 0x10FC1 + KEYBOARD_HIDE_OUTLINED = 0x10FC2 + KEYBOARD_HIDE_ROUNDED = 0x10FC3 + KEYBOARD_HIDE_SHARP = 0x10FC4 + KEYBOARD_OPTION_KEY = 0x10FC5 + KEYBOARD_OPTION_KEY_OUTLINED = 0x10FC6 + KEYBOARD_OPTION_KEY_ROUNDED = 0x10FC7 + KEYBOARD_OPTION_KEY_SHARP = 0x10FC8 + KEYBOARD_OUTLINED = 0x10FC9 + KEYBOARD_RETURN = 0x10FCA + KEYBOARD_RETURN_OUTLINED = 0x10FCB + KEYBOARD_RETURN_ROUNDED = 0x10FCC + KEYBOARD_RETURN_SHARP = 0x10FCD + KEYBOARD_ROUNDED = 0x10FCE + KEYBOARD_SHARP = 0x10FCF + KEYBOARD_TAB = 0x10FD0 + KEYBOARD_TAB_OUTLINED = 0x10FD1 + KEYBOARD_TAB_ROUNDED = 0x10FD2 + KEYBOARD_TAB_SHARP = 0x10FD3 + KEYBOARD_VOICE = 0x10FD4 + KEYBOARD_VOICE_OUTLINED = 0x10FD5 + KEYBOARD_VOICE_ROUNDED = 0x10FD6 + KEYBOARD_VOICE_SHARP = 0x10FD7 + KING_BED = 0x10FD8 + KING_BED_OUTLINED = 0x10FD9 + KING_BED_ROUNDED = 0x10FDA + KING_BED_SHARP = 0x10FDB + KITCHEN = 0x10FDC + KITCHEN_OUTLINED = 0x10FDD + KITCHEN_ROUNDED = 0x10FDE + KITCHEN_SHARP = 0x10FDF + KITESURFING = 0x10FE0 + KITESURFING_OUTLINED = 0x10FE1 + KITESURFING_ROUNDED = 0x10FE2 + KITESURFING_SHARP = 0x10FE3 + LABEL = 0x10FE4 + LABEL_IMPORTANT = 0x10FE5 + LABEL_IMPORTANT_OUTLINE = 0x10FE6 + LABEL_IMPORTANT_OUTLINE_ROUNDED = 0x10FE7 + LABEL_IMPORTANT_OUTLINE_SHARP = 0x10FE8 + LABEL_IMPORTANT_OUTLINED = 0x10FE9 + LABEL_IMPORTANT_ROUNDED = 0x10FEA + LABEL_IMPORTANT_SHARP = 0x10FEB + LABEL_OFF = 0x10FEC + LABEL_OFF_OUTLINED = 0x10FED + LABEL_OFF_ROUNDED = 0x10FEE + LABEL_OFF_SHARP = 0x10FEF + LABEL_OUTLINE = 0x10FF0 + LABEL_OUTLINE_ROUNDED = 0x10FF1 + LABEL_OUTLINE_SHARP = 0x10FF2 + LABEL_OUTLINED = 0x10FF3 + LABEL_ROUNDED = 0x10FF4 + LABEL_SHARP = 0x10FF5 + LAN = 0x10FF6 + LAN_OUTLINED = 0x10FF7 + LAN_ROUNDED = 0x10FF8 + LAN_SHARP = 0x10FF9 + LANDSCAPE = 0x10FFA + LANDSCAPE_OUTLINED = 0x10FFB + LANDSCAPE_ROUNDED = 0x10FFC + LANDSCAPE_SHARP = 0x10FFD + LANDSLIDE = 0x10FFE + LANDSLIDE_OUTLINED = 0x10FFF + LANDSLIDE_ROUNDED = 0x11000 + LANDSLIDE_SHARP = 0x11001 + LANGUAGE = 0x11002 + LANGUAGE_OUTLINED = 0x11003 + LANGUAGE_ROUNDED = 0x11004 + LANGUAGE_SHARP = 0x11005 + LAPTOP = 0x11006 + LAPTOP_CHROMEBOOK = 0x11007 + LAPTOP_CHROMEBOOK_OUTLINED = 0x11008 + LAPTOP_CHROMEBOOK_ROUNDED = 0x11009 + LAPTOP_CHROMEBOOK_SHARP = 0x1100A + LAPTOP_MAC = 0x1100B + LAPTOP_MAC_OUTLINED = 0x1100C + LAPTOP_MAC_ROUNDED = 0x1100D + LAPTOP_MAC_SHARP = 0x1100E + LAPTOP_OUTLINED = 0x1100F + LAPTOP_ROUNDED = 0x11010 + LAPTOP_SHARP = 0x11011 + LAPTOP_WINDOWS = 0x11012 + LAPTOP_WINDOWS_OUTLINED = 0x11013 + LAPTOP_WINDOWS_ROUNDED = 0x11014 + LAPTOP_WINDOWS_SHARP = 0x11015 + LAST_PAGE = 0x11016 + LAST_PAGE_OUTLINED = 0x11017 + LAST_PAGE_ROUNDED = 0x11018 + LAST_PAGE_SHARP = 0x11019 + LAUNCH = 0x1101A + LAUNCH_OUTLINED = 0x1101B + LAUNCH_ROUNDED = 0x1101C + LAUNCH_SHARP = 0x1101D + LAYERS = 0x1101E + LAYERS_CLEAR = 0x1101F + LAYERS_CLEAR_OUTLINED = 0x11020 + LAYERS_CLEAR_ROUNDED = 0x11021 + LAYERS_CLEAR_SHARP = 0x11022 + LAYERS_OUTLINED = 0x11023 + LAYERS_ROUNDED = 0x11024 + LAYERS_SHARP = 0x11025 + LEADERBOARD = 0x11026 + LEADERBOARD_OUTLINED = 0x11027 + LEADERBOARD_ROUNDED = 0x11028 + LEADERBOARD_SHARP = 0x11029 + LEAK_ADD = 0x1102A + LEAK_ADD_OUTLINED = 0x1102B + LEAK_ADD_ROUNDED = 0x1102C + LEAK_ADD_SHARP = 0x1102D + LEAK_REMOVE = 0x1102E + LEAK_REMOVE_OUTLINED = 0x1102F + LEAK_REMOVE_ROUNDED = 0x11030 + LEAK_REMOVE_SHARP = 0x11031 + LEAVE_BAGS_AT_HOME = 0x11032 + LEAVE_BAGS_AT_HOME_OUTLINED = 0x11033 + LEAVE_BAGS_AT_HOME_ROUNDED = 0x11034 + LEAVE_BAGS_AT_HOME_SHARP = 0x11035 + LEGEND_TOGGLE = 0x11036 + LEGEND_TOGGLE_OUTLINED = 0x11037 + LEGEND_TOGGLE_ROUNDED = 0x11038 + LEGEND_TOGGLE_SHARP = 0x11039 + LENS = 0x1103A + LENS_BLUR = 0x1103B + LENS_BLUR_OUTLINED = 0x1103C + LENS_BLUR_ROUNDED = 0x1103D + LENS_BLUR_SHARP = 0x1103E + LENS_OUTLINED = 0x1103F + LENS_ROUNDED = 0x11040 + LENS_SHARP = 0x11041 + LIBRARY_ADD = 0x11042 + LIBRARY_ADD_CHECK = 0x11043 + LIBRARY_ADD_CHECK_OUTLINED = 0x11044 + LIBRARY_ADD_CHECK_ROUNDED = 0x11045 + LIBRARY_ADD_CHECK_SHARP = 0x11046 + LIBRARY_ADD_OUTLINED = 0x11047 + LIBRARY_ADD_ROUNDED = 0x11048 + LIBRARY_ADD_SHARP = 0x11049 + LIBRARY_BOOKS = 0x1104A + LIBRARY_BOOKS_OUTLINED = 0x1104B + LIBRARY_BOOKS_ROUNDED = 0x1104C + LIBRARY_BOOKS_SHARP = 0x1104D + LIBRARY_MUSIC = 0x1104E + LIBRARY_MUSIC_OUTLINED = 0x1104F + LIBRARY_MUSIC_ROUNDED = 0x11050 + LIBRARY_MUSIC_SHARP = 0x11051 + LIGHT = 0x11052 + LIGHT_MODE = 0x11053 + LIGHT_MODE_OUTLINED = 0x11054 + LIGHT_MODE_ROUNDED = 0x11055 + LIGHT_MODE_SHARP = 0x11056 + LIGHT_OUTLINED = 0x11057 + LIGHT_ROUNDED = 0x11058 + LIGHT_SHARP = 0x11059 + LIGHTBULB = 0x1105A + LIGHTBULB_CIRCLE = 0x1105B + LIGHTBULB_CIRCLE_OUTLINED = 0x1105C + LIGHTBULB_CIRCLE_ROUNDED = 0x1105D + LIGHTBULB_CIRCLE_SHARP = 0x1105E + LIGHTBULB_OUTLINE = 0x1105F + LIGHTBULB_OUTLINE_ROUNDED = 0x11060 + LIGHTBULB_OUTLINE_SHARP = 0x11061 + LIGHTBULB_OUTLINED = 0x11062 + LIGHTBULB_ROUNDED = 0x11063 + LIGHTBULB_SHARP = 0x11064 + LINE_AXIS = 0x11065 + LINE_AXIS_OUTLINED = 0x11066 + LINE_AXIS_ROUNDED = 0x11067 + LINE_AXIS_SHARP = 0x11068 + LINE_STYLE = 0x11069 + LINE_STYLE_OUTLINED = 0x1106A + LINE_STYLE_ROUNDED = 0x1106B + LINE_STYLE_SHARP = 0x1106C + LINE_WEIGHT = 0x1106D + LINE_WEIGHT_OUTLINED = 0x1106E + LINE_WEIGHT_ROUNDED = 0x1106F + LINE_WEIGHT_SHARP = 0x11070 + LINEAR_SCALE = 0x11071 + LINEAR_SCALE_OUTLINED = 0x11072 + LINEAR_SCALE_ROUNDED = 0x11073 + LINEAR_SCALE_SHARP = 0x11074 + LINK = 0x11075 + LINK_OFF = 0x11076 + LINK_OFF_OUTLINED = 0x11077 + LINK_OFF_ROUNDED = 0x11078 + LINK_OFF_SHARP = 0x11079 + LINK_OUTLINED = 0x1107A + LINK_ROUNDED = 0x1107B + LINK_SHARP = 0x1107C + LINKED_CAMERA = 0x1107D + LINKED_CAMERA_OUTLINED = 0x1107E + LINKED_CAMERA_ROUNDED = 0x1107F + LINKED_CAMERA_SHARP = 0x11080 + LIQUOR = 0x11081 + LIQUOR_OUTLINED = 0x11082 + LIQUOR_ROUNDED = 0x11083 + LIQUOR_SHARP = 0x11084 + LIST = 0x11085 + LIST_ALT = 0x11086 + LIST_ALT_OUTLINED = 0x11087 + LIST_ALT_ROUNDED = 0x11088 + LIST_ALT_SHARP = 0x11089 + LIST_OUTLINED = 0x1108A + LIST_ROUNDED = 0x1108B + LIST_SHARP = 0x1108C + LIVE_HELP = 0x1108D + LIVE_HELP_OUTLINED = 0x1108E + LIVE_HELP_ROUNDED = 0x1108F + LIVE_HELP_SHARP = 0x11090 + LIVE_TV = 0x11091 + LIVE_TV_OUTLINED = 0x11092 + LIVE_TV_ROUNDED = 0x11093 + LIVE_TV_SHARP = 0x11094 + LIVING = 0x11095 + LIVING_OUTLINED = 0x11096 + LIVING_ROUNDED = 0x11097 + LIVING_SHARP = 0x11098 + LOCAL_ACTIVITY = 0x11099 + LOCAL_ACTIVITY_OUTLINED = 0x1109A + LOCAL_ACTIVITY_ROUNDED = 0x1109B + LOCAL_ACTIVITY_SHARP = 0x1109C + LOCAL_AIRPORT = 0x1109D + LOCAL_AIRPORT_OUTLINED = 0x1109E + LOCAL_AIRPORT_ROUNDED = 0x1109F + LOCAL_AIRPORT_SHARP = 0x110A0 + LOCAL_ATM = 0x110A1 + LOCAL_ATM_OUTLINED = 0x110A2 + LOCAL_ATM_ROUNDED = 0x110A3 + LOCAL_ATM_SHARP = 0x110A4 + LOCAL_ATTRACTION = 0x110A5 + LOCAL_ATTRACTION_OUTLINED = 0x110A6 + LOCAL_ATTRACTION_ROUNDED = 0x110A7 + LOCAL_ATTRACTION_SHARP = 0x110A8 + LOCAL_BAR = 0x110A9 + LOCAL_BAR_OUTLINED = 0x110AA + LOCAL_BAR_ROUNDED = 0x110AB + LOCAL_BAR_SHARP = 0x110AC + LOCAL_CAFE = 0x110AD + LOCAL_CAFE_OUTLINED = 0x110AE + LOCAL_CAFE_ROUNDED = 0x110AF + LOCAL_CAFE_SHARP = 0x110B0 + LOCAL_CAR_WASH = 0x110B1 + LOCAL_CAR_WASH_OUTLINED = 0x110B2 + LOCAL_CAR_WASH_ROUNDED = 0x110B3 + LOCAL_CAR_WASH_SHARP = 0x110B4 + LOCAL_CONVENIENCE_STORE = 0x110B5 + LOCAL_CONVENIENCE_STORE_OUTLINED = 0x110B6 + LOCAL_CONVENIENCE_STORE_ROUNDED = 0x110B7 + LOCAL_CONVENIENCE_STORE_SHARP = 0x110B8 + LOCAL_DINING = 0x110B9 + LOCAL_DINING_OUTLINED = 0x110BA + LOCAL_DINING_ROUNDED = 0x110BB + LOCAL_DINING_SHARP = 0x110BC + LOCAL_DRINK = 0x110BD + LOCAL_DRINK_OUTLINED = 0x110BE + LOCAL_DRINK_ROUNDED = 0x110BF + LOCAL_DRINK_SHARP = 0x110C0 + LOCAL_FIRE_DEPARTMENT = 0x110C1 + LOCAL_FIRE_DEPARTMENT_OUTLINED = 0x110C2 + LOCAL_FIRE_DEPARTMENT_ROUNDED = 0x110C3 + LOCAL_FIRE_DEPARTMENT_SHARP = 0x110C4 + LOCAL_FLORIST = 0x110C5 + LOCAL_FLORIST_OUTLINED = 0x110C6 + LOCAL_FLORIST_ROUNDED = 0x110C7 + LOCAL_FLORIST_SHARP = 0x110C8 + LOCAL_GAS_STATION = 0x110C9 + LOCAL_GAS_STATION_OUTLINED = 0x110CA + LOCAL_GAS_STATION_ROUNDED = 0x110CB + LOCAL_GAS_STATION_SHARP = 0x110CC + LOCAL_GROCERY_STORE = 0x110CD + LOCAL_GROCERY_STORE_OUTLINED = 0x110CE + LOCAL_GROCERY_STORE_ROUNDED = 0x110CF + LOCAL_GROCERY_STORE_SHARP = 0x110D0 + LOCAL_HOSPITAL = 0x110D1 + LOCAL_HOSPITAL_OUTLINED = 0x110D2 + LOCAL_HOSPITAL_ROUNDED = 0x110D3 + LOCAL_HOSPITAL_SHARP = 0x110D4 + LOCAL_HOTEL = 0x110D5 + LOCAL_HOTEL_OUTLINED = 0x110D6 + LOCAL_HOTEL_ROUNDED = 0x110D7 + LOCAL_HOTEL_SHARP = 0x110D8 + LOCAL_LAUNDRY_SERVICE = 0x110D9 + LOCAL_LAUNDRY_SERVICE_OUTLINED = 0x110DA + LOCAL_LAUNDRY_SERVICE_ROUNDED = 0x110DB + LOCAL_LAUNDRY_SERVICE_SHARP = 0x110DC + LOCAL_LIBRARY = 0x110DD + LOCAL_LIBRARY_OUTLINED = 0x110DE + LOCAL_LIBRARY_ROUNDED = 0x110DF + LOCAL_LIBRARY_SHARP = 0x110E0 + LOCAL_MALL = 0x110E1 + LOCAL_MALL_OUTLINED = 0x110E2 + LOCAL_MALL_ROUNDED = 0x110E3 + LOCAL_MALL_SHARP = 0x110E4 + LOCAL_MOVIES = 0x110E5 + LOCAL_MOVIES_OUTLINED = 0x110E6 + LOCAL_MOVIES_ROUNDED = 0x110E7 + LOCAL_MOVIES_SHARP = 0x110E8 + LOCAL_OFFER = 0x110E9 + LOCAL_OFFER_OUTLINED = 0x110EA + LOCAL_OFFER_ROUNDED = 0x110EB + LOCAL_OFFER_SHARP = 0x110EC + LOCAL_PARKING = 0x110ED + LOCAL_PARKING_OUTLINED = 0x110EE + LOCAL_PARKING_ROUNDED = 0x110EF + LOCAL_PARKING_SHARP = 0x110F0 + LOCAL_PHARMACY = 0x110F1 + LOCAL_PHARMACY_OUTLINED = 0x110F2 + LOCAL_PHARMACY_ROUNDED = 0x110F3 + LOCAL_PHARMACY_SHARP = 0x110F4 + LOCAL_PHONE = 0x110F5 + LOCAL_PHONE_OUTLINED = 0x110F6 + LOCAL_PHONE_ROUNDED = 0x110F7 + LOCAL_PHONE_SHARP = 0x110F8 + LOCAL_PIZZA = 0x110F9 + LOCAL_PIZZA_OUTLINED = 0x110FA + LOCAL_PIZZA_ROUNDED = 0x110FB + LOCAL_PIZZA_SHARP = 0x110FC + LOCAL_PLAY = 0x110FD + LOCAL_PLAY_OUTLINED = 0x110FE + LOCAL_PLAY_ROUNDED = 0x110FF + LOCAL_PLAY_SHARP = 0x11100 + LOCAL_POLICE = 0x11101 + LOCAL_POLICE_OUTLINED = 0x11102 + LOCAL_POLICE_ROUNDED = 0x11103 + LOCAL_POLICE_SHARP = 0x11104 + LOCAL_POST_OFFICE = 0x11105 + LOCAL_POST_OFFICE_OUTLINED = 0x11106 + LOCAL_POST_OFFICE_ROUNDED = 0x11107 + LOCAL_POST_OFFICE_SHARP = 0x11108 + LOCAL_PRINT_SHOP = 0x11109 + LOCAL_PRINT_SHOP_OUTLINED = 0x1110A + LOCAL_PRINT_SHOP_ROUNDED = 0x1110B + LOCAL_PRINT_SHOP_SHARP = 0x1110C + LOCAL_PRINTSHOP = 0x1110D + LOCAL_PRINTSHOP_OUTLINED = 0x1110E + LOCAL_PRINTSHOP_ROUNDED = 0x1110F + LOCAL_PRINTSHOP_SHARP = 0x11110 + LOCAL_RESTAURANT = 0x11111 + LOCAL_RESTAURANT_OUTLINED = 0x11112 + LOCAL_RESTAURANT_ROUNDED = 0x11113 + LOCAL_RESTAURANT_SHARP = 0x11114 + LOCAL_SEE = 0x11115 + LOCAL_SEE_OUTLINED = 0x11116 + LOCAL_SEE_ROUNDED = 0x11117 + LOCAL_SEE_SHARP = 0x11118 + LOCAL_SHIPPING = 0x11119 + LOCAL_SHIPPING_OUTLINED = 0x1111A + LOCAL_SHIPPING_ROUNDED = 0x1111B + LOCAL_SHIPPING_SHARP = 0x1111C + LOCAL_TAXI = 0x1111D + LOCAL_TAXI_OUTLINED = 0x1111E + LOCAL_TAXI_ROUNDED = 0x1111F + LOCAL_TAXI_SHARP = 0x11120 + LOCATION_CITY = 0x11121 + LOCATION_CITY_OUTLINED = 0x11122 + LOCATION_CITY_ROUNDED = 0x11123 + LOCATION_CITY_SHARP = 0x11124 + LOCATION_DISABLED = 0x11125 + LOCATION_DISABLED_OUTLINED = 0x11126 + LOCATION_DISABLED_ROUNDED = 0x11127 + LOCATION_DISABLED_SHARP = 0x11128 + LOCATION_HISTORY = 0x11129 + LOCATION_HISTORY_OUTLINED = 0x1112A + LOCATION_HISTORY_ROUNDED = 0x1112B + LOCATION_HISTORY_SHARP = 0x1112C + LOCATION_OFF = 0x1112D + LOCATION_OFF_OUTLINED = 0x1112E + LOCATION_OFF_ROUNDED = 0x1112F + LOCATION_OFF_SHARP = 0x11130 + LOCATION_ON = 0x11131 + LOCATION_ON_OUTLINED = 0x11132 + LOCATION_ON_ROUNDED = 0x11133 + LOCATION_ON_SHARP = 0x11134 + LOCATION_PIN = 0x11135 + LOCATION_SEARCHING = 0x11136 + LOCATION_SEARCHING_OUTLINED = 0x11137 + LOCATION_SEARCHING_ROUNDED = 0x11138 + LOCATION_SEARCHING_SHARP = 0x11139 + LOCK = 0x1113A + LOCK_CLOCK = 0x1113B + LOCK_CLOCK_OUTLINED = 0x1113C + LOCK_CLOCK_ROUNDED = 0x1113D + LOCK_CLOCK_SHARP = 0x1113E + LOCK_OPEN = 0x1113F + LOCK_OPEN_OUTLINED = 0x11140 + LOCK_OPEN_ROUNDED = 0x11141 + LOCK_OPEN_SHARP = 0x11142 + LOCK_OUTLINE = 0x11143 + LOCK_OUTLINE_ROUNDED = 0x11144 + LOCK_OUTLINE_SHARP = 0x11145 + LOCK_OUTLINED = 0x11146 + LOCK_PERSON = 0x11147 + LOCK_PERSON_OUTLINED = 0x11148 + LOCK_PERSON_ROUNDED = 0x11149 + LOCK_PERSON_SHARP = 0x1114A + LOCK_RESET = 0x1114B + LOCK_RESET_OUTLINED = 0x1114C + LOCK_RESET_ROUNDED = 0x1114D + LOCK_RESET_SHARP = 0x1114E + LOCK_ROUNDED = 0x1114F + LOCK_SHARP = 0x11150 + LOGIN = 0x11151 + LOGIN_OUTLINED = 0x11152 + LOGIN_ROUNDED = 0x11153 + LOGIN_SHARP = 0x11154 + LOGO_DEV = 0x11155 + LOGO_DEV_OUTLINED = 0x11156 + LOGO_DEV_ROUNDED = 0x11157 + LOGO_DEV_SHARP = 0x11158 + LOGOUT = 0x11159 + LOGOUT_OUTLINED = 0x1115A + LOGOUT_ROUNDED = 0x1115B + LOGOUT_SHARP = 0x1115C + LOOKS = 0x1115D + LOOKS_3 = 0x1115E + LOOKS_3_OUTLINED = 0x1115F + LOOKS_3_ROUNDED = 0x11160 + LOOKS_3_SHARP = 0x11161 + LOOKS_4 = 0x11162 + LOOKS_4_OUTLINED = 0x11163 + LOOKS_4_ROUNDED = 0x11164 + LOOKS_4_SHARP = 0x11165 + LOOKS_5 = 0x11166 + LOOKS_5_OUTLINED = 0x11167 + LOOKS_5_ROUNDED = 0x11168 + LOOKS_5_SHARP = 0x11169 + LOOKS_6 = 0x1116A + LOOKS_6_OUTLINED = 0x1116B + LOOKS_6_ROUNDED = 0x1116C + LOOKS_6_SHARP = 0x1116D + LOOKS_ONE = 0x1116E + LOOKS_ONE_OUTLINED = 0x1116F + LOOKS_ONE_ROUNDED = 0x11170 + LOOKS_ONE_SHARP = 0x11171 + LOOKS_OUTLINED = 0x11172 + LOOKS_ROUNDED = 0x11173 + LOOKS_SHARP = 0x11174 + LOOKS_TWO = 0x11175 + LOOKS_TWO_OUTLINED = 0x11176 + LOOKS_TWO_ROUNDED = 0x11177 + LOOKS_TWO_SHARP = 0x11178 + LOOP = 0x11179 + LOOP_OUTLINED = 0x1117A + LOOP_ROUNDED = 0x1117B + LOOP_SHARP = 0x1117C + LOUPE = 0x1117D + LOUPE_OUTLINED = 0x1117E + LOUPE_ROUNDED = 0x1117F + LOUPE_SHARP = 0x11180 + LOW_PRIORITY = 0x11181 + LOW_PRIORITY_OUTLINED = 0x11182 + LOW_PRIORITY_ROUNDED = 0x11183 + LOW_PRIORITY_SHARP = 0x11184 + LOYALTY = 0x11185 + LOYALTY_OUTLINED = 0x11186 + LOYALTY_ROUNDED = 0x11187 + LOYALTY_SHARP = 0x11188 + LTE_MOBILEDATA = 0x11189 + LTE_MOBILEDATA_OUTLINED = 0x1118A + LTE_MOBILEDATA_ROUNDED = 0x1118B + LTE_MOBILEDATA_SHARP = 0x1118C + LTE_PLUS_MOBILEDATA = 0x1118D + LTE_PLUS_MOBILEDATA_OUTLINED = 0x1118E + LTE_PLUS_MOBILEDATA_ROUNDED = 0x1118F + LTE_PLUS_MOBILEDATA_SHARP = 0x11190 + LUGGAGE = 0x11191 + LUGGAGE_OUTLINED = 0x11192 + LUGGAGE_ROUNDED = 0x11193 + LUGGAGE_SHARP = 0x11194 + LUNCH_DINING = 0x11195 + LUNCH_DINING_OUTLINED = 0x11196 + LUNCH_DINING_ROUNDED = 0x11197 + LUNCH_DINING_SHARP = 0x11198 + LYRICS = 0x11199 + LYRICS_OUTLINED = 0x1119A + LYRICS_ROUNDED = 0x1119B + LYRICS_SHARP = 0x1119C + MACRO_OFF = 0x1119D + MACRO_OFF_OUTLINED = 0x1119E + MACRO_OFF_ROUNDED = 0x1119F + MACRO_OFF_SHARP = 0x111A0 + MAIL = 0x111A1 + MAIL_LOCK = 0x111A2 + MAIL_LOCK_OUTLINED = 0x111A3 + MAIL_LOCK_ROUNDED = 0x111A4 + MAIL_LOCK_SHARP = 0x111A5 + MAIL_OUTLINE = 0x111A6 + MAIL_OUTLINE_OUTLINED = 0x111A7 + MAIL_OUTLINE_ROUNDED = 0x111A8 + MAIL_OUTLINE_SHARP = 0x111A9 + MAIL_OUTLINED = 0x111AA + MAIL_ROUNDED = 0x111AB + MAIL_SHARP = 0x111AC + MALE = 0x111AD + MALE_OUTLINED = 0x111AE + MALE_ROUNDED = 0x111AF + MALE_SHARP = 0x111B0 + MAN = 0x111B1 + MAN_2 = 0x111B2 + MAN_2_OUTLINED = 0x111B3 + MAN_2_ROUNDED = 0x111B4 + MAN_2_SHARP = 0x111B5 + MAN_3 = 0x111B6 + MAN_3_OUTLINED = 0x111B7 + MAN_3_ROUNDED = 0x111B8 + MAN_3_SHARP = 0x111B9 + MAN_4 = 0x111BA + MAN_4_OUTLINED = 0x111BB + MAN_4_ROUNDED = 0x111BC + MAN_4_SHARP = 0x111BD + MAN_OUTLINED = 0x111BE + MAN_ROUNDED = 0x111BF + MAN_SHARP = 0x111C0 + MANAGE_ACCOUNTS = 0x111C1 + MANAGE_ACCOUNTS_OUTLINED = 0x111C2 + MANAGE_ACCOUNTS_ROUNDED = 0x111C3 + MANAGE_ACCOUNTS_SHARP = 0x111C4 + MANAGE_HISTORY = 0x111C5 + MANAGE_HISTORY_OUTLINED = 0x111C6 + MANAGE_HISTORY_ROUNDED = 0x111C7 + MANAGE_HISTORY_SHARP = 0x111C8 + MANAGE_SEARCH = 0x111C9 + MANAGE_SEARCH_OUTLINED = 0x111CA + MANAGE_SEARCH_ROUNDED = 0x111CB + MANAGE_SEARCH_SHARP = 0x111CC + MAP = 0x111CD + MAP_OUTLINED = 0x111CE + MAP_ROUNDED = 0x111CF + MAP_SHARP = 0x111D0 + MAPS_HOME_WORK = 0x111D1 + MAPS_HOME_WORK_OUTLINED = 0x111D2 + MAPS_HOME_WORK_ROUNDED = 0x111D3 + MAPS_HOME_WORK_SHARP = 0x111D4 + MAPS_UGC = 0x111D5 + MAPS_UGC_OUTLINED = 0x111D6 + MAPS_UGC_ROUNDED = 0x111D7 + MAPS_UGC_SHARP = 0x111D8 + MARGIN = 0x111D9 + MARGIN_OUTLINED = 0x111DA + MARGIN_ROUNDED = 0x111DB + MARGIN_SHARP = 0x111DC + MARK_AS_UNREAD = 0x111DD + MARK_AS_UNREAD_OUTLINED = 0x111DE + MARK_AS_UNREAD_ROUNDED = 0x111DF + MARK_AS_UNREAD_SHARP = 0x111E0 + MARK_CHAT_READ = 0x111E1 + MARK_CHAT_READ_OUTLINED = 0x111E2 + MARK_CHAT_READ_ROUNDED = 0x111E3 + MARK_CHAT_READ_SHARP = 0x111E4 + MARK_CHAT_UNREAD = 0x111E5 + MARK_CHAT_UNREAD_OUTLINED = 0x111E6 + MARK_CHAT_UNREAD_ROUNDED = 0x111E7 + MARK_CHAT_UNREAD_SHARP = 0x111E8 + MARK_EMAIL_READ = 0x111E9 + MARK_EMAIL_READ_OUTLINED = 0x111EA + MARK_EMAIL_READ_ROUNDED = 0x111EB + MARK_EMAIL_READ_SHARP = 0x111EC + MARK_EMAIL_UNREAD = 0x111ED + MARK_EMAIL_UNREAD_OUTLINED = 0x111EE + MARK_EMAIL_UNREAD_ROUNDED = 0x111EF + MARK_EMAIL_UNREAD_SHARP = 0x111F0 + MARK_UNREAD_CHAT_ALT = 0x111F1 + MARK_UNREAD_CHAT_ALT_OUTLINED = 0x111F2 + MARK_UNREAD_CHAT_ALT_ROUNDED = 0x111F3 + MARK_UNREAD_CHAT_ALT_SHARP = 0x111F4 + MARKUNREAD = 0x111F5 + MARKUNREAD_MAILBOX = 0x111F6 + MARKUNREAD_MAILBOX_OUTLINED = 0x111F7 + MARKUNREAD_MAILBOX_ROUNDED = 0x111F8 + MARKUNREAD_MAILBOX_SHARP = 0x111F9 + MARKUNREAD_OUTLINED = 0x111FA + MARKUNREAD_ROUNDED = 0x111FB + MARKUNREAD_SHARP = 0x111FC + MASKS = 0x111FD + MASKS_OUTLINED = 0x111FE + MASKS_ROUNDED = 0x111FF + MASKS_SHARP = 0x11200 + MAXIMIZE = 0x11201 + MAXIMIZE_OUTLINED = 0x11202 + MAXIMIZE_ROUNDED = 0x11203 + MAXIMIZE_SHARP = 0x11204 + MEDIA_BLUETOOTH_OFF = 0x11205 + MEDIA_BLUETOOTH_OFF_OUTLINED = 0x11206 + MEDIA_BLUETOOTH_OFF_ROUNDED = 0x11207 + MEDIA_BLUETOOTH_OFF_SHARP = 0x11208 + MEDIA_BLUETOOTH_ON = 0x11209 + MEDIA_BLUETOOTH_ON_OUTLINED = 0x1120A + MEDIA_BLUETOOTH_ON_ROUNDED = 0x1120B + MEDIA_BLUETOOTH_ON_SHARP = 0x1120C + MEDIATION = 0x1120D + MEDIATION_OUTLINED = 0x1120E + MEDIATION_ROUNDED = 0x1120F + MEDIATION_SHARP = 0x11210 + MEDICAL_INFORMATION = 0x11211 + MEDICAL_INFORMATION_OUTLINED = 0x11212 + MEDICAL_INFORMATION_ROUNDED = 0x11213 + MEDICAL_INFORMATION_SHARP = 0x11214 + MEDICAL_SERVICES = 0x11215 + MEDICAL_SERVICES_OUTLINED = 0x11216 + MEDICAL_SERVICES_ROUNDED = 0x11217 + MEDICAL_SERVICES_SHARP = 0x11218 + MEDICATION = 0x11219 + MEDICATION_LIQUID = 0x1121A + MEDICATION_LIQUID_OUTLINED = 0x1121B + MEDICATION_LIQUID_ROUNDED = 0x1121C + MEDICATION_LIQUID_SHARP = 0x1121D + MEDICATION_OUTLINED = 0x1121E + MEDICATION_ROUNDED = 0x1121F + MEDICATION_SHARP = 0x11220 + MEETING_ROOM = 0x11221 + MEETING_ROOM_OUTLINED = 0x11222 + MEETING_ROOM_ROUNDED = 0x11223 + MEETING_ROOM_SHARP = 0x11224 + MEMORY = 0x11225 + MEMORY_OUTLINED = 0x11226 + MEMORY_ROUNDED = 0x11227 + MEMORY_SHARP = 0x11228 + MENU = 0x11229 + MENU_BOOK = 0x1122A + MENU_BOOK_OUTLINED = 0x1122B + MENU_BOOK_ROUNDED = 0x1122C + MENU_BOOK_SHARP = 0x1122D + MENU_OPEN = 0x1122E + MENU_OPEN_OUTLINED = 0x1122F + MENU_OPEN_ROUNDED = 0x11230 + MENU_OPEN_SHARP = 0x11231 + MENU_OUTLINED = 0x11232 + MENU_ROUNDED = 0x11233 + MENU_SHARP = 0x11234 + MERGE = 0x11235 + MERGE_OUTLINED = 0x11236 + MERGE_ROUNDED = 0x11237 + MERGE_SHARP = 0x11238 + MERGE_TYPE = 0x11239 + MERGE_TYPE_OUTLINED = 0x1123A + MERGE_TYPE_ROUNDED = 0x1123B + MERGE_TYPE_SHARP = 0x1123C + MESSAGE = 0x1123D + MESSAGE_OUTLINED = 0x1123E + MESSAGE_ROUNDED = 0x1123F + MESSAGE_SHARP = 0x11240 + MESSENGER = 0x11241 + MESSENGER_OUTLINE = 0x11242 + MESSENGER_OUTLINE_OUTLINED = 0x11243 + MESSENGER_OUTLINE_ROUNDED = 0x11244 + MESSENGER_OUTLINE_SHARP = 0x11245 + MESSENGER_OUTLINED = 0x11246 + MESSENGER_ROUNDED = 0x11247 + MESSENGER_SHARP = 0x11248 + MIC = 0x11249 + MIC_EXTERNAL_OFF = 0x1124A + MIC_EXTERNAL_OFF_OUTLINED = 0x1124B + MIC_EXTERNAL_OFF_ROUNDED = 0x1124C + MIC_EXTERNAL_OFF_SHARP = 0x1124D + MIC_EXTERNAL_ON = 0x1124E + MIC_EXTERNAL_ON_OUTLINED = 0x1124F + MIC_EXTERNAL_ON_ROUNDED = 0x11250 + MIC_EXTERNAL_ON_SHARP = 0x11251 + MIC_NONE = 0x11252 + MIC_NONE_OUTLINED = 0x11253 + MIC_NONE_ROUNDED = 0x11254 + MIC_NONE_SHARP = 0x11255 + MIC_OFF = 0x11256 + MIC_OFF_OUTLINED = 0x11257 + MIC_OFF_ROUNDED = 0x11258 + MIC_OFF_SHARP = 0x11259 + MIC_OUTLINED = 0x1125A + MIC_ROUNDED = 0x1125B + MIC_SHARP = 0x1125C + MICROWAVE = 0x1125D + MICROWAVE_OUTLINED = 0x1125E + MICROWAVE_ROUNDED = 0x1125F + MICROWAVE_SHARP = 0x11260 + MILITARY_TECH = 0x11261 + MILITARY_TECH_OUTLINED = 0x11262 + MILITARY_TECH_ROUNDED = 0x11263 + MILITARY_TECH_SHARP = 0x11264 + MINIMIZE = 0x11265 + MINIMIZE_OUTLINED = 0x11266 + MINIMIZE_ROUNDED = 0x11267 + MINIMIZE_SHARP = 0x11268 + MINOR_CRASH = 0x11269 + MINOR_CRASH_OUTLINED = 0x1126A + MINOR_CRASH_ROUNDED = 0x1126B + MINOR_CRASH_SHARP = 0x1126C + MISCELLANEOUS_SERVICES = 0x1126D + MISCELLANEOUS_SERVICES_OUTLINED = 0x1126E + MISCELLANEOUS_SERVICES_ROUNDED = 0x1126F + MISCELLANEOUS_SERVICES_SHARP = 0x11270 + MISSED_VIDEO_CALL = 0x11271 + MISSED_VIDEO_CALL_OUTLINED = 0x11272 + MISSED_VIDEO_CALL_ROUNDED = 0x11273 + MISSED_VIDEO_CALL_SHARP = 0x11274 + MMS = 0x11275 + MMS_OUTLINED = 0x11276 + MMS_ROUNDED = 0x11277 + MMS_SHARP = 0x11278 + MOBILE_FRIENDLY = 0x11279 + MOBILE_FRIENDLY_OUTLINED = 0x1127A + MOBILE_FRIENDLY_ROUNDED = 0x1127B + MOBILE_FRIENDLY_SHARP = 0x1127C + MOBILE_OFF = 0x1127D + MOBILE_OFF_OUTLINED = 0x1127E + MOBILE_OFF_ROUNDED = 0x1127F + MOBILE_OFF_SHARP = 0x11280 + MOBILE_SCREEN_SHARE = 0x11281 + MOBILE_SCREEN_SHARE_OUTLINED = 0x11282 + MOBILE_SCREEN_SHARE_ROUNDED = 0x11283 + MOBILE_SCREEN_SHARE_SHARP = 0x11284 + MOBILEDATA_OFF = 0x11285 + MOBILEDATA_OFF_OUTLINED = 0x11286 + MOBILEDATA_OFF_ROUNDED = 0x11287 + MOBILEDATA_OFF_SHARP = 0x11288 + MODE = 0x11289 + MODE_COMMENT = 0x1128A + MODE_COMMENT_OUTLINED = 0x1128B + MODE_COMMENT_ROUNDED = 0x1128C + MODE_COMMENT_SHARP = 0x1128D + MODE_EDIT = 0x1128E + MODE_EDIT_OUTLINE = 0x1128F + MODE_EDIT_OUTLINE_OUTLINED = 0x11290 + MODE_EDIT_OUTLINE_ROUNDED = 0x11291 + MODE_EDIT_OUTLINE_SHARP = 0x11292 + MODE_EDIT_OUTLINED = 0x11293 + MODE_EDIT_ROUNDED = 0x11294 + MODE_EDIT_SHARP = 0x11295 + MODE_FAN_OFF = 0x11296 + MODE_FAN_OFF_OUTLINED = 0x11297 + MODE_FAN_OFF_ROUNDED = 0x11298 + MODE_FAN_OFF_SHARP = 0x11299 + MODE_NIGHT = 0x1129A + MODE_NIGHT_OUTLINED = 0x1129B + MODE_NIGHT_ROUNDED = 0x1129C + MODE_NIGHT_SHARP = 0x1129D + MODE_OF_TRAVEL = 0x1129E + MODE_OF_TRAVEL_OUTLINED = 0x1129F + MODE_OF_TRAVEL_ROUNDED = 0x112A0 + MODE_OF_TRAVEL_SHARP = 0x112A1 + MODE_OUTLINED = 0x112A2 + MODE_ROUNDED = 0x112A3 + MODE_SHARP = 0x112A4 + MODE_STANDBY = 0x112A5 + MODE_STANDBY_OUTLINED = 0x112A6 + MODE_STANDBY_ROUNDED = 0x112A7 + MODE_STANDBY_SHARP = 0x112A8 + MODEL_TRAINING = 0x112A9 + MODEL_TRAINING_OUTLINED = 0x112AA + MODEL_TRAINING_ROUNDED = 0x112AB + MODEL_TRAINING_SHARP = 0x112AC + MONETIZATION_ON = 0x112AD + MONETIZATION_ON_OUTLINED = 0x112AE + MONETIZATION_ON_ROUNDED = 0x112AF + MONETIZATION_ON_SHARP = 0x112B0 + MONEY = 0x112B1 + MONEY_OFF = 0x112B2 + MONEY_OFF_CSRED = 0x112B3 + MONEY_OFF_CSRED_OUTLINED = 0x112B4 + MONEY_OFF_CSRED_ROUNDED = 0x112B5 + MONEY_OFF_CSRED_SHARP = 0x112B6 + MONEY_OFF_OUTLINED = 0x112B7 + MONEY_OFF_ROUNDED = 0x112B8 + MONEY_OFF_SHARP = 0x112B9 + MONEY_OUTLINED = 0x112BA + MONEY_ROUNDED = 0x112BB + MONEY_SHARP = 0x112BC + MONITOR = 0x112BD + MONITOR_HEART = 0x112BE + MONITOR_HEART_OUTLINED = 0x112BF + MONITOR_HEART_ROUNDED = 0x112C0 + MONITOR_HEART_SHARP = 0x112C1 + MONITOR_OUTLINED = 0x112C2 + MONITOR_ROUNDED = 0x112C3 + MONITOR_SHARP = 0x112C4 + MONITOR_WEIGHT = 0x112C5 + MONITOR_WEIGHT_OUTLINED = 0x112C6 + MONITOR_WEIGHT_ROUNDED = 0x112C7 + MONITOR_WEIGHT_SHARP = 0x112C8 + MONOCHROME_PHOTOS = 0x112C9 + MONOCHROME_PHOTOS_OUTLINED = 0x112CA + MONOCHROME_PHOTOS_ROUNDED = 0x112CB + MONOCHROME_PHOTOS_SHARP = 0x112CC + MOOD = 0x112CD + MOOD_BAD = 0x112CE + MOOD_BAD_OUTLINED = 0x112CF + MOOD_BAD_ROUNDED = 0x112D0 + MOOD_BAD_SHARP = 0x112D1 + MOOD_OUTLINED = 0x112D2 + MOOD_ROUNDED = 0x112D3 + MOOD_SHARP = 0x112D4 + MOPED = 0x112D5 + MOPED_OUTLINED = 0x112D6 + MOPED_ROUNDED = 0x112D7 + MOPED_SHARP = 0x112D8 + MORE = 0x112D9 + MORE_HORIZ = 0x112DA + MORE_HORIZ_OUTLINED = 0x112DB + MORE_HORIZ_ROUNDED = 0x112DC + MORE_HORIZ_SHARP = 0x112DD + MORE_OUTLINED = 0x112DE + MORE_ROUNDED = 0x112DF + MORE_SHARP = 0x112E0 + MORE_TIME = 0x112E1 + MORE_TIME_OUTLINED = 0x112E2 + MORE_TIME_ROUNDED = 0x112E3 + MORE_TIME_SHARP = 0x112E4 + MORE_VERT = 0x112E5 + MORE_VERT_OUTLINED = 0x112E6 + MORE_VERT_ROUNDED = 0x112E7 + MORE_VERT_SHARP = 0x112E8 + MOSQUE = 0x112E9 + MOSQUE_OUTLINED = 0x112EA + MOSQUE_ROUNDED = 0x112EB + MOSQUE_SHARP = 0x112EC + MOTION_PHOTOS_AUTO = 0x112ED + MOTION_PHOTOS_AUTO_OUTLINED = 0x112EE + MOTION_PHOTOS_AUTO_ROUNDED = 0x112EF + MOTION_PHOTOS_AUTO_SHARP = 0x112F0 + MOTION_PHOTOS_OFF = 0x112F1 + MOTION_PHOTOS_OFF_OUTLINED = 0x112F2 + MOTION_PHOTOS_OFF_ROUNDED = 0x112F3 + MOTION_PHOTOS_OFF_SHARP = 0x112F4 + MOTION_PHOTOS_ON = 0x112F5 + MOTION_PHOTOS_ON_OUTLINED = 0x112F6 + MOTION_PHOTOS_ON_ROUNDED = 0x112F7 + MOTION_PHOTOS_ON_SHARP = 0x112F8 + MOTION_PHOTOS_PAUSE = 0x112F9 + MOTION_PHOTOS_PAUSE_OUTLINED = 0x112FA + MOTION_PHOTOS_PAUSE_ROUNDED = 0x112FB + MOTION_PHOTOS_PAUSE_SHARP = 0x112FC + MOTION_PHOTOS_PAUSED = 0x112FD + MOTION_PHOTOS_PAUSED_OUTLINED = 0x112FE + MOTION_PHOTOS_PAUSED_ROUNDED = 0x112FF + MOTION_PHOTOS_PAUSED_SHARP = 0x11300 + MOTORCYCLE = 0x11301 + MOTORCYCLE_OUTLINED = 0x11302 + MOTORCYCLE_ROUNDED = 0x11303 + MOTORCYCLE_SHARP = 0x11304 + MOUSE = 0x11305 + MOUSE_OUTLINED = 0x11306 + MOUSE_ROUNDED = 0x11307 + MOUSE_SHARP = 0x11308 + MOVE_DOWN = 0x11309 + MOVE_DOWN_OUTLINED = 0x1130A + MOVE_DOWN_ROUNDED = 0x1130B + MOVE_DOWN_SHARP = 0x1130C + MOVE_TO_INBOX = 0x1130D + MOVE_TO_INBOX_OUTLINED = 0x1130E + MOVE_TO_INBOX_ROUNDED = 0x1130F + MOVE_TO_INBOX_SHARP = 0x11310 + MOVE_UP = 0x11311 + MOVE_UP_OUTLINED = 0x11312 + MOVE_UP_ROUNDED = 0x11313 + MOVE_UP_SHARP = 0x11314 + MOVIE = 0x11315 + MOVIE_CREATION = 0x11316 + MOVIE_CREATION_OUTLINED = 0x11317 + MOVIE_CREATION_ROUNDED = 0x11318 + MOVIE_CREATION_SHARP = 0x11319 + MOVIE_EDIT = 0x1131A + MOVIE_FILTER = 0x1131B + MOVIE_FILTER_OUTLINED = 0x1131C + MOVIE_FILTER_ROUNDED = 0x1131D + MOVIE_FILTER_SHARP = 0x1131E + MOVIE_OUTLINED = 0x1131F + MOVIE_ROUNDED = 0x11320 + MOVIE_SHARP = 0x11321 + MOVING = 0x11322 + MOVING_OUTLINED = 0x11323 + MOVING_ROUNDED = 0x11324 + MOVING_SHARP = 0x11325 + MP = 0x11326 + MP_OUTLINED = 0x11327 + MP_ROUNDED = 0x11328 + MP_SHARP = 0x11329 + MULTILINE_CHART = 0x1132A + MULTILINE_CHART_OUTLINED = 0x1132B + MULTILINE_CHART_ROUNDED = 0x1132C + MULTILINE_CHART_SHARP = 0x1132D + MULTIPLE_STOP = 0x1132E + MULTIPLE_STOP_OUTLINED = 0x1132F + MULTIPLE_STOP_ROUNDED = 0x11330 + MULTIPLE_STOP_SHARP = 0x11331 + MULTITRACK_AUDIO = 0x11332 + MULTITRACK_AUDIO_OUTLINED = 0x11333 + MULTITRACK_AUDIO_ROUNDED = 0x11334 + MULTITRACK_AUDIO_SHARP = 0x11335 + MUSEUM = 0x11336 + MUSEUM_OUTLINED = 0x11337 + MUSEUM_ROUNDED = 0x11338 + MUSEUM_SHARP = 0x11339 + MUSIC_NOTE = 0x1133A + MUSIC_NOTE_OUTLINED = 0x1133B + MUSIC_NOTE_ROUNDED = 0x1133C + MUSIC_NOTE_SHARP = 0x1133D + MUSIC_OFF = 0x1133E + MUSIC_OFF_OUTLINED = 0x1133F + MUSIC_OFF_ROUNDED = 0x11340 + MUSIC_OFF_SHARP = 0x11341 + MUSIC_VIDEO = 0x11342 + MUSIC_VIDEO_OUTLINED = 0x11343 + MUSIC_VIDEO_ROUNDED = 0x11344 + MUSIC_VIDEO_SHARP = 0x11345 + MY_LIBRARY_ADD = 0x11346 + MY_LIBRARY_ADD_OUTLINED = 0x11347 + MY_LIBRARY_ADD_ROUNDED = 0x11348 + MY_LIBRARY_ADD_SHARP = 0x11349 + MY_LIBRARY_BOOKS = 0x1134A + MY_LIBRARY_BOOKS_OUTLINED = 0x1134B + MY_LIBRARY_BOOKS_ROUNDED = 0x1134C + MY_LIBRARY_BOOKS_SHARP = 0x1134D + MY_LIBRARY_MUSIC = 0x1134E + MY_LIBRARY_MUSIC_OUTLINED = 0x1134F + MY_LIBRARY_MUSIC_ROUNDED = 0x11350 + MY_LIBRARY_MUSIC_SHARP = 0x11351 + MY_LOCATION = 0x11352 + MY_LOCATION_OUTLINED = 0x11353 + MY_LOCATION_ROUNDED = 0x11354 + MY_LOCATION_SHARP = 0x11355 + NAT = 0x11356 + NAT_OUTLINED = 0x11357 + NAT_ROUNDED = 0x11358 + NAT_SHARP = 0x11359 + NATURE = 0x1135A + NATURE_OUTLINED = 0x1135B + NATURE_PEOPLE = 0x1135C + NATURE_PEOPLE_OUTLINED = 0x1135D + NATURE_PEOPLE_ROUNDED = 0x1135E + NATURE_PEOPLE_SHARP = 0x1135F + NATURE_ROUNDED = 0x11360 + NATURE_SHARP = 0x11361 + NAVIGATE_BEFORE = 0x11362 + NAVIGATE_BEFORE_OUTLINED = 0x11363 + NAVIGATE_BEFORE_ROUNDED = 0x11364 + NAVIGATE_BEFORE_SHARP = 0x11365 + NAVIGATE_NEXT = 0x11366 + NAVIGATE_NEXT_OUTLINED = 0x11367 + NAVIGATE_NEXT_ROUNDED = 0x11368 + NAVIGATE_NEXT_SHARP = 0x11369 + NAVIGATION = 0x1136A + NAVIGATION_OUTLINED = 0x1136B + NAVIGATION_ROUNDED = 0x1136C + NAVIGATION_SHARP = 0x1136D + NEAR_ME = 0x1136E + NEAR_ME_DISABLED = 0x1136F + NEAR_ME_DISABLED_OUTLINED = 0x11370 + NEAR_ME_DISABLED_ROUNDED = 0x11371 + NEAR_ME_DISABLED_SHARP = 0x11372 + NEAR_ME_OUTLINED = 0x11373 + NEAR_ME_ROUNDED = 0x11374 + NEAR_ME_SHARP = 0x11375 + NEARBY_ERROR = 0x11376 + NEARBY_ERROR_OUTLINED = 0x11377 + NEARBY_ERROR_ROUNDED = 0x11378 + NEARBY_ERROR_SHARP = 0x11379 + NEARBY_OFF = 0x1137A + NEARBY_OFF_OUTLINED = 0x1137B + NEARBY_OFF_ROUNDED = 0x1137C + NEARBY_OFF_SHARP = 0x1137D + NEST_CAM_WIRED_STAND = 0x1137E + NEST_CAM_WIRED_STAND_OUTLINED = 0x1137F + NEST_CAM_WIRED_STAND_ROUNDED = 0x11380 + NEST_CAM_WIRED_STAND_SHARP = 0x11381 + NETWORK_CELL = 0x11382 + NETWORK_CELL_OUTLINED = 0x11383 + NETWORK_CELL_ROUNDED = 0x11384 + NETWORK_CELL_SHARP = 0x11385 + NETWORK_CHECK = 0x11386 + NETWORK_CHECK_OUTLINED = 0x11387 + NETWORK_CHECK_ROUNDED = 0x11388 + NETWORK_CHECK_SHARP = 0x11389 + NETWORK_LOCKED = 0x1138A + NETWORK_LOCKED_OUTLINED = 0x1138B + NETWORK_LOCKED_ROUNDED = 0x1138C + NETWORK_LOCKED_SHARP = 0x1138D + NETWORK_PING = 0x1138E + NETWORK_PING_OUTLINED = 0x1138F + NETWORK_PING_ROUNDED = 0x11390 + NETWORK_PING_SHARP = 0x11391 + NETWORK_WIFI = 0x11392 + NETWORK_WIFI_1_BAR = 0x11393 + NETWORK_WIFI_1_BAR_OUTLINED = 0x11394 + NETWORK_WIFI_1_BAR_ROUNDED = 0x11395 + NETWORK_WIFI_1_BAR_SHARP = 0x11396 + NETWORK_WIFI_2_BAR = 0x11397 + NETWORK_WIFI_2_BAR_OUTLINED = 0x11398 + NETWORK_WIFI_2_BAR_ROUNDED = 0x11399 + NETWORK_WIFI_2_BAR_SHARP = 0x1139A + NETWORK_WIFI_3_BAR = 0x1139B + NETWORK_WIFI_3_BAR_OUTLINED = 0x1139C + NETWORK_WIFI_3_BAR_ROUNDED = 0x1139D + NETWORK_WIFI_3_BAR_SHARP = 0x1139E + NETWORK_WIFI_OUTLINED = 0x1139F + NETWORK_WIFI_ROUNDED = 0x113A0 + NETWORK_WIFI_SHARP = 0x113A1 + NEW_LABEL = 0x113A2 + NEW_LABEL_OUTLINED = 0x113A3 + NEW_LABEL_ROUNDED = 0x113A4 + NEW_LABEL_SHARP = 0x113A5 + NEW_RELEASES = 0x113A6 + NEW_RELEASES_OUTLINED = 0x113A7 + NEW_RELEASES_ROUNDED = 0x113A8 + NEW_RELEASES_SHARP = 0x113A9 + NEWSPAPER = 0x113AA + NEWSPAPER_OUTLINED = 0x113AB + NEWSPAPER_ROUNDED = 0x113AC + NEWSPAPER_SHARP = 0x113AD + NEXT_PLAN = 0x113AE + NEXT_PLAN_OUTLINED = 0x113AF + NEXT_PLAN_ROUNDED = 0x113B0 + NEXT_PLAN_SHARP = 0x113B1 + NEXT_WEEK = 0x113B2 + NEXT_WEEK_OUTLINED = 0x113B3 + NEXT_WEEK_ROUNDED = 0x113B4 + NEXT_WEEK_SHARP = 0x113B5 + NFC = 0x113B6 + NFC_OUTLINED = 0x113B7 + NFC_ROUNDED = 0x113B8 + NFC_SHARP = 0x113B9 + NIGHT_SHELTER = 0x113BA + NIGHT_SHELTER_OUTLINED = 0x113BB + NIGHT_SHELTER_ROUNDED = 0x113BC + NIGHT_SHELTER_SHARP = 0x113BD + NIGHTLIFE = 0x113BE + NIGHTLIFE_OUTLINED = 0x113BF + NIGHTLIFE_ROUNDED = 0x113C0 + NIGHTLIFE_SHARP = 0x113C1 + NIGHTLIGHT = 0x113C2 + NIGHTLIGHT_OUTLINED = 0x113C3 + NIGHTLIGHT_ROUND = 0x113C4 + NIGHTLIGHT_ROUND_OUTLINED = 0x113C5 + NIGHTLIGHT_ROUND_ROUNDED = 0x113C6 + NIGHTLIGHT_ROUND_SHARP = 0x113C7 + NIGHTLIGHT_ROUNDED = 0x113C8 + NIGHTLIGHT_SHARP = 0x113C9 + NIGHTS_STAY = 0x113CA + NIGHTS_STAY_OUTLINED = 0x113CB + NIGHTS_STAY_ROUNDED = 0x113CC + NIGHTS_STAY_SHARP = 0x113CD + NINE_K = 0x113CE + NINE_K_OUTLINED = 0x113CF + NINE_K_PLUS = 0x113D0 + NINE_K_PLUS_OUTLINED = 0x113D1 + NINE_K_PLUS_ROUNDED = 0x113D2 + NINE_K_PLUS_SHARP = 0x113D3 + NINE_K_ROUNDED = 0x113D4 + NINE_K_SHARP = 0x113D5 + NINE_MP = 0x113D6 + NINE_MP_OUTLINED = 0x113D7 + NINE_MP_ROUNDED = 0x113D8 + NINE_MP_SHARP = 0x113D9 + NINETEEN_MP = 0x113DA + NINETEEN_MP_OUTLINED = 0x113DB + NINETEEN_MP_ROUNDED = 0x113DC + NINETEEN_MP_SHARP = 0x113DD + NO_ACCOUNTS = 0x113DE + NO_ACCOUNTS_OUTLINED = 0x113DF + NO_ACCOUNTS_ROUNDED = 0x113E0 + NO_ACCOUNTS_SHARP = 0x113E1 + NO_ADULT_CONTENT = 0x113E2 + NO_ADULT_CONTENT_OUTLINED = 0x113E3 + NO_ADULT_CONTENT_ROUNDED = 0x113E4 + NO_ADULT_CONTENT_SHARP = 0x113E5 + NO_BACKPACK = 0x113E6 + NO_BACKPACK_OUTLINED = 0x113E7 + NO_BACKPACK_ROUNDED = 0x113E8 + NO_BACKPACK_SHARP = 0x113E9 + NO_CELL = 0x113EA + NO_CELL_OUTLINED = 0x113EB + NO_CELL_ROUNDED = 0x113EC + NO_CELL_SHARP = 0x113ED + NO_CRASH = 0x113EE + NO_CRASH_OUTLINED = 0x113EF + NO_CRASH_ROUNDED = 0x113F0 + NO_CRASH_SHARP = 0x113F1 + NO_DRINKS = 0x113F2 + NO_DRINKS_OUTLINED = 0x113F3 + NO_DRINKS_ROUNDED = 0x113F4 + NO_DRINKS_SHARP = 0x113F5 + NO_ENCRYPTION = 0x113F6 + NO_ENCRYPTION_GMAILERRORRED = 0x113F7 + NO_ENCRYPTION_GMAILERRORRED_OUTLINED = 0x113F8 + NO_ENCRYPTION_GMAILERRORRED_ROUNDED = 0x113F9 + NO_ENCRYPTION_GMAILERRORRED_SHARP = 0x113FA + NO_ENCRYPTION_OUTLINED = 0x113FB + NO_ENCRYPTION_ROUNDED = 0x113FC + NO_ENCRYPTION_SHARP = 0x113FD + NO_FLASH = 0x113FE + NO_FLASH_OUTLINED = 0x113FF + NO_FLASH_ROUNDED = 0x11400 + NO_FLASH_SHARP = 0x11401 + NO_FOOD = 0x11402 + NO_FOOD_OUTLINED = 0x11403 + NO_FOOD_ROUNDED = 0x11404 + NO_FOOD_SHARP = 0x11405 + NO_LUGGAGE = 0x11406 + NO_LUGGAGE_OUTLINED = 0x11407 + NO_LUGGAGE_ROUNDED = 0x11408 + NO_LUGGAGE_SHARP = 0x11409 + NO_MEALS = 0x1140A + NO_MEALS_OULINE = 0x1140B + NO_MEALS_OUTLINED = 0x1140C + NO_MEALS_ROUNDED = 0x1140D + NO_MEALS_SHARP = 0x1140E + NO_MEETING_ROOM = 0x1140F + NO_MEETING_ROOM_OUTLINED = 0x11410 + NO_MEETING_ROOM_ROUNDED = 0x11411 + NO_MEETING_ROOM_SHARP = 0x11412 + NO_PHOTOGRAPHY = 0x11413 + NO_PHOTOGRAPHY_OUTLINED = 0x11414 + NO_PHOTOGRAPHY_ROUNDED = 0x11415 + NO_PHOTOGRAPHY_SHARP = 0x11416 + NO_SIM = 0x11417 + NO_SIM_OUTLINED = 0x11418 + NO_SIM_ROUNDED = 0x11419 + NO_SIM_SHARP = 0x1141A + NO_STROLLER = 0x1141B + NO_STROLLER_OUTLINED = 0x1141C + NO_STROLLER_ROUNDED = 0x1141D + NO_STROLLER_SHARP = 0x1141E + NO_TRANSFER = 0x1141F + NO_TRANSFER_OUTLINED = 0x11420 + NO_TRANSFER_ROUNDED = 0x11421 + NO_TRANSFER_SHARP = 0x11422 + NOISE_AWARE = 0x11423 + NOISE_AWARE_OUTLINED = 0x11424 + NOISE_AWARE_ROUNDED = 0x11425 + NOISE_AWARE_SHARP = 0x11426 + NOISE_CONTROL_OFF = 0x11427 + NOISE_CONTROL_OFF_OUTLINED = 0x11428 + NOISE_CONTROL_OFF_ROUNDED = 0x11429 + NOISE_CONTROL_OFF_SHARP = 0x1142A + NORDIC_WALKING = 0x1142B + NORDIC_WALKING_OUTLINED = 0x1142C + NORDIC_WALKING_ROUNDED = 0x1142D + NORDIC_WALKING_SHARP = 0x1142E + NORTH = 0x1142F + NORTH_EAST = 0x11430 + NORTH_EAST_OUTLINED = 0x11431 + NORTH_EAST_ROUNDED = 0x11432 + NORTH_EAST_SHARP = 0x11433 + NORTH_OUTLINED = 0x11434 + NORTH_ROUNDED = 0x11435 + NORTH_SHARP = 0x11436 + NORTH_WEST = 0x11437 + NORTH_WEST_OUTLINED = 0x11438 + NORTH_WEST_ROUNDED = 0x11439 + NORTH_WEST_SHARP = 0x1143A + NOT_ACCESSIBLE = 0x1143B + NOT_ACCESSIBLE_OUTLINED = 0x1143C + NOT_ACCESSIBLE_ROUNDED = 0x1143D + NOT_ACCESSIBLE_SHARP = 0x1143E + NOT_INTERESTED = 0x1143F + NOT_INTERESTED_OUTLINED = 0x11440 + NOT_INTERESTED_ROUNDED = 0x11441 + NOT_INTERESTED_SHARP = 0x11442 + NOT_LISTED_LOCATION = 0x11443 + NOT_LISTED_LOCATION_OUTLINED = 0x11444 + NOT_LISTED_LOCATION_ROUNDED = 0x11445 + NOT_LISTED_LOCATION_SHARP = 0x11446 + NOT_STARTED = 0x11447 + NOT_STARTED_OUTLINED = 0x11448 + NOT_STARTED_ROUNDED = 0x11449 + NOT_STARTED_SHARP = 0x1144A + NOTE = 0x1144B + NOTE_ADD = 0x1144C + NOTE_ADD_OUTLINED = 0x1144D + NOTE_ADD_ROUNDED = 0x1144E + NOTE_ADD_SHARP = 0x1144F + NOTE_ALT = 0x11450 + NOTE_ALT_OUTLINED = 0x11451 + NOTE_ALT_ROUNDED = 0x11452 + NOTE_ALT_SHARP = 0x11453 + NOTE_OUTLINED = 0x11454 + NOTE_ROUNDED = 0x11455 + NOTE_SHARP = 0x11456 + NOTES = 0x11457 + NOTES_OUTLINED = 0x11458 + NOTES_ROUNDED = 0x11459 + NOTES_SHARP = 0x1145A + NOTIFICATION_ADD = 0x1145B + NOTIFICATION_ADD_OUTLINED = 0x1145C + NOTIFICATION_ADD_ROUNDED = 0x1145D + NOTIFICATION_ADD_SHARP = 0x1145E + NOTIFICATION_IMPORTANT = 0x1145F + NOTIFICATION_IMPORTANT_OUTLINED = 0x11460 + NOTIFICATION_IMPORTANT_ROUNDED = 0x11461 + NOTIFICATION_IMPORTANT_SHARP = 0x11462 + NOTIFICATIONS = 0x11463 + NOTIFICATIONS_ACTIVE = 0x11464 + NOTIFICATIONS_ACTIVE_OUTLINED = 0x11465 + NOTIFICATIONS_ACTIVE_ROUNDED = 0x11466 + NOTIFICATIONS_ACTIVE_SHARP = 0x11467 + NOTIFICATIONS_NONE = 0x11468 + NOTIFICATIONS_NONE_OUTLINED = 0x11469 + NOTIFICATIONS_NONE_ROUNDED = 0x1146A + NOTIFICATIONS_NONE_SHARP = 0x1146B + NOTIFICATIONS_OFF = 0x1146C + NOTIFICATIONS_OFF_OUTLINED = 0x1146D + NOTIFICATIONS_OFF_ROUNDED = 0x1146E + NOTIFICATIONS_OFF_SHARP = 0x1146F + NOTIFICATIONS_ON = 0x11470 + NOTIFICATIONS_ON_OUTLINED = 0x11471 + NOTIFICATIONS_ON_ROUNDED = 0x11472 + NOTIFICATIONS_ON_SHARP = 0x11473 + NOTIFICATIONS_OUTLINED = 0x11474 + NOTIFICATIONS_PAUSED = 0x11475 + NOTIFICATIONS_PAUSED_OUTLINED = 0x11476 + NOTIFICATIONS_PAUSED_ROUNDED = 0x11477 + NOTIFICATIONS_PAUSED_SHARP = 0x11478 + NOTIFICATIONS_ROUNDED = 0x11479 + NOTIFICATIONS_SHARP = 0x1147A + NOW_WALLPAPER = 0x1147B + NOW_WALLPAPER_OUTLINED = 0x1147C + NOW_WALLPAPER_ROUNDED = 0x1147D + NOW_WALLPAPER_SHARP = 0x1147E + NOW_WIDGETS = 0x1147F + NOW_WIDGETS_OUTLINED = 0x11480 + NOW_WIDGETS_ROUNDED = 0x11481 + NOW_WIDGETS_SHARP = 0x11482 + NUMBERS = 0x11483 + NUMBERS_OUTLINED = 0x11484 + NUMBERS_ROUNDED = 0x11485 + NUMBERS_SHARP = 0x11486 + OFFLINE_BOLT = 0x11487 + OFFLINE_BOLT_OUTLINED = 0x11488 + OFFLINE_BOLT_ROUNDED = 0x11489 + OFFLINE_BOLT_SHARP = 0x1148A + OFFLINE_PIN = 0x1148B + OFFLINE_PIN_OUTLINED = 0x1148C + OFFLINE_PIN_ROUNDED = 0x1148D + OFFLINE_PIN_SHARP = 0x1148E + OFFLINE_SHARE = 0x1148F + OFFLINE_SHARE_OUTLINED = 0x11490 + OFFLINE_SHARE_ROUNDED = 0x11491 + OFFLINE_SHARE_SHARP = 0x11492 + OIL_BARREL = 0x11493 + OIL_BARREL_OUTLINED = 0x11494 + OIL_BARREL_ROUNDED = 0x11495 + OIL_BARREL_SHARP = 0x11496 + ON_DEVICE_TRAINING = 0x11497 + ON_DEVICE_TRAINING_OUTLINED = 0x11498 + ON_DEVICE_TRAINING_ROUNDED = 0x11499 + ON_DEVICE_TRAINING_SHARP = 0x1149A + ONDEMAND_VIDEO = 0x1149B + ONDEMAND_VIDEO_OUTLINED = 0x1149C + ONDEMAND_VIDEO_ROUNDED = 0x1149D + ONDEMAND_VIDEO_SHARP = 0x1149E + ONE_K = 0x1149F + ONE_K_OUTLINED = 0x114A0 + ONE_K_PLUS = 0x114A1 + ONE_K_PLUS_OUTLINED = 0x114A2 + ONE_K_PLUS_ROUNDED = 0x114A3 + ONE_K_PLUS_SHARP = 0x114A4 + ONE_K_ROUNDED = 0x114A5 + ONE_K_SHARP = 0x114A6 + ONE_X_MOBILEDATA = 0x114A7 + ONE_X_MOBILEDATA_OUTLINED = 0x114A8 + ONE_X_MOBILEDATA_ROUNDED = 0x114A9 + ONE_X_MOBILEDATA_SHARP = 0x114AA + ONETWOTHREE = 0x114AB + ONETWOTHREE_OUTLINED = 0x114AC + ONETWOTHREE_ROUNDED = 0x114AD + ONETWOTHREE_SHARP = 0x114AE + ONLINE_PREDICTION = 0x114AF + ONLINE_PREDICTION_OUTLINED = 0x114B0 + ONLINE_PREDICTION_ROUNDED = 0x114B1 + ONLINE_PREDICTION_SHARP = 0x114B2 + OPACITY = 0x114B3 + OPACITY_OUTLINED = 0x114B4 + OPACITY_ROUNDED = 0x114B5 + OPACITY_SHARP = 0x114B6 + OPEN_IN_BROWSER = 0x114B7 + OPEN_IN_BROWSER_OUTLINED = 0x114B8 + OPEN_IN_BROWSER_ROUNDED = 0x114B9 + OPEN_IN_BROWSER_SHARP = 0x114BA + OPEN_IN_FULL = 0x114BB + OPEN_IN_FULL_OUTLINED = 0x114BC + OPEN_IN_FULL_ROUNDED = 0x114BD + OPEN_IN_FULL_SHARP = 0x114BE + OPEN_IN_NEW = 0x114BF + OPEN_IN_NEW_OFF = 0x114C0 + OPEN_IN_NEW_OFF_OUTLINED = 0x114C1 + OPEN_IN_NEW_OFF_ROUNDED = 0x114C2 + OPEN_IN_NEW_OFF_SHARP = 0x114C3 + OPEN_IN_NEW_OUTLINED = 0x114C4 + OPEN_IN_NEW_ROUNDED = 0x114C5 + OPEN_IN_NEW_SHARP = 0x114C6 + OPEN_WITH = 0x114C7 + OPEN_WITH_OUTLINED = 0x114C8 + OPEN_WITH_ROUNDED = 0x114C9 + OPEN_WITH_SHARP = 0x114CA + OTHER_HOUSES = 0x114CB + OTHER_HOUSES_OUTLINED = 0x114CC + OTHER_HOUSES_ROUNDED = 0x114CD + OTHER_HOUSES_SHARP = 0x114CE + OUTBOND = 0x114CF + OUTBOND_OUTLINED = 0x114D0 + OUTBOND_ROUNDED = 0x114D1 + OUTBOND_SHARP = 0x114D2 + OUTBOUND = 0x114D3 + OUTBOUND_OUTLINED = 0x114D4 + OUTBOUND_ROUNDED = 0x114D5 + OUTBOUND_SHARP = 0x114D6 + OUTBOX = 0x114D7 + OUTBOX_OUTLINED = 0x114D8 + OUTBOX_ROUNDED = 0x114D9 + OUTBOX_SHARP = 0x114DA + OUTDOOR_GRILL = 0x114DB + OUTDOOR_GRILL_OUTLINED = 0x114DC + OUTDOOR_GRILL_ROUNDED = 0x114DD + OUTDOOR_GRILL_SHARP = 0x114DE + OUTGOING_MAIL = 0x114DF + OUTLET = 0x114E0 + OUTLET_OUTLINED = 0x114E1 + OUTLET_ROUNDED = 0x114E2 + OUTLET_SHARP = 0x114E3 + OUTLINED_FLAG = 0x114E4 + OUTLINED_FLAG_OUTLINED = 0x114E5 + OUTLINED_FLAG_ROUNDED = 0x114E6 + OUTLINED_FLAG_SHARP = 0x114E7 + OUTPUT = 0x114E8 + OUTPUT_OUTLINED = 0x114E9 + OUTPUT_ROUNDED = 0x114EA + OUTPUT_SHARP = 0x114EB + PADDING = 0x114EC + PADDING_OUTLINED = 0x114ED + PADDING_ROUNDED = 0x114EE + PADDING_SHARP = 0x114EF + PAGES = 0x114F0 + PAGES_OUTLINED = 0x114F1 + PAGES_ROUNDED = 0x114F2 + PAGES_SHARP = 0x114F3 + PAGEVIEW = 0x114F4 + PAGEVIEW_OUTLINED = 0x114F5 + PAGEVIEW_ROUNDED = 0x114F6 + PAGEVIEW_SHARP = 0x114F7 + PAID = 0x114F8 + PAID_OUTLINED = 0x114F9 + PAID_ROUNDED = 0x114FA + PAID_SHARP = 0x114FB + PALETTE = 0x114FC + PALETTE_OUTLINED = 0x114FD + PALETTE_ROUNDED = 0x114FE + PALETTE_SHARP = 0x114FF + PALLET = 0x11500 + PAN_TOOL = 0x11501 + PAN_TOOL_ALT = 0x11502 + PAN_TOOL_ALT_OUTLINED = 0x11503 + PAN_TOOL_ALT_ROUNDED = 0x11504 + PAN_TOOL_ALT_SHARP = 0x11505 + PAN_TOOL_OUTLINED = 0x11506 + PAN_TOOL_ROUNDED = 0x11507 + PAN_TOOL_SHARP = 0x11508 + PANORAMA = 0x11509 + PANORAMA_FISH_EYE = 0x1150A + PANORAMA_FISH_EYE_OUTLINED = 0x1150B + PANORAMA_FISH_EYE_ROUNDED = 0x1150C + PANORAMA_FISH_EYE_SHARP = 0x1150D + PANORAMA_FISHEYE = 0x1150E + PANORAMA_FISHEYE_OUTLINED = 0x1150F + PANORAMA_FISHEYE_ROUNDED = 0x11510 + PANORAMA_FISHEYE_SHARP = 0x11511 + PANORAMA_HORIZONTAL = 0x11512 + PANORAMA_HORIZONTAL_OUTLINED = 0x11513 + PANORAMA_HORIZONTAL_ROUNDED = 0x11514 + PANORAMA_HORIZONTAL_SELECT = 0x11515 + PANORAMA_HORIZONTAL_SELECT_OUTLINED = 0x11516 + PANORAMA_HORIZONTAL_SELECT_ROUNDED = 0x11517 + PANORAMA_HORIZONTAL_SELECT_SHARP = 0x11518 + PANORAMA_HORIZONTAL_SHARP = 0x11519 + PANORAMA_OUTLINED = 0x1151A + PANORAMA_PHOTOSPHERE = 0x1151B + PANORAMA_PHOTOSPHERE_OUTLINED = 0x1151C + PANORAMA_PHOTOSPHERE_ROUNDED = 0x1151D + PANORAMA_PHOTOSPHERE_SELECT = 0x1151E + PANORAMA_PHOTOSPHERE_SELECT_OUTLINED = 0x1151F + PANORAMA_PHOTOSPHERE_SELECT_ROUNDED = 0x11520 + PANORAMA_PHOTOSPHERE_SELECT_SHARP = 0x11521 + PANORAMA_PHOTOSPHERE_SHARP = 0x11522 + PANORAMA_ROUNDED = 0x11523 + PANORAMA_SHARP = 0x11524 + PANORAMA_VERTICAL = 0x11525 + PANORAMA_VERTICAL_OUTLINED = 0x11526 + PANORAMA_VERTICAL_ROUNDED = 0x11527 + PANORAMA_VERTICAL_SELECT = 0x11528 + PANORAMA_VERTICAL_SELECT_OUTLINED = 0x11529 + PANORAMA_VERTICAL_SELECT_ROUNDED = 0x1152A + PANORAMA_VERTICAL_SELECT_SHARP = 0x1152B + PANORAMA_VERTICAL_SHARP = 0x1152C + PANORAMA_WIDE_ANGLE = 0x1152D + PANORAMA_WIDE_ANGLE_OUTLINED = 0x1152E + PANORAMA_WIDE_ANGLE_ROUNDED = 0x1152F + PANORAMA_WIDE_ANGLE_SELECT = 0x11530 + PANORAMA_WIDE_ANGLE_SELECT_OUTLINED = 0x11531 + PANORAMA_WIDE_ANGLE_SELECT_ROUNDED = 0x11532 + PANORAMA_WIDE_ANGLE_SELECT_SHARP = 0x11533 + PANORAMA_WIDE_ANGLE_SHARP = 0x11534 + PARAGLIDING = 0x11535 + PARAGLIDING_OUTLINED = 0x11536 + PARAGLIDING_ROUNDED = 0x11537 + PARAGLIDING_SHARP = 0x11538 + PARK = 0x11539 + PARK_OUTLINED = 0x1153A + PARK_ROUNDED = 0x1153B + PARK_SHARP = 0x1153C + PARTY_MODE = 0x1153D + PARTY_MODE_OUTLINED = 0x1153E + PARTY_MODE_ROUNDED = 0x1153F + PARTY_MODE_SHARP = 0x11540 + PASSWORD = 0x11541 + PASSWORD_OUTLINED = 0x11542 + PASSWORD_ROUNDED = 0x11543 + PASSWORD_SHARP = 0x11544 + PASTE = 0x11545 + PASTE_OUTLINED = 0x11546 + PASTE_ROUNDED = 0x11547 + PASTE_SHARP = 0x11548 + PATTERN = 0x11549 + PATTERN_OUTLINED = 0x1154A + PATTERN_ROUNDED = 0x1154B + PATTERN_SHARP = 0x1154C + PAUSE = 0x1154D + PAUSE_CIRCLE = 0x1154E + PAUSE_CIRCLE_FILLED = 0x1154F + PAUSE_CIRCLE_FILLED_OUTLINED = 0x11550 + PAUSE_CIRCLE_FILLED_ROUNDED = 0x11551 + PAUSE_CIRCLE_FILLED_SHARP = 0x11552 + PAUSE_CIRCLE_OUTLINE = 0x11553 + PAUSE_CIRCLE_OUTLINE_OUTLINED = 0x11554 + PAUSE_CIRCLE_OUTLINE_ROUNDED = 0x11555 + PAUSE_CIRCLE_OUTLINE_SHARP = 0x11556 + PAUSE_CIRCLE_OUTLINED = 0x11557 + PAUSE_CIRCLE_ROUNDED = 0x11558 + PAUSE_CIRCLE_SHARP = 0x11559 + PAUSE_OUTLINED = 0x1155A + PAUSE_PRESENTATION = 0x1155B + PAUSE_PRESENTATION_OUTLINED = 0x1155C + PAUSE_PRESENTATION_ROUNDED = 0x1155D + PAUSE_PRESENTATION_SHARP = 0x1155E + PAUSE_ROUNDED = 0x1155F + PAUSE_SHARP = 0x11560 + PAYMENT = 0x11561 + PAYMENT_OUTLINED = 0x11562 + PAYMENT_ROUNDED = 0x11563 + PAYMENT_SHARP = 0x11564 + PAYMENTS = 0x11565 + PAYMENTS_OUTLINED = 0x11566 + PAYMENTS_ROUNDED = 0x11567 + PAYMENTS_SHARP = 0x11568 + PAYPAL = 0x11569 + PAYPAL_OUTLINED = 0x1156A + PAYPAL_ROUNDED = 0x1156B + PAYPAL_SHARP = 0x1156C + PEDAL_BIKE = 0x1156D + PEDAL_BIKE_OUTLINED = 0x1156E + PEDAL_BIKE_ROUNDED = 0x1156F + PEDAL_BIKE_SHARP = 0x11570 + PENDING = 0x11571 + PENDING_ACTIONS = 0x11572 + PENDING_ACTIONS_OUTLINED = 0x11573 + PENDING_ACTIONS_ROUNDED = 0x11574 + PENDING_ACTIONS_SHARP = 0x11575 + PENDING_OUTLINED = 0x11576 + PENDING_ROUNDED = 0x11577 + PENDING_SHARP = 0x11578 + PENTAGON = 0x11579 + PENTAGON_OUTLINED = 0x1157A + PENTAGON_ROUNDED = 0x1157B + PENTAGON_SHARP = 0x1157C + PEOPLE = 0x1157D + PEOPLE_ALT = 0x1157E + PEOPLE_ALT_OUTLINED = 0x1157F + PEOPLE_ALT_ROUNDED = 0x11580 + PEOPLE_ALT_SHARP = 0x11581 + PEOPLE_OUTLINE = 0x11582 + PEOPLE_OUTLINE_OUTLINED = 0x11583 + PEOPLE_OUTLINE_ROUNDED = 0x11584 + PEOPLE_OUTLINE_SHARP = 0x11585 + PEOPLE_OUTLINED = 0x11586 + PEOPLE_ROUNDED = 0x11587 + PEOPLE_SHARP = 0x11588 + PERCENT = 0x11589 + PERCENT_OUTLINED = 0x1158A + PERCENT_ROUNDED = 0x1158B + PERCENT_SHARP = 0x1158C + PERM_CAMERA_MIC = 0x1158D + PERM_CAMERA_MIC_OUTLINED = 0x1158E + PERM_CAMERA_MIC_ROUNDED = 0x1158F + PERM_CAMERA_MIC_SHARP = 0x11590 + PERM_CONTACT_CAL = 0x11591 + PERM_CONTACT_CAL_OUTLINED = 0x11592 + PERM_CONTACT_CAL_ROUNDED = 0x11593 + PERM_CONTACT_CAL_SHARP = 0x11594 + PERM_CONTACT_CALENDAR = 0x11595 + PERM_CONTACT_CALENDAR_OUTLINED = 0x11596 + PERM_CONTACT_CALENDAR_ROUNDED = 0x11597 + PERM_CONTACT_CALENDAR_SHARP = 0x11598 + PERM_DATA_SETTING = 0x11599 + PERM_DATA_SETTING_OUTLINED = 0x1159A + PERM_DATA_SETTING_ROUNDED = 0x1159B + PERM_DATA_SETTING_SHARP = 0x1159C + PERM_DEVICE_INFO = 0x1159D + PERM_DEVICE_INFO_OUTLINED = 0x1159E + PERM_DEVICE_INFO_ROUNDED = 0x1159F + PERM_DEVICE_INFO_SHARP = 0x115A0 + PERM_DEVICE_INFORMATION = 0x115A1 + PERM_DEVICE_INFORMATION_OUTLINED = 0x115A2 + PERM_DEVICE_INFORMATION_ROUNDED = 0x115A3 + PERM_DEVICE_INFORMATION_SHARP = 0x115A4 + PERM_IDENTITY = 0x115A5 + PERM_IDENTITY_OUTLINED = 0x115A6 + PERM_IDENTITY_ROUNDED = 0x115A7 + PERM_IDENTITY_SHARP = 0x115A8 + PERM_MEDIA = 0x115A9 + PERM_MEDIA_OUTLINED = 0x115AA + PERM_MEDIA_ROUNDED = 0x115AB + PERM_MEDIA_SHARP = 0x115AC + PERM_PHONE_MSG = 0x115AD + PERM_PHONE_MSG_OUTLINED = 0x115AE + PERM_PHONE_MSG_ROUNDED = 0x115AF + PERM_PHONE_MSG_SHARP = 0x115B0 + PERM_SCAN_WIFI = 0x115B1 + PERM_SCAN_WIFI_OUTLINED = 0x115B2 + PERM_SCAN_WIFI_ROUNDED = 0x115B3 + PERM_SCAN_WIFI_SHARP = 0x115B4 + PERSON = 0x115B5 + PERSON_2 = 0x115B6 + PERSON_2_OUTLINED = 0x115B7 + PERSON_2_ROUNDED = 0x115B8 + PERSON_2_SHARP = 0x115B9 + PERSON_3 = 0x115BA + PERSON_3_OUTLINED = 0x115BB + PERSON_3_ROUNDED = 0x115BC + PERSON_3_SHARP = 0x115BD + PERSON_4 = 0x115BE + PERSON_4_OUTLINED = 0x115BF + PERSON_4_ROUNDED = 0x115C0 + PERSON_4_SHARP = 0x115C1 + PERSON_ADD = 0x115C2 + PERSON_ADD_ALT = 0x115C3 + PERSON_ADD_ALT_1 = 0x115C4 + PERSON_ADD_ALT_1_OUTLINED = 0x115C5 + PERSON_ADD_ALT_1_ROUNDED = 0x115C6 + PERSON_ADD_ALT_1_SHARP = 0x115C7 + PERSON_ADD_ALT_OUTLINED = 0x115C8 + PERSON_ADD_ALT_ROUNDED = 0x115C9 + PERSON_ADD_ALT_SHARP = 0x115CA + PERSON_ADD_DISABLED = 0x115CB + PERSON_ADD_DISABLED_OUTLINED = 0x115CC + PERSON_ADD_DISABLED_ROUNDED = 0x115CD + PERSON_ADD_DISABLED_SHARP = 0x115CE + PERSON_ADD_OUTLINED = 0x115CF + PERSON_ADD_ROUNDED = 0x115D0 + PERSON_ADD_SHARP = 0x115D1 + PERSON_OFF = 0x115D2 + PERSON_OFF_OUTLINED = 0x115D3 + PERSON_OFF_ROUNDED = 0x115D4 + PERSON_OFF_SHARP = 0x115D5 + PERSON_OUTLINE = 0x115D6 + PERSON_OUTLINE_OUTLINED = 0x115D7 + PERSON_OUTLINE_ROUNDED = 0x115D8 + PERSON_OUTLINE_SHARP = 0x115D9 + PERSON_OUTLINED = 0x115DA + PERSON_PIN = 0x115DB + PERSON_PIN_CIRCLE = 0x115DC + PERSON_PIN_CIRCLE_OUTLINED = 0x115DD + PERSON_PIN_CIRCLE_ROUNDED = 0x115DE + PERSON_PIN_CIRCLE_SHARP = 0x115DF + PERSON_PIN_OUTLINED = 0x115E0 + PERSON_PIN_ROUNDED = 0x115E1 + PERSON_PIN_SHARP = 0x115E2 + PERSON_REMOVE = 0x115E3 + PERSON_REMOVE_ALT_1 = 0x115E4 + PERSON_REMOVE_ALT_1_OUTLINED = 0x115E5 + PERSON_REMOVE_ALT_1_ROUNDED = 0x115E6 + PERSON_REMOVE_ALT_1_SHARP = 0x115E7 + PERSON_REMOVE_OUTLINED = 0x115E8 + PERSON_REMOVE_ROUNDED = 0x115E9 + PERSON_REMOVE_SHARP = 0x115EA + PERSON_ROUNDED = 0x115EB + PERSON_SEARCH = 0x115EC + PERSON_SEARCH_OUTLINED = 0x115ED + PERSON_SEARCH_ROUNDED = 0x115EE + PERSON_SEARCH_SHARP = 0x115EF + PERSON_SHARP = 0x115F0 + PERSONAL_INJURY = 0x115F1 + PERSONAL_INJURY_OUTLINED = 0x115F2 + PERSONAL_INJURY_ROUNDED = 0x115F3 + PERSONAL_INJURY_SHARP = 0x115F4 + PERSONAL_VIDEO = 0x115F5 + PERSONAL_VIDEO_OUTLINED = 0x115F6 + PERSONAL_VIDEO_ROUNDED = 0x115F7 + PERSONAL_VIDEO_SHARP = 0x115F8 + PEST_CONTROL = 0x115F9 + PEST_CONTROL_OUTLINED = 0x115FA + PEST_CONTROL_RODENT = 0x115FB + PEST_CONTROL_RODENT_OUTLINED = 0x115FC + PEST_CONTROL_RODENT_ROUNDED = 0x115FD + PEST_CONTROL_RODENT_SHARP = 0x115FE + PEST_CONTROL_ROUNDED = 0x115FF + PEST_CONTROL_SHARP = 0x11600 + PETS = 0x11601 + PETS_OUTLINED = 0x11602 + PETS_ROUNDED = 0x11603 + PETS_SHARP = 0x11604 + PHISHING = 0x11605 + PHISHING_OUTLINED = 0x11606 + PHISHING_ROUNDED = 0x11607 + PHISHING_SHARP = 0x11608 + PHONE = 0x11609 + PHONE_ANDROID = 0x1160A + PHONE_ANDROID_OUTLINED = 0x1160B + PHONE_ANDROID_ROUNDED = 0x1160C + PHONE_ANDROID_SHARP = 0x1160D + PHONE_BLUETOOTH_SPEAKER = 0x1160E + PHONE_BLUETOOTH_SPEAKER_OUTLINED = 0x1160F + PHONE_BLUETOOTH_SPEAKER_ROUNDED = 0x11610 + PHONE_BLUETOOTH_SPEAKER_SHARP = 0x11611 + PHONE_CALLBACK = 0x11612 + PHONE_CALLBACK_OUTLINED = 0x11613 + PHONE_CALLBACK_ROUNDED = 0x11614 + PHONE_CALLBACK_SHARP = 0x11615 + PHONE_DISABLED = 0x11616 + PHONE_DISABLED_OUTLINED = 0x11617 + PHONE_DISABLED_ROUNDED = 0x11618 + PHONE_DISABLED_SHARP = 0x11619 + PHONE_ENABLED = 0x1161A + PHONE_ENABLED_OUTLINED = 0x1161B + PHONE_ENABLED_ROUNDED = 0x1161C + PHONE_ENABLED_SHARP = 0x1161D + PHONE_FORWARDED = 0x1161E + PHONE_FORWARDED_OUTLINED = 0x1161F + PHONE_FORWARDED_ROUNDED = 0x11620 + PHONE_FORWARDED_SHARP = 0x11621 + PHONE_IN_TALK = 0x11622 + PHONE_IN_TALK_OUTLINED = 0x11623 + PHONE_IN_TALK_ROUNDED = 0x11624 + PHONE_IN_TALK_SHARP = 0x11625 + PHONE_IPHONE = 0x11626 + PHONE_IPHONE_OUTLINED = 0x11627 + PHONE_IPHONE_ROUNDED = 0x11628 + PHONE_IPHONE_SHARP = 0x11629 + PHONE_LOCKED = 0x1162A + PHONE_LOCKED_OUTLINED = 0x1162B + PHONE_LOCKED_ROUNDED = 0x1162C + PHONE_LOCKED_SHARP = 0x1162D + PHONE_MISSED = 0x1162E + PHONE_MISSED_OUTLINED = 0x1162F + PHONE_MISSED_ROUNDED = 0x11630 + PHONE_MISSED_SHARP = 0x11631 + PHONE_OUTLINED = 0x11632 + PHONE_PAUSED = 0x11633 + PHONE_PAUSED_OUTLINED = 0x11634 + PHONE_PAUSED_ROUNDED = 0x11635 + PHONE_PAUSED_SHARP = 0x11636 + PHONE_ROUNDED = 0x11637 + PHONE_SHARP = 0x11638 + PHONELINK = 0x11639 + PHONELINK_ERASE = 0x1163A + PHONELINK_ERASE_OUTLINED = 0x1163B + PHONELINK_ERASE_ROUNDED = 0x1163C + PHONELINK_ERASE_SHARP = 0x1163D + PHONELINK_LOCK = 0x1163E + PHONELINK_LOCK_OUTLINED = 0x1163F + PHONELINK_LOCK_ROUNDED = 0x11640 + PHONELINK_LOCK_SHARP = 0x11641 + PHONELINK_OFF = 0x11642 + PHONELINK_OFF_OUTLINED = 0x11643 + PHONELINK_OFF_ROUNDED = 0x11644 + PHONELINK_OFF_SHARP = 0x11645 + PHONELINK_OUTLINED = 0x11646 + PHONELINK_RING = 0x11647 + PHONELINK_RING_OUTLINED = 0x11648 + PHONELINK_RING_ROUNDED = 0x11649 + PHONELINK_RING_SHARP = 0x1164A + PHONELINK_ROUNDED = 0x1164B + PHONELINK_SETUP = 0x1164C + PHONELINK_SETUP_OUTLINED = 0x1164D + PHONELINK_SETUP_ROUNDED = 0x1164E + PHONELINK_SETUP_SHARP = 0x1164F + PHONELINK_SHARP = 0x11650 + PHOTO = 0x11651 + PHOTO_ALBUM = 0x11652 + PHOTO_ALBUM_OUTLINED = 0x11653 + PHOTO_ALBUM_ROUNDED = 0x11654 + PHOTO_ALBUM_SHARP = 0x11655 + PHOTO_CAMERA = 0x11656 + PHOTO_CAMERA_BACK = 0x11657 + PHOTO_CAMERA_BACK_OUTLINED = 0x11658 + PHOTO_CAMERA_BACK_ROUNDED = 0x11659 + PHOTO_CAMERA_BACK_SHARP = 0x1165A + PHOTO_CAMERA_FRONT = 0x1165B + PHOTO_CAMERA_FRONT_OUTLINED = 0x1165C + PHOTO_CAMERA_FRONT_ROUNDED = 0x1165D + PHOTO_CAMERA_FRONT_SHARP = 0x1165E + PHOTO_CAMERA_OUTLINED = 0x1165F + PHOTO_CAMERA_ROUNDED = 0x11660 + PHOTO_CAMERA_SHARP = 0x11661 + PHOTO_FILTER = 0x11662 + PHOTO_FILTER_OUTLINED = 0x11663 + PHOTO_FILTER_ROUNDED = 0x11664 + PHOTO_FILTER_SHARP = 0x11665 + PHOTO_LIBRARY = 0x11666 + PHOTO_LIBRARY_OUTLINED = 0x11667 + PHOTO_LIBRARY_ROUNDED = 0x11668 + PHOTO_LIBRARY_SHARP = 0x11669 + PHOTO_OUTLINED = 0x1166A + PHOTO_ROUNDED = 0x1166B + PHOTO_SHARP = 0x1166C + PHOTO_SIZE_SELECT_ACTUAL = 0x1166D + PHOTO_SIZE_SELECT_ACTUAL_OUTLINED = 0x1166E + PHOTO_SIZE_SELECT_ACTUAL_ROUNDED = 0x1166F + PHOTO_SIZE_SELECT_ACTUAL_SHARP = 0x11670 + PHOTO_SIZE_SELECT_LARGE = 0x11671 + PHOTO_SIZE_SELECT_LARGE_OUTLINED = 0x11672 + PHOTO_SIZE_SELECT_LARGE_ROUNDED = 0x11673 + PHOTO_SIZE_SELECT_LARGE_SHARP = 0x11674 + PHOTO_SIZE_SELECT_SMALL = 0x11675 + PHOTO_SIZE_SELECT_SMALL_OUTLINED = 0x11676 + PHOTO_SIZE_SELECT_SMALL_ROUNDED = 0x11677 + PHOTO_SIZE_SELECT_SMALL_SHARP = 0x11678 + PHP = 0x11679 + PHP_OUTLINED = 0x1167A + PHP_ROUNDED = 0x1167B + PHP_SHARP = 0x1167C + PIANO = 0x1167D + PIANO_OFF = 0x1167E + PIANO_OFF_OUTLINED = 0x1167F + PIANO_OFF_ROUNDED = 0x11680 + PIANO_OFF_SHARP = 0x11681 + PIANO_OUTLINED = 0x11682 + PIANO_ROUNDED = 0x11683 + PIANO_SHARP = 0x11684 + PICTURE_AS_PDF = 0x11685 + PICTURE_AS_PDF_OUTLINED = 0x11686 + PICTURE_AS_PDF_ROUNDED = 0x11687 + PICTURE_AS_PDF_SHARP = 0x11688 + PICTURE_IN_PICTURE = 0x11689 + PICTURE_IN_PICTURE_ALT = 0x1168A + PICTURE_IN_PICTURE_ALT_OUTLINED = 0x1168B + PICTURE_IN_PICTURE_ALT_ROUNDED = 0x1168C + PICTURE_IN_PICTURE_ALT_SHARP = 0x1168D + PICTURE_IN_PICTURE_OUTLINED = 0x1168E + PICTURE_IN_PICTURE_ROUNDED = 0x1168F + PICTURE_IN_PICTURE_SHARP = 0x11690 + PIE_CHART = 0x11691 + PIE_CHART_OUTLINE = 0x11692 + PIE_CHART_OUTLINE_OUTLINED = 0x11693 + PIE_CHART_OUTLINE_ROUNDED = 0x11694 + PIE_CHART_OUTLINE_SHARP = 0x11695 + PIE_CHART_ROUNDED = 0x11696 + PIE_CHART_SHARP = 0x11697 + PIN = 0x11698 + PIN_DROP = 0x11699 + PIN_DROP_OUTLINED = 0x1169A + PIN_DROP_ROUNDED = 0x1169B + PIN_DROP_SHARP = 0x1169C + PIN_END = 0x1169D + PIN_END_OUTLINED = 0x1169E + PIN_END_ROUNDED = 0x1169F + PIN_END_SHARP = 0x116A0 + PIN_INVOKE = 0x116A1 + PIN_INVOKE_OUTLINED = 0x116A2 + PIN_INVOKE_ROUNDED = 0x116A3 + PIN_INVOKE_SHARP = 0x116A4 + PIN_OUTLINED = 0x116A5 + PIN_ROUNDED = 0x116A6 + PIN_SHARP = 0x116A7 + PINCH = 0x116A8 + PINCH_OUTLINED = 0x116A9 + PINCH_ROUNDED = 0x116AA + PINCH_SHARP = 0x116AB + PIVOT_TABLE_CHART = 0x116AC + PIVOT_TABLE_CHART_OUTLINED = 0x116AD + PIVOT_TABLE_CHART_ROUNDED = 0x116AE + PIVOT_TABLE_CHART_SHARP = 0x116AF + PIX = 0x116B0 + PIX_OUTLINED = 0x116B1 + PIX_ROUNDED = 0x116B2 + PIX_SHARP = 0x116B3 + PLACE = 0x116B4 + PLACE_OUTLINED = 0x116B5 + PLACE_ROUNDED = 0x116B6 + PLACE_SHARP = 0x116B7 + PLAGIARISM = 0x116B8 + PLAGIARISM_OUTLINED = 0x116B9 + PLAGIARISM_ROUNDED = 0x116BA + PLAGIARISM_SHARP = 0x116BB + PLAY_ARROW = 0x116BC + PLAY_ARROW_OUTLINED = 0x116BD + PLAY_ARROW_ROUNDED = 0x116BE + PLAY_ARROW_SHARP = 0x116BF + PLAY_CIRCLE = 0x116C0 + PLAY_CIRCLE_FILL = 0x116C1 + PLAY_CIRCLE_FILL_OUTLINED = 0x116C2 + PLAY_CIRCLE_FILL_ROUNDED = 0x116C3 + PLAY_CIRCLE_FILL_SHARP = 0x116C4 + PLAY_CIRCLE_FILLED = 0x116C5 + PLAY_CIRCLE_FILLED_OUTLINED = 0x116C6 + PLAY_CIRCLE_FILLED_ROUNDED = 0x116C7 + PLAY_CIRCLE_FILLED_SHARP = 0x116C8 + PLAY_CIRCLE_OUTLINE = 0x116C9 + PLAY_CIRCLE_OUTLINE_OUTLINED = 0x116CA + PLAY_CIRCLE_OUTLINE_ROUNDED = 0x116CB + PLAY_CIRCLE_OUTLINE_SHARP = 0x116CC + PLAY_CIRCLE_OUTLINED = 0x116CD + PLAY_CIRCLE_ROUNDED = 0x116CE + PLAY_CIRCLE_SHARP = 0x116CF + PLAY_DISABLED = 0x116D0 + PLAY_DISABLED_OUTLINED = 0x116D1 + PLAY_DISABLED_ROUNDED = 0x116D2 + PLAY_DISABLED_SHARP = 0x116D3 + PLAY_FOR_WORK = 0x116D4 + PLAY_FOR_WORK_OUTLINED = 0x116D5 + PLAY_FOR_WORK_ROUNDED = 0x116D6 + PLAY_FOR_WORK_SHARP = 0x116D7 + PLAY_LESSON = 0x116D8 + PLAY_LESSON_OUTLINED = 0x116D9 + PLAY_LESSON_ROUNDED = 0x116DA + PLAY_LESSON_SHARP = 0x116DB + PLAYLIST_ADD = 0x116DC + PLAYLIST_ADD_CHECK = 0x116DD + PLAYLIST_ADD_CHECK_CIRCLE = 0x116DE + PLAYLIST_ADD_CHECK_CIRCLE_OUTLINED = 0x116DF + PLAYLIST_ADD_CHECK_CIRCLE_ROUNDED = 0x116E0 + PLAYLIST_ADD_CHECK_CIRCLE_SHARP = 0x116E1 + PLAYLIST_ADD_CHECK_OUTLINED = 0x116E2 + PLAYLIST_ADD_CHECK_ROUNDED = 0x116E3 + PLAYLIST_ADD_CHECK_SHARP = 0x116E4 + PLAYLIST_ADD_CIRCLE = 0x116E5 + PLAYLIST_ADD_CIRCLE_OUTLINED = 0x116E6 + PLAYLIST_ADD_CIRCLE_ROUNDED = 0x116E7 + PLAYLIST_ADD_CIRCLE_SHARP = 0x116E8 + PLAYLIST_ADD_OUTLINED = 0x116E9 + PLAYLIST_ADD_ROUNDED = 0x116EA + PLAYLIST_ADD_SHARP = 0x116EB + PLAYLIST_PLAY = 0x116EC + PLAYLIST_PLAY_OUTLINED = 0x116ED + PLAYLIST_PLAY_ROUNDED = 0x116EE + PLAYLIST_PLAY_SHARP = 0x116EF + PLAYLIST_REMOVE = 0x116F0 + PLAYLIST_REMOVE_OUTLINED = 0x116F1 + PLAYLIST_REMOVE_ROUNDED = 0x116F2 + PLAYLIST_REMOVE_SHARP = 0x116F3 + PLUMBING = 0x116F4 + PLUMBING_OUTLINED = 0x116F5 + PLUMBING_ROUNDED = 0x116F6 + PLUMBING_SHARP = 0x116F7 + PLUS_ONE = 0x116F8 + PLUS_ONE_OUTLINED = 0x116F9 + PLUS_ONE_ROUNDED = 0x116FA + PLUS_ONE_SHARP = 0x116FB + PODCASTS = 0x116FC + PODCASTS_OUTLINED = 0x116FD + PODCASTS_ROUNDED = 0x116FE + PODCASTS_SHARP = 0x116FF + POINT_OF_SALE = 0x11700 + POINT_OF_SALE_OUTLINED = 0x11701 + POINT_OF_SALE_ROUNDED = 0x11702 + POINT_OF_SALE_SHARP = 0x11703 + POLICY = 0x11704 + POLICY_OUTLINED = 0x11705 + POLICY_ROUNDED = 0x11706 + POLICY_SHARP = 0x11707 + POLL = 0x11708 + POLL_OUTLINED = 0x11709 + POLL_ROUNDED = 0x1170A + POLL_SHARP = 0x1170B + POLYLINE = 0x1170C + POLYLINE_OUTLINED = 0x1170D + POLYLINE_ROUNDED = 0x1170E + POLYLINE_SHARP = 0x1170F + POLYMER = 0x11710 + POLYMER_OUTLINED = 0x11711 + POLYMER_ROUNDED = 0x11712 + POLYMER_SHARP = 0x11713 + POOL = 0x11714 + POOL_OUTLINED = 0x11715 + POOL_ROUNDED = 0x11716 + POOL_SHARP = 0x11717 + PORTABLE_WIFI_OFF = 0x11718 + PORTABLE_WIFI_OFF_OUTLINED = 0x11719 + PORTABLE_WIFI_OFF_ROUNDED = 0x1171A + PORTABLE_WIFI_OFF_SHARP = 0x1171B + PORTRAIT = 0x1171C + PORTRAIT_OUTLINED = 0x1171D + PORTRAIT_ROUNDED = 0x1171E + PORTRAIT_SHARP = 0x1171F + POST_ADD = 0x11720 + POST_ADD_OUTLINED = 0x11721 + POST_ADD_ROUNDED = 0x11722 + POST_ADD_SHARP = 0x11723 + POWER = 0x11724 + POWER_INPUT = 0x11725 + POWER_INPUT_OUTLINED = 0x11726 + POWER_INPUT_ROUNDED = 0x11727 + POWER_INPUT_SHARP = 0x11728 + POWER_OFF = 0x11729 + POWER_OFF_OUTLINED = 0x1172A + POWER_OFF_ROUNDED = 0x1172B + POWER_OFF_SHARP = 0x1172C + POWER_OUTLINED = 0x1172D + POWER_ROUNDED = 0x1172E + POWER_SETTINGS_NEW = 0x1172F + POWER_SETTINGS_NEW_OUTLINED = 0x11730 + POWER_SETTINGS_NEW_ROUNDED = 0x11731 + POWER_SETTINGS_NEW_SHARP = 0x11732 + POWER_SHARP = 0x11733 + PRECISION_MANUFACTURING = 0x11734 + PRECISION_MANUFACTURING_OUTLINED = 0x11735 + PRECISION_MANUFACTURING_ROUNDED = 0x11736 + PRECISION_MANUFACTURING_SHARP = 0x11737 + PREGNANT_WOMAN = 0x11738 + PREGNANT_WOMAN_OUTLINED = 0x11739 + PREGNANT_WOMAN_ROUNDED = 0x1173A + PREGNANT_WOMAN_SHARP = 0x1173B + PRESENT_TO_ALL = 0x1173C + PRESENT_TO_ALL_OUTLINED = 0x1173D + PRESENT_TO_ALL_ROUNDED = 0x1173E + PRESENT_TO_ALL_SHARP = 0x1173F + PREVIEW = 0x11740 + PREVIEW_OUTLINED = 0x11741 + PREVIEW_ROUNDED = 0x11742 + PREVIEW_SHARP = 0x11743 + PRICE_CHANGE = 0x11744 + PRICE_CHANGE_OUTLINED = 0x11745 + PRICE_CHANGE_ROUNDED = 0x11746 + PRICE_CHANGE_SHARP = 0x11747 + PRICE_CHECK = 0x11748 + PRICE_CHECK_OUTLINED = 0x11749 + PRICE_CHECK_ROUNDED = 0x1174A + PRICE_CHECK_SHARP = 0x1174B + PRINT = 0x1174C + PRINT_DISABLED = 0x1174D + PRINT_DISABLED_OUTLINED = 0x1174E + PRINT_DISABLED_ROUNDED = 0x1174F + PRINT_DISABLED_SHARP = 0x11750 + PRINT_OUTLINED = 0x11751 + PRINT_ROUNDED = 0x11752 + PRINT_SHARP = 0x11753 + PRIORITY_HIGH = 0x11754 + PRIORITY_HIGH_OUTLINED = 0x11755 + PRIORITY_HIGH_ROUNDED = 0x11756 + PRIORITY_HIGH_SHARP = 0x11757 + PRIVACY_TIP = 0x11758 + PRIVACY_TIP_OUTLINED = 0x11759 + PRIVACY_TIP_ROUNDED = 0x1175A + PRIVACY_TIP_SHARP = 0x1175B + PRIVATE_CONNECTIVITY = 0x1175C + PRIVATE_CONNECTIVITY_OUTLINED = 0x1175D + PRIVATE_CONNECTIVITY_ROUNDED = 0x1175E + PRIVATE_CONNECTIVITY_SHARP = 0x1175F + PRODUCTION_QUANTITY_LIMITS = 0x11760 + PRODUCTION_QUANTITY_LIMITS_OUTLINED = 0x11761 + PRODUCTION_QUANTITY_LIMITS_ROUNDED = 0x11762 + PRODUCTION_QUANTITY_LIMITS_SHARP = 0x11763 + PROPANE = 0x11764 + PROPANE_OUTLINED = 0x11765 + PROPANE_ROUNDED = 0x11766 + PROPANE_SHARP = 0x11767 + PROPANE_TANK = 0x11768 + PROPANE_TANK_OUTLINED = 0x11769 + PROPANE_TANK_ROUNDED = 0x1176A + PROPANE_TANK_SHARP = 0x1176B + PSYCHOLOGY = 0x1176C + PSYCHOLOGY_ALT = 0x1176D + PSYCHOLOGY_ALT_OUTLINED = 0x1176E + PSYCHOLOGY_ALT_ROUNDED = 0x1176F + PSYCHOLOGY_ALT_SHARP = 0x11770 + PSYCHOLOGY_OUTLINED = 0x11771 + PSYCHOLOGY_ROUNDED = 0x11772 + PSYCHOLOGY_SHARP = 0x11773 + PUBLIC = 0x11774 + PUBLIC_OFF = 0x11775 + PUBLIC_OFF_OUTLINED = 0x11776 + PUBLIC_OFF_ROUNDED = 0x11777 + PUBLIC_OFF_SHARP = 0x11778 + PUBLIC_OUTLINED = 0x11779 + PUBLIC_ROUNDED = 0x1177A + PUBLIC_SHARP = 0x1177B + PUBLISH = 0x1177C + PUBLISH_OUTLINED = 0x1177D + PUBLISH_ROUNDED = 0x1177E + PUBLISH_SHARP = 0x1177F + PUBLISHED_WITH_CHANGES = 0x11780 + PUBLISHED_WITH_CHANGES_OUTLINED = 0x11781 + PUBLISHED_WITH_CHANGES_ROUNDED = 0x11782 + PUBLISHED_WITH_CHANGES_SHARP = 0x11783 + PUNCH_CLOCK = 0x11784 + PUNCH_CLOCK_OUTLINED = 0x11785 + PUNCH_CLOCK_ROUNDED = 0x11786 + PUNCH_CLOCK_SHARP = 0x11787 + PUSH_PIN = 0x11788 + PUSH_PIN_OUTLINED = 0x11789 + PUSH_PIN_ROUNDED = 0x1178A + PUSH_PIN_SHARP = 0x1178B + QR_CODE = 0x1178C + QR_CODE_2 = 0x1178D + QR_CODE_2_OUTLINED = 0x1178E + QR_CODE_2_ROUNDED = 0x1178F + QR_CODE_2_SHARP = 0x11790 + QR_CODE_OUTLINED = 0x11791 + QR_CODE_ROUNDED = 0x11792 + QR_CODE_SCANNER = 0x11793 + QR_CODE_SCANNER_OUTLINED = 0x11794 + QR_CODE_SCANNER_ROUNDED = 0x11795 + QR_CODE_SCANNER_SHARP = 0x11796 + QR_CODE_SHARP = 0x11797 + QUERY_BUILDER = 0x11798 + QUERY_BUILDER_OUTLINED = 0x11799 + QUERY_BUILDER_ROUNDED = 0x1179A + QUERY_BUILDER_SHARP = 0x1179B + QUERY_STATS = 0x1179C + QUERY_STATS_OUTLINED = 0x1179D + QUERY_STATS_ROUNDED = 0x1179E + QUERY_STATS_SHARP = 0x1179F + QUESTION_ANSWER = 0x117A0 + QUESTION_ANSWER_OUTLINED = 0x117A1 + QUESTION_ANSWER_ROUNDED = 0x117A2 + QUESTION_ANSWER_SHARP = 0x117A3 + QUESTION_MARK = 0x117A4 + QUESTION_MARK_OUTLINED = 0x117A5 + QUESTION_MARK_ROUNDED = 0x117A6 + QUESTION_MARK_SHARP = 0x117A7 + QUEUE = 0x117A8 + QUEUE_MUSIC = 0x117A9 + QUEUE_MUSIC_OUTLINED = 0x117AA + QUEUE_MUSIC_ROUNDED = 0x117AB + QUEUE_MUSIC_SHARP = 0x117AC + QUEUE_OUTLINED = 0x117AD + QUEUE_PLAY_NEXT = 0x117AE + QUEUE_PLAY_NEXT_OUTLINED = 0x117AF + QUEUE_PLAY_NEXT_ROUNDED = 0x117B0 + QUEUE_PLAY_NEXT_SHARP = 0x117B1 + QUEUE_ROUNDED = 0x117B2 + QUEUE_SHARP = 0x117B3 + QUICK_CONTACTS_DIALER = 0x117B4 + QUICK_CONTACTS_DIALER_OUTLINED = 0x117B5 + QUICK_CONTACTS_DIALER_ROUNDED = 0x117B6 + QUICK_CONTACTS_DIALER_SHARP = 0x117B7 + QUICK_CONTACTS_MAIL = 0x117B8 + QUICK_CONTACTS_MAIL_OUTLINED = 0x117B9 + QUICK_CONTACTS_MAIL_ROUNDED = 0x117BA + QUICK_CONTACTS_MAIL_SHARP = 0x117BB + QUICKREPLY = 0x117BC + QUICKREPLY_OUTLINED = 0x117BD + QUICKREPLY_ROUNDED = 0x117BE + QUICKREPLY_SHARP = 0x117BF + QUIZ = 0x117C0 + QUIZ_OUTLINED = 0x117C1 + QUIZ_ROUNDED = 0x117C2 + QUIZ_SHARP = 0x117C3 + QUORA = 0x117C4 + QUORA_OUTLINED = 0x117C5 + QUORA_ROUNDED = 0x117C6 + QUORA_SHARP = 0x117C7 + R_MOBILEDATA = 0x117C8 + R_MOBILEDATA_OUTLINED = 0x117C9 + R_MOBILEDATA_ROUNDED = 0x117CA + R_MOBILEDATA_SHARP = 0x117CB + RADAR = 0x117CC + RADAR_OUTLINED = 0x117CD + RADAR_ROUNDED = 0x117CE + RADAR_SHARP = 0x117CF + RADIO = 0x117D0 + RADIO_BUTTON_CHECKED = 0x117D1 + RADIO_BUTTON_CHECKED_OUTLINED = 0x117D2 + RADIO_BUTTON_CHECKED_ROUNDED = 0x117D3 + RADIO_BUTTON_CHECKED_SHARP = 0x117D4 + RADIO_BUTTON_OFF = 0x117D5 + RADIO_BUTTON_OFF_OUTLINED = 0x117D6 + RADIO_BUTTON_OFF_ROUNDED = 0x117D7 + RADIO_BUTTON_OFF_SHARP = 0x117D8 + RADIO_BUTTON_ON = 0x117D9 + RADIO_BUTTON_ON_OUTLINED = 0x117DA + RADIO_BUTTON_ON_ROUNDED = 0x117DB + RADIO_BUTTON_ON_SHARP = 0x117DC + RADIO_BUTTON_UNCHECKED = 0x117DD + RADIO_BUTTON_UNCHECKED_OUTLINED = 0x117DE + RADIO_BUTTON_UNCHECKED_ROUNDED = 0x117DF + RADIO_BUTTON_UNCHECKED_SHARP = 0x117E0 + RADIO_OUTLINED = 0x117E1 + RADIO_ROUNDED = 0x117E2 + RADIO_SHARP = 0x117E3 + RAILWAY_ALERT = 0x117E4 + RAILWAY_ALERT_OUTLINED = 0x117E5 + RAILWAY_ALERT_ROUNDED = 0x117E6 + RAILWAY_ALERT_SHARP = 0x117E7 + RAMEN_DINING = 0x117E8 + RAMEN_DINING_OUTLINED = 0x117E9 + RAMEN_DINING_ROUNDED = 0x117EA + RAMEN_DINING_SHARP = 0x117EB + RAMP_LEFT = 0x117EC + RAMP_LEFT_OUTLINED = 0x117ED + RAMP_LEFT_ROUNDED = 0x117EE + RAMP_LEFT_SHARP = 0x117EF + RAMP_RIGHT = 0x117F0 + RAMP_RIGHT_OUTLINED = 0x117F1 + RAMP_RIGHT_ROUNDED = 0x117F2 + RAMP_RIGHT_SHARP = 0x117F3 + RATE_REVIEW = 0x117F4 + RATE_REVIEW_OUTLINED = 0x117F5 + RATE_REVIEW_ROUNDED = 0x117F6 + RATE_REVIEW_SHARP = 0x117F7 + RAW_OFF = 0x117F8 + RAW_OFF_OUTLINED = 0x117F9 + RAW_OFF_ROUNDED = 0x117FA + RAW_OFF_SHARP = 0x117FB + RAW_ON = 0x117FC + RAW_ON_OUTLINED = 0x117FD + RAW_ON_ROUNDED = 0x117FE + RAW_ON_SHARP = 0x117FF + READ_MORE = 0x11800 + READ_MORE_OUTLINED = 0x11801 + READ_MORE_ROUNDED = 0x11802 + READ_MORE_SHARP = 0x11803 + REAL_ESTATE_AGENT = 0x11804 + REAL_ESTATE_AGENT_OUTLINED = 0x11805 + REAL_ESTATE_AGENT_ROUNDED = 0x11806 + REAL_ESTATE_AGENT_SHARP = 0x11807 + REBASE_EDIT = 0x11808 + RECEIPT = 0x11809 + RECEIPT_LONG = 0x1180A + RECEIPT_LONG_OUTLINED = 0x1180B + RECEIPT_LONG_ROUNDED = 0x1180C + RECEIPT_LONG_SHARP = 0x1180D + RECEIPT_OUTLINED = 0x1180E + RECEIPT_ROUNDED = 0x1180F + RECEIPT_SHARP = 0x11810 + RECENT_ACTORS = 0x11811 + RECENT_ACTORS_OUTLINED = 0x11812 + RECENT_ACTORS_ROUNDED = 0x11813 + RECENT_ACTORS_SHARP = 0x11814 + RECOMMEND = 0x11815 + RECOMMEND_OUTLINED = 0x11816 + RECOMMEND_ROUNDED = 0x11817 + RECOMMEND_SHARP = 0x11818 + RECORD_VOICE_OVER = 0x11819 + RECORD_VOICE_OVER_OUTLINED = 0x1181A + RECORD_VOICE_OVER_ROUNDED = 0x1181B + RECORD_VOICE_OVER_SHARP = 0x1181C + RECTANGLE = 0x1181D + RECTANGLE_OUTLINED = 0x1181E + RECTANGLE_ROUNDED = 0x1181F + RECTANGLE_SHARP = 0x11820 + RECYCLING = 0x11821 + RECYCLING_OUTLINED = 0x11822 + RECYCLING_ROUNDED = 0x11823 + RECYCLING_SHARP = 0x11824 + REDDIT = 0x11825 + REDDIT_OUTLINED = 0x11826 + REDDIT_ROUNDED = 0x11827 + REDDIT_SHARP = 0x11828 + REDEEM = 0x11829 + REDEEM_OUTLINED = 0x1182A + REDEEM_ROUNDED = 0x1182B + REDEEM_SHARP = 0x1182C + REDO = 0x1182D + REDO_OUTLINED = 0x1182E + REDO_ROUNDED = 0x1182F + REDO_SHARP = 0x11830 + REDUCE_CAPACITY = 0x11831 + REDUCE_CAPACITY_OUTLINED = 0x11832 + REDUCE_CAPACITY_ROUNDED = 0x11833 + REDUCE_CAPACITY_SHARP = 0x11834 + REFRESH = 0x11835 + REFRESH_OUTLINED = 0x11836 + REFRESH_ROUNDED = 0x11837 + REFRESH_SHARP = 0x11838 + REMEMBER_ME = 0x11839 + REMEMBER_ME_OUTLINED = 0x1183A + REMEMBER_ME_ROUNDED = 0x1183B + REMEMBER_ME_SHARP = 0x1183C + REMOVE = 0x1183D + REMOVE_CIRCLE = 0x1183E + REMOVE_CIRCLE_OUTLINE = 0x1183F + REMOVE_CIRCLE_OUTLINE_OUTLINED = 0x11840 + REMOVE_CIRCLE_OUTLINE_ROUNDED = 0x11841 + REMOVE_CIRCLE_OUTLINE_SHARP = 0x11842 + REMOVE_CIRCLE_OUTLINED = 0x11843 + REMOVE_CIRCLE_ROUNDED = 0x11844 + REMOVE_CIRCLE_SHARP = 0x11845 + REMOVE_DONE = 0x11846 + REMOVE_DONE_OUTLINED = 0x11847 + REMOVE_DONE_ROUNDED = 0x11848 + REMOVE_DONE_SHARP = 0x11849 + REMOVE_FROM_QUEUE = 0x1184A + REMOVE_FROM_QUEUE_OUTLINED = 0x1184B + REMOVE_FROM_QUEUE_ROUNDED = 0x1184C + REMOVE_FROM_QUEUE_SHARP = 0x1184D + REMOVE_MODERATOR = 0x1184E + REMOVE_MODERATOR_OUTLINED = 0x1184F + REMOVE_MODERATOR_ROUNDED = 0x11850 + REMOVE_MODERATOR_SHARP = 0x11851 + REMOVE_OUTLINED = 0x11852 + REMOVE_RED_EYE = 0x11853 + REMOVE_RED_EYE_OUTLINED = 0x11854 + REMOVE_RED_EYE_ROUNDED = 0x11855 + REMOVE_RED_EYE_SHARP = 0x11856 + REMOVE_ROAD = 0x11857 + REMOVE_ROAD_OUTLINED = 0x11858 + REMOVE_ROAD_ROUNDED = 0x11859 + REMOVE_ROAD_SHARP = 0x1185A + REMOVE_ROUNDED = 0x1185B + REMOVE_SHARP = 0x1185C + REMOVE_SHOPPING_CART = 0x1185D + REMOVE_SHOPPING_CART_OUTLINED = 0x1185E + REMOVE_SHOPPING_CART_ROUNDED = 0x1185F + REMOVE_SHOPPING_CART_SHARP = 0x11860 + REORDER = 0x11861 + REORDER_OUTLINED = 0x11862 + REORDER_ROUNDED = 0x11863 + REORDER_SHARP = 0x11864 + REPARTITION = 0x11865 + REPARTITION_OUTLINED = 0x11866 + REPARTITION_ROUNDED = 0x11867 + REPARTITION_SHARP = 0x11868 + REPEAT = 0x11869 + REPEAT_ON = 0x1186A + REPEAT_ON_OUTLINED = 0x1186B + REPEAT_ON_ROUNDED = 0x1186C + REPEAT_ON_SHARP = 0x1186D + REPEAT_ONE = 0x1186E + REPEAT_ONE_ON = 0x1186F + REPEAT_ONE_ON_OUTLINED = 0x11870 + REPEAT_ONE_ON_ROUNDED = 0x11871 + REPEAT_ONE_ON_SHARP = 0x11872 + REPEAT_ONE_OUTLINED = 0x11873 + REPEAT_ONE_ROUNDED = 0x11874 + REPEAT_ONE_SHARP = 0x11875 + REPEAT_OUTLINED = 0x11876 + REPEAT_ROUNDED = 0x11877 + REPEAT_SHARP = 0x11878 + REPLAY = 0x11879 + REPLAY_10 = 0x1187A + REPLAY_10_OUTLINED = 0x1187B + REPLAY_10_ROUNDED = 0x1187C + REPLAY_10_SHARP = 0x1187D + REPLAY_30 = 0x1187E + REPLAY_30_OUTLINED = 0x1187F + REPLAY_30_ROUNDED = 0x11880 + REPLAY_30_SHARP = 0x11881 + REPLAY_5 = 0x11882 + REPLAY_5_OUTLINED = 0x11883 + REPLAY_5_ROUNDED = 0x11884 + REPLAY_5_SHARP = 0x11885 + REPLAY_CIRCLE_FILLED = 0x11886 + REPLAY_CIRCLE_FILLED_OUTLINED = 0x11887 + REPLAY_CIRCLE_FILLED_ROUNDED = 0x11888 + REPLAY_CIRCLE_FILLED_SHARP = 0x11889 + REPLAY_OUTLINED = 0x1188A + REPLAY_ROUNDED = 0x1188B + REPLAY_SHARP = 0x1188C + REPLY = 0x1188D + REPLY_ALL = 0x1188E + REPLY_ALL_OUTLINED = 0x1188F + REPLY_ALL_ROUNDED = 0x11890 + REPLY_ALL_SHARP = 0x11891 + REPLY_OUTLINED = 0x11892 + REPLY_ROUNDED = 0x11893 + REPLY_SHARP = 0x11894 + REPORT = 0x11895 + REPORT_GMAILERRORRED = 0x11896 + REPORT_GMAILERRORRED_OUTLINED = 0x11897 + REPORT_GMAILERRORRED_ROUNDED = 0x11898 + REPORT_GMAILERRORRED_SHARP = 0x11899 + REPORT_OFF = 0x1189A + REPORT_OFF_OUTLINED = 0x1189B + REPORT_OFF_ROUNDED = 0x1189C + REPORT_OFF_SHARP = 0x1189D + REPORT_OUTLINED = 0x1189E + REPORT_PROBLEM = 0x1189F + REPORT_PROBLEM_OUTLINED = 0x118A0 + REPORT_PROBLEM_ROUNDED = 0x118A1 + REPORT_PROBLEM_SHARP = 0x118A2 + REPORT_ROUNDED = 0x118A3 + REPORT_SHARP = 0x118A4 + REQUEST_PAGE = 0x118A5 + REQUEST_PAGE_OUTLINED = 0x118A6 + REQUEST_PAGE_ROUNDED = 0x118A7 + REQUEST_PAGE_SHARP = 0x118A8 + REQUEST_QUOTE = 0x118A9 + REQUEST_QUOTE_OUTLINED = 0x118AA + REQUEST_QUOTE_ROUNDED = 0x118AB + REQUEST_QUOTE_SHARP = 0x118AC + RESET_TV = 0x118AD + RESET_TV_OUTLINED = 0x118AE + RESET_TV_ROUNDED = 0x118AF + RESET_TV_SHARP = 0x118B0 + RESTART_ALT = 0x118B1 + RESTART_ALT_OUTLINED = 0x118B2 + RESTART_ALT_ROUNDED = 0x118B3 + RESTART_ALT_SHARP = 0x118B4 + RESTAURANT = 0x118B5 + RESTAURANT_MENU = 0x118B6 + RESTAURANT_MENU_OUTLINED = 0x118B7 + RESTAURANT_MENU_ROUNDED = 0x118B8 + RESTAURANT_MENU_SHARP = 0x118B9 + RESTAURANT_OUTLINED = 0x118BA + RESTAURANT_ROUNDED = 0x118BB + RESTAURANT_SHARP = 0x118BC + RESTORE = 0x118BD + RESTORE_FROM_TRASH = 0x118BE + RESTORE_FROM_TRASH_OUTLINED = 0x118BF + RESTORE_FROM_TRASH_ROUNDED = 0x118C0 + RESTORE_FROM_TRASH_SHARP = 0x118C1 + RESTORE_OUTLINED = 0x118C2 + RESTORE_PAGE = 0x118C3 + RESTORE_PAGE_OUTLINED = 0x118C4 + RESTORE_PAGE_ROUNDED = 0x118C5 + RESTORE_PAGE_SHARP = 0x118C6 + RESTORE_ROUNDED = 0x118C7 + RESTORE_SHARP = 0x118C8 + REVIEWS = 0x118C9 + REVIEWS_OUTLINED = 0x118CA + REVIEWS_ROUNDED = 0x118CB + REVIEWS_SHARP = 0x118CC + RICE_BOWL = 0x118CD + RICE_BOWL_OUTLINED = 0x118CE + RICE_BOWL_ROUNDED = 0x118CF + RICE_BOWL_SHARP = 0x118D0 + RING_VOLUME = 0x118D1 + RING_VOLUME_OUTLINED = 0x118D2 + RING_VOLUME_ROUNDED = 0x118D3 + RING_VOLUME_SHARP = 0x118D4 + ROCKET = 0x118D5 + ROCKET_LAUNCH = 0x118D6 + ROCKET_LAUNCH_OUTLINED = 0x118D7 + ROCKET_LAUNCH_ROUNDED = 0x118D8 + ROCKET_LAUNCH_SHARP = 0x118D9 + ROCKET_OUTLINED = 0x118DA + ROCKET_ROUNDED = 0x118DB + ROCKET_SHARP = 0x118DC + ROLLER_SHADES = 0x118DD + ROLLER_SHADES_CLOSED = 0x118DE + ROLLER_SHADES_CLOSED_OUTLINED = 0x118DF + ROLLER_SHADES_CLOSED_ROUNDED = 0x118E0 + ROLLER_SHADES_CLOSED_SHARP = 0x118E1 + ROLLER_SHADES_OUTLINED = 0x118E2 + ROLLER_SHADES_ROUNDED = 0x118E3 + ROLLER_SHADES_SHARP = 0x118E4 + ROLLER_SKATING = 0x118E5 + ROLLER_SKATING_OUTLINED = 0x118E6 + ROLLER_SKATING_ROUNDED = 0x118E7 + ROLLER_SKATING_SHARP = 0x118E8 + ROOFING = 0x118E9 + ROOFING_OUTLINED = 0x118EA + ROOFING_ROUNDED = 0x118EB + ROOFING_SHARP = 0x118EC + ROOM = 0x118ED + ROOM_OUTLINED = 0x118EE + ROOM_PREFERENCES = 0x118EF + ROOM_PREFERENCES_OUTLINED = 0x118F0 + ROOM_PREFERENCES_ROUNDED = 0x118F1 + ROOM_PREFERENCES_SHARP = 0x118F2 + ROOM_ROUNDED = 0x118F3 + ROOM_SERVICE = 0x118F4 + ROOM_SERVICE_OUTLINED = 0x118F5 + ROOM_SERVICE_ROUNDED = 0x118F6 + ROOM_SERVICE_SHARP = 0x118F7 + ROOM_SHARP = 0x118F8 + ROTATE_90_DEGREES_CCW = 0x118F9 + ROTATE_90_DEGREES_CCW_OUTLINED = 0x118FA + ROTATE_90_DEGREES_CCW_ROUNDED = 0x118FB + ROTATE_90_DEGREES_CCW_SHARP = 0x118FC + ROTATE_90_DEGREES_CW = 0x118FD + ROTATE_90_DEGREES_CW_OUTLINED = 0x118FE + ROTATE_90_DEGREES_CW_ROUNDED = 0x118FF + ROTATE_90_DEGREES_CW_SHARP = 0x11900 + ROTATE_LEFT = 0x11901 + ROTATE_LEFT_OUTLINED = 0x11902 + ROTATE_LEFT_ROUNDED = 0x11903 + ROTATE_LEFT_SHARP = 0x11904 + ROTATE_RIGHT = 0x11905 + ROTATE_RIGHT_OUTLINED = 0x11906 + ROTATE_RIGHT_ROUNDED = 0x11907 + ROTATE_RIGHT_SHARP = 0x11908 + ROUNDABOUT_LEFT = 0x11909 + ROUNDABOUT_LEFT_OUTLINED = 0x1190A + ROUNDABOUT_LEFT_ROUNDED = 0x1190B + ROUNDABOUT_LEFT_SHARP = 0x1190C + ROUNDABOUT_RIGHT = 0x1190D + ROUNDABOUT_RIGHT_OUTLINED = 0x1190E + ROUNDABOUT_RIGHT_ROUNDED = 0x1190F + ROUNDABOUT_RIGHT_SHARP = 0x11910 + ROUNDED_CORNER = 0x11911 + ROUNDED_CORNER_OUTLINED = 0x11912 + ROUNDED_CORNER_ROUNDED = 0x11913 + ROUNDED_CORNER_SHARP = 0x11914 + ROUTE = 0x11915 + ROUTE_OUTLINED = 0x11916 + ROUTE_ROUNDED = 0x11917 + ROUTE_SHARP = 0x11918 + ROUTER = 0x11919 + ROUTER_OUTLINED = 0x1191A + ROUTER_ROUNDED = 0x1191B + ROUTER_SHARP = 0x1191C + ROWING = 0x1191D + ROWING_OUTLINED = 0x1191E + ROWING_ROUNDED = 0x1191F + ROWING_SHARP = 0x11920 + RSS_FEED = 0x11921 + RSS_FEED_OUTLINED = 0x11922 + RSS_FEED_ROUNDED = 0x11923 + RSS_FEED_SHARP = 0x11924 + RSVP = 0x11925 + RSVP_OUTLINED = 0x11926 + RSVP_ROUNDED = 0x11927 + RSVP_SHARP = 0x11928 + RTT = 0x11929 + RTT_OUTLINED = 0x1192A + RTT_ROUNDED = 0x1192B + RTT_SHARP = 0x1192C + RULE = 0x1192D + RULE_FOLDER = 0x1192E + RULE_FOLDER_OUTLINED = 0x1192F + RULE_FOLDER_ROUNDED = 0x11930 + RULE_FOLDER_SHARP = 0x11931 + RULE_OUTLINED = 0x11932 + RULE_ROUNDED = 0x11933 + RULE_SHARP = 0x11934 + RUN_CIRCLE = 0x11935 + RUN_CIRCLE_OUTLINED = 0x11936 + RUN_CIRCLE_ROUNDED = 0x11937 + RUN_CIRCLE_SHARP = 0x11938 + RUNNING_WITH_ERRORS = 0x11939 + RUNNING_WITH_ERRORS_OUTLINED = 0x1193A + RUNNING_WITH_ERRORS_ROUNDED = 0x1193B + RUNNING_WITH_ERRORS_SHARP = 0x1193C + RV_HOOKUP = 0x1193D + RV_HOOKUP_OUTLINED = 0x1193E + RV_HOOKUP_ROUNDED = 0x1193F + RV_HOOKUP_SHARP = 0x11940 + SAFETY_CHECK = 0x11941 + SAFETY_CHECK_OUTLINED = 0x11942 + SAFETY_CHECK_ROUNDED = 0x11943 + SAFETY_CHECK_SHARP = 0x11944 + SAFETY_DIVIDER = 0x11945 + SAFETY_DIVIDER_OUTLINED = 0x11946 + SAFETY_DIVIDER_ROUNDED = 0x11947 + SAFETY_DIVIDER_SHARP = 0x11948 + SAILING = 0x11949 + SAILING_OUTLINED = 0x1194A + SAILING_ROUNDED = 0x1194B + SAILING_SHARP = 0x1194C + SANITIZER = 0x1194D + SANITIZER_OUTLINED = 0x1194E + SANITIZER_ROUNDED = 0x1194F + SANITIZER_SHARP = 0x11950 + SATELLITE = 0x11951 + SATELLITE_ALT = 0x11952 + SATELLITE_ALT_OUTLINED = 0x11953 + SATELLITE_ALT_ROUNDED = 0x11954 + SATELLITE_ALT_SHARP = 0x11955 + SATELLITE_OUTLINED = 0x11956 + SATELLITE_ROUNDED = 0x11957 + SATELLITE_SHARP = 0x11958 + SAVE = 0x11959 + SAVE_ALT = 0x1195A + SAVE_ALT_OUTLINED = 0x1195B + SAVE_ALT_ROUNDED = 0x1195C + SAVE_ALT_SHARP = 0x1195D + SAVE_AS = 0x1195E + SAVE_AS_OUTLINED = 0x1195F + SAVE_AS_ROUNDED = 0x11960 + SAVE_AS_SHARP = 0x11961 + SAVE_OUTLINED = 0x11962 + SAVE_ROUNDED = 0x11963 + SAVE_SHARP = 0x11964 + SAVED_SEARCH = 0x11965 + SAVED_SEARCH_OUTLINED = 0x11966 + SAVED_SEARCH_ROUNDED = 0x11967 + SAVED_SEARCH_SHARP = 0x11968 + SAVINGS = 0x11969 + SAVINGS_OUTLINED = 0x1196A + SAVINGS_ROUNDED = 0x1196B + SAVINGS_SHARP = 0x1196C + SCALE = 0x1196D + SCALE_OUTLINED = 0x1196E + SCALE_ROUNDED = 0x1196F + SCALE_SHARP = 0x11970 + SCANNER = 0x11971 + SCANNER_OUTLINED = 0x11972 + SCANNER_ROUNDED = 0x11973 + SCANNER_SHARP = 0x11974 + SCATTER_PLOT = 0x11975 + SCATTER_PLOT_OUTLINED = 0x11976 + SCATTER_PLOT_ROUNDED = 0x11977 + SCATTER_PLOT_SHARP = 0x11978 + SCHEDULE = 0x11979 + SCHEDULE_OUTLINED = 0x1197A + SCHEDULE_ROUNDED = 0x1197B + SCHEDULE_SEND = 0x1197C + SCHEDULE_SEND_OUTLINED = 0x1197D + SCHEDULE_SEND_ROUNDED = 0x1197E + SCHEDULE_SEND_SHARP = 0x1197F + SCHEDULE_SHARP = 0x11980 + SCHEMA = 0x11981 + SCHEMA_OUTLINED = 0x11982 + SCHEMA_ROUNDED = 0x11983 + SCHEMA_SHARP = 0x11984 + SCHOOL = 0x11985 + SCHOOL_OUTLINED = 0x11986 + SCHOOL_ROUNDED = 0x11987 + SCHOOL_SHARP = 0x11988 + SCIENCE = 0x11989 + SCIENCE_OUTLINED = 0x1198A + SCIENCE_ROUNDED = 0x1198B + SCIENCE_SHARP = 0x1198C + SCORE = 0x1198D + SCORE_OUTLINED = 0x1198E + SCORE_ROUNDED = 0x1198F + SCORE_SHARP = 0x11990 + SCOREBOARD = 0x11991 + SCOREBOARD_OUTLINED = 0x11992 + SCOREBOARD_ROUNDED = 0x11993 + SCOREBOARD_SHARP = 0x11994 + SCREEN_LOCK_LANDSCAPE = 0x11995 + SCREEN_LOCK_LANDSCAPE_OUTLINED = 0x11996 + SCREEN_LOCK_LANDSCAPE_ROUNDED = 0x11997 + SCREEN_LOCK_LANDSCAPE_SHARP = 0x11998 + SCREEN_LOCK_PORTRAIT = 0x11999 + SCREEN_LOCK_PORTRAIT_OUTLINED = 0x1199A + SCREEN_LOCK_PORTRAIT_ROUNDED = 0x1199B + SCREEN_LOCK_PORTRAIT_SHARP = 0x1199C + SCREEN_LOCK_ROTATION = 0x1199D + SCREEN_LOCK_ROTATION_OUTLINED = 0x1199E + SCREEN_LOCK_ROTATION_ROUNDED = 0x1199F + SCREEN_LOCK_ROTATION_SHARP = 0x119A0 + SCREEN_ROTATION = 0x119A1 + SCREEN_ROTATION_ALT = 0x119A2 + SCREEN_ROTATION_ALT_OUTLINED = 0x119A3 + SCREEN_ROTATION_ALT_ROUNDED = 0x119A4 + SCREEN_ROTATION_ALT_SHARP = 0x119A5 + SCREEN_ROTATION_OUTLINED = 0x119A6 + SCREEN_ROTATION_ROUNDED = 0x119A7 + SCREEN_ROTATION_SHARP = 0x119A8 + SCREEN_SEARCH_DESKTOP = 0x119A9 + SCREEN_SEARCH_DESKTOP_OUTLINED = 0x119AA + SCREEN_SEARCH_DESKTOP_ROUNDED = 0x119AB + SCREEN_SEARCH_DESKTOP_SHARP = 0x119AC + SCREEN_SHARE = 0x119AD + SCREEN_SHARE_OUTLINED = 0x119AE + SCREEN_SHARE_ROUNDED = 0x119AF + SCREEN_SHARE_SHARP = 0x119B0 + SCREENSHOT = 0x119B1 + SCREENSHOT_MONITOR = 0x119B2 + SCREENSHOT_MONITOR_OUTLINED = 0x119B3 + SCREENSHOT_MONITOR_ROUNDED = 0x119B4 + SCREENSHOT_MONITOR_SHARP = 0x119B5 + SCREENSHOT_OUTLINED = 0x119B6 + SCREENSHOT_ROUNDED = 0x119B7 + SCREENSHOT_SHARP = 0x119B8 + SCUBA_DIVING = 0x119B9 + SCUBA_DIVING_OUTLINED = 0x119BA + SCUBA_DIVING_ROUNDED = 0x119BB + SCUBA_DIVING_SHARP = 0x119BC + SD = 0x119BD + SD_CARD = 0x119BE + SD_CARD_ALERT = 0x119BF + SD_CARD_ALERT_OUTLINED = 0x119C0 + SD_CARD_ALERT_ROUNDED = 0x119C1 + SD_CARD_ALERT_SHARP = 0x119C2 + SD_CARD_OUTLINED = 0x119C3 + SD_CARD_ROUNDED = 0x119C4 + SD_CARD_SHARP = 0x119C5 + SD_OUTLINED = 0x119C6 + SD_ROUNDED = 0x119C7 + SD_SHARP = 0x119C8 + SD_STORAGE = 0x119C9 + SD_STORAGE_OUTLINED = 0x119CA + SD_STORAGE_ROUNDED = 0x119CB + SD_STORAGE_SHARP = 0x119CC + SEARCH = 0x119CD + SEARCH_OFF = 0x119CE + SEARCH_OFF_OUTLINED = 0x119CF + SEARCH_OFF_ROUNDED = 0x119D0 + SEARCH_OFF_SHARP = 0x119D1 + SEARCH_OUTLINED = 0x119D2 + SEARCH_ROUNDED = 0x119D3 + SEARCH_SHARP = 0x119D4 + SECURITY = 0x119D5 + SECURITY_OUTLINED = 0x119D6 + SECURITY_ROUNDED = 0x119D7 + SECURITY_SHARP = 0x119D8 + SECURITY_UPDATE = 0x119D9 + SECURITY_UPDATE_GOOD = 0x119DA + SECURITY_UPDATE_GOOD_OUTLINED = 0x119DB + SECURITY_UPDATE_GOOD_ROUNDED = 0x119DC + SECURITY_UPDATE_GOOD_SHARP = 0x119DD + SECURITY_UPDATE_OUTLINED = 0x119DE + SECURITY_UPDATE_ROUNDED = 0x119DF + SECURITY_UPDATE_SHARP = 0x119E0 + SECURITY_UPDATE_WARNING = 0x119E1 + SECURITY_UPDATE_WARNING_OUTLINED = 0x119E2 + SECURITY_UPDATE_WARNING_ROUNDED = 0x119E3 + SECURITY_UPDATE_WARNING_SHARP = 0x119E4 + SEGMENT = 0x119E5 + SEGMENT_OUTLINED = 0x119E6 + SEGMENT_ROUNDED = 0x119E7 + SEGMENT_SHARP = 0x119E8 + SELECT_ALL = 0x119E9 + SELECT_ALL_OUTLINED = 0x119EA + SELECT_ALL_ROUNDED = 0x119EB + SELECT_ALL_SHARP = 0x119EC + SELF_IMPROVEMENT = 0x119ED + SELF_IMPROVEMENT_OUTLINED = 0x119EE + SELF_IMPROVEMENT_ROUNDED = 0x119EF + SELF_IMPROVEMENT_SHARP = 0x119F0 + SELL = 0x119F1 + SELL_OUTLINED = 0x119F2 + SELL_ROUNDED = 0x119F3 + SELL_SHARP = 0x119F4 + SEND = 0x119F5 + SEND_AND_ARCHIVE = 0x119F6 + SEND_AND_ARCHIVE_OUTLINED = 0x119F7 + SEND_AND_ARCHIVE_ROUNDED = 0x119F8 + SEND_AND_ARCHIVE_SHARP = 0x119F9 + SEND_OUTLINED = 0x119FA + SEND_ROUNDED = 0x119FB + SEND_SHARP = 0x119FC + SEND_TIME_EXTENSION = 0x119FD + SEND_TIME_EXTENSION_OUTLINED = 0x119FE + SEND_TIME_EXTENSION_ROUNDED = 0x119FF + SEND_TIME_EXTENSION_SHARP = 0x11A00 + SEND_TO_MOBILE = 0x11A01 + SEND_TO_MOBILE_OUTLINED = 0x11A02 + SEND_TO_MOBILE_ROUNDED = 0x11A03 + SEND_TO_MOBILE_SHARP = 0x11A04 + SENSOR_DOOR = 0x11A05 + SENSOR_DOOR_OUTLINED = 0x11A06 + SENSOR_DOOR_ROUNDED = 0x11A07 + SENSOR_DOOR_SHARP = 0x11A08 + SENSOR_OCCUPIED = 0x11A09 + SENSOR_OCCUPIED_OUTLINED = 0x11A0A + SENSOR_OCCUPIED_ROUNDED = 0x11A0B + SENSOR_OCCUPIED_SHARP = 0x11A0C + SENSOR_WINDOW = 0x11A0D + SENSOR_WINDOW_OUTLINED = 0x11A0E + SENSOR_WINDOW_ROUNDED = 0x11A0F + SENSOR_WINDOW_SHARP = 0x11A10 + SENSORS = 0x11A11 + SENSORS_OFF = 0x11A12 + SENSORS_OFF_OUTLINED = 0x11A13 + SENSORS_OFF_ROUNDED = 0x11A14 + SENSORS_OFF_SHARP = 0x11A15 + SENSORS_OUTLINED = 0x11A16 + SENSORS_ROUNDED = 0x11A17 + SENSORS_SHARP = 0x11A18 + SENTIMENT_DISSATISFIED = 0x11A19 + SENTIMENT_DISSATISFIED_OUTLINED = 0x11A1A + SENTIMENT_DISSATISFIED_ROUNDED = 0x11A1B + SENTIMENT_DISSATISFIED_SHARP = 0x11A1C + SENTIMENT_NEUTRAL = 0x11A1D + SENTIMENT_NEUTRAL_OUTLINED = 0x11A1E + SENTIMENT_NEUTRAL_ROUNDED = 0x11A1F + SENTIMENT_NEUTRAL_SHARP = 0x11A20 + SENTIMENT_SATISFIED = 0x11A21 + SENTIMENT_SATISFIED_ALT = 0x11A22 + SENTIMENT_SATISFIED_ALT_OUTLINED = 0x11A23 + SENTIMENT_SATISFIED_ALT_ROUNDED = 0x11A24 + SENTIMENT_SATISFIED_ALT_SHARP = 0x11A25 + SENTIMENT_SATISFIED_OUTLINED = 0x11A26 + SENTIMENT_SATISFIED_ROUNDED = 0x11A27 + SENTIMENT_SATISFIED_SHARP = 0x11A28 + SENTIMENT_VERY_DISSATISFIED = 0x11A29 + SENTIMENT_VERY_DISSATISFIED_OUTLINED = 0x11A2A + SENTIMENT_VERY_DISSATISFIED_ROUNDED = 0x11A2B + SENTIMENT_VERY_DISSATISFIED_SHARP = 0x11A2C + SENTIMENT_VERY_SATISFIED = 0x11A2D + SENTIMENT_VERY_SATISFIED_OUTLINED = 0x11A2E + SENTIMENT_VERY_SATISFIED_ROUNDED = 0x11A2F + SENTIMENT_VERY_SATISFIED_SHARP = 0x11A30 + SET_MEAL = 0x11A31 + SET_MEAL_OUTLINED = 0x11A32 + SET_MEAL_ROUNDED = 0x11A33 + SET_MEAL_SHARP = 0x11A34 + SETTINGS = 0x11A35 + SETTINGS_ACCESSIBILITY = 0x11A36 + SETTINGS_ACCESSIBILITY_OUTLINED = 0x11A37 + SETTINGS_ACCESSIBILITY_ROUNDED = 0x11A38 + SETTINGS_ACCESSIBILITY_SHARP = 0x11A39 + SETTINGS_APPLICATIONS = 0x11A3A + SETTINGS_APPLICATIONS_OUTLINED = 0x11A3B + SETTINGS_APPLICATIONS_ROUNDED = 0x11A3C + SETTINGS_APPLICATIONS_SHARP = 0x11A3D + SETTINGS_BACKUP_RESTORE = 0x11A3E + SETTINGS_BACKUP_RESTORE_OUTLINED = 0x11A3F + SETTINGS_BACKUP_RESTORE_ROUNDED = 0x11A40 + SETTINGS_BACKUP_RESTORE_SHARP = 0x11A41 + SETTINGS_BLUETOOTH = 0x11A42 + SETTINGS_BLUETOOTH_OUTLINED = 0x11A43 + SETTINGS_BLUETOOTH_ROUNDED = 0x11A44 + SETTINGS_BLUETOOTH_SHARP = 0x11A45 + SETTINGS_BRIGHTNESS = 0x11A46 + SETTINGS_BRIGHTNESS_OUTLINED = 0x11A47 + SETTINGS_BRIGHTNESS_ROUNDED = 0x11A48 + SETTINGS_BRIGHTNESS_SHARP = 0x11A49 + SETTINGS_CELL = 0x11A4A + SETTINGS_CELL_OUTLINED = 0x11A4B + SETTINGS_CELL_ROUNDED = 0x11A4C + SETTINGS_CELL_SHARP = 0x11A4D + SETTINGS_DISPLAY = 0x11A4E + SETTINGS_DISPLAY_OUTLINED = 0x11A4F + SETTINGS_DISPLAY_ROUNDED = 0x11A50 + SETTINGS_DISPLAY_SHARP = 0x11A51 + SETTINGS_ETHERNET = 0x11A52 + SETTINGS_ETHERNET_OUTLINED = 0x11A53 + SETTINGS_ETHERNET_ROUNDED = 0x11A54 + SETTINGS_ETHERNET_SHARP = 0x11A55 + SETTINGS_INPUT_ANTENNA = 0x11A56 + SETTINGS_INPUT_ANTENNA_OUTLINED = 0x11A57 + SETTINGS_INPUT_ANTENNA_ROUNDED = 0x11A58 + SETTINGS_INPUT_ANTENNA_SHARP = 0x11A59 + SETTINGS_INPUT_COMPONENT = 0x11A5A + SETTINGS_INPUT_COMPONENT_OUTLINED = 0x11A5B + SETTINGS_INPUT_COMPONENT_ROUNDED = 0x11A5C + SETTINGS_INPUT_COMPONENT_SHARP = 0x11A5D + SETTINGS_INPUT_COMPOSITE = 0x11A5E + SETTINGS_INPUT_COMPOSITE_OUTLINED = 0x11A5F + SETTINGS_INPUT_COMPOSITE_ROUNDED = 0x11A60 + SETTINGS_INPUT_COMPOSITE_SHARP = 0x11A61 + SETTINGS_INPUT_HDMI = 0x11A62 + SETTINGS_INPUT_HDMI_OUTLINED = 0x11A63 + SETTINGS_INPUT_HDMI_ROUNDED = 0x11A64 + SETTINGS_INPUT_HDMI_SHARP = 0x11A65 + SETTINGS_INPUT_SVIDEO = 0x11A66 + SETTINGS_INPUT_SVIDEO_OUTLINED = 0x11A67 + SETTINGS_INPUT_SVIDEO_ROUNDED = 0x11A68 + SETTINGS_INPUT_SVIDEO_SHARP = 0x11A69 + SETTINGS_OUTLINED = 0x11A6A + SETTINGS_OVERSCAN = 0x11A6B + SETTINGS_OVERSCAN_OUTLINED = 0x11A6C + SETTINGS_OVERSCAN_ROUNDED = 0x11A6D + SETTINGS_OVERSCAN_SHARP = 0x11A6E + SETTINGS_PHONE = 0x11A6F + SETTINGS_PHONE_OUTLINED = 0x11A70 + SETTINGS_PHONE_ROUNDED = 0x11A71 + SETTINGS_PHONE_SHARP = 0x11A72 + SETTINGS_POWER = 0x11A73 + SETTINGS_POWER_OUTLINED = 0x11A74 + SETTINGS_POWER_ROUNDED = 0x11A75 + SETTINGS_POWER_SHARP = 0x11A76 + SETTINGS_REMOTE = 0x11A77 + SETTINGS_REMOTE_OUTLINED = 0x11A78 + SETTINGS_REMOTE_ROUNDED = 0x11A79 + SETTINGS_REMOTE_SHARP = 0x11A7A + SETTINGS_ROUNDED = 0x11A7B + SETTINGS_SHARP = 0x11A7C + SETTINGS_SUGGEST = 0x11A7D + SETTINGS_SUGGEST_OUTLINED = 0x11A7E + SETTINGS_SUGGEST_ROUNDED = 0x11A7F + SETTINGS_SUGGEST_SHARP = 0x11A80 + SETTINGS_SYSTEM_DAYDREAM = 0x11A81 + SETTINGS_SYSTEM_DAYDREAM_OUTLINED = 0x11A82 + SETTINGS_SYSTEM_DAYDREAM_ROUNDED = 0x11A83 + SETTINGS_SYSTEM_DAYDREAM_SHARP = 0x11A84 + SETTINGS_VOICE = 0x11A85 + SETTINGS_VOICE_OUTLINED = 0x11A86 + SETTINGS_VOICE_ROUNDED = 0x11A87 + SETTINGS_VOICE_SHARP = 0x11A88 + SEVEN_K = 0x11A89 + SEVEN_K_OUTLINED = 0x11A8A + SEVEN_K_PLUS = 0x11A8B + SEVEN_K_PLUS_OUTLINED = 0x11A8C + SEVEN_K_PLUS_ROUNDED = 0x11A8D + SEVEN_K_PLUS_SHARP = 0x11A8E + SEVEN_K_ROUNDED = 0x11A8F + SEVEN_K_SHARP = 0x11A90 + SEVEN_MP = 0x11A91 + SEVEN_MP_OUTLINED = 0x11A92 + SEVEN_MP_ROUNDED = 0x11A93 + SEVEN_MP_SHARP = 0x11A94 + SEVENTEEN_MP = 0x11A95 + SEVENTEEN_MP_OUTLINED = 0x11A96 + SEVENTEEN_MP_ROUNDED = 0x11A97 + SEVENTEEN_MP_SHARP = 0x11A98 + SEVERE_COLD = 0x11A99 + SEVERE_COLD_OUTLINED = 0x11A9A + SEVERE_COLD_ROUNDED = 0x11A9B + SEVERE_COLD_SHARP = 0x11A9C + SHAPE_LINE = 0x11A9D + SHAPE_LINE_OUTLINED = 0x11A9E + SHAPE_LINE_ROUNDED = 0x11A9F + SHAPE_LINE_SHARP = 0x11AA0 + SHARE = 0x11AA1 + SHARE_ARRIVAL_TIME = 0x11AA2 + SHARE_ARRIVAL_TIME_OUTLINED = 0x11AA3 + SHARE_ARRIVAL_TIME_ROUNDED = 0x11AA4 + SHARE_ARRIVAL_TIME_SHARP = 0x11AA5 + SHARE_LOCATION = 0x11AA6 + SHARE_LOCATION_OUTLINED = 0x11AA7 + SHARE_LOCATION_ROUNDED = 0x11AA8 + SHARE_LOCATION_SHARP = 0x11AA9 + SHARE_OUTLINED = 0x11AAA + SHARE_ROUNDED = 0x11AAB + SHARE_SHARP = 0x11AAC + SHELVES = 0x11AAD + SHIELD = 0x11AAE + SHIELD_MOON = 0x11AAF + SHIELD_MOON_OUTLINED = 0x11AB0 + SHIELD_MOON_ROUNDED = 0x11AB1 + SHIELD_MOON_SHARP = 0x11AB2 + SHIELD_OUTLINED = 0x11AB3 + SHIELD_ROUNDED = 0x11AB4 + SHIELD_SHARP = 0x11AB5 + SHOP = 0x11AB6 + SHOP_2 = 0x11AB7 + SHOP_2_OUTLINED = 0x11AB8 + SHOP_2_ROUNDED = 0x11AB9 + SHOP_2_SHARP = 0x11ABA + SHOP_OUTLINED = 0x11ABB + SHOP_ROUNDED = 0x11ABC + SHOP_SHARP = 0x11ABD + SHOP_TWO = 0x11ABE + SHOP_TWO_OUTLINED = 0x11ABF + SHOP_TWO_ROUNDED = 0x11AC0 + SHOP_TWO_SHARP = 0x11AC1 + SHOPIFY = 0x11AC2 + SHOPIFY_OUTLINED = 0x11AC3 + SHOPIFY_ROUNDED = 0x11AC4 + SHOPIFY_SHARP = 0x11AC5 + SHOPPING_BAG = 0x11AC6 + SHOPPING_BAG_OUTLINED = 0x11AC7 + SHOPPING_BAG_ROUNDED = 0x11AC8 + SHOPPING_BAG_SHARP = 0x11AC9 + SHOPPING_BASKET = 0x11ACA + SHOPPING_BASKET_OUTLINED = 0x11ACB + SHOPPING_BASKET_ROUNDED = 0x11ACC + SHOPPING_BASKET_SHARP = 0x11ACD + SHOPPING_CART = 0x11ACE + SHOPPING_CART_CHECKOUT = 0x11ACF + SHOPPING_CART_CHECKOUT_OUTLINED = 0x11AD0 + SHOPPING_CART_CHECKOUT_ROUNDED = 0x11AD1 + SHOPPING_CART_CHECKOUT_SHARP = 0x11AD2 + SHOPPING_CART_OUTLINED = 0x11AD3 + SHOPPING_CART_ROUNDED = 0x11AD4 + SHOPPING_CART_SHARP = 0x11AD5 + SHORT_TEXT = 0x11AD6 + SHORT_TEXT_OUTLINED = 0x11AD7 + SHORT_TEXT_ROUNDED = 0x11AD8 + SHORT_TEXT_SHARP = 0x11AD9 + SHORTCUT = 0x11ADA + SHORTCUT_OUTLINED = 0x11ADB + SHORTCUT_ROUNDED = 0x11ADC + SHORTCUT_SHARP = 0x11ADD + SHOW_CHART = 0x11ADE + SHOW_CHART_OUTLINED = 0x11ADF + SHOW_CHART_ROUNDED = 0x11AE0 + SHOW_CHART_SHARP = 0x11AE1 + SHOWER = 0x11AE2 + SHOWER_OUTLINED = 0x11AE3 + SHOWER_ROUNDED = 0x11AE4 + SHOWER_SHARP = 0x11AE5 + SHUFFLE = 0x11AE6 + SHUFFLE_ON = 0x11AE7 + SHUFFLE_ON_OUTLINED = 0x11AE8 + SHUFFLE_ON_ROUNDED = 0x11AE9 + SHUFFLE_ON_SHARP = 0x11AEA + SHUFFLE_OUTLINED = 0x11AEB + SHUFFLE_ROUNDED = 0x11AEC + SHUFFLE_SHARP = 0x11AED + SHUTTER_SPEED = 0x11AEE + SHUTTER_SPEED_OUTLINED = 0x11AEF + SHUTTER_SPEED_ROUNDED = 0x11AF0 + SHUTTER_SPEED_SHARP = 0x11AF1 + SICK = 0x11AF2 + SICK_OUTLINED = 0x11AF3 + SICK_ROUNDED = 0x11AF4 + SICK_SHARP = 0x11AF5 + SIGN_LANGUAGE = 0x11AF6 + SIGN_LANGUAGE_OUTLINED = 0x11AF7 + SIGN_LANGUAGE_ROUNDED = 0x11AF8 + SIGN_LANGUAGE_SHARP = 0x11AF9 + SIGNAL_CELLULAR_0_BAR = 0x11AFA + SIGNAL_CELLULAR_0_BAR_OUTLINED = 0x11AFB + SIGNAL_CELLULAR_0_BAR_ROUNDED = 0x11AFC + SIGNAL_CELLULAR_0_BAR_SHARP = 0x11AFD + SIGNAL_CELLULAR_4_BAR = 0x11AFE + SIGNAL_CELLULAR_4_BAR_OUTLINED = 0x11AFF + SIGNAL_CELLULAR_4_BAR_ROUNDED = 0x11B00 + SIGNAL_CELLULAR_4_BAR_SHARP = 0x11B01 + SIGNAL_CELLULAR_ALT = 0x11B02 + SIGNAL_CELLULAR_ALT_1_BAR = 0x11B03 + SIGNAL_CELLULAR_ALT_1_BAR_OUTLINED = 0x11B04 + SIGNAL_CELLULAR_ALT_1_BAR_ROUNDED = 0x11B05 + SIGNAL_CELLULAR_ALT_1_BAR_SHARP = 0x11B06 + SIGNAL_CELLULAR_ALT_2_BAR = 0x11B07 + SIGNAL_CELLULAR_ALT_2_BAR_OUTLINED = 0x11B08 + SIGNAL_CELLULAR_ALT_2_BAR_ROUNDED = 0x11B09 + SIGNAL_CELLULAR_ALT_2_BAR_SHARP = 0x11B0A + SIGNAL_CELLULAR_ALT_OUTLINED = 0x11B0B + SIGNAL_CELLULAR_ALT_ROUNDED = 0x11B0C + SIGNAL_CELLULAR_ALT_SHARP = 0x11B0D + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR = 0x11B0E + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_OUTLINED = 0x11B0F + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_ROUNDED = 0x11B10 + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_SHARP = 0x11B11 + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR = 0x11B12 + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR_OUTLINED = 0x11B13 + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR_ROUNDED = 0x11B14 + SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR_SHARP = 0x11B15 + SIGNAL_CELLULAR_NO_SIM = 0x11B16 + SIGNAL_CELLULAR_NO_SIM_OUTLINED = 0x11B17 + SIGNAL_CELLULAR_NO_SIM_ROUNDED = 0x11B18 + SIGNAL_CELLULAR_NO_SIM_SHARP = 0x11B19 + SIGNAL_CELLULAR_NODATA = 0x11B1A + SIGNAL_CELLULAR_NODATA_OUTLINED = 0x11B1B + SIGNAL_CELLULAR_NODATA_ROUNDED = 0x11B1C + SIGNAL_CELLULAR_NODATA_SHARP = 0x11B1D + SIGNAL_CELLULAR_NULL = 0x11B1E + SIGNAL_CELLULAR_NULL_OUTLINED = 0x11B1F + SIGNAL_CELLULAR_NULL_ROUNDED = 0x11B20 + SIGNAL_CELLULAR_NULL_SHARP = 0x11B21 + SIGNAL_CELLULAR_OFF = 0x11B22 + SIGNAL_CELLULAR_OFF_OUTLINED = 0x11B23 + SIGNAL_CELLULAR_OFF_ROUNDED = 0x11B24 + SIGNAL_CELLULAR_OFF_SHARP = 0x11B25 + SIGNAL_WIFI_0_BAR = 0x11B26 + SIGNAL_WIFI_0_BAR_OUTLINED = 0x11B27 + SIGNAL_WIFI_0_BAR_ROUNDED = 0x11B28 + SIGNAL_WIFI_0_BAR_SHARP = 0x11B29 + SIGNAL_WIFI_4_BAR = 0x11B2A + SIGNAL_WIFI_4_BAR_LOCK = 0x11B2B + SIGNAL_WIFI_4_BAR_LOCK_OUTLINED = 0x11B2C + SIGNAL_WIFI_4_BAR_LOCK_ROUNDED = 0x11B2D + SIGNAL_WIFI_4_BAR_LOCK_SHARP = 0x11B2E + SIGNAL_WIFI_4_BAR_OUTLINED = 0x11B2F + SIGNAL_WIFI_4_BAR_ROUNDED = 0x11B30 + SIGNAL_WIFI_4_BAR_SHARP = 0x11B31 + SIGNAL_WIFI_BAD = 0x11B32 + SIGNAL_WIFI_BAD_OUTLINED = 0x11B33 + SIGNAL_WIFI_BAD_ROUNDED = 0x11B34 + SIGNAL_WIFI_BAD_SHARP = 0x11B35 + SIGNAL_WIFI_CONNECTED_NO_INTERNET_4 = 0x11B36 + SIGNAL_WIFI_CONNECTED_NO_INTERNET_4_OUTLINED = 0x11B37 + SIGNAL_WIFI_CONNECTED_NO_INTERNET_4_ROUNDED = 0x11B38 + SIGNAL_WIFI_CONNECTED_NO_INTERNET_4_SHARP = 0x11B39 + SIGNAL_WIFI_OFF = 0x11B3A + SIGNAL_WIFI_OFF_OUTLINED = 0x11B3B + SIGNAL_WIFI_OFF_ROUNDED = 0x11B3C + SIGNAL_WIFI_OFF_SHARP = 0x11B3D + SIGNAL_WIFI_STATUSBAR_4_BAR = 0x11B3E + SIGNAL_WIFI_STATUSBAR_4_BAR_OUTLINED = 0x11B3F + SIGNAL_WIFI_STATUSBAR_4_BAR_ROUNDED = 0x11B40 + SIGNAL_WIFI_STATUSBAR_4_BAR_SHARP = 0x11B41 + SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4 = 0x11B42 + SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4_OUTLINED = 0x11B43 + SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4_ROUNDED = 0x11B44 + SIGNAL_WIFI_STATUSBAR_CONNECTED_NO_INTERNET_4_SHARP = 0x11B45 + SIGNAL_WIFI_STATUSBAR_NULL = 0x11B46 + SIGNAL_WIFI_STATUSBAR_NULL_OUTLINED = 0x11B47 + SIGNAL_WIFI_STATUSBAR_NULL_ROUNDED = 0x11B48 + SIGNAL_WIFI_STATUSBAR_NULL_SHARP = 0x11B49 + SIGNPOST = 0x11B4A + SIGNPOST_OUTLINED = 0x11B4B + SIGNPOST_ROUNDED = 0x11B4C + SIGNPOST_SHARP = 0x11B4D + SIM_CARD = 0x11B4E + SIM_CARD_ALERT = 0x11B4F + SIM_CARD_ALERT_OUTLINED = 0x11B50 + SIM_CARD_ALERT_ROUNDED = 0x11B51 + SIM_CARD_ALERT_SHARP = 0x11B52 + SIM_CARD_DOWNLOAD = 0x11B53 + SIM_CARD_DOWNLOAD_OUTLINED = 0x11B54 + SIM_CARD_DOWNLOAD_ROUNDED = 0x11B55 + SIM_CARD_DOWNLOAD_SHARP = 0x11B56 + SIM_CARD_OUTLINED = 0x11B57 + SIM_CARD_ROUNDED = 0x11B58 + SIM_CARD_SHARP = 0x11B59 + SINGLE_BED = 0x11B5A + SINGLE_BED_OUTLINED = 0x11B5B + SINGLE_BED_ROUNDED = 0x11B5C + SINGLE_BED_SHARP = 0x11B5D + SIP = 0x11B5E + SIP_OUTLINED = 0x11B5F + SIP_ROUNDED = 0x11B60 + SIP_SHARP = 0x11B61 + SIX_FT_APART = 0x11B62 + SIX_FT_APART_OUTLINED = 0x11B63 + SIX_FT_APART_ROUNDED = 0x11B64 + SIX_FT_APART_SHARP = 0x11B65 + SIX_K = 0x11B66 + SIX_K_OUTLINED = 0x11B67 + SIX_K_PLUS = 0x11B68 + SIX_K_PLUS_OUTLINED = 0x11B69 + SIX_K_PLUS_ROUNDED = 0x11B6A + SIX_K_PLUS_SHARP = 0x11B6B + SIX_K_ROUNDED = 0x11B6C + SIX_K_SHARP = 0x11B6D + SIX_MP = 0x11B6E + SIX_MP_OUTLINED = 0x11B6F + SIX_MP_ROUNDED = 0x11B70 + SIX_MP_SHARP = 0x11B71 + SIXTEEN_MP = 0x11B72 + SIXTEEN_MP_OUTLINED = 0x11B73 + SIXTEEN_MP_ROUNDED = 0x11B74 + SIXTEEN_MP_SHARP = 0x11B75 + SIXTY_FPS = 0x11B76 + SIXTY_FPS_OUTLINED = 0x11B77 + SIXTY_FPS_ROUNDED = 0x11B78 + SIXTY_FPS_SELECT = 0x11B79 + SIXTY_FPS_SELECT_OUTLINED = 0x11B7A + SIXTY_FPS_SELECT_ROUNDED = 0x11B7B + SIXTY_FPS_SELECT_SHARP = 0x11B7C + SIXTY_FPS_SHARP = 0x11B7D + SKATEBOARDING = 0x11B7E + SKATEBOARDING_OUTLINED = 0x11B7F + SKATEBOARDING_ROUNDED = 0x11B80 + SKATEBOARDING_SHARP = 0x11B81 + SKIP_NEXT = 0x11B82 + SKIP_NEXT_OUTLINED = 0x11B83 + SKIP_NEXT_ROUNDED = 0x11B84 + SKIP_NEXT_SHARP = 0x11B85 + SKIP_PREVIOUS = 0x11B86 + SKIP_PREVIOUS_OUTLINED = 0x11B87 + SKIP_PREVIOUS_ROUNDED = 0x11B88 + SKIP_PREVIOUS_SHARP = 0x11B89 + SLEDDING = 0x11B8A + SLEDDING_OUTLINED = 0x11B8B + SLEDDING_ROUNDED = 0x11B8C + SLEDDING_SHARP = 0x11B8D + SLIDESHOW = 0x11B8E + SLIDESHOW_OUTLINED = 0x11B8F + SLIDESHOW_ROUNDED = 0x11B90 + SLIDESHOW_SHARP = 0x11B91 + SLOW_MOTION_VIDEO = 0x11B92 + SLOW_MOTION_VIDEO_OUTLINED = 0x11B93 + SLOW_MOTION_VIDEO_ROUNDED = 0x11B94 + SLOW_MOTION_VIDEO_SHARP = 0x11B95 + SMART_BUTTON = 0x11B96 + SMART_BUTTON_OUTLINED = 0x11B97 + SMART_BUTTON_ROUNDED = 0x11B98 + SMART_BUTTON_SHARP = 0x11B99 + SMART_DISPLAY = 0x11B9A + SMART_DISPLAY_OUTLINED = 0x11B9B + SMART_DISPLAY_ROUNDED = 0x11B9C + SMART_DISPLAY_SHARP = 0x11B9D + SMART_SCREEN = 0x11B9E + SMART_SCREEN_OUTLINED = 0x11B9F + SMART_SCREEN_ROUNDED = 0x11BA0 + SMART_SCREEN_SHARP = 0x11BA1 + SMART_TOY = 0x11BA2 + SMART_TOY_OUTLINED = 0x11BA3 + SMART_TOY_ROUNDED = 0x11BA4 + SMART_TOY_SHARP = 0x11BA5 + SMARTPHONE = 0x11BA6 + SMARTPHONE_OUTLINED = 0x11BA7 + SMARTPHONE_ROUNDED = 0x11BA8 + SMARTPHONE_SHARP = 0x11BA9 + SMOKE_FREE = 0x11BAA + SMOKE_FREE_OUTLINED = 0x11BAB + SMOKE_FREE_ROUNDED = 0x11BAC + SMOKE_FREE_SHARP = 0x11BAD + SMOKING_ROOMS = 0x11BAE + SMOKING_ROOMS_OUTLINED = 0x11BAF + SMOKING_ROOMS_ROUNDED = 0x11BB0 + SMOKING_ROOMS_SHARP = 0x11BB1 + SMS = 0x11BB2 + SMS_FAILED = 0x11BB3 + SMS_FAILED_OUTLINED = 0x11BB4 + SMS_FAILED_ROUNDED = 0x11BB5 + SMS_FAILED_SHARP = 0x11BB6 + SMS_OUTLINED = 0x11BB7 + SMS_ROUNDED = 0x11BB8 + SMS_SHARP = 0x11BB9 + SNAPCHAT = 0x11BBA + SNAPCHAT_OUTLINED = 0x11BBB + SNAPCHAT_ROUNDED = 0x11BBC + SNAPCHAT_SHARP = 0x11BBD + SNIPPET_FOLDER = 0x11BBE + SNIPPET_FOLDER_OUTLINED = 0x11BBF + SNIPPET_FOLDER_ROUNDED = 0x11BC0 + SNIPPET_FOLDER_SHARP = 0x11BC1 + SNOOZE = 0x11BC2 + SNOOZE_OUTLINED = 0x11BC3 + SNOOZE_ROUNDED = 0x11BC4 + SNOOZE_SHARP = 0x11BC5 + SNOWBOARDING = 0x11BC6 + SNOWBOARDING_OUTLINED = 0x11BC7 + SNOWBOARDING_ROUNDED = 0x11BC8 + SNOWBOARDING_SHARP = 0x11BC9 + SNOWING = 0x11BCA + SNOWMOBILE = 0x11BCB + SNOWMOBILE_OUTLINED = 0x11BCC + SNOWMOBILE_ROUNDED = 0x11BCD + SNOWMOBILE_SHARP = 0x11BCE + SNOWSHOEING = 0x11BCF + SNOWSHOEING_OUTLINED = 0x11BD0 + SNOWSHOEING_ROUNDED = 0x11BD1 + SNOWSHOEING_SHARP = 0x11BD2 + SOAP = 0x11BD3 + SOAP_OUTLINED = 0x11BD4 + SOAP_ROUNDED = 0x11BD5 + SOAP_SHARP = 0x11BD6 + SOCIAL_DISTANCE = 0x11BD7 + SOCIAL_DISTANCE_OUTLINED = 0x11BD8 + SOCIAL_DISTANCE_ROUNDED = 0x11BD9 + SOCIAL_DISTANCE_SHARP = 0x11BDA + SOLAR_POWER = 0x11BDB + SOLAR_POWER_OUTLINED = 0x11BDC + SOLAR_POWER_ROUNDED = 0x11BDD + SOLAR_POWER_SHARP = 0x11BDE + SORT = 0x11BDF + SORT_BY_ALPHA = 0x11BE0 + SORT_BY_ALPHA_OUTLINED = 0x11BE1 + SORT_BY_ALPHA_ROUNDED = 0x11BE2 + SORT_BY_ALPHA_SHARP = 0x11BE3 + SORT_OUTLINED = 0x11BE4 + SORT_ROUNDED = 0x11BE5 + SORT_SHARP = 0x11BE6 + SOS = 0x11BE7 + SOS_OUTLINED = 0x11BE8 + SOS_ROUNDED = 0x11BE9 + SOS_SHARP = 0x11BEA + SOUP_KITCHEN = 0x11BEB + SOUP_KITCHEN_OUTLINED = 0x11BEC + SOUP_KITCHEN_ROUNDED = 0x11BED + SOUP_KITCHEN_SHARP = 0x11BEE + SOURCE = 0x11BEF + SOURCE_OUTLINED = 0x11BF0 + SOURCE_ROUNDED = 0x11BF1 + SOURCE_SHARP = 0x11BF2 + SOUTH = 0x11BF3 + SOUTH_AMERICA = 0x11BF4 + SOUTH_AMERICA_OUTLINED = 0x11BF5 + SOUTH_AMERICA_ROUNDED = 0x11BF6 + SOUTH_AMERICA_SHARP = 0x11BF7 + SOUTH_EAST = 0x11BF8 + SOUTH_EAST_OUTLINED = 0x11BF9 + SOUTH_EAST_ROUNDED = 0x11BFA + SOUTH_EAST_SHARP = 0x11BFB + SOUTH_OUTLINED = 0x11BFC + SOUTH_ROUNDED = 0x11BFD + SOUTH_SHARP = 0x11BFE + SOUTH_WEST = 0x11BFF + SOUTH_WEST_OUTLINED = 0x11C00 + SOUTH_WEST_ROUNDED = 0x11C01 + SOUTH_WEST_SHARP = 0x11C02 + SPA = 0x11C03 + SPA_OUTLINED = 0x11C04 + SPA_ROUNDED = 0x11C05 + SPA_SHARP = 0x11C06 + SPACE_BAR = 0x11C07 + SPACE_BAR_OUTLINED = 0x11C08 + SPACE_BAR_ROUNDED = 0x11C09 + SPACE_BAR_SHARP = 0x11C0A + SPACE_DASHBOARD = 0x11C0B + SPACE_DASHBOARD_OUTLINED = 0x11C0C + SPACE_DASHBOARD_ROUNDED = 0x11C0D + SPACE_DASHBOARD_SHARP = 0x11C0E + SPATIAL_AUDIO = 0x11C0F + SPATIAL_AUDIO_OFF = 0x11C10 + SPATIAL_AUDIO_OFF_OUTLINED = 0x11C11 + SPATIAL_AUDIO_OFF_ROUNDED = 0x11C12 + SPATIAL_AUDIO_OFF_SHARP = 0x11C13 + SPATIAL_AUDIO_OUTLINED = 0x11C14 + SPATIAL_AUDIO_ROUNDED = 0x11C15 + SPATIAL_AUDIO_SHARP = 0x11C16 + SPATIAL_TRACKING = 0x11C17 + SPATIAL_TRACKING_OUTLINED = 0x11C18 + SPATIAL_TRACKING_ROUNDED = 0x11C19 + SPATIAL_TRACKING_SHARP = 0x11C1A + SPEAKER = 0x11C1B + SPEAKER_GROUP = 0x11C1C + SPEAKER_GROUP_OUTLINED = 0x11C1D + SPEAKER_GROUP_ROUNDED = 0x11C1E + SPEAKER_GROUP_SHARP = 0x11C1F + SPEAKER_NOTES = 0x11C20 + SPEAKER_NOTES_OFF = 0x11C21 + SPEAKER_NOTES_OFF_OUTLINED = 0x11C22 + SPEAKER_NOTES_OFF_ROUNDED = 0x11C23 + SPEAKER_NOTES_OFF_SHARP = 0x11C24 + SPEAKER_NOTES_OUTLINED = 0x11C25 + SPEAKER_NOTES_ROUNDED = 0x11C26 + SPEAKER_NOTES_SHARP = 0x11C27 + SPEAKER_OUTLINED = 0x11C28 + SPEAKER_PHONE = 0x11C29 + SPEAKER_PHONE_OUTLINED = 0x11C2A + SPEAKER_PHONE_ROUNDED = 0x11C2B + SPEAKER_PHONE_SHARP = 0x11C2C + SPEAKER_ROUNDED = 0x11C2D + SPEAKER_SHARP = 0x11C2E + SPEED = 0x11C2F + SPEED_OUTLINED = 0x11C30 + SPEED_ROUNDED = 0x11C31 + SPEED_SHARP = 0x11C32 + SPELLCHECK = 0x11C33 + SPELLCHECK_OUTLINED = 0x11C34 + SPELLCHECK_ROUNDED = 0x11C35 + SPELLCHECK_SHARP = 0x11C36 + SPLITSCREEN = 0x11C37 + SPLITSCREEN_OUTLINED = 0x11C38 + SPLITSCREEN_ROUNDED = 0x11C39 + SPLITSCREEN_SHARP = 0x11C3A + SPOKE = 0x11C3B + SPOKE_OUTLINED = 0x11C3C + SPOKE_ROUNDED = 0x11C3D + SPOKE_SHARP = 0x11C3E + SPORTS = 0x11C3F + SPORTS_BAR = 0x11C40 + SPORTS_BAR_OUTLINED = 0x11C41 + SPORTS_BAR_ROUNDED = 0x11C42 + SPORTS_BAR_SHARP = 0x11C43 + SPORTS_BASEBALL = 0x11C44 + SPORTS_BASEBALL_OUTLINED = 0x11C45 + SPORTS_BASEBALL_ROUNDED = 0x11C46 + SPORTS_BASEBALL_SHARP = 0x11C47 + SPORTS_BASKETBALL = 0x11C48 + SPORTS_BASKETBALL_OUTLINED = 0x11C49 + SPORTS_BASKETBALL_ROUNDED = 0x11C4A + SPORTS_BASKETBALL_SHARP = 0x11C4B + SPORTS_CRICKET = 0x11C4C + SPORTS_CRICKET_OUTLINED = 0x11C4D + SPORTS_CRICKET_ROUNDED = 0x11C4E + SPORTS_CRICKET_SHARP = 0x11C4F + SPORTS_ESPORTS = 0x11C50 + SPORTS_ESPORTS_OUTLINED = 0x11C51 + SPORTS_ESPORTS_ROUNDED = 0x11C52 + SPORTS_ESPORTS_SHARP = 0x11C53 + SPORTS_FOOTBALL = 0x11C54 + SPORTS_FOOTBALL_OUTLINED = 0x11C55 + SPORTS_FOOTBALL_ROUNDED = 0x11C56 + SPORTS_FOOTBALL_SHARP = 0x11C57 + SPORTS_GOLF = 0x11C58 + SPORTS_GOLF_OUTLINED = 0x11C59 + SPORTS_GOLF_ROUNDED = 0x11C5A + SPORTS_GOLF_SHARP = 0x11C5B + SPORTS_GYMNASTICS = 0x11C5C + SPORTS_GYMNASTICS_OUTLINED = 0x11C5D + SPORTS_GYMNASTICS_ROUNDED = 0x11C5E + SPORTS_GYMNASTICS_SHARP = 0x11C5F + SPORTS_HANDBALL = 0x11C60 + SPORTS_HANDBALL_OUTLINED = 0x11C61 + SPORTS_HANDBALL_ROUNDED = 0x11C62 + SPORTS_HANDBALL_SHARP = 0x11C63 + SPORTS_HOCKEY = 0x11C64 + SPORTS_HOCKEY_OUTLINED = 0x11C65 + SPORTS_HOCKEY_ROUNDED = 0x11C66 + SPORTS_HOCKEY_SHARP = 0x11C67 + SPORTS_KABADDI = 0x11C68 + SPORTS_KABADDI_OUTLINED = 0x11C69 + SPORTS_KABADDI_ROUNDED = 0x11C6A + SPORTS_KABADDI_SHARP = 0x11C6B + SPORTS_MARTIAL_ARTS = 0x11C6C + SPORTS_MARTIAL_ARTS_OUTLINED = 0x11C6D + SPORTS_MARTIAL_ARTS_ROUNDED = 0x11C6E + SPORTS_MARTIAL_ARTS_SHARP = 0x11C6F + SPORTS_MMA = 0x11C70 + SPORTS_MMA_OUTLINED = 0x11C71 + SPORTS_MMA_ROUNDED = 0x11C72 + SPORTS_MMA_SHARP = 0x11C73 + SPORTS_MOTORSPORTS = 0x11C74 + SPORTS_MOTORSPORTS_OUTLINED = 0x11C75 + SPORTS_MOTORSPORTS_ROUNDED = 0x11C76 + SPORTS_MOTORSPORTS_SHARP = 0x11C77 + SPORTS_OUTLINED = 0x11C78 + SPORTS_ROUNDED = 0x11C79 + SPORTS_RUGBY = 0x11C7A + SPORTS_RUGBY_OUTLINED = 0x11C7B + SPORTS_RUGBY_ROUNDED = 0x11C7C + SPORTS_RUGBY_SHARP = 0x11C7D + SPORTS_SCORE = 0x11C7E + SPORTS_SCORE_OUTLINED = 0x11C7F + SPORTS_SCORE_ROUNDED = 0x11C80 + SPORTS_SCORE_SHARP = 0x11C81 + SPORTS_SHARP = 0x11C82 + SPORTS_SOCCER = 0x11C83 + SPORTS_SOCCER_OUTLINED = 0x11C84 + SPORTS_SOCCER_ROUNDED = 0x11C85 + SPORTS_SOCCER_SHARP = 0x11C86 + SPORTS_TENNIS = 0x11C87 + SPORTS_TENNIS_OUTLINED = 0x11C88 + SPORTS_TENNIS_ROUNDED = 0x11C89 + SPORTS_TENNIS_SHARP = 0x11C8A + SPORTS_VOLLEYBALL = 0x11C8B + SPORTS_VOLLEYBALL_OUTLINED = 0x11C8C + SPORTS_VOLLEYBALL_ROUNDED = 0x11C8D + SPORTS_VOLLEYBALL_SHARP = 0x11C8E + SQUARE = 0x11C8F + SQUARE_FOOT = 0x11C90 + SQUARE_FOOT_OUTLINED = 0x11C91 + SQUARE_FOOT_ROUNDED = 0x11C92 + SQUARE_FOOT_SHARP = 0x11C93 + SQUARE_OUTLINED = 0x11C94 + SQUARE_ROUNDED = 0x11C95 + SQUARE_SHARP = 0x11C96 + SSID_CHART = 0x11C97 + SSID_CHART_OUTLINED = 0x11C98 + SSID_CHART_ROUNDED = 0x11C99 + SSID_CHART_SHARP = 0x11C9A + STACKED_BAR_CHART = 0x11C9B + STACKED_BAR_CHART_OUTLINED = 0x11C9C + STACKED_BAR_CHART_ROUNDED = 0x11C9D + STACKED_BAR_CHART_SHARP = 0x11C9E + STACKED_LINE_CHART = 0x11C9F + STACKED_LINE_CHART_OUTLINED = 0x11CA0 + STACKED_LINE_CHART_ROUNDED = 0x11CA1 + STACKED_LINE_CHART_SHARP = 0x11CA2 + STADIUM = 0x11CA3 + STADIUM_OUTLINED = 0x11CA4 + STADIUM_ROUNDED = 0x11CA5 + STADIUM_SHARP = 0x11CA6 + STAIRS = 0x11CA7 + STAIRS_OUTLINED = 0x11CA8 + STAIRS_ROUNDED = 0x11CA9 + STAIRS_SHARP = 0x11CAA + STAR = 0x11CAB + STAR_BORDER = 0x11CAC + STAR_BORDER_OUTLINED = 0x11CAD + STAR_BORDER_PURPLE500 = 0x11CAE + STAR_BORDER_PURPLE500_OUTLINED = 0x11CAF + STAR_BORDER_PURPLE500_ROUNDED = 0x11CB0 + STAR_BORDER_PURPLE500_SHARP = 0x11CB1 + STAR_BORDER_ROUNDED = 0x11CB2 + STAR_BORDER_SHARP = 0x11CB3 + STAR_HALF = 0x11CB4 + STAR_HALF_OUTLINED = 0x11CB5 + STAR_HALF_ROUNDED = 0x11CB6 + STAR_HALF_SHARP = 0x11CB7 + STAR_OUTLINE = 0x11CB8 + STAR_OUTLINE_OUTLINED = 0x11CB9 + STAR_OUTLINE_ROUNDED = 0x11CBA + STAR_OUTLINE_SHARP = 0x11CBB + STAR_OUTLINED = 0x11CBC + STAR_PURPLE500 = 0x11CBD + STAR_PURPLE500_OUTLINED = 0x11CBE + STAR_PURPLE500_ROUNDED = 0x11CBF + STAR_PURPLE500_SHARP = 0x11CC0 + STAR_RATE = 0x11CC1 + STAR_RATE_OUTLINED = 0x11CC2 + STAR_RATE_ROUNDED = 0x11CC3 + STAR_RATE_SHARP = 0x11CC4 + STAR_ROUNDED = 0x11CC5 + STAR_SHARP = 0x11CC6 + STARS = 0x11CC7 + STARS_OUTLINED = 0x11CC8 + STARS_ROUNDED = 0x11CC9 + STARS_SHARP = 0x11CCA + START = 0x11CCB + START_OUTLINED = 0x11CCC + START_ROUNDED = 0x11CCD + START_SHARP = 0x11CCE + STAY_CURRENT_LANDSCAPE = 0x11CCF + STAY_CURRENT_LANDSCAPE_OUTLINED = 0x11CD0 + STAY_CURRENT_LANDSCAPE_ROUNDED = 0x11CD1 + STAY_CURRENT_LANDSCAPE_SHARP = 0x11CD2 + STAY_CURRENT_PORTRAIT = 0x11CD3 + STAY_CURRENT_PORTRAIT_OUTLINED = 0x11CD4 + STAY_CURRENT_PORTRAIT_ROUNDED = 0x11CD5 + STAY_CURRENT_PORTRAIT_SHARP = 0x11CD6 + STAY_PRIMARY_LANDSCAPE = 0x11CD7 + STAY_PRIMARY_LANDSCAPE_OUTLINED = 0x11CD8 + STAY_PRIMARY_LANDSCAPE_ROUNDED = 0x11CD9 + STAY_PRIMARY_LANDSCAPE_SHARP = 0x11CDA + STAY_PRIMARY_PORTRAIT = 0x11CDB + STAY_PRIMARY_PORTRAIT_OUTLINED = 0x11CDC + STAY_PRIMARY_PORTRAIT_ROUNDED = 0x11CDD + STAY_PRIMARY_PORTRAIT_SHARP = 0x11CDE + STICKY_NOTE_2 = 0x11CDF + STICKY_NOTE_2_OUTLINED = 0x11CE0 + STICKY_NOTE_2_ROUNDED = 0x11CE1 + STICKY_NOTE_2_SHARP = 0x11CE2 + STOP = 0x11CE3 + STOP_CIRCLE = 0x11CE4 + STOP_CIRCLE_OUTLINED = 0x11CE5 + STOP_CIRCLE_ROUNDED = 0x11CE6 + STOP_CIRCLE_SHARP = 0x11CE7 + STOP_OUTLINED = 0x11CE8 + STOP_ROUNDED = 0x11CE9 + STOP_SCREEN_SHARE = 0x11CEA + STOP_SCREEN_SHARE_OUTLINED = 0x11CEB + STOP_SCREEN_SHARE_ROUNDED = 0x11CEC + STOP_SCREEN_SHARE_SHARP = 0x11CED + STOP_SHARP = 0x11CEE + STORAGE = 0x11CEF + STORAGE_OUTLINED = 0x11CF0 + STORAGE_ROUNDED = 0x11CF1 + STORAGE_SHARP = 0x11CF2 + STORE = 0x11CF3 + STORE_MALL_DIRECTORY = 0x11CF4 + STORE_MALL_DIRECTORY_OUTLINED = 0x11CF5 + STORE_MALL_DIRECTORY_ROUNDED = 0x11CF6 + STORE_MALL_DIRECTORY_SHARP = 0x11CF7 + STORE_OUTLINED = 0x11CF8 + STORE_ROUNDED = 0x11CF9 + STORE_SHARP = 0x11CFA + STOREFRONT = 0x11CFB + STOREFRONT_OUTLINED = 0x11CFC + STOREFRONT_ROUNDED = 0x11CFD + STOREFRONT_SHARP = 0x11CFE + STORM = 0x11CFF + STORM_OUTLINED = 0x11D00 + STORM_ROUNDED = 0x11D01 + STORM_SHARP = 0x11D02 + STRAIGHT = 0x11D03 + STRAIGHT_OUTLINED = 0x11D04 + STRAIGHT_ROUNDED = 0x11D05 + STRAIGHT_SHARP = 0x11D06 + STRAIGHTEN = 0x11D07 + STRAIGHTEN_OUTLINED = 0x11D08 + STRAIGHTEN_ROUNDED = 0x11D09 + STRAIGHTEN_SHARP = 0x11D0A + STREAM = 0x11D0B + STREAM_OUTLINED = 0x11D0C + STREAM_ROUNDED = 0x11D0D + STREAM_SHARP = 0x11D0E + STREETVIEW = 0x11D0F + STREETVIEW_OUTLINED = 0x11D10 + STREETVIEW_ROUNDED = 0x11D11 + STREETVIEW_SHARP = 0x11D12 + STRIKETHROUGH_S = 0x11D13 + STRIKETHROUGH_S_OUTLINED = 0x11D14 + STRIKETHROUGH_S_ROUNDED = 0x11D15 + STRIKETHROUGH_S_SHARP = 0x11D16 + STROLLER = 0x11D17 + STROLLER_OUTLINED = 0x11D18 + STROLLER_ROUNDED = 0x11D19 + STROLLER_SHARP = 0x11D1A + STYLE = 0x11D1B + STYLE_OUTLINED = 0x11D1C + STYLE_ROUNDED = 0x11D1D + STYLE_SHARP = 0x11D1E + SUBDIRECTORY_ARROW_LEFT = 0x11D1F + SUBDIRECTORY_ARROW_LEFT_OUTLINED = 0x11D20 + SUBDIRECTORY_ARROW_LEFT_ROUNDED = 0x11D21 + SUBDIRECTORY_ARROW_LEFT_SHARP = 0x11D22 + SUBDIRECTORY_ARROW_RIGHT = 0x11D23 + SUBDIRECTORY_ARROW_RIGHT_OUTLINED = 0x11D24 + SUBDIRECTORY_ARROW_RIGHT_ROUNDED = 0x11D25 + SUBDIRECTORY_ARROW_RIGHT_SHARP = 0x11D26 + SUBJECT = 0x11D27 + SUBJECT_OUTLINED = 0x11D28 + SUBJECT_ROUNDED = 0x11D29 + SUBJECT_SHARP = 0x11D2A + SUBSCRIPT = 0x11D2B + SUBSCRIPT_OUTLINED = 0x11D2C + SUBSCRIPT_ROUNDED = 0x11D2D + SUBSCRIPT_SHARP = 0x11D2E + SUBSCRIPTIONS = 0x11D2F + SUBSCRIPTIONS_OUTLINED = 0x11D30 + SUBSCRIPTIONS_ROUNDED = 0x11D31 + SUBSCRIPTIONS_SHARP = 0x11D32 + SUBTITLES = 0x11D33 + SUBTITLES_OFF = 0x11D34 + SUBTITLES_OFF_OUTLINED = 0x11D35 + SUBTITLES_OFF_ROUNDED = 0x11D36 + SUBTITLES_OFF_SHARP = 0x11D37 + SUBTITLES_OUTLINED = 0x11D38 + SUBTITLES_ROUNDED = 0x11D39 + SUBTITLES_SHARP = 0x11D3A + SUBWAY = 0x11D3B + SUBWAY_OUTLINED = 0x11D3C + SUBWAY_ROUNDED = 0x11D3D + SUBWAY_SHARP = 0x11D3E + SUMMARIZE = 0x11D3F + SUMMARIZE_OUTLINED = 0x11D40 + SUMMARIZE_ROUNDED = 0x11D41 + SUMMARIZE_SHARP = 0x11D42 + SUNNY = 0x11D43 + SUNNY_SNOWING = 0x11D44 + SUPERSCRIPT = 0x11D45 + SUPERSCRIPT_OUTLINED = 0x11D46 + SUPERSCRIPT_ROUNDED = 0x11D47 + SUPERSCRIPT_SHARP = 0x11D48 + SUPERVISED_USER_CIRCLE = 0x11D49 + SUPERVISED_USER_CIRCLE_OUTLINED = 0x11D4A + SUPERVISED_USER_CIRCLE_ROUNDED = 0x11D4B + SUPERVISED_USER_CIRCLE_SHARP = 0x11D4C + SUPERVISOR_ACCOUNT = 0x11D4D + SUPERVISOR_ACCOUNT_OUTLINED = 0x11D4E + SUPERVISOR_ACCOUNT_ROUNDED = 0x11D4F + SUPERVISOR_ACCOUNT_SHARP = 0x11D50 + SUPPORT = 0x11D51 + SUPPORT_AGENT = 0x11D52 + SUPPORT_AGENT_OUTLINED = 0x11D53 + SUPPORT_AGENT_ROUNDED = 0x11D54 + SUPPORT_AGENT_SHARP = 0x11D55 + SUPPORT_OUTLINED = 0x11D56 + SUPPORT_ROUNDED = 0x11D57 + SUPPORT_SHARP = 0x11D58 + SURFING = 0x11D59 + SURFING_OUTLINED = 0x11D5A + SURFING_ROUNDED = 0x11D5B + SURFING_SHARP = 0x11D5C + SURROUND_SOUND = 0x11D5D + SURROUND_SOUND_OUTLINED = 0x11D5E + SURROUND_SOUND_ROUNDED = 0x11D5F + SURROUND_SOUND_SHARP = 0x11D60 + SWAP_CALLS = 0x11D61 + SWAP_CALLS_OUTLINED = 0x11D62 + SWAP_CALLS_ROUNDED = 0x11D63 + SWAP_CALLS_SHARP = 0x11D64 + SWAP_HORIZ = 0x11D65 + SWAP_HORIZ_OUTLINED = 0x11D66 + SWAP_HORIZ_ROUNDED = 0x11D67 + SWAP_HORIZ_SHARP = 0x11D68 + SWAP_HORIZONTAL_CIRCLE = 0x11D69 + SWAP_HORIZONTAL_CIRCLE_OUTLINED = 0x11D6A + SWAP_HORIZONTAL_CIRCLE_ROUNDED = 0x11D6B + SWAP_HORIZONTAL_CIRCLE_SHARP = 0x11D6C + SWAP_VERT = 0x11D6D + SWAP_VERT_CIRCLE = 0x11D6E + SWAP_VERT_CIRCLE_OUTLINED = 0x11D6F + SWAP_VERT_CIRCLE_ROUNDED = 0x11D70 + SWAP_VERT_CIRCLE_SHARP = 0x11D71 + SWAP_VERT_OUTLINED = 0x11D72 + SWAP_VERT_ROUNDED = 0x11D73 + SWAP_VERT_SHARP = 0x11D74 + SWAP_VERTICAL_CIRCLE = 0x11D75 + SWAP_VERTICAL_CIRCLE_OUTLINED = 0x11D76 + SWAP_VERTICAL_CIRCLE_ROUNDED = 0x11D77 + SWAP_VERTICAL_CIRCLE_SHARP = 0x11D78 + SWIPE = 0x11D79 + SWIPE_DOWN = 0x11D7A + SWIPE_DOWN_ALT = 0x11D7B + SWIPE_DOWN_ALT_OUTLINED = 0x11D7C + SWIPE_DOWN_ALT_ROUNDED = 0x11D7D + SWIPE_DOWN_ALT_SHARP = 0x11D7E + SWIPE_DOWN_OUTLINED = 0x11D7F + SWIPE_DOWN_ROUNDED = 0x11D80 + SWIPE_DOWN_SHARP = 0x11D81 + SWIPE_LEFT = 0x11D82 + SWIPE_LEFT_ALT = 0x11D83 + SWIPE_LEFT_ALT_OUTLINED = 0x11D84 + SWIPE_LEFT_ALT_ROUNDED = 0x11D85 + SWIPE_LEFT_ALT_SHARP = 0x11D86 + SWIPE_LEFT_OUTLINED = 0x11D87 + SWIPE_LEFT_ROUNDED = 0x11D88 + SWIPE_LEFT_SHARP = 0x11D89 + SWIPE_OUTLINED = 0x11D8A + SWIPE_RIGHT = 0x11D8B + SWIPE_RIGHT_ALT = 0x11D8C + SWIPE_RIGHT_ALT_OUTLINED = 0x11D8D + SWIPE_RIGHT_ALT_ROUNDED = 0x11D8E + SWIPE_RIGHT_ALT_SHARP = 0x11D8F + SWIPE_RIGHT_OUTLINED = 0x11D90 + SWIPE_RIGHT_ROUNDED = 0x11D91 + SWIPE_RIGHT_SHARP = 0x11D92 + SWIPE_ROUNDED = 0x11D93 + SWIPE_SHARP = 0x11D94 + SWIPE_UP = 0x11D95 + SWIPE_UP_ALT = 0x11D96 + SWIPE_UP_ALT_OUTLINED = 0x11D97 + SWIPE_UP_ALT_ROUNDED = 0x11D98 + SWIPE_UP_ALT_SHARP = 0x11D99 + SWIPE_UP_OUTLINED = 0x11D9A + SWIPE_UP_ROUNDED = 0x11D9B + SWIPE_UP_SHARP = 0x11D9C + SWIPE_VERTICAL = 0x11D9D + SWIPE_VERTICAL_OUTLINED = 0x11D9E + SWIPE_VERTICAL_ROUNDED = 0x11D9F + SWIPE_VERTICAL_SHARP = 0x11DA0 + SWITCH_ACCESS_SHORTCUT = 0x11DA1 + SWITCH_ACCESS_SHORTCUT_ADD = 0x11DA2 + SWITCH_ACCESS_SHORTCUT_ADD_OUTLINED = 0x11DA3 + SWITCH_ACCESS_SHORTCUT_ADD_ROUNDED = 0x11DA4 + SWITCH_ACCESS_SHORTCUT_ADD_SHARP = 0x11DA5 + SWITCH_ACCESS_SHORTCUT_OUTLINED = 0x11DA6 + SWITCH_ACCESS_SHORTCUT_ROUNDED = 0x11DA7 + SWITCH_ACCESS_SHORTCUT_SHARP = 0x11DA8 + SWITCH_ACCOUNT = 0x11DA9 + SWITCH_ACCOUNT_OUTLINED = 0x11DAA + SWITCH_ACCOUNT_ROUNDED = 0x11DAB + SWITCH_ACCOUNT_SHARP = 0x11DAC + SWITCH_CAMERA = 0x11DAD + SWITCH_CAMERA_OUTLINED = 0x11DAE + SWITCH_CAMERA_ROUNDED = 0x11DAF + SWITCH_CAMERA_SHARP = 0x11DB0 + SWITCH_LEFT = 0x11DB1 + SWITCH_LEFT_OUTLINED = 0x11DB2 + SWITCH_LEFT_ROUNDED = 0x11DB3 + SWITCH_LEFT_SHARP = 0x11DB4 + SWITCH_RIGHT = 0x11DB5 + SWITCH_RIGHT_OUTLINED = 0x11DB6 + SWITCH_RIGHT_ROUNDED = 0x11DB7 + SWITCH_RIGHT_SHARP = 0x11DB8 + SWITCH_VIDEO = 0x11DB9 + SWITCH_VIDEO_OUTLINED = 0x11DBA + SWITCH_VIDEO_ROUNDED = 0x11DBB + SWITCH_VIDEO_SHARP = 0x11DBC + SYNAGOGUE = 0x11DBD + SYNAGOGUE_OUTLINED = 0x11DBE + SYNAGOGUE_ROUNDED = 0x11DBF + SYNAGOGUE_SHARP = 0x11DC0 + SYNC = 0x11DC1 + SYNC_ALT = 0x11DC2 + SYNC_ALT_OUTLINED = 0x11DC3 + SYNC_ALT_ROUNDED = 0x11DC4 + SYNC_ALT_SHARP = 0x11DC5 + SYNC_DISABLED = 0x11DC6 + SYNC_DISABLED_OUTLINED = 0x11DC7 + SYNC_DISABLED_ROUNDED = 0x11DC8 + SYNC_DISABLED_SHARP = 0x11DC9 + SYNC_LOCK = 0x11DCA + SYNC_LOCK_OUTLINED = 0x11DCB + SYNC_LOCK_ROUNDED = 0x11DCC + SYNC_LOCK_SHARP = 0x11DCD + SYNC_OUTLINED = 0x11DCE + SYNC_PROBLEM = 0x11DCF + SYNC_PROBLEM_OUTLINED = 0x11DD0 + SYNC_PROBLEM_ROUNDED = 0x11DD1 + SYNC_PROBLEM_SHARP = 0x11DD2 + SYNC_ROUNDED = 0x11DD3 + SYNC_SHARP = 0x11DD4 + SYSTEM_SECURITY_UPDATE = 0x11DD5 + SYSTEM_SECURITY_UPDATE_GOOD = 0x11DD6 + SYSTEM_SECURITY_UPDATE_GOOD_OUTLINED = 0x11DD7 + SYSTEM_SECURITY_UPDATE_GOOD_ROUNDED = 0x11DD8 + SYSTEM_SECURITY_UPDATE_GOOD_SHARP = 0x11DD9 + SYSTEM_SECURITY_UPDATE_OUTLINED = 0x11DDA + SYSTEM_SECURITY_UPDATE_ROUNDED = 0x11DDB + SYSTEM_SECURITY_UPDATE_SHARP = 0x11DDC + SYSTEM_SECURITY_UPDATE_WARNING = 0x11DDD + SYSTEM_SECURITY_UPDATE_WARNING_OUTLINED = 0x11DDE + SYSTEM_SECURITY_UPDATE_WARNING_ROUNDED = 0x11DDF + SYSTEM_SECURITY_UPDATE_WARNING_SHARP = 0x11DE0 + SYSTEM_UPDATE = 0x11DE1 + SYSTEM_UPDATE_ALT = 0x11DE2 + SYSTEM_UPDATE_ALT_OUTLINED = 0x11DE3 + SYSTEM_UPDATE_ALT_ROUNDED = 0x11DE4 + SYSTEM_UPDATE_ALT_SHARP = 0x11DE5 + SYSTEM_UPDATE_OUTLINED = 0x11DE6 + SYSTEM_UPDATE_ROUNDED = 0x11DE7 + SYSTEM_UPDATE_SHARP = 0x11DE8 + SYSTEM_UPDATE_TV = 0x11DE9 + SYSTEM_UPDATE_TV_OUTLINED = 0x11DEA + SYSTEM_UPDATE_TV_ROUNDED = 0x11DEB + SYSTEM_UPDATE_TV_SHARP = 0x11DEC + TAB = 0x11DED + TAB_OUTLINED = 0x11DEE + TAB_ROUNDED = 0x11DEF + TAB_SHARP = 0x11DF0 + TAB_UNSELECTED = 0x11DF1 + TAB_UNSELECTED_OUTLINED = 0x11DF2 + TAB_UNSELECTED_ROUNDED = 0x11DF3 + TAB_UNSELECTED_SHARP = 0x11DF4 + TABLE_BAR = 0x11DF5 + TABLE_BAR_OUTLINED = 0x11DF6 + TABLE_BAR_ROUNDED = 0x11DF7 + TABLE_BAR_SHARP = 0x11DF8 + TABLE_CHART = 0x11DF9 + TABLE_CHART_OUTLINED = 0x11DFA + TABLE_CHART_ROUNDED = 0x11DFB + TABLE_CHART_SHARP = 0x11DFC + TABLE_RESTAURANT = 0x11DFD + TABLE_RESTAURANT_OUTLINED = 0x11DFE + TABLE_RESTAURANT_ROUNDED = 0x11DFF + TABLE_RESTAURANT_SHARP = 0x11E00 + TABLE_ROWS = 0x11E01 + TABLE_ROWS_OUTLINED = 0x11E02 + TABLE_ROWS_ROUNDED = 0x11E03 + TABLE_ROWS_SHARP = 0x11E04 + TABLE_VIEW = 0x11E05 + TABLE_VIEW_OUTLINED = 0x11E06 + TABLE_VIEW_ROUNDED = 0x11E07 + TABLE_VIEW_SHARP = 0x11E08 + TABLET = 0x11E09 + TABLET_ANDROID = 0x11E0A + TABLET_ANDROID_OUTLINED = 0x11E0B + TABLET_ANDROID_ROUNDED = 0x11E0C + TABLET_ANDROID_SHARP = 0x11E0D + TABLET_MAC = 0x11E0E + TABLET_MAC_OUTLINED = 0x11E0F + TABLET_MAC_ROUNDED = 0x11E10 + TABLET_MAC_SHARP = 0x11E11 + TABLET_OUTLINED = 0x11E12 + TABLET_ROUNDED = 0x11E13 + TABLET_SHARP = 0x11E14 + TAG = 0x11E15 + TAG_FACES = 0x11E16 + TAG_FACES_OUTLINED = 0x11E17 + TAG_FACES_ROUNDED = 0x11E18 + TAG_FACES_SHARP = 0x11E19 + TAG_OUTLINED = 0x11E1A + TAG_ROUNDED = 0x11E1B + TAG_SHARP = 0x11E1C + TAKEOUT_DINING = 0x11E1D + TAKEOUT_DINING_OUTLINED = 0x11E1E + TAKEOUT_DINING_ROUNDED = 0x11E1F + TAKEOUT_DINING_SHARP = 0x11E20 + TAP_AND_PLAY = 0x11E21 + TAP_AND_PLAY_OUTLINED = 0x11E22 + TAP_AND_PLAY_ROUNDED = 0x11E23 + TAP_AND_PLAY_SHARP = 0x11E24 + TAPAS = 0x11E25 + TAPAS_OUTLINED = 0x11E26 + TAPAS_ROUNDED = 0x11E27 + TAPAS_SHARP = 0x11E28 + TASK = 0x11E29 + TASK_ALT = 0x11E2A + TASK_ALT_OUTLINED = 0x11E2B + TASK_ALT_ROUNDED = 0x11E2C + TASK_ALT_SHARP = 0x11E2D + TASK_OUTLINED = 0x11E2E + TASK_ROUNDED = 0x11E2F + TASK_SHARP = 0x11E30 + TAXI_ALERT = 0x11E31 + TAXI_ALERT_OUTLINED = 0x11E32 + TAXI_ALERT_ROUNDED = 0x11E33 + TAXI_ALERT_SHARP = 0x11E34 + TELEGRAM = 0x11E35 + TELEGRAM_OUTLINED = 0x11E36 + TELEGRAM_ROUNDED = 0x11E37 + TELEGRAM_SHARP = 0x11E38 + TEMPLE_BUDDHIST = 0x11E39 + TEMPLE_BUDDHIST_OUTLINED = 0x11E3A + TEMPLE_BUDDHIST_ROUNDED = 0x11E3B + TEMPLE_BUDDHIST_SHARP = 0x11E3C + TEMPLE_HINDU = 0x11E3D + TEMPLE_HINDU_OUTLINED = 0x11E3E + TEMPLE_HINDU_ROUNDED = 0x11E3F + TEMPLE_HINDU_SHARP = 0x11E40 + TEN_K = 0x11E41 + TEN_K_OUTLINED = 0x11E42 + TEN_K_ROUNDED = 0x11E43 + TEN_K_SHARP = 0x11E44 + TEN_MP = 0x11E45 + TEN_MP_OUTLINED = 0x11E46 + TEN_MP_ROUNDED = 0x11E47 + TEN_MP_SHARP = 0x11E48 + TERMINAL = 0x11E49 + TERMINAL_OUTLINED = 0x11E4A + TERMINAL_ROUNDED = 0x11E4B + TERMINAL_SHARP = 0x11E4C + TERRAIN = 0x11E4D + TERRAIN_OUTLINED = 0x11E4E + TERRAIN_ROUNDED = 0x11E4F + TERRAIN_SHARP = 0x11E50 + TEXT_DECREASE = 0x11E51 + TEXT_DECREASE_OUTLINED = 0x11E52 + TEXT_DECREASE_ROUNDED = 0x11E53 + TEXT_DECREASE_SHARP = 0x11E54 + TEXT_FIELDS = 0x11E55 + TEXT_FIELDS_OUTLINED = 0x11E56 + TEXT_FIELDS_ROUNDED = 0x11E57 + TEXT_FIELDS_SHARP = 0x11E58 + TEXT_FORMAT = 0x11E59 + TEXT_FORMAT_OUTLINED = 0x11E5A + TEXT_FORMAT_ROUNDED = 0x11E5B + TEXT_FORMAT_SHARP = 0x11E5C + TEXT_INCREASE = 0x11E5D + TEXT_INCREASE_OUTLINED = 0x11E5E + TEXT_INCREASE_ROUNDED = 0x11E5F + TEXT_INCREASE_SHARP = 0x11E60 + TEXT_ROTATE_UP = 0x11E61 + TEXT_ROTATE_UP_OUTLINED = 0x11E62 + TEXT_ROTATE_UP_ROUNDED = 0x11E63 + TEXT_ROTATE_UP_SHARP = 0x11E64 + TEXT_ROTATE_VERTICAL = 0x11E65 + TEXT_ROTATE_VERTICAL_OUTLINED = 0x11E66 + TEXT_ROTATE_VERTICAL_ROUNDED = 0x11E67 + TEXT_ROTATE_VERTICAL_SHARP = 0x11E68 + TEXT_ROTATION_ANGLEDOWN = 0x11E69 + TEXT_ROTATION_ANGLEDOWN_OUTLINED = 0x11E6A + TEXT_ROTATION_ANGLEDOWN_ROUNDED = 0x11E6B + TEXT_ROTATION_ANGLEDOWN_SHARP = 0x11E6C + TEXT_ROTATION_ANGLEUP = 0x11E6D + TEXT_ROTATION_ANGLEUP_OUTLINED = 0x11E6E + TEXT_ROTATION_ANGLEUP_ROUNDED = 0x11E6F + TEXT_ROTATION_ANGLEUP_SHARP = 0x11E70 + TEXT_ROTATION_DOWN = 0x11E71 + TEXT_ROTATION_DOWN_OUTLINED = 0x11E72 + TEXT_ROTATION_DOWN_ROUNDED = 0x11E73 + TEXT_ROTATION_DOWN_SHARP = 0x11E74 + TEXT_ROTATION_NONE = 0x11E75 + TEXT_ROTATION_NONE_OUTLINED = 0x11E76 + TEXT_ROTATION_NONE_ROUNDED = 0x11E77 + TEXT_ROTATION_NONE_SHARP = 0x11E78 + TEXT_SNIPPET = 0x11E79 + TEXT_SNIPPET_OUTLINED = 0x11E7A + TEXT_SNIPPET_ROUNDED = 0x11E7B + TEXT_SNIPPET_SHARP = 0x11E7C + TEXTSMS = 0x11E7D + TEXTSMS_OUTLINED = 0x11E7E + TEXTSMS_ROUNDED = 0x11E7F + TEXTSMS_SHARP = 0x11E80 + TEXTURE = 0x11E81 + TEXTURE_OUTLINED = 0x11E82 + TEXTURE_ROUNDED = 0x11E83 + TEXTURE_SHARP = 0x11E84 + THEATER_COMEDY = 0x11E85 + THEATER_COMEDY_OUTLINED = 0x11E86 + THEATER_COMEDY_ROUNDED = 0x11E87 + THEATER_COMEDY_SHARP = 0x11E88 + THEATERS = 0x11E89 + THEATERS_OUTLINED = 0x11E8A + THEATERS_ROUNDED = 0x11E8B + THEATERS_SHARP = 0x11E8C + THERMOSTAT = 0x11E8D + THERMOSTAT_AUTO = 0x11E8E + THERMOSTAT_AUTO_OUTLINED = 0x11E8F + THERMOSTAT_AUTO_ROUNDED = 0x11E90 + THERMOSTAT_AUTO_SHARP = 0x11E91 + THERMOSTAT_OUTLINED = 0x11E92 + THERMOSTAT_ROUNDED = 0x11E93 + THERMOSTAT_SHARP = 0x11E94 + THIRTEEN_MP = 0x11E95 + THIRTEEN_MP_OUTLINED = 0x11E96 + THIRTEEN_MP_ROUNDED = 0x11E97 + THIRTEEN_MP_SHARP = 0x11E98 + THIRTY_FPS = 0x11E99 + THIRTY_FPS_OUTLINED = 0x11E9A + THIRTY_FPS_ROUNDED = 0x11E9B + THIRTY_FPS_SELECT = 0x11E9C + THIRTY_FPS_SELECT_OUTLINED = 0x11E9D + THIRTY_FPS_SELECT_ROUNDED = 0x11E9E + THIRTY_FPS_SELECT_SHARP = 0x11E9F + THIRTY_FPS_SHARP = 0x11EA0 + THREE_G_MOBILEDATA = 0x11EA1 + THREE_G_MOBILEDATA_OUTLINED = 0x11EA2 + THREE_G_MOBILEDATA_ROUNDED = 0x11EA3 + THREE_G_MOBILEDATA_SHARP = 0x11EA4 + THREE_K = 0x11EA5 + THREE_K_OUTLINED = 0x11EA6 + THREE_K_PLUS = 0x11EA7 + THREE_K_PLUS_OUTLINED = 0x11EA8 + THREE_K_PLUS_ROUNDED = 0x11EA9 + THREE_K_PLUS_SHARP = 0x11EAA + THREE_K_ROUNDED = 0x11EAB + THREE_K_SHARP = 0x11EAC + THREE_MP = 0x11EAD + THREE_MP_OUTLINED = 0x11EAE + THREE_MP_ROUNDED = 0x11EAF + THREE_MP_SHARP = 0x11EB0 + THREE_P = 0x11EB1 + THREE_P_OUTLINED = 0x11EB2 + THREE_P_ROUNDED = 0x11EB3 + THREE_P_SHARP = 0x11EB4 + THREED_ROTATION = 0x11EB5 + THREED_ROTATION_OUTLINED = 0x11EB6 + THREED_ROTATION_ROUNDED = 0x11EB7 + THREED_ROTATION_SHARP = 0x11EB8 + THREESIXTY = 0x11EB9 + THREESIXTY_OUTLINED = 0x11EBA + THREESIXTY_ROUNDED = 0x11EBB + THREESIXTY_SHARP = 0x11EBC + THUMB_DOWN = 0x11EBD + THUMB_DOWN_ALT = 0x11EBE + THUMB_DOWN_ALT_OUTLINED = 0x11EBF + THUMB_DOWN_ALT_ROUNDED = 0x11EC0 + THUMB_DOWN_ALT_SHARP = 0x11EC1 + THUMB_DOWN_OFF_ALT = 0x11EC2 + THUMB_DOWN_OFF_ALT_OUTLINED = 0x11EC3 + THUMB_DOWN_OFF_ALT_ROUNDED = 0x11EC4 + THUMB_DOWN_OFF_ALT_SHARP = 0x11EC5 + THUMB_DOWN_OUTLINED = 0x11EC6 + THUMB_DOWN_ROUNDED = 0x11EC7 + THUMB_DOWN_SHARP = 0x11EC8 + THUMB_UP = 0x11EC9 + THUMB_UP_ALT = 0x11ECA + THUMB_UP_ALT_OUTLINED = 0x11ECB + THUMB_UP_ALT_ROUNDED = 0x11ECC + THUMB_UP_ALT_SHARP = 0x11ECD + THUMB_UP_OFF_ALT = 0x11ECE + THUMB_UP_OFF_ALT_OUTLINED = 0x11ECF + THUMB_UP_OFF_ALT_ROUNDED = 0x11ED0 + THUMB_UP_OFF_ALT_SHARP = 0x11ED1 + THUMB_UP_OUTLINED = 0x11ED2 + THUMB_UP_ROUNDED = 0x11ED3 + THUMB_UP_SHARP = 0x11ED4 + THUMBS_UP_DOWN = 0x11ED5 + THUMBS_UP_DOWN_OUTLINED = 0x11ED6 + THUMBS_UP_DOWN_ROUNDED = 0x11ED7 + THUMBS_UP_DOWN_SHARP = 0x11ED8 + THUNDERSTORM = 0x11ED9 + THUNDERSTORM_OUTLINED = 0x11EDA + THUNDERSTORM_ROUNDED = 0x11EDB + THUNDERSTORM_SHARP = 0x11EDC + TIKTOK = 0x11EDD + TIKTOK_OUTLINED = 0x11EDE + TIKTOK_ROUNDED = 0x11EDF + TIKTOK_SHARP = 0x11EE0 + TIME_TO_LEAVE = 0x11EE1 + TIME_TO_LEAVE_OUTLINED = 0x11EE2 + TIME_TO_LEAVE_ROUNDED = 0x11EE3 + TIME_TO_LEAVE_SHARP = 0x11EE4 + TIMELAPSE = 0x11EE5 + TIMELAPSE_OUTLINED = 0x11EE6 + TIMELAPSE_ROUNDED = 0x11EE7 + TIMELAPSE_SHARP = 0x11EE8 + TIMELINE = 0x11EE9 + TIMELINE_OUTLINED = 0x11EEA + TIMELINE_ROUNDED = 0x11EEB + TIMELINE_SHARP = 0x11EEC + TIMER = 0x11EED + TIMER_10 = 0x11EEE + TIMER_10_OUTLINED = 0x11EEF + TIMER_10_ROUNDED = 0x11EF0 + TIMER_10_SELECT = 0x11EF1 + TIMER_10_SELECT_OUTLINED = 0x11EF2 + TIMER_10_SELECT_ROUNDED = 0x11EF3 + TIMER_10_SELECT_SHARP = 0x11EF4 + TIMER_10_SHARP = 0x11EF5 + TIMER_3 = 0x11EF6 + TIMER_3_OUTLINED = 0x11EF7 + TIMER_3_ROUNDED = 0x11EF8 + TIMER_3_SELECT = 0x11EF9 + TIMER_3_SELECT_OUTLINED = 0x11EFA + TIMER_3_SELECT_ROUNDED = 0x11EFB + TIMER_3_SELECT_SHARP = 0x11EFC + TIMER_3_SHARP = 0x11EFD + TIMER_OFF = 0x11EFE + TIMER_OFF_OUTLINED = 0x11EFF + TIMER_OFF_ROUNDED = 0x11F00 + TIMER_OFF_SHARP = 0x11F01 + TIMER_OUTLINED = 0x11F02 + TIMER_ROUNDED = 0x11F03 + TIMER_SHARP = 0x11F04 + TIPS_AND_UPDATES = 0x11F05 + TIPS_AND_UPDATES_OUTLINED = 0x11F06 + TIPS_AND_UPDATES_ROUNDED = 0x11F07 + TIPS_AND_UPDATES_SHARP = 0x11F08 + TIRE_REPAIR = 0x11F09 + TIRE_REPAIR_OUTLINED = 0x11F0A + TIRE_REPAIR_ROUNDED = 0x11F0B + TIRE_REPAIR_SHARP = 0x11F0C + TITLE = 0x11F0D + TITLE_OUTLINED = 0x11F0E + TITLE_ROUNDED = 0x11F0F + TITLE_SHARP = 0x11F10 + TOC = 0x11F11 + TOC_OUTLINED = 0x11F12 + TOC_ROUNDED = 0x11F13 + TOC_SHARP = 0x11F14 + TODAY = 0x11F15 + TODAY_OUTLINED = 0x11F16 + TODAY_ROUNDED = 0x11F17 + TODAY_SHARP = 0x11F18 + TOGGLE_OFF = 0x11F19 + TOGGLE_OFF_OUTLINED = 0x11F1A + TOGGLE_OFF_ROUNDED = 0x11F1B + TOGGLE_OFF_SHARP = 0x11F1C + TOGGLE_ON = 0x11F1D + TOGGLE_ON_OUTLINED = 0x11F1E + TOGGLE_ON_ROUNDED = 0x11F1F + TOGGLE_ON_SHARP = 0x11F20 + TOKEN = 0x11F21 + TOKEN_OUTLINED = 0x11F22 + TOKEN_ROUNDED = 0x11F23 + TOKEN_SHARP = 0x11F24 + TOLL = 0x11F25 + TOLL_OUTLINED = 0x11F26 + TOLL_ROUNDED = 0x11F27 + TOLL_SHARP = 0x11F28 + TONALITY = 0x11F29 + TONALITY_OUTLINED = 0x11F2A + TONALITY_ROUNDED = 0x11F2B + TONALITY_SHARP = 0x11F2C + TOPIC = 0x11F2D + TOPIC_OUTLINED = 0x11F2E + TOPIC_ROUNDED = 0x11F2F + TOPIC_SHARP = 0x11F30 + TORNADO = 0x11F31 + TORNADO_OUTLINED = 0x11F32 + TORNADO_ROUNDED = 0x11F33 + TORNADO_SHARP = 0x11F34 + TOUCH_APP = 0x11F35 + TOUCH_APP_OUTLINED = 0x11F36 + TOUCH_APP_ROUNDED = 0x11F37 + TOUCH_APP_SHARP = 0x11F38 + TOUR = 0x11F39 + TOUR_OUTLINED = 0x11F3A + TOUR_ROUNDED = 0x11F3B + TOUR_SHARP = 0x11F3C + TOYS = 0x11F3D + TOYS_OUTLINED = 0x11F3E + TOYS_ROUNDED = 0x11F3F + TOYS_SHARP = 0x11F40 + TRACK_CHANGES = 0x11F41 + TRACK_CHANGES_OUTLINED = 0x11F42 + TRACK_CHANGES_ROUNDED = 0x11F43 + TRACK_CHANGES_SHARP = 0x11F44 + TRAFFIC = 0x11F45 + TRAFFIC_OUTLINED = 0x11F46 + TRAFFIC_ROUNDED = 0x11F47 + TRAFFIC_SHARP = 0x11F48 + TRAIN = 0x11F49 + TRAIN_OUTLINED = 0x11F4A + TRAIN_ROUNDED = 0x11F4B + TRAIN_SHARP = 0x11F4C + TRAM = 0x11F4D + TRAM_OUTLINED = 0x11F4E + TRAM_ROUNDED = 0x11F4F + TRAM_SHARP = 0x11F50 + TRANSCRIBE = 0x11F51 + TRANSCRIBE_OUTLINED = 0x11F52 + TRANSCRIBE_ROUNDED = 0x11F53 + TRANSCRIBE_SHARP = 0x11F54 + TRANSFER_WITHIN_A_STATION = 0x11F55 + TRANSFER_WITHIN_A_STATION_OUTLINED = 0x11F56 + TRANSFER_WITHIN_A_STATION_ROUNDED = 0x11F57 + TRANSFER_WITHIN_A_STATION_SHARP = 0x11F58 + TRANSFORM = 0x11F59 + TRANSFORM_OUTLINED = 0x11F5A + TRANSFORM_ROUNDED = 0x11F5B + TRANSFORM_SHARP = 0x11F5C + TRANSGENDER = 0x11F5D + TRANSGENDER_OUTLINED = 0x11F5E + TRANSGENDER_ROUNDED = 0x11F5F + TRANSGENDER_SHARP = 0x11F60 + TRANSIT_ENTEREXIT = 0x11F61 + TRANSIT_ENTEREXIT_OUTLINED = 0x11F62 + TRANSIT_ENTEREXIT_ROUNDED = 0x11F63 + TRANSIT_ENTEREXIT_SHARP = 0x11F64 + TRANSLATE = 0x11F65 + TRANSLATE_OUTLINED = 0x11F66 + TRANSLATE_ROUNDED = 0x11F67 + TRANSLATE_SHARP = 0x11F68 + TRAVEL_EXPLORE = 0x11F69 + TRAVEL_EXPLORE_OUTLINED = 0x11F6A + TRAVEL_EXPLORE_ROUNDED = 0x11F6B + TRAVEL_EXPLORE_SHARP = 0x11F6C + TRENDING_DOWN = 0x11F6D + TRENDING_DOWN_OUTLINED = 0x11F6E + TRENDING_DOWN_ROUNDED = 0x11F6F + TRENDING_DOWN_SHARP = 0x11F70 + TRENDING_FLAT = 0x11F71 + TRENDING_FLAT_OUTLINED = 0x11F72 + TRENDING_FLAT_ROUNDED = 0x11F73 + TRENDING_FLAT_SHARP = 0x11F74 + TRENDING_NEUTRAL = 0x11F75 + TRENDING_NEUTRAL_OUTLINED = 0x11F76 + TRENDING_NEUTRAL_ROUNDED = 0x11F77 + TRENDING_NEUTRAL_SHARP = 0x11F78 + TRENDING_UP = 0x11F79 + TRENDING_UP_OUTLINED = 0x11F7A + TRENDING_UP_ROUNDED = 0x11F7B + TRENDING_UP_SHARP = 0x11F7C + TRIP_ORIGIN = 0x11F7D + TRIP_ORIGIN_OUTLINED = 0x11F7E + TRIP_ORIGIN_ROUNDED = 0x11F7F + TRIP_ORIGIN_SHARP = 0x11F80 + TROLLEY = 0x11F81 + TROUBLESHOOT = 0x11F82 + TROUBLESHOOT_OUTLINED = 0x11F83 + TROUBLESHOOT_ROUNDED = 0x11F84 + TROUBLESHOOT_SHARP = 0x11F85 + TRY_SMS_STAR = 0x11F86 + TRY_SMS_STAR_OUTLINED = 0x11F87 + TRY_SMS_STAR_ROUNDED = 0x11F88 + TRY_SMS_STAR_SHARP = 0x11F89 + TSUNAMI = 0x11F8A + TSUNAMI_OUTLINED = 0x11F8B + TSUNAMI_ROUNDED = 0x11F8C + TSUNAMI_SHARP = 0x11F8D + TTY = 0x11F8E + TTY_OUTLINED = 0x11F8F + TTY_ROUNDED = 0x11F90 + TTY_SHARP = 0x11F91 + TUNE = 0x11F92 + TUNE_OUTLINED = 0x11F93 + TUNE_ROUNDED = 0x11F94 + TUNE_SHARP = 0x11F95 + TUNGSTEN = 0x11F96 + TUNGSTEN_OUTLINED = 0x11F97 + TUNGSTEN_ROUNDED = 0x11F98 + TUNGSTEN_SHARP = 0x11F99 + TURN_LEFT = 0x11F9A + TURN_LEFT_OUTLINED = 0x11F9B + TURN_LEFT_ROUNDED = 0x11F9C + TURN_LEFT_SHARP = 0x11F9D + TURN_RIGHT = 0x11F9E + TURN_RIGHT_OUTLINED = 0x11F9F + TURN_RIGHT_ROUNDED = 0x11FA0 + TURN_RIGHT_SHARP = 0x11FA1 + TURN_SHARP_LEFT = 0x11FA2 + TURN_SHARP_LEFT_OUTLINED = 0x11FA3 + TURN_SHARP_LEFT_ROUNDED = 0x11FA4 + TURN_SHARP_LEFT_SHARP = 0x11FA5 + TURN_SHARP_RIGHT = 0x11FA6 + TURN_SHARP_RIGHT_OUTLINED = 0x11FA7 + TURN_SHARP_RIGHT_ROUNDED = 0x11FA8 + TURN_SHARP_RIGHT_SHARP = 0x11FA9 + TURN_SLIGHT_LEFT = 0x11FAA + TURN_SLIGHT_LEFT_OUTLINED = 0x11FAB + TURN_SLIGHT_LEFT_ROUNDED = 0x11FAC + TURN_SLIGHT_LEFT_SHARP = 0x11FAD + TURN_SLIGHT_RIGHT = 0x11FAE + TURN_SLIGHT_RIGHT_OUTLINED = 0x11FAF + TURN_SLIGHT_RIGHT_ROUNDED = 0x11FB0 + TURN_SLIGHT_RIGHT_SHARP = 0x11FB1 + TURNED_IN = 0x11FB2 + TURNED_IN_NOT = 0x11FB3 + TURNED_IN_NOT_OUTLINED = 0x11FB4 + TURNED_IN_NOT_ROUNDED = 0x11FB5 + TURNED_IN_NOT_SHARP = 0x11FB6 + TURNED_IN_OUTLINED = 0x11FB7 + TURNED_IN_ROUNDED = 0x11FB8 + TURNED_IN_SHARP = 0x11FB9 + TV = 0x11FBA + TV_OFF = 0x11FBB + TV_OFF_OUTLINED = 0x11FBC + TV_OFF_ROUNDED = 0x11FBD + TV_OFF_SHARP = 0x11FBE + TV_OUTLINED = 0x11FBF + TV_ROUNDED = 0x11FC0 + TV_SHARP = 0x11FC1 + TWELVE_MP = 0x11FC2 + TWELVE_MP_OUTLINED = 0x11FC3 + TWELVE_MP_ROUNDED = 0x11FC4 + TWELVE_MP_SHARP = 0x11FC5 + TWENTY_FOUR_MP = 0x11FC6 + TWENTY_FOUR_MP_OUTLINED = 0x11FC7 + TWENTY_FOUR_MP_ROUNDED = 0x11FC8 + TWENTY_FOUR_MP_SHARP = 0x11FC9 + TWENTY_MP = 0x11FCA + TWENTY_MP_OUTLINED = 0x11FCB + TWENTY_MP_ROUNDED = 0x11FCC + TWENTY_MP_SHARP = 0x11FCD + TWENTY_ONE_MP = 0x11FCE + TWENTY_ONE_MP_OUTLINED = 0x11FCF + TWENTY_ONE_MP_ROUNDED = 0x11FD0 + TWENTY_ONE_MP_SHARP = 0x11FD1 + TWENTY_THREE_MP = 0x11FD2 + TWENTY_THREE_MP_OUTLINED = 0x11FD3 + TWENTY_THREE_MP_ROUNDED = 0x11FD4 + TWENTY_THREE_MP_SHARP = 0x11FD5 + TWENTY_TWO_MP = 0x11FD6 + TWENTY_TWO_MP_OUTLINED = 0x11FD7 + TWENTY_TWO_MP_ROUNDED = 0x11FD8 + TWENTY_TWO_MP_SHARP = 0x11FD9 + TWO_K = 0x11FDA + TWO_K_OUTLINED = 0x11FDB + TWO_K_PLUS = 0x11FDC + TWO_K_PLUS_OUTLINED = 0x11FDD + TWO_K_PLUS_ROUNDED = 0x11FDE + TWO_K_PLUS_SHARP = 0x11FDF + TWO_K_ROUNDED = 0x11FE0 + TWO_K_SHARP = 0x11FE1 + TWO_MP = 0x11FE2 + TWO_MP_OUTLINED = 0x11FE3 + TWO_MP_ROUNDED = 0x11FE4 + TWO_MP_SHARP = 0x11FE5 + TWO_WHEELER = 0x11FE6 + TWO_WHEELER_OUTLINED = 0x11FE7 + TWO_WHEELER_ROUNDED = 0x11FE8 + TWO_WHEELER_SHARP = 0x11FE9 + TYPE_SPECIMEN = 0x11FEA + TYPE_SPECIMEN_OUTLINED = 0x11FEB + TYPE_SPECIMEN_ROUNDED = 0x11FEC + TYPE_SPECIMEN_SHARP = 0x11FED + U_TURN_LEFT = 0x11FEE + U_TURN_LEFT_OUTLINED = 0x11FEF + U_TURN_LEFT_ROUNDED = 0x11FF0 + U_TURN_LEFT_SHARP = 0x11FF1 + U_TURN_RIGHT = 0x11FF2 + U_TURN_RIGHT_OUTLINED = 0x11FF3 + U_TURN_RIGHT_ROUNDED = 0x11FF4 + U_TURN_RIGHT_SHARP = 0x11FF5 + UMBRELLA = 0x11FF6 + UMBRELLA_OUTLINED = 0x11FF7 + UMBRELLA_ROUNDED = 0x11FF8 + UMBRELLA_SHARP = 0x11FF9 + UNARCHIVE = 0x11FFA + UNARCHIVE_OUTLINED = 0x11FFB + UNARCHIVE_ROUNDED = 0x11FFC + UNARCHIVE_SHARP = 0x11FFD + UNDO = 0x11FFE + UNDO_OUTLINED = 0x11FFF + UNDO_ROUNDED = 0x12000 + UNDO_SHARP = 0x12001 + UNFOLD_LESS = 0x12002 + UNFOLD_LESS_DOUBLE = 0x12003 + UNFOLD_LESS_DOUBLE_OUTLINED = 0x12004 + UNFOLD_LESS_DOUBLE_ROUNDED = 0x12005 + UNFOLD_LESS_DOUBLE_SHARP = 0x12006 + UNFOLD_LESS_OUTLINED = 0x12007 + UNFOLD_LESS_ROUNDED = 0x12008 + UNFOLD_LESS_SHARP = 0x12009 + UNFOLD_MORE = 0x1200A + UNFOLD_MORE_DOUBLE = 0x1200B + UNFOLD_MORE_DOUBLE_OUTLINED = 0x1200C + UNFOLD_MORE_DOUBLE_ROUNDED = 0x1200D + UNFOLD_MORE_DOUBLE_SHARP = 0x1200E + UNFOLD_MORE_OUTLINED = 0x1200F + UNFOLD_MORE_ROUNDED = 0x12010 + UNFOLD_MORE_SHARP = 0x12011 + UNPUBLISHED = 0x12012 + UNPUBLISHED_OUTLINED = 0x12013 + UNPUBLISHED_ROUNDED = 0x12014 + UNPUBLISHED_SHARP = 0x12015 + UNSUBSCRIBE = 0x12016 + UNSUBSCRIBE_OUTLINED = 0x12017 + UNSUBSCRIBE_ROUNDED = 0x12018 + UNSUBSCRIBE_SHARP = 0x12019 + UPCOMING = 0x1201A + UPCOMING_OUTLINED = 0x1201B + UPCOMING_ROUNDED = 0x1201C + UPCOMING_SHARP = 0x1201D + UPDATE = 0x1201E + UPDATE_DISABLED = 0x1201F + UPDATE_DISABLED_OUTLINED = 0x12020 + UPDATE_DISABLED_ROUNDED = 0x12021 + UPDATE_DISABLED_SHARP = 0x12022 + UPDATE_OUTLINED = 0x12023 + UPDATE_ROUNDED = 0x12024 + UPDATE_SHARP = 0x12025 + UPGRADE = 0x12026 + UPGRADE_OUTLINED = 0x12027 + UPGRADE_ROUNDED = 0x12028 + UPGRADE_SHARP = 0x12029 + UPLOAD = 0x1202A + UPLOAD_FILE = 0x1202B + UPLOAD_FILE_OUTLINED = 0x1202C + UPLOAD_FILE_ROUNDED = 0x1202D + UPLOAD_FILE_SHARP = 0x1202E + UPLOAD_OUTLINED = 0x1202F + UPLOAD_ROUNDED = 0x12030 + UPLOAD_SHARP = 0x12031 + USB = 0x12032 + USB_OFF = 0x12033 + USB_OFF_OUTLINED = 0x12034 + USB_OFF_ROUNDED = 0x12035 + USB_OFF_SHARP = 0x12036 + USB_OUTLINED = 0x12037 + USB_ROUNDED = 0x12038 + USB_SHARP = 0x12039 + VACCINES = 0x1203A + VACCINES_OUTLINED = 0x1203B + VACCINES_ROUNDED = 0x1203C + VACCINES_SHARP = 0x1203D + VAPE_FREE = 0x1203E + VAPE_FREE_OUTLINED = 0x1203F + VAPE_FREE_ROUNDED = 0x12040 + VAPE_FREE_SHARP = 0x12041 + VAPING_ROOMS = 0x12042 + VAPING_ROOMS_OUTLINED = 0x12043 + VAPING_ROOMS_ROUNDED = 0x12044 + VAPING_ROOMS_SHARP = 0x12045 + VERIFIED = 0x12046 + VERIFIED_OUTLINED = 0x12047 + VERIFIED_ROUNDED = 0x12048 + VERIFIED_SHARP = 0x12049 + VERIFIED_USER = 0x1204A + VERIFIED_USER_OUTLINED = 0x1204B + VERIFIED_USER_ROUNDED = 0x1204C + VERIFIED_USER_SHARP = 0x1204D + VERTICAL_ALIGN_BOTTOM = 0x1204E + VERTICAL_ALIGN_BOTTOM_OUTLINED = 0x1204F + VERTICAL_ALIGN_BOTTOM_ROUNDED = 0x12050 + VERTICAL_ALIGN_BOTTOM_SHARP = 0x12051 + VERTICAL_ALIGN_CENTER = 0x12052 + VERTICAL_ALIGN_CENTER_OUTLINED = 0x12053 + VERTICAL_ALIGN_CENTER_ROUNDED = 0x12054 + VERTICAL_ALIGN_CENTER_SHARP = 0x12055 + VERTICAL_ALIGN_TOP = 0x12056 + VERTICAL_ALIGN_TOP_OUTLINED = 0x12057 + VERTICAL_ALIGN_TOP_ROUNDED = 0x12058 + VERTICAL_ALIGN_TOP_SHARP = 0x12059 + VERTICAL_DISTRIBUTE = 0x1205A + VERTICAL_DISTRIBUTE_OUTLINED = 0x1205B + VERTICAL_DISTRIBUTE_ROUNDED = 0x1205C + VERTICAL_DISTRIBUTE_SHARP = 0x1205D + VERTICAL_SHADES = 0x1205E + VERTICAL_SHADES_CLOSED = 0x1205F + VERTICAL_SHADES_CLOSED_OUTLINED = 0x12060 + VERTICAL_SHADES_CLOSED_ROUNDED = 0x12061 + VERTICAL_SHADES_CLOSED_SHARP = 0x12062 + VERTICAL_SHADES_OUTLINED = 0x12063 + VERTICAL_SHADES_ROUNDED = 0x12064 + VERTICAL_SHADES_SHARP = 0x12065 + VERTICAL_SPLIT = 0x12066 + VERTICAL_SPLIT_OUTLINED = 0x12067 + VERTICAL_SPLIT_ROUNDED = 0x12068 + VERTICAL_SPLIT_SHARP = 0x12069 + VIBRATION = 0x1206A + VIBRATION_OUTLINED = 0x1206B + VIBRATION_ROUNDED = 0x1206C + VIBRATION_SHARP = 0x1206D + VIDEO_CALL = 0x1206E + VIDEO_CALL_OUTLINED = 0x1206F + VIDEO_CALL_ROUNDED = 0x12070 + VIDEO_CALL_SHARP = 0x12071 + VIDEO_CAMERA_BACK = 0x12072 + VIDEO_CAMERA_BACK_OUTLINED = 0x12073 + VIDEO_CAMERA_BACK_ROUNDED = 0x12074 + VIDEO_CAMERA_BACK_SHARP = 0x12075 + VIDEO_CAMERA_FRONT = 0x12076 + VIDEO_CAMERA_FRONT_OUTLINED = 0x12077 + VIDEO_CAMERA_FRONT_ROUNDED = 0x12078 + VIDEO_CAMERA_FRONT_SHARP = 0x12079 + VIDEO_CHAT = 0x1207A + VIDEO_CHAT_OUTLINED = 0x1207B + VIDEO_CHAT_ROUNDED = 0x1207C + VIDEO_CHAT_SHARP = 0x1207D + VIDEO_COLLECTION = 0x1207E + VIDEO_COLLECTION_OUTLINED = 0x1207F + VIDEO_COLLECTION_ROUNDED = 0x12080 + VIDEO_COLLECTION_SHARP = 0x12081 + VIDEO_FILE = 0x12082 + VIDEO_FILE_OUTLINED = 0x12083 + VIDEO_FILE_ROUNDED = 0x12084 + VIDEO_FILE_SHARP = 0x12085 + VIDEO_LABEL = 0x12086 + VIDEO_LABEL_OUTLINED = 0x12087 + VIDEO_LABEL_ROUNDED = 0x12088 + VIDEO_LABEL_SHARP = 0x12089 + VIDEO_LIBRARY = 0x1208A + VIDEO_LIBRARY_OUTLINED = 0x1208B + VIDEO_LIBRARY_ROUNDED = 0x1208C + VIDEO_LIBRARY_SHARP = 0x1208D + VIDEO_SETTINGS = 0x1208E + VIDEO_SETTINGS_OUTLINED = 0x1208F + VIDEO_SETTINGS_ROUNDED = 0x12090 + VIDEO_SETTINGS_SHARP = 0x12091 + VIDEO_STABLE = 0x12092 + VIDEO_STABLE_OUTLINED = 0x12093 + VIDEO_STABLE_ROUNDED = 0x12094 + VIDEO_STABLE_SHARP = 0x12095 + VIDEOCAM = 0x12096 + VIDEOCAM_OFF = 0x12097 + VIDEOCAM_OFF_OUTLINED = 0x12098 + VIDEOCAM_OFF_ROUNDED = 0x12099 + VIDEOCAM_OFF_SHARP = 0x1209A + VIDEOCAM_OUTLINED = 0x1209B + VIDEOCAM_ROUNDED = 0x1209C + VIDEOCAM_SHARP = 0x1209D + VIDEOGAME_ASSET = 0x1209E + VIDEOGAME_ASSET_OFF = 0x1209F + VIDEOGAME_ASSET_OFF_OUTLINED = 0x120A0 + VIDEOGAME_ASSET_OFF_ROUNDED = 0x120A1 + VIDEOGAME_ASSET_OFF_SHARP = 0x120A2 + VIDEOGAME_ASSET_OUTLINED = 0x120A3 + VIDEOGAME_ASSET_ROUNDED = 0x120A4 + VIDEOGAME_ASSET_SHARP = 0x120A5 + VIEW_AGENDA = 0x120A6 + VIEW_AGENDA_OUTLINED = 0x120A7 + VIEW_AGENDA_ROUNDED = 0x120A8 + VIEW_AGENDA_SHARP = 0x120A9 + VIEW_ARRAY = 0x120AA + VIEW_ARRAY_OUTLINED = 0x120AB + VIEW_ARRAY_ROUNDED = 0x120AC + VIEW_ARRAY_SHARP = 0x120AD + VIEW_CAROUSEL = 0x120AE + VIEW_CAROUSEL_OUTLINED = 0x120AF + VIEW_CAROUSEL_ROUNDED = 0x120B0 + VIEW_CAROUSEL_SHARP = 0x120B1 + VIEW_COLUMN = 0x120B2 + VIEW_COLUMN_OUTLINED = 0x120B3 + VIEW_COLUMN_ROUNDED = 0x120B4 + VIEW_COLUMN_SHARP = 0x120B5 + VIEW_COMFORTABLE = 0x120B6 + VIEW_COMFORTABLE_OUTLINED = 0x120B7 + VIEW_COMFORTABLE_ROUNDED = 0x120B8 + VIEW_COMFORTABLE_SHARP = 0x120B9 + VIEW_COMFY = 0x120BA + VIEW_COMFY_ALT = 0x120BB + VIEW_COMFY_ALT_OUTLINED = 0x120BC + VIEW_COMFY_ALT_ROUNDED = 0x120BD + VIEW_COMFY_ALT_SHARP = 0x120BE + VIEW_COMFY_OUTLINED = 0x120BF + VIEW_COMFY_ROUNDED = 0x120C0 + VIEW_COMFY_SHARP = 0x120C1 + VIEW_COMPACT = 0x120C2 + VIEW_COMPACT_ALT = 0x120C3 + VIEW_COMPACT_ALT_OUTLINED = 0x120C4 + VIEW_COMPACT_ALT_ROUNDED = 0x120C5 + VIEW_COMPACT_ALT_SHARP = 0x120C6 + VIEW_COMPACT_OUTLINED = 0x120C7 + VIEW_COMPACT_ROUNDED = 0x120C8 + VIEW_COMPACT_SHARP = 0x120C9 + VIEW_COZY = 0x120CA + VIEW_COZY_OUTLINED = 0x120CB + VIEW_COZY_ROUNDED = 0x120CC + VIEW_COZY_SHARP = 0x120CD + VIEW_DAY = 0x120CE + VIEW_DAY_OUTLINED = 0x120CF + VIEW_DAY_ROUNDED = 0x120D0 + VIEW_DAY_SHARP = 0x120D1 + VIEW_HEADLINE = 0x120D2 + VIEW_HEADLINE_OUTLINED = 0x120D3 + VIEW_HEADLINE_ROUNDED = 0x120D4 + VIEW_HEADLINE_SHARP = 0x120D5 + VIEW_IN_AR = 0x120D6 + VIEW_IN_AR_OUTLINED = 0x120D7 + VIEW_IN_AR_ROUNDED = 0x120D8 + VIEW_IN_AR_SHARP = 0x120D9 + VIEW_KANBAN = 0x120DA + VIEW_KANBAN_OUTLINED = 0x120DB + VIEW_KANBAN_ROUNDED = 0x120DC + VIEW_KANBAN_SHARP = 0x120DD + VIEW_LIST = 0x120DE + VIEW_LIST_OUTLINED = 0x120DF + VIEW_LIST_ROUNDED = 0x120E0 + VIEW_LIST_SHARP = 0x120E1 + VIEW_MODULE = 0x120E2 + VIEW_MODULE_OUTLINED = 0x120E3 + VIEW_MODULE_ROUNDED = 0x120E4 + VIEW_MODULE_SHARP = 0x120E5 + VIEW_QUILT = 0x120E6 + VIEW_QUILT_OUTLINED = 0x120E7 + VIEW_QUILT_ROUNDED = 0x120E8 + VIEW_QUILT_SHARP = 0x120E9 + VIEW_SIDEBAR = 0x120EA + VIEW_SIDEBAR_OUTLINED = 0x120EB + VIEW_SIDEBAR_ROUNDED = 0x120EC + VIEW_SIDEBAR_SHARP = 0x120ED + VIEW_STREAM = 0x120EE + VIEW_STREAM_OUTLINED = 0x120EF + VIEW_STREAM_ROUNDED = 0x120F0 + VIEW_STREAM_SHARP = 0x120F1 + VIEW_TIMELINE = 0x120F2 + VIEW_TIMELINE_OUTLINED = 0x120F3 + VIEW_TIMELINE_ROUNDED = 0x120F4 + VIEW_TIMELINE_SHARP = 0x120F5 + VIEW_WEEK = 0x120F6 + VIEW_WEEK_OUTLINED = 0x120F7 + VIEW_WEEK_ROUNDED = 0x120F8 + VIEW_WEEK_SHARP = 0x120F9 + VIGNETTE = 0x120FA + VIGNETTE_OUTLINED = 0x120FB + VIGNETTE_ROUNDED = 0x120FC + VIGNETTE_SHARP = 0x120FD + VILLA = 0x120FE + VILLA_OUTLINED = 0x120FF + VILLA_ROUNDED = 0x12100 + VILLA_SHARP = 0x12101 + VISIBILITY = 0x12102 + VISIBILITY_OFF = 0x12103 + VISIBILITY_OFF_OUTLINED = 0x12104 + VISIBILITY_OFF_ROUNDED = 0x12105 + VISIBILITY_OFF_SHARP = 0x12106 + VISIBILITY_OUTLINED = 0x12107 + VISIBILITY_ROUNDED = 0x12108 + VISIBILITY_SHARP = 0x12109 + VOICE_CHAT = 0x1210A + VOICE_CHAT_OUTLINED = 0x1210B + VOICE_CHAT_ROUNDED = 0x1210C + VOICE_CHAT_SHARP = 0x1210D + VOICE_OVER_OFF = 0x1210E + VOICE_OVER_OFF_OUTLINED = 0x1210F + VOICE_OVER_OFF_ROUNDED = 0x12110 + VOICE_OVER_OFF_SHARP = 0x12111 + VOICEMAIL = 0x12112 + VOICEMAIL_OUTLINED = 0x12113 + VOICEMAIL_ROUNDED = 0x12114 + VOICEMAIL_SHARP = 0x12115 + VOLCANO = 0x12116 + VOLCANO_OUTLINED = 0x12117 + VOLCANO_ROUNDED = 0x12118 + VOLCANO_SHARP = 0x12119 + VOLUME_DOWN = 0x1211A + VOLUME_DOWN_ALT = 0x1211B + VOLUME_DOWN_OUTLINED = 0x1211C + VOLUME_DOWN_ROUNDED = 0x1211D + VOLUME_DOWN_SHARP = 0x1211E + VOLUME_MUTE = 0x1211F + VOLUME_MUTE_OUTLINED = 0x12120 + VOLUME_MUTE_ROUNDED = 0x12121 + VOLUME_MUTE_SHARP = 0x12122 + VOLUME_OFF = 0x12123 + VOLUME_OFF_OUTLINED = 0x12124 + VOLUME_OFF_ROUNDED = 0x12125 + VOLUME_OFF_SHARP = 0x12126 + VOLUME_UP = 0x12127 + VOLUME_UP_OUTLINED = 0x12128 + VOLUME_UP_ROUNDED = 0x12129 + VOLUME_UP_SHARP = 0x1212A + VOLUNTEER_ACTIVISM = 0x1212B + VOLUNTEER_ACTIVISM_OUTLINED = 0x1212C + VOLUNTEER_ACTIVISM_ROUNDED = 0x1212D + VOLUNTEER_ACTIVISM_SHARP = 0x1212E + VPN_KEY = 0x1212F + VPN_KEY_OFF = 0x12130 + VPN_KEY_OFF_OUTLINED = 0x12131 + VPN_KEY_OFF_ROUNDED = 0x12132 + VPN_KEY_OFF_SHARP = 0x12133 + VPN_KEY_OUTLINED = 0x12134 + VPN_KEY_ROUNDED = 0x12135 + VPN_KEY_SHARP = 0x12136 + VPN_LOCK = 0x12137 + VPN_LOCK_OUTLINED = 0x12138 + VPN_LOCK_ROUNDED = 0x12139 + VPN_LOCK_SHARP = 0x1213A + VRPANO = 0x1213B + VRPANO_OUTLINED = 0x1213C + VRPANO_ROUNDED = 0x1213D + VRPANO_SHARP = 0x1213E + WALLET = 0x1213F + WALLET_GIFTCARD = 0x12140 + WALLET_GIFTCARD_OUTLINED = 0x12141 + WALLET_GIFTCARD_ROUNDED = 0x12142 + WALLET_GIFTCARD_SHARP = 0x12143 + WALLET_MEMBERSHIP = 0x12144 + WALLET_MEMBERSHIP_OUTLINED = 0x12145 + WALLET_MEMBERSHIP_ROUNDED = 0x12146 + WALLET_MEMBERSHIP_SHARP = 0x12147 + WALLET_OUTLINED = 0x12148 + WALLET_ROUNDED = 0x12149 + WALLET_SHARP = 0x1214A + WALLET_TRAVEL = 0x1214B + WALLET_TRAVEL_OUTLINED = 0x1214C + WALLET_TRAVEL_ROUNDED = 0x1214D + WALLET_TRAVEL_SHARP = 0x1214E + WALLPAPER = 0x1214F + WALLPAPER_OUTLINED = 0x12150 + WALLPAPER_ROUNDED = 0x12151 + WALLPAPER_SHARP = 0x12152 + WAREHOUSE = 0x12153 + WAREHOUSE_OUTLINED = 0x12154 + WAREHOUSE_ROUNDED = 0x12155 + WAREHOUSE_SHARP = 0x12156 + WARNING = 0x12157 + WARNING_AMBER = 0x12158 + WARNING_AMBER_OUTLINED = 0x12159 + WARNING_AMBER_ROUNDED = 0x1215A + WARNING_AMBER_SHARP = 0x1215B + WARNING_OUTLINED = 0x1215C + WARNING_ROUNDED = 0x1215D + WARNING_SHARP = 0x1215E + WASH = 0x1215F + WASH_OUTLINED = 0x12160 + WASH_ROUNDED = 0x12161 + WASH_SHARP = 0x12162 + WATCH = 0x12163 + WATCH_LATER = 0x12164 + WATCH_LATER_OUTLINED = 0x12165 + WATCH_LATER_ROUNDED = 0x12166 + WATCH_LATER_SHARP = 0x12167 + WATCH_OFF = 0x12168 + WATCH_OFF_OUTLINED = 0x12169 + WATCH_OFF_ROUNDED = 0x1216A + WATCH_OFF_SHARP = 0x1216B + WATCH_OUTLINED = 0x1216C + WATCH_ROUNDED = 0x1216D + WATCH_SHARP = 0x1216E + WATER = 0x1216F + WATER_DAMAGE = 0x12170 + WATER_DAMAGE_OUTLINED = 0x12171 + WATER_DAMAGE_ROUNDED = 0x12172 + WATER_DAMAGE_SHARP = 0x12173 + WATER_DROP = 0x12174 + WATER_DROP_OUTLINED = 0x12175 + WATER_DROP_ROUNDED = 0x12176 + WATER_DROP_SHARP = 0x12177 + WATER_OUTLINED = 0x12178 + WATER_ROUNDED = 0x12179 + WATER_SHARP = 0x1217A + WATERFALL_CHART = 0x1217B + WATERFALL_CHART_OUTLINED = 0x1217C + WATERFALL_CHART_ROUNDED = 0x1217D + WATERFALL_CHART_SHARP = 0x1217E + WAVES = 0x1217F + WAVES_OUTLINED = 0x12180 + WAVES_ROUNDED = 0x12181 + WAVES_SHARP = 0x12182 + WAVING_HAND = 0x12183 + WAVING_HAND_OUTLINED = 0x12184 + WAVING_HAND_ROUNDED = 0x12185 + WAVING_HAND_SHARP = 0x12186 + WB_AUTO = 0x12187 + WB_AUTO_OUTLINED = 0x12188 + WB_AUTO_ROUNDED = 0x12189 + WB_AUTO_SHARP = 0x1218A + WB_CLOUDY = 0x1218B + WB_CLOUDY_OUTLINED = 0x1218C + WB_CLOUDY_ROUNDED = 0x1218D + WB_CLOUDY_SHARP = 0x1218E + WB_INCANDESCENT = 0x1218F + WB_INCANDESCENT_OUTLINED = 0x12190 + WB_INCANDESCENT_ROUNDED = 0x12191 + WB_INCANDESCENT_SHARP = 0x12192 + WB_IRIDESCENT = 0x12193 + WB_IRIDESCENT_OUTLINED = 0x12194 + WB_IRIDESCENT_ROUNDED = 0x12195 + WB_IRIDESCENT_SHARP = 0x12196 + WB_SHADE = 0x12197 + WB_SHADE_OUTLINED = 0x12198 + WB_SHADE_ROUNDED = 0x12199 + WB_SHADE_SHARP = 0x1219A + WB_SUNNY = 0x1219B + WB_SUNNY_OUTLINED = 0x1219C + WB_SUNNY_ROUNDED = 0x1219D + WB_SUNNY_SHARP = 0x1219E + WB_TWIGHLIGHT = 0x1219F + WB_TWILIGHT = 0x121A0 + WB_TWILIGHT_OUTLINED = 0x121A1 + WB_TWILIGHT_ROUNDED = 0x121A2 + WB_TWILIGHT_SHARP = 0x121A3 + WC = 0x121A4 + WC_OUTLINED = 0x121A5 + WC_ROUNDED = 0x121A6 + WC_SHARP = 0x121A7 + WEB = 0x121A8 + WEB_ASSET = 0x121A9 + WEB_ASSET_OFF = 0x121AA + WEB_ASSET_OFF_OUTLINED = 0x121AB + WEB_ASSET_OFF_ROUNDED = 0x121AC + WEB_ASSET_OFF_SHARP = 0x121AD + WEB_ASSET_OUTLINED = 0x121AE + WEB_ASSET_ROUNDED = 0x121AF + WEB_ASSET_SHARP = 0x121B0 + WEB_OUTLINED = 0x121B1 + WEB_ROUNDED = 0x121B2 + WEB_SHARP = 0x121B3 + WEB_STORIES = 0x121B4 + WEB_STORIES_OUTLINED = 0x121B5 + WEB_STORIES_ROUNDED = 0x121B6 + WEB_STORIES_SHARP = 0x121B7 + WEBHOOK = 0x121B8 + WEBHOOK_OUTLINED = 0x121B9 + WEBHOOK_ROUNDED = 0x121BA + WEBHOOK_SHARP = 0x121BB + WECHAT = 0x121BC + WECHAT_OUTLINED = 0x121BD + WECHAT_ROUNDED = 0x121BE + WECHAT_SHARP = 0x121BF + WEEKEND = 0x121C0 + WEEKEND_OUTLINED = 0x121C1 + WEEKEND_ROUNDED = 0x121C2 + WEEKEND_SHARP = 0x121C3 + WEST = 0x121C4 + WEST_OUTLINED = 0x121C5 + WEST_ROUNDED = 0x121C6 + WEST_SHARP = 0x121C7 + WHATSHOT = 0x121C8 + WHATSHOT_OUTLINED = 0x121C9 + WHATSHOT_ROUNDED = 0x121CA + WHATSHOT_SHARP = 0x121CB + WHEELCHAIR_PICKUP = 0x121CC + WHEELCHAIR_PICKUP_OUTLINED = 0x121CD + WHEELCHAIR_PICKUP_ROUNDED = 0x121CE + WHEELCHAIR_PICKUP_SHARP = 0x121CF + WHERE_TO_VOTE = 0x121D0 + WHERE_TO_VOTE_OUTLINED = 0x121D1 + WHERE_TO_VOTE_ROUNDED = 0x121D2 + WHERE_TO_VOTE_SHARP = 0x121D3 + WIDGETS = 0x121D4 + WIDGETS_OUTLINED = 0x121D5 + WIDGETS_ROUNDED = 0x121D6 + WIDGETS_SHARP = 0x121D7 + WIDTH_FULL = 0x121D8 + WIDTH_FULL_OUTLINED = 0x121D9 + WIDTH_FULL_ROUNDED = 0x121DA + WIDTH_FULL_SHARP = 0x121DB + WIDTH_NORMAL = 0x121DC + WIDTH_NORMAL_OUTLINED = 0x121DD + WIDTH_NORMAL_ROUNDED = 0x121DE + WIDTH_NORMAL_SHARP = 0x121DF + WIDTH_WIDE = 0x121E0 + WIDTH_WIDE_OUTLINED = 0x121E1 + WIDTH_WIDE_ROUNDED = 0x121E2 + WIDTH_WIDE_SHARP = 0x121E3 + WIFI = 0x121E4 + WIFI_1_BAR = 0x121E5 + WIFI_1_BAR_OUTLINED = 0x121E6 + WIFI_1_BAR_ROUNDED = 0x121E7 + WIFI_1_BAR_SHARP = 0x121E8 + WIFI_2_BAR = 0x121E9 + WIFI_2_BAR_OUTLINED = 0x121EA + WIFI_2_BAR_ROUNDED = 0x121EB + WIFI_2_BAR_SHARP = 0x121EC + WIFI_CALLING = 0x121ED + WIFI_CALLING_3 = 0x121EE + WIFI_CALLING_3_OUTLINED = 0x121EF + WIFI_CALLING_3_ROUNDED = 0x121F0 + WIFI_CALLING_3_SHARP = 0x121F1 + WIFI_CALLING_OUTLINED = 0x121F2 + WIFI_CALLING_ROUNDED = 0x121F3 + WIFI_CALLING_SHARP = 0x121F4 + WIFI_CHANNEL = 0x121F5 + WIFI_CHANNEL_OUTLINED = 0x121F6 + WIFI_CHANNEL_ROUNDED = 0x121F7 + WIFI_CHANNEL_SHARP = 0x121F8 + WIFI_FIND = 0x121F9 + WIFI_FIND_OUTLINED = 0x121FA + WIFI_FIND_ROUNDED = 0x121FB + WIFI_FIND_SHARP = 0x121FC + WIFI_LOCK = 0x121FD + WIFI_LOCK_OUTLINED = 0x121FE + WIFI_LOCK_ROUNDED = 0x121FF + WIFI_LOCK_SHARP = 0x12200 + WIFI_OFF = 0x12201 + WIFI_OFF_OUTLINED = 0x12202 + WIFI_OFF_ROUNDED = 0x12203 + WIFI_OFF_SHARP = 0x12204 + WIFI_OUTLINED = 0x12205 + WIFI_PASSWORD = 0x12206 + WIFI_PASSWORD_OUTLINED = 0x12207 + WIFI_PASSWORD_ROUNDED = 0x12208 + WIFI_PASSWORD_SHARP = 0x12209 + WIFI_PROTECTED_SETUP = 0x1220A + WIFI_PROTECTED_SETUP_OUTLINED = 0x1220B + WIFI_PROTECTED_SETUP_ROUNDED = 0x1220C + WIFI_PROTECTED_SETUP_SHARP = 0x1220D + WIFI_ROUNDED = 0x1220E + WIFI_SHARP = 0x1220F + WIFI_TETHERING = 0x12210 + WIFI_TETHERING_ERROR = 0x12211 + WIFI_TETHERING_ERROR_OUTLINED = 0x12212 + WIFI_TETHERING_ERROR_ROUNDED = 0x12213 + WIFI_TETHERING_ERROR_ROUNDED_OUTLINED = 0x12214 + WIFI_TETHERING_ERROR_ROUNDED_ROUNDED = 0x12215 + WIFI_TETHERING_ERROR_ROUNDED_SHARP = 0x12216 + WIFI_TETHERING_ERROR_SHARP = 0x12217 + WIFI_TETHERING_OFF = 0x12218 + WIFI_TETHERING_OFF_OUTLINED = 0x12219 + WIFI_TETHERING_OFF_ROUNDED = 0x1221A + WIFI_TETHERING_OFF_SHARP = 0x1221B + WIFI_TETHERING_OUTLINED = 0x1221C + WIFI_TETHERING_ROUNDED = 0x1221D + WIFI_TETHERING_SHARP = 0x1221E + WIND_POWER = 0x1221F + WIND_POWER_OUTLINED = 0x12220 + WIND_POWER_ROUNDED = 0x12221 + WIND_POWER_SHARP = 0x12222 + WINDOW = 0x12223 + WINDOW_OUTLINED = 0x12224 + WINDOW_ROUNDED = 0x12225 + WINDOW_SHARP = 0x12226 + WINE_BAR = 0x12227 + WINE_BAR_OUTLINED = 0x12228 + WINE_BAR_ROUNDED = 0x12229 + WINE_BAR_SHARP = 0x1222A + WOMAN = 0x1222B + WOMAN_2 = 0x1222C + WOMAN_2_OUTLINED = 0x1222D + WOMAN_2_ROUNDED = 0x1222E + WOMAN_2_SHARP = 0x1222F + WOMAN_OUTLINED = 0x12230 + WOMAN_ROUNDED = 0x12231 + WOMAN_SHARP = 0x12232 + WOO_COMMERCE = 0x12233 + WOO_COMMERCE_OUTLINED = 0x12234 + WOO_COMMERCE_ROUNDED = 0x12235 + WOO_COMMERCE_SHARP = 0x12236 + WORDPRESS = 0x12237 + WORDPRESS_OUTLINED = 0x12238 + WORDPRESS_ROUNDED = 0x12239 + WORDPRESS_SHARP = 0x1223A + WORK = 0x1223B + WORK_HISTORY = 0x1223C + WORK_HISTORY_OUTLINED = 0x1223D + WORK_HISTORY_ROUNDED = 0x1223E + WORK_HISTORY_SHARP = 0x1223F + WORK_OFF = 0x12240 + WORK_OFF_OUTLINED = 0x12241 + WORK_OFF_ROUNDED = 0x12242 + WORK_OFF_SHARP = 0x12243 + WORK_OUTLINE = 0x12244 + WORK_OUTLINE_OUTLINED = 0x12245 + WORK_OUTLINE_ROUNDED = 0x12246 + WORK_OUTLINE_SHARP = 0x12247 + WORK_OUTLINED = 0x12248 + WORK_ROUNDED = 0x12249 + WORK_SHARP = 0x1224A + WORKSPACE_PREMIUM = 0x1224B + WORKSPACE_PREMIUM_OUTLINED = 0x1224C + WORKSPACE_PREMIUM_ROUNDED = 0x1224D + WORKSPACE_PREMIUM_SHARP = 0x1224E + WORKSPACES = 0x1224F + WORKSPACES_FILLED = 0x12250 + WORKSPACES_OUTLINE = 0x12251 + WORKSPACES_OUTLINED = 0x12252 + WORKSPACES_ROUNDED = 0x12253 + WORKSPACES_SHARP = 0x12254 + WRAP_TEXT = 0x12255 + WRAP_TEXT_OUTLINED = 0x12256 + WRAP_TEXT_ROUNDED = 0x12257 + WRAP_TEXT_SHARP = 0x12258 + WRONG_LOCATION = 0x12259 + WRONG_LOCATION_OUTLINED = 0x1225A + WRONG_LOCATION_ROUNDED = 0x1225B + WRONG_LOCATION_SHARP = 0x1225C + WYSIWYG = 0x1225D + WYSIWYG_OUTLINED = 0x1225E + WYSIWYG_ROUNDED = 0x1225F + WYSIWYG_SHARP = 0x12260 + YARD = 0x12261 + YARD_OUTLINED = 0x12262 + YARD_ROUNDED = 0x12263 + YARD_SHARP = 0x12264 + YOUTUBE_SEARCHED_FOR = 0x12265 + YOUTUBE_SEARCHED_FOR_OUTLINED = 0x12266 + YOUTUBE_SEARCHED_FOR_ROUNDED = 0x12267 + YOUTUBE_SEARCHED_FOR_SHARP = 0x12268 + ZOOM_IN = 0x12269 + ZOOM_IN_MAP = 0x1226A + ZOOM_IN_MAP_OUTLINED = 0x1226B + ZOOM_IN_MAP_ROUNDED = 0x1226C + ZOOM_IN_MAP_SHARP = 0x1226D + ZOOM_IN_OUTLINED = 0x1226E + ZOOM_IN_ROUNDED = 0x1226F + ZOOM_IN_SHARP = 0x12270 + ZOOM_OUT = 0x12271 + ZOOM_OUT_MAP = 0x12272 + ZOOM_OUT_MAP_OUTLINED = 0x12273 + ZOOM_OUT_MAP_ROUNDED = 0x12274 + ZOOM_OUT_MAP_SHARP = 0x12275 + ZOOM_OUT_OUTLINED = 0x12276 + ZOOM_OUT_ROUNDED = 0x12277 + ZOOM_OUT_SHARP = 0x12278 diff --git a/sdk/python/packages/flet/src/flet/controls/material/list_tile.py b/sdk/python/packages/flet/src/flet/controls/material/list_tile.py index 863622115d..670fb67391 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/list_tile.py +++ b/sdk/python/packages/flet/src/flet/controls/material/list_tile.py @@ -10,7 +10,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, MouseCursor, Number, StrOrControl, @@ -18,7 +18,7 @@ VisualDensity, ) -__all__ = ["ListTile", "ListTileTitleAlignment", "ListTileStyle"] +__all__ = ["ListTile", "ListTileStyle", "ListTileTitleAlignment"] class ListTileTitleAlignment(Enum): @@ -51,10 +51,11 @@ class ListTile(ConstrainedControl, AdaptiveControl): subtitle: Optional[StrOrControl] = None """ - Additional content displayed below the title. - - If [`is_three_line`][flet.ListTile.is_three_line] is `False`, this should not wrap. - If `is_three_line` is `True`, this should be configured to take a maximum of two lines. + Additional content displayed below the title. + + If [`is_three_line`][flet.ListTile.is_three_line] is `False`, this should not wrap. + If `is_three_line` is `True`, this should be configured to take a maximum of two + lines. For example, you can use [`Text.max_lines`][flet.Text.max_lines] to enforce the number of lines. @@ -75,15 +76,15 @@ class ListTile(ConstrainedControl, AdaptiveControl): using [`Text.max_lines`][flet.Text.max_lines]. """ - leading: Optional[IconValueOrControl] = None + leading: Optional[IconDataOrControl] = None """ A control to display before the [`title`][flet.ListTile.title]. """ - trailing: Optional[IconValueOrControl] = None + trailing: Optional[IconDataOrControl] = None """ - A control to display after the [`title`][flet.ListTile.title]. - + A control to display after the [`title`][flet.ListTile.title]. + Typically an [`Icon`][flet.Icon] control. """ @@ -118,8 +119,8 @@ class ListTile(ConstrainedControl, AdaptiveControl): dense: bool = False """ - Whether this list tile is part of a vertically dense list. - + Whether this list tile is part of a vertically dense list. + Dense list tiles default to a smaller height. """ @@ -132,7 +133,7 @@ class ListTile(ConstrainedControl, AdaptiveControl): toggle_inputs: bool = False """ - Whether clicking on a list tile should toggle the state of [`Radio`][flet.Radio], + Whether clicking on a list tile should toggle the state of [`Radio`][flet.Radio], [`Checkbox`][flet.Checkbox] or [`Switch`][flet.Switch] inside this tile. """ @@ -164,8 +165,9 @@ class ListTile(ConstrainedControl, AdaptiveControl): horizontal_spacing: Number = 16.0 """ - The horizontal gap between the `title` and the - [`leading`][flet.ListTile.leading] and [`trailing`][flet.ListTile.trailing] controls. + The horizontal gap between the `title` and the + [`leading`][flet.ListTile.leading] and [`trailing`][flet.ListTile.trailing] + controls. """ min_leading_width: Number = 40.0 @@ -180,8 +182,8 @@ class ListTile(ConstrainedControl, AdaptiveControl): url: Optional[str] = None """ - The URL to open when the list tile is clicked. - + The URL to open when the list tile is clicked. + If registered, [`on_click`][flet.ListTile.on_click] event is called after that. """ @@ -202,13 +204,14 @@ class ListTile(ConstrainedControl, AdaptiveControl): icon_color: Optional[ColorValue] = None """ Defines the default color for the icons - present in [`leading`][flet.ListTile.leading] and [`trailing`][flet.ListTile.trailing]. + present in [`leading`][flet.ListTile.leading] and + [`trailing`][flet.ListTile.trailing]. """ text_color: Optional[ColorValue] = None """ - The color used for - texts in [`title`][flet.ListTile.title], [`subtitle`][flet.ListTile.subtitle], + The color used for + texts in [`title`][flet.ListTile.title], [`subtitle`][flet.ListTile.subtitle], [`leading`][flet.ListTile.leading], and [`trailing`][flet.ListTile.trailing]. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/navigation_bar.py b/sdk/python/packages/flet/src/flet/controls/material/navigation_bar.py index fc98df1343..6e1d9f3137 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/navigation_bar.py +++ b/sdk/python/packages/flet/src/flet/controls/material/navigation_bar.py @@ -12,7 +12,7 @@ from flet.controls.duration import DurationValue from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, ) @@ -39,12 +39,7 @@ class NavigationBarDestination(AdaptiveControl): The value must be a list of two or more NavigationBarDestination instances. """ - label: Optional[str] = None - """ - The text label that appears below the icon of this `NavigationBarDestination`. - """ - - icon: Optional[IconValueOrControl] = None + icon: IconDataOrControl """ The [name of the icon](https://flet.dev/docs/reference/icons) or `Control` of the destination. @@ -66,7 +61,12 @@ class NavigationBarDestination(AdaptiveControl): should be set to the stroked version and `selected_icon` to the filled version. """ - selected_icon: Optional[IconValueOrControl] = None + label: Optional[str] = None + """ + The text label that appears below the icon of this `NavigationBarDestination`. + """ + + selected_icon: Optional[IconDataOrControl] = None """ The [name](https://flet.dev/docs/reference/icons) of alternative icon or `Control` displayed when this destination is selected. diff --git a/sdk/python/packages/flet/src/flet/controls/material/navigation_drawer.py b/sdk/python/packages/flet/src/flet/controls/material/navigation_drawer.py index 16a7e9806e..8ff7b3925c 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/navigation_drawer.py +++ b/sdk/python/packages/flet/src/flet/controls/material/navigation_drawer.py @@ -10,7 +10,7 @@ from flet.controls.padding import PaddingValue from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, ) @@ -32,7 +32,7 @@ class NavigationDrawerDestination(Control): The text label that appears below the icon of this `NavigationDrawerDestination`. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ The [name of the icon](https://flet.dev/docs/reference/icons) or `Control` of the destination. @@ -50,7 +50,7 @@ class NavigationDrawerDestination(Control): not selected. """ - selected_icon: Optional[IconValueOrControl] = None + selected_icon: Optional[IconDataOrControl] = None """ The [name](https://flet.dev/docs/reference/icons) of alternative icon or `Control` displayed when this destination is selected. diff --git a/sdk/python/packages/flet/src/flet/controls/material/navigation_rail.py b/sdk/python/packages/flet/src/flet/controls/material/navigation_rail.py index 468575cd58..3710a520a6 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/navigation_rail.py +++ b/sdk/python/packages/flet/src/flet/controls/material/navigation_rail.py @@ -11,7 +11,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValueOrControl, + IconDataOrControl, Number, StrOrControl, ) @@ -31,7 +31,7 @@ class NavigationRailDestination(Control): TBD """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ The [name of the icon](https://flet.dev/docs/reference/icons) or `Control` of the destination. @@ -44,7 +44,7 @@ class NavigationRailDestination(Control): should be set to the stroked version and `selected_icon` to the filled version. """ - selected_icon: Optional[IconValueOrControl] = None + selected_icon: Optional[IconDataOrControl] = None """ The [name](https://flet.dev/docs/reference/icons) of alternative icon or `Control` displayed when this destination is selected. @@ -232,7 +232,7 @@ class NavigationRail(ConstrainedControl): If `None`, defaults to [`NavigationRailTheme.use_indicator`][flet.NavigationRailTheme.use_indicator]. If that is also `None`, defaults to [`Theme.use_material3`][flet.Theme.use_material3]. - """ + """ # noqa: E501 on_change: Optional[ControlEventHandler["NavigationRail"]] = None """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/outlined_button.py b/sdk/python/packages/flet/src/flet/controls/material/outlined_button.py index c3da8c3fd9..18d686c420 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/outlined_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/outlined_button.py @@ -9,7 +9,7 @@ from flet.controls.types import ( ClipBehavior, ColorValue, - IconValueOrControl, + IconDataOrControl, StrOrControl, UrlTarget, ) @@ -30,7 +30,7 @@ class OutlinedButton(ConstrainedControl, AdaptiveControl): A Control representing custom button content. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ Icon shown in the button. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/popup_menu_button.py b/sdk/python/packages/flet/src/flet/controls/material/popup_menu_button.py index 7a443786b4..5e7e2014c5 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/popup_menu_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/popup_menu_button.py @@ -13,7 +13,7 @@ from flet.controls.types import ( ClipBehavior, ColorValue, - IconValueOrControl, + IconDataOrControl, MouseCursor, Number, StrOrControl, @@ -32,7 +32,7 @@ class PopupMenuItem(Control): A `Control` representing custom content of this menu item. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ An icon to draw before the text label of this menu item. """ @@ -57,10 +57,12 @@ class PopupMenuItem(Control): Defaults to `Padding.symmetric(horizontal=12)`. Note: - The [`height`][flet.PopupMenuItem.height] value of this menu item may influence the applied padding. + The [`height`][flet.PopupMenuItem.height] value of this menu item may + influence the applied padding. - For example, if a `height` greater than the height of the sum of the padding and a - [`content`][flet.PopupMenuItem.content] is provided, then the padding's effect will not be visible. + For example, if a `height` greater than the height of the sum of the padding + and a [`content`][flet.PopupMenuItem.content] is provided, then the padding's + effect will not be visible. """ mouse_cursor: Optional[MouseCursor] = None @@ -91,7 +93,7 @@ class PopupMenuButton(ConstrainedControl): A collection of `PopupMenuItem` controls to display in a dropdown menu. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ If provided, an icon to draw on the button. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/segmented_button.py b/sdk/python/packages/flet/src/flet/controls/material/segmented_button.py index 637f6db812..b395e39458 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/segmented_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/segmented_button.py @@ -9,12 +9,12 @@ from flet.controls.control_event import ControlEventHandler from flet.controls.padding import PaddingValue from flet.controls.types import ( - IconValue, - IconValueOrControl, + IconData, + IconDataOrControl, StrOrControl, ) -__all__ = ["SegmentedButton", "Segment"] +__all__ = ["Segment", "SegmentedButton"] @control("Segment") @@ -31,7 +31,7 @@ class Segment(Control): Used to identify the `Segment`. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ The icon (typically an [`Icon`][flet.Icon]) to be displayed in the segment. @@ -46,7 +46,7 @@ class Segment(Control): def before_update(self): super().before_update() assert ( - (isinstance(self.icon, IconValue)) + (isinstance(self.icon, IconData)) or (isinstance(self.icon, Control) and self.icon.visible) or (isinstance(self.label, str)) or (isinstance(self.label, Control) and self.label.visible) @@ -63,7 +63,7 @@ class SegmentedButton(ConstrainedControl): least one visible `Segment`. AssertionError: If [`selected`][(c).] is empty and [`allow_empty_selection`][(c).] is `False`. AssertionError: If [`selected`][(c).] has more than one item and [`allow_multiple_selection`][(c).] is `False`. - """ + """ # noqa: E501 segments: list[Segment] """ @@ -146,19 +146,20 @@ class SegmentedButton(ConstrainedControl): on_change: Optional[ControlEventHandler["SegmentedButton"]] = None """ Called when the selection changes. - - The [`data`][flet.Event.data] property of the event handler argument + + The [`data`][flet.Event.data] property of the event handler argument contains a list of strings identifying the selected segments. """ def before_update(self): super().before_update() - assert any( - segment.visible for segment in self.segments - ), "segments must have at minimum one visible Segment" - assert ( - len(self.selected) > 0 or self.allow_empty_selection - ), "allow_empty_selection must be True for selected to be empty" - assert ( - len(self.selected) < 2 or self.allow_multiple_selection - ), "allow_multiple_selection must be True for selected to have more than one item" + assert any(segment.visible for segment in self.segments), ( + "segments must have at minimum one visible Segment" + ) + assert len(self.selected) > 0 or self.allow_empty_selection, ( + "allow_empty_selection must be True for selected to be empty" + ) + assert len(self.selected) < 2 or self.allow_multiple_selection, ( + "allow_multiple_selection must be True for selected " + "to have more than one item" + ) diff --git a/sdk/python/packages/flet/src/flet/controls/material/switch.py b/sdk/python/packages/flet/src/flet/controls/material/switch.py index 2383000b91..1d92d104ef 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/switch.py +++ b/sdk/python/packages/flet/src/flet/controls/material/switch.py @@ -9,7 +9,7 @@ from flet.controls.text_style import TextStyle from flet.controls.types import ( ColorValue, - IconValue, + IconData, LabelPosition, MouseCursor, Number, @@ -117,7 +117,7 @@ class Switch(ConstrainedControl, AdaptiveControl): `ControlState.DEFAULT` (fallback). """ - thumb_icon: Optional[ControlStateValue[IconValue]] = None + thumb_icon: Optional[ControlStateValue[IconData]] = None """ The icon of this Switch's thumb in various [`ControlState`][flet.ControlState] states. @@ -141,9 +141,10 @@ class Switch(ConstrainedControl, AdaptiveControl): """ Whether an adaptive Switch should be created based on the target platform. - On iOS and macOS, a [`CupertinoSwitch`][flet.CupertinoSwitch] is created, which has matching - functionality and presentation as `Switch`, and the graphics as expected on - iOS. On other platforms, a Material Switch is created. + On iOS and macOS, a [`CupertinoSwitch`][flet.CupertinoSwitch] is created, + which has matching functionality and presentation as `Switch`, + and the graphics as expected on iOS. On other platforms, + a Material Switch is created. Defaults to `False`. See the example of usage [here](https://flet.dev/docs/controls/cupertinoswitch#cupertinoswitch-and-adaptive-switch). @@ -224,6 +225,7 @@ class Switch(ConstrainedControl, AdaptiveControl): def before_update(self): super().before_update() - assert ( - self.splash_radius is None or self.splash_radius >= 0 - ), f"splash_radius must be greater than or equal to 0, got {self.splash_radius}" + assert self.splash_radius is None or self.splash_radius >= 0, ( + "splash_radius must be greater than or equal to 0, " + f"got {self.splash_radius}" + ) diff --git a/sdk/python/packages/flet/src/flet/controls/material/tabs.py b/sdk/python/packages/flet/src/flet/controls/material/tabs.py index d1dffddb27..b395bf916d 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/tabs.py +++ b/sdk/python/packages/flet/src/flet/controls/material/tabs.py @@ -14,7 +14,7 @@ from flet.controls.control_state import ControlStateValue from flet.controls.duration import Duration, DurationValue from flet.controls.margin import MarginValue -from flet.controls.material.form_field_control import IconValueOrControl +from flet.controls.material.form_field_control import IconDataOrControl from flet.controls.padding import Padding, PaddingValue from flet.controls.text_style import TextStyle from flet.controls.types import ( @@ -570,7 +570,7 @@ class Tab(AdaptiveControl): The tab's name. Can be either a string or a control. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ An icon to display on the left of Tab text. """ diff --git a/sdk/python/packages/flet/src/flet/controls/material/text_button.py b/sdk/python/packages/flet/src/flet/controls/material/text_button.py index 88c4abc21e..a4effef03f 100644 --- a/sdk/python/packages/flet/src/flet/controls/material/text_button.py +++ b/sdk/python/packages/flet/src/flet/controls/material/text_button.py @@ -8,7 +8,7 @@ from flet.controls.types import ( ClipBehavior, ColorValue, - IconValueOrControl, + IconDataOrControl, StrOrControl, UrlTarget, ) @@ -29,7 +29,7 @@ class TextButton(ConstrainedControl, AdaptiveControl): A Control representing custom button content. """ - icon: Optional[IconValueOrControl] = None + icon: Optional[IconDataOrControl] = None """ Icon shown in the button. """ diff --git a/sdk/python/packages/flet/src/flet/controls/theme.py b/sdk/python/packages/flet/src/flet/controls/theme.py index 224f8be70e..048ff0274d 100644 --- a/sdk/python/packages/flet/src/flet/controls/theme.py +++ b/sdk/python/packages/flet/src/flet/controls/theme.py @@ -32,7 +32,7 @@ Brightness, ClipBehavior, ColorValue, - IconValue, + IconData, Locale, MainAxisAlignment, MouseCursor, @@ -1612,7 +1612,7 @@ class SwitchTheme: [`Switch`][flet.Switch] controls. """ - thumb_icon: Optional[ControlStateValue[IconValue]] = None + thumb_icon: Optional[ControlStateValue[IconData]] = None """ Overrides the default value of [`Switch.thumb_icon`][flet.Switch.thumb_icon] in all descendant [`Switch`][flet.Switch] controls. @@ -2959,7 +2959,7 @@ class NavigationBarTheme: @dataclass class SegmentedButtonTheme: - selected_icon: Optional[IconValue] = None + selected_icon: Optional[IconData] = None style: Optional[ButtonStyle] = None diff --git a/sdk/python/packages/flet/src/flet/controls/types.py b/sdk/python/packages/flet/src/flet/controls/types.py index 2911e0e11a..5c8f659895 100644 --- a/sdk/python/packages/flet/src/flet/controls/types.py +++ b/sdk/python/packages/flet/src/flet/controls/types.py @@ -11,8 +11,7 @@ from flet.controls.colors import Colors from flet.controls.cupertino.cupertino_colors import CupertinoColors -from flet.controls.cupertino.cupertino_icons import CupertinoIcons -from flet.controls.material.icons import Icons +from flet.controls.icon_data import IconData if TYPE_CHECKING: from flet.controls.control import Control # noqa @@ -126,7 +125,8 @@ class NotchShape: """ A shape with a notch in its outline. - Typically used as the outline of a 'host' control to make a notch that accommodates a 'guest' control. + Typically used as the outline of a 'host' control to make a notch that + accommodates a 'guest' control. e.g the [`BottomAppBar`][flet.BottomAppBar] may have a notch to accommodate the [`FloatingActionButton`][flet.FloatingActionButton]. @@ -1034,29 +1034,7 @@ class LocaleConfiguration: """ # Icons -IconValue = Union[str, Icons, CupertinoIcons] -"""Type alias for icon values. - -Represents an icon and can be: -- a string (icon name), -- a material icon from the [`Icons`][flet.Icons] enum, -- or a Cupertino icon from the [`CupertinoIcons`][flet.CupertinoIcons] enum. - -/// details | Example - type: example - -```python-repl ->>> import flet as ft ->>> ft.Icons.ABC ->>> ft.CupertinoIcons.BACK ->>> ft.Icons.random() ->>> ft.CupertinoIcons.random() ->>> ft.Icons.random(exclude=[ft.Icons.FAVORITE, ft.Icons.SCHOOL], weights={ft.Icons.SCHOOL: 150, ft.Icons.ADJUST: 5}) ->>> ft.CupertinoIcons.random(exclude=[ft.CupertinoIcons.CAMERA, ft.CupertinoIcons.TABLE], weights={ft.CupertinoIcons.TABLE: 150, ft.CupertinoIcons.PENCIL: 5}) -``` -/// -""" -IconValueOrControl = Union[IconValue, "Control"] +IconDataOrControl = Union[IconData, "Control"] # Content StrOrControl = Union[str, "Control"] diff --git a/sdk/python/packages/flet/src/flet/testing/tester.py b/sdk/python/packages/flet/src/flet/testing/tester.py index cb2a812809..80aed66d2f 100644 --- a/sdk/python/packages/flet/src/flet/testing/tester.py +++ b/sdk/python/packages/flet/src/flet/testing/tester.py @@ -4,7 +4,7 @@ from flet.controls.duration import DurationValue from flet.controls.keys import KeyValue from flet.controls.services.service import Service -from flet.controls.types import IconValue +from flet.controls.types import IconData from flet.testing.finder import Finder __all__ = ["Tester"] @@ -81,7 +81,7 @@ async def find_by_tooltip(self, value: str) -> Finder: finder = await self._invoke_method("find_by_tooltip", {"value": value}) return Finder(**finder) - async def find_by_icon(self, icon: IconValue) -> Finder: + async def find_by_icon(self, icon: IconData) -> Finder: """ Finds controls by an icon. diff --git a/sdk/python/packages/flet/tests/test_icons.py b/sdk/python/packages/flet/tests/test_icons.py index 3e8acc2c4b..fde6281771 100644 --- a/sdk/python/packages/flet/tests/test_icons.py +++ b/sdk/python/packages/flet/tests/test_icons.py @@ -18,10 +18,10 @@ def test_cupertino_icons_random_with_weights_and_exclude(): """Test random cupertino icon selection with weights and exclusion list.""" results = [ ft.CupertinoIcons.random( - exclude=[ft.CupertinoIcons.CAMERA], + exclude=[ft.CupertinoIcons.CAMERA_CIRCLE], weights={ft.CupertinoIcons.TABLE: 150}, ) for _ in range(1000) ] - assert ft.CupertinoIcons.CAMERA not in results + assert ft.CupertinoIcons.CAMERA_CIRCLE not in results assert ft.CupertinoIcons.TABLE in results