From cb441ca687a0c6f29ccb080af63325bd99c85d52 Mon Sep 17 00:00:00 2001 From: Will Chavez Date: Tue, 13 Feb 2024 15:03:49 -0800 Subject: [PATCH 1/3] Creates a file that has a list of all the missing icons in the system icons repo. --- generate_icons_md.py | 48 +- generate_missing_icons_md.py | 50 + missing_icons.md | 5031 ++++++++++++++++++++++++++++++++++ 3 files changed, 5125 insertions(+), 4 deletions(-) create mode 100644 generate_missing_icons_md.py create mode 100644 missing_icons.md diff --git a/generate_icons_md.py b/generate_icons_md.py index 3d9655a198..500af89dc7 100644 --- a/generate_icons_md.py +++ b/generate_icons_md.py @@ -2,15 +2,18 @@ # Licensed under the MIT license. import os + from collections import defaultdict +# Define the icon sizes and styles +icon_sizes = ["12", "16", "20", "24", "28", "32", "48"] +icon_styles = ["regular", "filled"] def to_camel_case(snake_str): components = snake_str.split("_") return components[0] + "".join(x.title() for x in components[1:]) - -def write_file(icons_md, weight_type): +def write_icon_file(icons_md, weight_type): icons_md.write("\n") icons_md.write(f"# {weight_type.title()} Icons\n") icons_md.write("\n") @@ -51,8 +54,45 @@ def write_file(icons_md, weight_type): f'|{"
".join(android_references_by_weight[weight])}|\n' ) +def check_missing_icons(): + missing_icons_dict = {} + for folder in os.listdir("assets"): + svg_dir = os.path.join("assets", folder, "SVG") + if os.path.exists(svg_dir): + icon_name = folder.lower().replace(" ", "_") + for style in icon_styles: + missing_sizes = [] + for size in icon_sizes: + filename = f"ic_fluent_{icon_name}_{size}_{style}.svg" + if not os.path.exists(os.path.join(svg_dir, filename)): + missing_sizes.append(size) + if missing_sizes: + missing_icons_dict.setdefault((folder, style), []).extend(missing_sizes) + + # Convert the dictionary into a list of tuples + missing_icons = [(icon_name, style, ", ".join(sizes)) for (icon_name, style), sizes in missing_icons_dict.items()] + return missing_icons + +# Function to generate Markdown file listing missing icons +def write_missing_icons_file(md_file, missing_icons): + # Sort the missing icons alphabetically by icon name + missing_icons.sort(key=lambda x: x[0]) + + md_file.write("\n") + md_file.write("# Missing Sizes and Styles\n\n") + md_file.write("| Icon Name | Style | Size |\n") + md_file.write("|-----------|-------|------|\n") + for item in missing_icons: + if len(item) == 3: + md_file.write(f"| {item[0]} | {item[1].title()} | {item[2]} |\n") + + with open("icons_filled.md", "w") as icons_filled_md: - write_file(icons_filled_md, "filled") + write_icon_file(icons_filled_md, "filled") with open("icons_regular.md", "w") as icons_regular_md: - write_file(icons_regular_md, "regular") + write_icon_file(icons_regular_md, "regular") + +missing_icons = check_missing_icons() +with open("missing_icons.md", "w") as missing_icons_md: + write_missing_icons_file(missing_icons_md, missing_icons) diff --git a/generate_missing_icons_md.py b/generate_missing_icons_md.py new file mode 100644 index 0000000000..800000f57c --- /dev/null +++ b/generate_missing_icons_md.py @@ -0,0 +1,50 @@ +import os +import re + +# Define the icon sizes and styles +icon_sizes = ["12", "16", "20", "24", "28", "32", "48"] +icon_styles = ["regular", "filled"] + +def check_missing_icons(): + missing_icons_dict = {} + for folder in os.listdir("assets"): + svg_dir = os.path.join("assets", folder, "SVG") + if os.path.exists(svg_dir): + icon_name = folder.lower().replace(" ", "_") + for style in icon_styles: + missing_sizes = [] + for size in icon_sizes: + filename = f"ic_fluent_{icon_name}_{size}_{style}.svg" + if not os.path.exists(os.path.join(svg_dir, filename)): + missing_sizes.append(size) + if missing_sizes: + missing_icons_dict.setdefault((folder, style), []).extend(missing_sizes) + + # Convert the dictionary into a list of tuples + missing_icons = [(icon_name, style, ", ".join(sizes)) for (icon_name, style), sizes in missing_icons_dict.items()] + return missing_icons + + +# Function to generate Markdown file listing missing icons +def generate_missing_icons_md(missing_icons): + # Sort the missing icons alphabetically by icon name + missing_icons.sort(key=lambda x: x[0]) + + with open("missing_icons.md", "w") as md_file: + md_file.write("\n") + md_file.write("# Missing Sizes and Styles\n\n") + md_file.write("| Icon Name | Style | Size |\n") + md_file.write("|-----------|-------|------|\n") + for item in missing_icons: + if len(item) == 3: + md_file.write(f"| {item[0]} | {item[1].title()} | {item[2]} |\n") + + + +# Main function +def main(): + missing_icons = check_missing_icons() + generate_missing_icons_md(missing_icons) + +if __name__ == "__main__": + main() diff --git a/missing_icons.md b/missing_icons.md new file mode 100644 index 0000000000..8df22158cc --- /dev/null +++ b/missing_icons.md @@ -0,0 +1,5031 @@ + +# Missing Sizes and Styles + +| Icon Name | Style | Size | +|-----------|-------|------| +| Access Time | Regular | 12, 16, 28, 32, 48 | +| Access Time | Filled | 12, 16, 28, 32, 48 | +| Accessibility | Regular | 12 | +| Accessibility | Filled | 12 | +| Accessibility Checkmark | Regular | 12, 16 | +| Accessibility Checkmark | Filled | 12, 16 | +| Add Circle | Regular | 48 | +| Add Circle | Filled | 48 | +| Add Square | Regular | 12 | +| Add Square | Filled | 12 | +| Add Square Multiple | Regular | 12, 28, 32, 48 | +| Add Square Multiple | Filled | 12, 28, 32, 48 | +| Add Subtract Circle | Regular | 12, 32 | +| Add Subtract Circle | Filled | 12, 32 | +| Airplane | Regular | 12, 16, 28, 32, 48 | +| Airplane | Filled | 12, 16, 28, 32, 48 | +| Airplane Landing | Regular | 12, 28, 32, 48 | +| Airplane Landing | Filled | 12, 28, 32, 48 | +| Airplane Take Off | Regular | 12, 28, 32, 48 | +| Airplane Take Off | Filled | 12, 28, 32, 48 | +| Album | Regular | 12, 16, 28, 32, 48 | +| Album | Filled | 12, 16, 28, 32, 48 | +| Album Add | Regular | 12, 16, 28, 32, 48 | +| Album Add | Filled | 12, 16, 28, 32, 48 | +| Alert Badge | Regular | 12, 28, 32, 48 | +| Alert Badge | Filled | 12, 28, 32, 48 | +| Alert Off | Regular | 12, 32, 48 | +| Alert Off | Filled | 12, 32, 48 | +| Alert On | Regular | 12, 28, 32, 48 | +| Alert On | Filled | 12, 28, 32, 48 | +| Alert Snooze | Regular | 28, 32, 48 | +| Alert Snooze | Filled | 28, 32, 48 | +| Alert Urgent | Regular | 12, 28, 32, 48 | +| Alert Urgent | Filled | 12, 28, 32, 48 | +| Align Bottom | Regular | 12 | +| Align Bottom | Filled | 12 | +| Align Center Horizontal | Regular | 12 | +| Align Center Horizontal | Filled | 12 | +| Align Center Vertical | Regular | 12 | +| Align Center Vertical | Filled | 12 | +| Align Distribute Bottom | Regular | 12, 20, 24, 28, 32, 48 | +| Align Distribute Bottom | Filled | 12, 20, 24, 28, 32, 48 | +| Align Distribute Left | Regular | 12, 20, 24, 28, 32, 48 | +| Align Distribute Left | Filled | 12, 20, 24, 28, 32, 48 | +| Align Distribute Right | Regular | 12, 20, 24, 28, 32, 48 | +| Align Distribute Right | Filled | 12, 20, 24, 28, 32, 48 | +| Align Distribute Top | Regular | 12, 20, 24, 28, 32, 48 | +| Align Distribute Top | Filled | 12, 20, 24, 28, 32, 48 | +| Align End Horizontal | Regular | 12, 16, 24, 28, 32, 48 | +| Align End Horizontal | Filled | 12, 16, 24, 28, 32, 48 | +| Align End Vertical | Regular | 12, 16, 24, 28, 32, 48 | +| Align End Vertical | Filled | 12, 16, 24, 28, 32, 48 | +| Align Left | Regular | 12 | +| Align Left | Filled | 12 | +| Align Right | Regular | 12 | +| Align Right | Filled | 12 | +| Align Space Around Horizontal | Regular | 12, 16, 24, 28, 32, 48 | +| Align Space Around Horizontal | Filled | 12, 16, 24, 28, 32, 48 | +| Align Space Around Vertical | Regular | 12, 16, 24, 28, 32, 48 | +| Align Space Around Vertical | Filled | 12, 16, 24, 28, 32, 48 | +| Align Space Between Horizontal | Regular | 12, 16, 24, 28, 32, 48 | +| Align Space Between Horizontal | Filled | 12, 16, 24, 28, 32, 48 | +| Align Space Between Vertical | Regular | 12, 16, 24, 28, 32, 48 | +| Align Space Between Vertical | Filled | 12, 16, 24, 28, 32, 48 | +| Align Space Evenly Horizontal | Regular | 12, 16, 28, 32, 48 | +| Align Space Evenly Horizontal | Filled | 12, 16, 28, 32, 48 | +| Align Space Evenly Vertical | Regular | 12, 16, 28, 32, 48 | +| Align Space Evenly Vertical | Filled | 12, 16, 28, 32, 48 | +| Align Space Fit Vertical | Regular | 12, 16, 24, 28, 32, 48 | +| Align Space Fit Vertical | Filled | 12, 16, 24, 28, 32, 48 | +| Align Start Horizontal | Regular | 12, 16, 24, 28, 32, 48 | +| Align Start Horizontal | Filled | 12, 16, 24, 28, 32, 48 | +| Align Start Vertical | Regular | 12, 16, 24, 28, 32, 48 | +| Align Start Vertical | Filled | 12, 16, 24, 28, 32, 48 | +| Align Straighten | Regular | 12, 16, 28, 32, 48 | +| Align Straighten | Filled | 12, 16, 28, 32, 48 | +| Align Stretch Horizontal | Regular | 12, 24, 28, 32, 48 | +| Align Stretch Horizontal | Filled | 12, 24, 28, 32, 48 | +| Align Stretch Vertical | Regular | 12, 24, 28, 32, 48 | +| Align Stretch Vertical | Filled | 12, 24, 28, 32, 48 | +| Align Top | Regular | 12 | +| Align Top | Filled | 12 | +| Animal Cat | Regular | 12, 32, 48 | +| Animal Cat | Filled | 12, 32, 48 | +| Animal Dog | Regular | 12, 28, 32, 48 | +| Animal Dog | Filled | 12, 28, 32, 48 | +| Animal Rabbit | Regular | 12, 48 | +| Animal Rabbit | Filled | 12, 48 | +| Animal Rabbit Off | Regular | 12, 16, 24, 28, 48 | +| Animal Rabbit Off | Filled | 12, 16, 24, 28, 48 | +| Animal Turtle | Regular | 12, 32, 48 | +| Animal Turtle | Filled | 12, 32, 48 | +| App Folder | Regular | 12 | +| App Folder | Filled | 12 | +| App Generic | Regular | 12, 16, 28 | +| App Generic | Filled | 12, 16, 28 | +| App Recent | Regular | 12, 16, 28, 32, 48 | +| App Recent | Filled | 12, 16, 28, 32, 48 | +| App Store | Regular | 12, 16, 20, 28, 32, 48 | +| App Store | Filled | 12, 16, 20, 28, 32, 48 | +| App Title | Regular | 12, 16, 28, 32, 48 | +| App Title | Filled | 12, 16, 28, 32, 48 | +| Approvals App | Regular | 12, 48 | +| Approvals App | Filled | 12, 48 | +| Apps | Regular | 12 | +| Apps | Filled | 12 | +| Apps Add In | Regular | 12, 32, 48 | +| Apps Add In | Filled | 12, 32, 48 | +| Apps List | Regular | 12, 16, 28, 32, 48 | +| Apps List | Filled | 12, 16, 28, 32, 48 | +| Apps List Detail | Regular | 12, 16, 28, 32, 48 | +| Apps List Detail | Filled | 12, 16, 28, 32, 48 | +| Archive | Regular | 12 | +| Archive | Filled | 12 | +| Archive Arrow Back | Regular | 12 | +| Archive Arrow Back | Filled | 12 | +| Archive Multiple | Regular | 12, 28, 32, 48 | +| Archive Multiple | Filled | 12, 28, 32, 48 | +| Archive Settings | Regular | 12, 48 | +| Archive Settings | Filled | 12, 48 | +| Arrow Autofit Content | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Content | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Down | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Down | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Height | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Height | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Height Dotted | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Height Dotted | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Height In | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Height In | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Up | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Up | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Width | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Width | Filled | 12, 16, 28, 32, 48 | +| Arrow Autofit Width Dotted | Regular | 12, 16, 28, 32, 48 | +| Arrow Autofit Width Dotted | Filled | 12, 16, 28, 32, 48 | +| Arrow Between Down | Regular | 12, 16, 28, 32, 48 | +| Arrow Between Down | Filled | 12, 16, 28, 32, 48 | +| Arrow Between Up | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Between Up | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Bidirectional Left Right | Regular | 12, 32, 48 | +| Arrow Bidirectional Left Right | Filled | 12, 32, 48 | +| Arrow Bidirectional Up Down | Regular | 28, 32, 48 | +| Arrow Bidirectional Up Down | Filled | 28, 32, 48 | +| Arrow Bounce | Regular | 12, 28, 32, 48 | +| Arrow Bounce | Filled | 12, 28, 32, 48 | +| Arrow Circle Down Double | Regular | 12, 16, 28, 32, 48 | +| Arrow Circle Down Double | Filled | 12, 16, 28, 32, 48 | +| Arrow Circle Down Right | Regular | 12, 28, 32, 48 | +| Arrow Circle Down Right | Filled | 12, 28, 32, 48 | +| Arrow Circle Down Split | Regular | 12, 16, 28, 32, 48 | +| Arrow Circle Down Split | Filled | 12, 16, 28, 32, 48 | +| Arrow Circle Down Up | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Circle Down Up | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Circle Up Left | Regular | 12, 16, 28, 32, 48 | +| Arrow Circle Up Left | Filled | 12, 16, 28, 32, 48 | +| Arrow Circle Up Right | Regular | 12, 16, 28, 32, 48 | +| Arrow Circle Up Right | Filled | 12, 16, 28, 32, 48 | +| Arrow Clockwise Dashes | Regular | 12, 28, 48 | +| Arrow Clockwise Dashes | Filled | 12, 28, 48 | +| Arrow Collapse All | Regular | 12, 16, 28, 32, 48 | +| Arrow Collapse All | Filled | 12, 16, 28, 32, 48 | +| Arrow Counterclockwise Dashes | Regular | 12, 16, 28, 32, 48 | +| Arrow Counterclockwise Dashes | Filled | 12, 16, 28, 32, 48 | +| Arrow Curve Down Left | Regular | 12, 32, 48 | +| Arrow Curve Down Left | Filled | 12, 32, 48 | +| Arrow Curve Down Right | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Curve Down Right | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Curve Up Left | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Curve Up Left | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Curve Up Right | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Curve Up Right | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Down Exclamation | Regular | 12, 24, 28, 32, 48 | +| Arrow Down Exclamation | Filled | 12, 24, 28, 32, 48 | +| Arrow Down Left | Regular | 12, 28 | +| Arrow Down Left | Filled | 12, 28 | +| Arrow Download | Regular | 12 | +| Arrow Download | Filled | 12 | +| Arrow Download Off | Regular | 12 | +| Arrow Download Off | Filled | 12 | +| Arrow Eject | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Eject | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Enter | Regular | 12, 24, 28, 32, 48 | +| Arrow Enter | Filled | 12, 24, 28, 32, 48 | +| Arrow Enter Left | Regular | 12, 16, 28, 32, 48 | +| Arrow Enter Left | Filled | 12, 16, 28, 32, 48 | +| Arrow Enter Up | Regular | 12, 16, 28, 32, 48 | +| Arrow Enter Up | Filled | 12, 16, 28, 32, 48 | +| Arrow Exit | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Exit | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Expand | Regular | 12, 28, 32, 48 | +| Arrow Expand | Filled | 12, 28, 32, 48 | +| Arrow Export | Regular | 12, 28, 32, 48 | +| Arrow Export | Filled | 12, 28, 32, 48 | +| Arrow Export LTR | Regular | 12, 28, 32, 48 | +| Arrow Export LTR | Filled | 12, 28, 32, 48 | +| Arrow Export RTL | Regular | 12, 28, 32, 48 | +| Arrow Export RTL | Filled | 12, 28, 32, 48 | +| Arrow Export Up | Regular | 12, 28, 32, 48 | +| Arrow Export Up | Filled | 12, 28, 32, 48 | +| Arrow Fit | Regular | 12, 28, 32, 48 | +| Arrow Fit | Filled | 12, 28, 32, 48 | +| Arrow Fit In | Regular | 12, 28, 32, 48 | +| Arrow Fit In | Filled | 12, 28, 32, 48 | +| Arrow Flow Diagonal Up Right | Regular | 12, 28, 48 | +| Arrow Flow Diagonal Up Right | Filled | 12, 28, 48 | +| Arrow Flow Up Right | Regular | 12, 28, 48 | +| Arrow Flow Up Right | Filled | 12, 28, 48 | +| Arrow Flow Up Right Rectangle Multiple | Regular | 12, 16, 28, 32, 48 | +| Arrow Flow Up Right Rectangle Multiple | Filled | 12, 16, 28, 32, 48 | +| Arrow Forward | Regular | 12 | +| Arrow Forward | Filled | 12 | +| Arrow Forward Down Lightning | Regular | 12, 16, 28, 32, 48 | +| Arrow Forward Down Lightning | Filled | 12, 16, 28, 32, 48 | +| Arrow Forward Down Person | Regular | 12, 16, 28, 32, 48 | +| Arrow Forward Down Person | Filled | 12, 16, 28, 32, 48 | +| Arrow Hook Down Left | Regular | 12, 32, 48 | +| Arrow Hook Down Left | Filled | 12, 32, 48 | +| Arrow Hook Down Right | Regular | 12, 32, 48 | +| Arrow Hook Down Right | Filled | 12, 32, 48 | +| Arrow Hook Up Left | Regular | 12, 32, 48 | +| Arrow Hook Up Left | Filled | 12, 32, 48 | +| Arrow Hook Up Right | Regular | 12, 32, 48 | +| Arrow Hook Up Right | Filled | 12, 32, 48 | +| Arrow Import | Regular | 12, 28, 32, 48 | +| Arrow Import | Filled | 12, 28, 32, 48 | +| Arrow Join | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Join | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Maximize | Regular | 12 | +| Arrow Maximize | Filled | 12 | +| Arrow Maximize Vertical | Regular | 12, 16, 28, 32 | +| Arrow Maximize Vertical | Filled | 12, 16, 28, 32 | +| Arrow Minimize | Regular | 12, 32, 48 | +| Arrow Minimize | Filled | 12, 32, 48 | +| Arrow Minimize Vertical | Regular | 12, 16, 28, 32, 48 | +| Arrow Minimize Vertical | Filled | 12, 16, 28, 32, 48 | +| Arrow Move | Regular | 12, 16, 28, 32, 48 | +| Arrow Move | Filled | 12, 16, 28, 32, 48 | +| Arrow Move Inward | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Move Inward | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Next | Regular | 28, 32, 48 | +| Arrow Next | Filled | 28, 32, 48 | +| Arrow Outline Down Left | Regular | 12 | +| Arrow Outline Down Left | Filled | 12 | +| Arrow Outline Up Right | Regular | 12, 16, 28 | +| Arrow Outline Up Right | Filled | 12, 16, 28 | +| Arrow Paragraph | Regular | 12, 28, 32, 48 | +| Arrow Paragraph | Filled | 12, 28, 32, 48 | +| Arrow Previous | Regular | 28, 32, 48 | +| Arrow Previous | Filled | 28, 32, 48 | +| Arrow Redo | Regular | 12 | +| Arrow Redo | Filled | 12 | +| Arrow Redo Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Redo Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Redo Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Redo Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Repeat 1 | Regular | 12, 28, 32, 48 | +| Arrow Repeat 1 | Filled | 12, 28, 32, 48 | +| Arrow Repeat All | Regular | 12, 28, 32, 48 | +| Arrow Repeat All | Filled | 12, 28, 32, 48 | +| Arrow Repeat All Off | Regular | 12, 28, 32, 48 | +| Arrow Repeat All Off | Filled | 12, 28, 32, 48 | +| Arrow Reply | Regular | 12 | +| Arrow Reply | Filled | 12 | +| Arrow Reply All | Regular | 12 | +| Arrow Reply All | Filled | 12 | +| Arrow Reply Down | Regular | 12, 28, 32, 48 | +| Arrow Reply Down | Filled | 12, 28, 32, 48 | +| Arrow Reset | Regular | 12, 16, 28 | +| Arrow Reset | Filled | 12, 16, 28 | +| Arrow Rotate Clockwise | Regular | 12, 28, 32, 48 | +| Arrow Rotate Clockwise | Filled | 12, 28, 32, 48 | +| Arrow Rotate Counterclockwise | Regular | 12, 16, 28, 32, 48 | +| Arrow Rotate Counterclockwise | Filled | 12, 16, 28, 32, 48 | +| Arrow Routing | Regular | 12, 16, 28, 32, 48 | +| Arrow Routing | Filled | 12, 16, 28, 32, 48 | +| Arrow Routing Rectangle Multiple | Regular | 12, 16, 28, 32, 48 | +| Arrow Routing Rectangle Multiple | Filled | 12, 16, 28, 32, 48 | +| Arrow Shuffle | Regular | 12 | +| Arrow Shuffle | Filled | 12 | +| Arrow Shuffle Off | Regular | 12 | +| Arrow Shuffle Off | Filled | 12 | +| Arrow Sort | Regular | 12, 32, 48 | +| Arrow Sort | Filled | 12, 32, 48 | +| Arrow Sort Down | Regular | 12, 28, 32, 48 | +| Arrow Sort Down | Filled | 12, 28, 32, 48 | +| Arrow Sort Down Lines | Regular | 12, 28, 32, 48 | +| Arrow Sort Down Lines | Filled | 12, 28, 32, 48 | +| Arrow Sort Up | Regular | 12, 28, 32, 48 | +| Arrow Sort Up | Filled | 12, 28, 32, 48 | +| Arrow Split | Regular | 12, 28, 32, 48 | +| Arrow Split | Filled | 12, 28, 32, 48 | +| Arrow Sprint | Regular | 12, 24, 28, 32, 48 | +| Arrow Sprint | Filled | 12, 24, 28, 32, 48 | +| Arrow Square Down | Regular | 12, 16, 28, 32, 48 | +| Arrow Square Down | Filled | 12, 16, 28, 32, 48 | +| Arrow Square Up Right | Regular | 12, 16, 28, 32, 48 | +| Arrow Square Up Right | Filled | 12, 16, 28, 32, 48 | +| Arrow Step Back | Regular | 12, 24, 28, 32, 48 | +| Arrow Step Back | Filled | 12, 24, 28, 32, 48 | +| Arrow Step In | Regular | 32, 48 | +| Arrow Step In | Filled | 32, 48 | +| Arrow Step In Diagonal Down Left | Regular | 12, 32, 48 | +| Arrow Step In Diagonal Down Left | Filled | 12, 32, 48 | +| Arrow Step In Left | Regular | 32, 48 | +| Arrow Step In Left | Filled | 32, 48 | +| Arrow Step In Right | Regular | 32, 48 | +| Arrow Step In Right | Filled | 32, 48 | +| Arrow Step Out | Regular | 32, 48 | +| Arrow Step Out | Filled | 32, 48 | +| Arrow Step Over | Regular | 12, 24, 28, 32, 48 | +| Arrow Step Over | Filled | 12, 24, 28, 32, 48 | +| Arrow Swap | Regular | 12, 32, 48 | +| Arrow Swap | Filled | 12, 32, 48 | +| Arrow Sync | Regular | 28, 32, 48 | +| Arrow Sync | Filled | 28, 32, 48 | +| Arrow Sync Checkmark | Regular | 12, 16, 28, 32, 48 | +| Arrow Sync Checkmark | Filled | 12, 16, 28, 32, 48 | +| Arrow Sync Circle | Regular | 12, 28, 32, 48 | +| Arrow Sync Circle | Filled | 12, 28, 32, 48 | +| Arrow Sync Dismiss | Regular | 12, 16, 28, 32, 48 | +| Arrow Sync Dismiss | Filled | 12, 16, 28, 32, 48 | +| Arrow Sync Off | Regular | 24, 28, 32, 48 | +| Arrow Sync Off | Filled | 24, 28, 32, 48 | +| Arrow Trending | Regular | 28, 32, 48 | +| Arrow Trending | Filled | 28, 32, 48 | +| Arrow Trending Checkmark | Regular | 12, 16, 28, 32, 48 | +| Arrow Trending Checkmark | Filled | 12, 16, 28, 32, 48 | +| Arrow Trending Down | Regular | 12, 28, 32, 48 | +| Arrow Trending Down | Filled | 12, 28, 32, 48 | +| Arrow Trending Lines | Regular | 12, 16, 28, 32, 48 | +| Arrow Trending Lines | Filled | 12, 16, 28, 32, 48 | +| Arrow Trending Settings | Regular | 12, 16, 28, 32, 48 | +| Arrow Trending Settings | Filled | 12, 16, 28, 32, 48 | +| Arrow Trending Sparkle | Regular | 12, 16, 28, 32, 48 | +| Arrow Trending Sparkle | Filled | 12, 16, 28, 32, 48 | +| Arrow Trending Text | Regular | 12, 16, 28, 32, 48 | +| Arrow Trending Text | Filled | 12, 16, 28, 32, 48 | +| Arrow Trending Wrench | Regular | 12, 16, 28, 32, 48 | +| Arrow Trending Wrench | Filled | 12, 16, 28, 32, 48 | +| Arrow Turn Bidirectional Down Right | Regular | 12, 16, 28, 32, 48 | +| Arrow Turn Bidirectional Down Right | Filled | 12, 16, 28, 32, 48 | +| Arrow Turn Down Left | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Down Left | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Down Right | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Down Right | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Down Up | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Down Up | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Left Down | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Left Down | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Left Right | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Left Right | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Left Up | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Left Up | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Right | Regular | 12, 16, 28, 32 | +| Arrow Turn Right | Filled | 12, 16, 28, 32 | +| Arrow Turn Right Down | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Right Down | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Right Left | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Right Left | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Right Up | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Right Up | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Up Down | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Up Down | Filled | 12, 16, 24, 28, 32 | +| Arrow Turn Up Left | Regular | 12, 16, 24, 28, 32 | +| Arrow Turn Up Left | Filled | 12, 16, 24, 28, 32 | +| Arrow Undo | Regular | 12 | +| Arrow Undo | Filled | 12 | +| Arrow Undo Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Undo Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Undo Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Undo Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Arrow Up Left | Regular | 12, 28, 32 | +| Arrow Up Left | Filled | 12, 28, 32 | +| Arrow Up Right | Regular | 12, 28 | +| Arrow Up Right | Filled | 12, 28 | +| Arrow Up Right Dashes | Regular | 12, 20, 24, 28, 32, 48 | +| Arrow Up Right Dashes | Filled | 12, 20, 24, 28, 32, 48 | +| Arrow Up Square Settings | Regular | 12, 16, 20, 28, 32, 48 | +| Arrow Up Square Settings | Filled | 12, 16, 20, 28, 32, 48 | +| Arrow Upload | Regular | 12, 28, 32, 48 | +| Arrow Upload | Filled | 12, 28, 32, 48 | +| Arrow Wrap | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Wrap | Filled | 12, 16, 24, 28, 32, 48 | +| Arrow Wrap Off | Regular | 12, 16, 24, 28, 32, 48 | +| Arrow Wrap Off | Filled | 12, 16, 24, 28, 32, 48 | +| Arrows Bidirectional | Regular | 12, 16, 28, 32, 48 | +| Arrows Bidirectional | Filled | 12, 16, 28, 32, 48 | +| Attach | Regular | 28, 48 | +| Attach | Filled | 28, 48 | +| Attach Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Attach Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Attach Text | Regular | 12, 16, 28, 32, 48 | +| Attach Text | Filled | 12, 16, 28, 32, 48 | +| Auto Fit Height | Regular | 12, 16, 28, 32, 48 | +| Auto Fit Height | Filled | 12, 16, 28, 32, 48 | +| Auto Fit Width | Regular | 12, 16, 28, 32, 48 | +| Auto Fit Width | Filled | 12, 16, 28, 32, 48 | +| AutoSum | Regular | 12, 28, 32, 48 | +| AutoSum | Filled | 12, 28, 32, 48 | +| Autocorrect | Regular | 12, 16, 28, 48 | +| Autocorrect | Filled | 12, 16, 28, 48 | +| Backpack Add | Regular | 12, 16, 32 | +| Backpack Add | Filled | 12, 16, 32 | +| Backspace | Regular | 12, 28, 32, 48 | +| Backspace | Filled | 12, 28, 32, 48 | +| Badge | Regular | 12, 16, 28, 32, 48 | +| Badge | Filled | 12, 16, 28, 32, 48 | +| Balloon | Regular | 28, 32, 48 | +| Balloon | Filled | 28, 32, 48 | +| Barcode Scanner | Regular | 12, 16, 28, 32, 48 | +| Barcode Scanner | Filled | 12, 16, 28, 32, 48 | +| Battery 0 | Regular | 12, 16, 28, 32, 48 | +| Battery 0 | Filled | 12, 16, 28, 32, 48 | +| Battery 1 | Regular | 12, 16, 28, 32, 48 | +| Battery 1 | Filled | 12, 16, 28, 32, 48 | +| Battery 10 | Regular | 12, 28, 32, 48 | +| Battery 10 | Filled | 12, 28, 32, 48 | +| Battery 2 | Regular | 12, 16, 28, 32, 48 | +| Battery 2 | Filled | 12, 16, 28, 32, 48 | +| Battery 3 | Regular | 12, 16, 28, 32, 48 | +| Battery 3 | Filled | 12, 16, 28, 32, 48 | +| Battery 4 | Regular | 12, 16, 28, 32, 48 | +| Battery 4 | Filled | 12, 16, 28, 32, 48 | +| Battery 5 | Regular | 12, 16, 28, 32, 48 | +| Battery 5 | Filled | 12, 16, 28, 32, 48 | +| Battery 6 | Regular | 12, 16, 28, 32, 48 | +| Battery 6 | Filled | 12, 16, 28, 32, 48 | +| Battery 7 | Regular | 12, 16, 28, 32, 48 | +| Battery 7 | Filled | 12, 16, 28, 32, 48 | +| Battery 8 | Regular | 12, 16, 28, 32, 48 | +| Battery 8 | Filled | 12, 16, 28, 32, 48 | +| Battery 9 | Regular | 12, 16, 28, 32, 48 | +| Battery 9 | Filled | 12, 16, 28, 32, 48 | +| Battery Charge | Regular | 12, 16, 28, 32, 48 | +| Battery Charge | Filled | 12, 16, 28, 32, 48 | +| Battery Checkmark | Regular | 12, 16, 28, 32, 48 | +| Battery Checkmark | Filled | 12, 16, 28, 32, 48 | +| Battery Saver | Regular | 12, 16, 28, 32, 48 | +| Battery Saver | Filled | 12, 16, 28, 32, 48 | +| Battery Warning | Regular | 12, 16, 28, 32, 48 | +| Battery Warning | Filled | 12, 16, 28, 32, 48 | +| Beach | Regular | 12 | +| Beach | Filled | 12 | +| Beaker | Regular | 12, 28, 48 | +| Beaker | Filled | 12, 28, 48 | +| Beaker Add | Regular | 12, 16, 28, 32, 48 | +| Beaker Add | Filled | 12, 16, 28, 32, 48 | +| Beaker Dismiss | Regular | 12, 16, 28, 32, 48 | +| Beaker Dismiss | Filled | 12, 16, 28, 32, 48 | +| Beaker Edit | Regular | 12, 16, 28, 32, 48 | +| Beaker Edit | Filled | 12, 16, 28, 32, 48 | +| Beaker Empty | Regular | 12, 20, 24, 28, 32, 48 | +| Beaker Empty | Filled | 12, 20, 24, 28, 32, 48 | +| Beaker Off | Regular | 12, 16, 24, 28, 48 | +| Beaker Off | Filled | 12, 16, 24, 28, 48 | +| Beaker Settings | Regular | 12, 24, 28, 32, 48 | +| Beaker Settings | Filled | 12, 24, 28, 32, 48 | +| Bed | Regular | 12, 28, 32, 48 | +| Bed | Filled | 12, 28, 32, 48 | +| Bezier Curve Square | Regular | 16, 24, 28, 32, 48 | +| Bezier Curve Square | Filled | 16, 24, 28, 32, 48 | +| Bin Full | Regular | 12, 16, 28, 32, 48 | +| Bin Full | Filled | 12, 16, 28, 32, 48 | +| Bin Recycle | Regular | 12, 16, 28, 32, 48 | +| Bin Recycle | Filled | 12, 16, 28, 32, 48 | +| Bin Recycle Full | Regular | 12, 16, 28, 32, 48 | +| Bin Recycle Full | Filled | 12, 16, 28, 32, 48 | +| Binder Triangle | Regular | 12, 28, 48 | +| Binder Triangle | Filled | 12, 28, 48 | +| Bluetooth | Regular | 12 | +| Bluetooth | Filled | 12 | +| Bluetooth Connected | Regular | 12, 16, 28, 32, 48 | +| Bluetooth Connected | Filled | 12, 16, 28, 32, 48 | +| Bluetooth Disabled | Regular | 12, 16, 28, 32, 48 | +| Bluetooth Disabled | Filled | 12, 16, 28, 32, 48 | +| Bluetooth Searching | Regular | 12, 16, 28, 32, 48 | +| Bluetooth Searching | Filled | 12, 16, 28, 32, 48 | +| Blur | Regular | 12, 32, 48 | +| Blur | Filled | 12, 32, 48 | +| Board | Regular | 12, 32, 48 | +| Board | Filled | 12, 32, 48 | +| Board Games | Regular | 12, 16, 24, 28, 32, 48 | +| Board Games | Filled | 12, 16, 24, 28, 32, 48 | +| Board Heart | Regular | 12, 28, 32, 48 | +| Board Heart | Filled | 12, 28, 32, 48 | +| Board Split | Regular | 12, 32 | +| Board Split | Filled | 12, 32 | +| Book | Regular | 12, 28, 48 | +| Book | Filled | 12, 28, 48 | +| Book Add | Regular | 12, 16, 32, 48 | +| Book Add | Filled | 12, 16, 32, 48 | +| Book Arrow Clockwise | Regular | 12, 16, 28, 32, 48 | +| Book Arrow Clockwise | Filled | 12, 16, 28, 32, 48 | +| Book Clock | Regular | 12, 16, 28, 32, 48 | +| Book Clock | Filled | 12, 16, 28, 32, 48 | +| Book Coins | Regular | 12, 16, 28, 32, 48 | +| Book Coins | Filled | 12, 16, 28, 32, 48 | +| Book Compass | Regular | 12, 16, 28, 32, 48 | +| Book Compass | Filled | 12, 16, 28, 32, 48 | +| Book Contacts | Regular | 12, 16, 48 | +| Book Contacts | Filled | 12, 16, 48 | +| Book Database | Regular | 12, 28, 48 | +| Book Database | Filled | 12, 28, 48 | +| Book Default | Regular | 12, 16, 20, 24, 32, 48 | +| Book Default | Filled | 12, 16, 24, 32, 48 | +| Book Dismiss | Regular | 12, 24, 28, 32, 48 | +| Book Dismiss | Filled | 12, 24, 28, 32, 48 | +| Book Exclamation Mark | Regular | 12, 16, 28, 32, 48 | +| Book Exclamation Mark | Filled | 12, 16, 28, 32, 48 | +| Book Globe | Regular | 12, 16, 28, 32, 48 | +| Book Globe | Filled | 12, 16, 28, 32, 48 | +| Book Information | Regular | 12, 16, 28, 32, 48 | +| Book Information | Filled | 12, 16, 28, 32, 48 | +| Book Letter | Regular | 12, 16, 28, 32, 48 | +| Book Letter | Filled | 12, 16, 28, 32, 48 | +| Book Number | Regular | 12, 28, 32, 48 | +| Book Number | Filled | 12, 28, 32, 48 | +| Book Open | Regular | 12 | +| Book Open | Filled | 12 | +| Book Open Globe | Regular | 12, 16, 28, 32, 48 | +| Book Open Globe | Filled | 12, 16, 28, 32, 48 | +| Book Open Microphone | Regular | 12, 16 | +| Book Open Microphone | Filled | 12, 16 | +| Book Pulse | Regular | 12, 16, 28, 32, 48 | +| Book Pulse | Filled | 12, 16, 28, 32, 48 | +| Book Question Mark | Regular | 12, 16, 28, 32, 48 | +| Book Question Mark | Filled | 12, 16, 28, 32, 48 | +| Book Question Mark RTL | Regular | 12, 16, 28, 32, 48 | +| Book Question Mark RTL | Filled | 12, 16, 28, 32, 48 | +| Book Search | Regular | 12, 16, 28, 32, 48 | +| Book Search | Filled | 12, 16, 28, 32, 48 | +| Book Star | Regular | 12, 16, 28, 32, 48 | +| Book Star | Filled | 12, 16, 28, 32, 48 | +| Book Template | Regular | 12, 16, 24, 28, 32, 48 | +| Book Template | Filled | 12, 16, 24, 28, 32, 48 | +| Book Theta | Regular | 12, 16, 28, 32, 48 | +| Book Theta | Filled | 12, 16, 28, 32, 48 | +| Book Toolbox | Regular | 12, 28, 32, 48 | +| Book Toolbox | Filled | 12, 28, 32, 48 | +| Bookmark | Regular | 12, 48 | +| Bookmark | Filled | 12, 48 | +| Bookmark Add | Regular | 12, 16, 28, 32, 48 | +| Bookmark Add | Filled | 12, 16, 28, 32, 48 | +| Bookmark Multiple | Regular | 12 | +| Bookmark Multiple | Filled | 12 | +| Bookmark Off | Regular | 12, 16, 28, 32, 48 | +| Bookmark Off | Filled | 12, 16, 28, 32, 48 | +| Bookmark Search | Regular | 12, 16, 28, 32, 48 | +| Bookmark Search | Filled | 12, 16, 28, 32, 48 | +| Border All | Regular | 12, 28, 32, 48 | +| Border All | Filled | 12, 28, 32, 48 | +| Border Bottom | Regular | 12, 16, 28, 32, 48 | +| Border Bottom | Filled | 12, 16, 28, 32, 48 | +| Border Bottom Double | Regular | 12, 16, 28, 32, 48 | +| Border Bottom Double | Filled | 12, 16, 28, 32, 48 | +| Border Bottom Thick | Regular | 12, 16, 28, 32, 48 | +| Border Bottom Thick | Filled | 12, 16, 28, 32, 48 | +| Border Inside | Regular | 12, 28, 32, 48 | +| Border Inside | Filled | 12, 28, 32, 48 | +| Border Left | Regular | 12, 16, 28, 32, 48 | +| Border Left | Filled | 12, 16, 28, 32, 48 | +| Border Left Right | Regular | 12, 16, 28, 32, 48 | +| Border Left Right | Filled | 12, 16, 28, 32, 48 | +| Border None | Regular | 12, 28, 32, 48 | +| Border None | Filled | 12, 28, 32, 48 | +| Border Outside | Regular | 12, 16, 28, 32, 48 | +| Border Outside | Filled | 12, 16, 28, 32, 48 | +| Border Outside Thick | Regular | 12, 16, 28, 32, 48 | +| Border Outside Thick | Filled | 12, 16, 28, 32, 48 | +| Border Right | Regular | 12, 16, 28, 32, 48 | +| Border Right | Filled | 12, 16, 28, 32, 48 | +| Border Top | Regular | 12, 16, 28, 32, 48 | +| Border Top | Filled | 12, 16, 28, 32, 48 | +| Border Top Bottom | Regular | 12, 16, 28, 32, 48 | +| Border Top Bottom | Filled | 12, 16, 28, 32, 48 | +| Border Top Bottom Double | Regular | 12, 16, 28, 32, 48 | +| Border Top Bottom Double | Filled | 12, 16, 28, 32, 48 | +| Border Top Bottom Thick | Regular | 12, 16, 28, 32, 48 | +| Border Top Bottom Thick | Filled | 12, 16, 28, 32, 48 | +| Bot | Regular | 12, 16, 28, 32, 48 | +| Bot | Filled | 12, 16, 28, 32, 48 | +| Bot Add | Regular | 12, 16, 28, 32, 48 | +| Bot Add | Filled | 12, 16, 28, 32, 48 | +| Bot Sparkle | Regular | 12, 16, 28, 32, 48 | +| Bot Sparkle | Filled | 12, 16, 28, 32, 48 | +| Bow Tie | Regular | 12, 16, 28, 32, 48 | +| Bow Tie | Filled | 12, 16, 28, 32, 48 | +| Bowl Chopsticks | Regular | 12, 32, 48 | +| Bowl Chopsticks | Filled | 12, 32, 48 | +| Bowl Salad | Regular | 12, 16, 28, 32, 48 | +| Bowl Salad | Filled | 12, 16, 28, 32, 48 | +| Box | Regular | 12, 28, 32, 48 | +| Box | Filled | 12, 28, 32, 48 | +| Box Arrow Left | Regular | 12, 16, 28, 32, 48 | +| Box Arrow Left | Filled | 12, 16, 28, 32, 48 | +| Box Arrow Up | Regular | 12, 16, 28, 32, 48 | +| Box Arrow Up | Filled | 12, 16, 28, 32, 48 | +| Box Checkmark | Regular | 12, 16, 28, 32, 48 | +| Box Checkmark | Filled | 12, 16, 28, 32, 48 | +| Box Dismiss | Regular | 12, 16, 28, 32, 48 | +| Box Dismiss | Filled | 12, 16, 28, 32, 48 | +| Box Edit | Regular | 12, 16, 28, 32, 48 | +| Box Edit | Filled | 12, 16, 28, 32, 48 | +| Box Multiple | Regular | 12, 16, 28, 32, 48 | +| Box Multiple | Filled | 12, 16, 28, 32, 48 | +| Box Multiple Arrow Left | Regular | 12, 16, 28, 32, 48 | +| Box Multiple Arrow Left | Filled | 12, 16, 28, 32, 48 | +| Box Multiple Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Box Multiple Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Box Multiple Checkmark | Regular | 12, 16, 28, 32, 48 | +| Box Multiple Checkmark | Filled | 12, 16, 28, 32, 48 | +| Box Multiple Search | Regular | 12, 16, 28, 32, 48 | +| Box Multiple Search | Filled | 12, 16, 28, 32, 48 | +| Box Search | Regular | 12, 28, 32, 48 | +| Box Search | Filled | 12, 28, 32, 48 | +| Box Toolbox | Regular | 12, 16, 28, 32, 48 | +| Box Toolbox | Filled | 12, 16, 28, 32, 48 | +| Braces | Regular | 12 | +| Braces | Filled | 12 | +| Braces Checkmark | Regular | 12, 20, 24, 28, 32, 48 | +| Braces Checkmark | Filled | 12, 20, 24, 28, 32, 48 | +| Braces Dismiss | Regular | 12, 20, 24, 28, 32, 48 | +| Braces Dismiss | Filled | 12, 20, 24, 28, 32, 48 | +| Braces Variable | Regular | 12, 16, 28, 32 | +| Braces Variable | Filled | 12, 16, 28, 32 | +| Brain Circuit | Regular | 12, 16, 28, 32, 48 | +| Brain Circuit | Filled | 12, 16, 28, 32, 48 | +| Branch | Regular | 12, 28, 32, 48 | +| Branch | Filled | 12, 28, 32, 48 | +| Branch Compare | Regular | 12, 28, 32, 48 | +| Branch Compare | Filled | 12, 28, 32, 48 | +| Branch Fork | Regular | 12, 28, 48 | +| Branch Fork | Filled | 12, 28, 48 | +| Branch Fork Hint | Regular | 12, 16, 28, 32, 48 | +| Branch Fork Hint | Filled | 12, 16, 28, 32, 48 | +| Branch Fork Link | Regular | 12, 16, 28, 32, 48 | +| Branch Fork Link | Filled | 12, 16, 28, 32, 48 | +| Branch Request | Regular | 12, 24, 28, 32, 48 | +| Branch Request | Filled | 12, 24, 28, 32, 48 | +| Breakout Room | Regular | 12, 16, 32, 48 | +| Breakout Room | Filled | 12, 16, 32, 48 | +| Briefcase Medical | Regular | 12, 28, 48 | +| Briefcase Medical | Filled | 12, 28, 48 | +| Briefcase Off | Regular | 12 | +| Briefcase Off | Filled | 12 | +| Briefcase Person | Regular | 12, 16, 20, 28, 32, 48 | +| Briefcase Person | Filled | 12, 16, 20, 28, 32, 48 | +| Briefcase Search | Regular | 12, 16, 28, 32, 48 | +| Briefcase Search | Filled | 12, 16, 28, 32, 48 | +| Brightness High | Regular | 12 | +| Brightness High | Filled | 12 | +| Brightness Low | Regular | 12 | +| Brightness Low | Filled | 12 | +| Broad Activity Feed | Regular | 12, 28, 32, 48 | +| Broad Activity Feed | Filled | 12, 28, 32, 48 | +| Broom | Regular | 12, 48 | +| Broom | Filled | 12, 48 | +| Bubble Multiple | Regular | 12, 16, 24, 28, 32, 48 | +| Bubble Multiple | Filled | 12, 16, 24, 28, 32, 48 | +| Bug | Regular | 12, 28, 32, 48 | +| Bug | Filled | 12, 28, 32, 48 | +| Bug Arrow Counterclockwise | Regular | 12, 16, 24, 28, 32, 48 | +| Bug Arrow Counterclockwise | Filled | 12, 16, 24, 28, 32, 48 | +| Bug Prohibited | Regular | 12, 16, 24, 28, 32, 48 | +| Bug Prohibited | Filled | 12, 16, 24, 28, 32, 48 | +| Building | Regular | 12, 28 | +| Building | Filled | 12, 28 | +| Building Bank | Regular | 12, 32 | +| Building Bank | Filled | 12, 32 | +| Building Bank Link | Regular | 12, 32 | +| Building Bank Link | Filled | 12, 32 | +| Building Bank Toolbox | Regular | 12, 16, 28, 32, 48 | +| Building Bank Toolbox | Filled | 12, 16, 28, 32, 48 | +| Building Cloud | Regular | 12, 16, 20, 28, 32, 48 | +| Building Cloud | Filled | 12, 16, 20, 28, 32, 48 | +| Building Desktop | Regular | 12, 28, 48 | +| Building Desktop | Filled | 12, 28, 48 | +| Building Factory | Regular | 12 | +| Building Factory | Filled | 12 | +| Building Government | Regular | 12, 28, 48 | +| Building Government | Filled | 12, 28, 48 | +| Building Government Search | Regular | 12, 28, 48 | +| Building Government Search | Filled | 12, 28, 48 | +| Building Home | Regular | 12, 28, 32, 48 | +| Building Home | Filled | 12, 28, 32, 48 | +| Building Lighthouse | Regular | 12, 28 | +| Building Lighthouse | Filled | 12, 28 | +| Building Multiple | Regular | 12, 16, 28, 32, 48 | +| Building Multiple | Filled | 12, 16, 28, 32, 48 | +| Building People | Regular | 12, 28, 32, 48 | +| Building People | Filled | 12, 28, 32, 48 | +| Building Retail | Regular | 12, 16, 28, 32, 48 | +| Building Retail | Filled | 12, 16, 28, 32, 48 | +| Building Retail Money | Regular | 12, 16, 28, 32, 48 | +| Building Retail Money | Filled | 12, 16, 28, 32, 48 | +| Building Retail More | Regular | 12, 16, 28, 48 | +| Building Retail More | Filled | 12, 16, 28, 48 | +| Building Retail Shield | Regular | 12, 16, 28, 32, 48 | +| Building Retail Shield | Filled | 12, 16, 28, 32, 48 | +| Building Retail Toolbox | Regular | 12, 16, 28, 32, 48 | +| Building Retail Toolbox | Filled | 12, 16, 28, 32, 48 | +| Building Shop | Regular | 12, 28, 32, 48 | +| Building Shop | Filled | 12, 28, 32, 48 | +| Building Skyscraper | Regular | 12, 28, 32, 48 | +| Building Skyscraper | Filled | 12, 28, 32, 48 | +| Building Swap | Regular | 12, 28 | +| Building Swap | Filled | 12, 28 | +| Building Townhouse | Regular | 12, 16, 28, 48 | +| Building Townhouse | Filled | 12, 16, 28, 48 | +| Button | Regular | 12, 24, 28, 32, 48 | +| Button | Filled | 12, 24, 28, 32, 48 | +| CD | Regular | 12, 20, 24, 28, 32, 48 | +| CD | Filled | 12, 20, 24, 28, 32, 48 | +| Calculator | Regular | 12, 28, 32, 48 | +| Calculator | Filled | 12, 28, 32, 48 | +| Calculator Arrow Clockwise | Regular | 12, 16, 28, 32, 48 | +| Calculator Arrow Clockwise | Filled | 12, 16, 28, 32, 48 | +| Calculator Multiple | Regular | 12, 28, 32, 48 | +| Calculator Multiple | Filled | 12, 28, 32, 48 | +| Calendar 3 Day | Regular | 12, 32, 48 | +| Calendar 3 Day | Filled | 12, 32, 48 | +| Calendar Add | Regular | 12, 32, 48 | +| Calendar Add | Filled | 12, 32, 48 | +| Calendar Agenda | Regular | 12, 16, 32, 48 | +| Calendar Agenda | Filled | 12, 16, 32, 48 | +| Calendar Arrow Counterclockwise | Regular | 12 | +| Calendar Arrow Counterclockwise | Filled | 12 | +| Calendar Arrow Down | Regular | 12, 16, 28, 32, 48 | +| Calendar Arrow Down | Filled | 12, 16, 28, 32, 48 | +| Calendar Arrow Right | Regular | 12, 28, 32, 48 | +| Calendar Arrow Right | Filled | 12, 28, 32, 48 | +| Calendar Assistant | Regular | 12, 28, 32, 48 | +| Calendar Assistant | Filled | 12, 28, 32, 48 | +| Calendar Cancel | Regular | 12, 28, 32, 48 | +| Calendar Cancel | Filled | 12, 28, 32, 48 | +| Calendar Chat | Regular | 12, 16, 28, 32, 48 | +| Calendar Chat | Filled | 12, 16, 28, 32, 48 | +| Calendar Checkmark | Regular | 12, 32, 48 | +| Calendar Checkmark | Filled | 12, 32, 48 | +| Calendar Clock | Regular | 12, 28, 32, 48 | +| Calendar Clock | Filled | 12, 28, 32, 48 | +| Calendar Data Bar | Regular | 12, 32, 48 | +| Calendar Data Bar | Filled | 12, 32, 48 | +| Calendar Date | Regular | 12, 16, 32, 48 | +| Calendar Date | Filled | 12, 16, 32, 48 | +| Calendar Day | Regular | 12, 32, 48 | +| Calendar Day | Filled | 12, 32, 48 | +| Calendar Edit | Regular | 12, 28, 32, 48 | +| Calendar Edit | Filled | 12, 28, 32, 48 | +| Calendar Empty | Regular | 12 | +| Calendar Empty | Filled | 12 | +| Calendar Error | Regular | 12, 28, 32, 48 | +| Calendar Error | Filled | 12, 28, 32, 48 | +| Calendar Eye | Regular | 12, 16, 24, 28, 32, 48 | +| Calendar Eye | Filled | 12, 16, 24, 28, 32, 48 | +| Calendar Info | Regular | 12, 24, 28, 32, 48 | +| Calendar Info | Filled | 12, 24, 28, 32, 48 | +| Calendar Link | Regular | 12, 16, 20, 32, 48 | +| Calendar Link | Filled | 12, 16, 20, 32, 48 | +| Calendar Lock | Regular | 12 | +| Calendar Lock | Filled | 12 | +| Calendar Mail | Regular | 12, 24, 28, 32, 48 | +| Calendar Mail | Filled | 12, 24, 28, 32, 48 | +| Calendar Mention | Regular | 12, 16, 24, 28, 32, 48 | +| Calendar Mention | Filled | 12, 16, 24, 28, 32, 48 | +| Calendar Month | Regular | 12, 16, 48 | +| Calendar Month | Filled | 12, 16, 48 | +| Calendar Multiple | Regular | 12, 48 | +| Calendar Multiple | Filled | 12, 48 | +| Calendar Note | Regular | 12, 28, 48 | +| Calendar Note | Filled | 12, 28, 48 | +| Calendar Pattern | Regular | 12, 24, 28, 32, 48 | +| Calendar Pattern | Filled | 12, 24, 28, 32, 48 | +| Calendar Person | Regular | 12, 28, 32, 48 | +| Calendar Person | Filled | 12, 28, 32, 48 | +| Calendar Phone | Regular | 12, 24, 28, 32, 48 | +| Calendar Phone | Filled | 12, 24, 28, 32, 48 | +| Calendar Play | Regular | 12, 32, 48 | +| Calendar Play | Filled | 12, 32, 48 | +| Calendar Question Mark | Regular | 12, 28, 32, 48 | +| Calendar Question Mark | Filled | 12, 28, 32, 48 | +| Calendar Record | Regular | 12 | +| Calendar Record | Filled | 12 | +| Calendar Reply | Regular | 12, 32, 48 | +| Calendar Reply | Filled | 12, 32, 48 | +| Calendar Search | Regular | 12, 24, 28, 32, 48 | +| Calendar Search | Filled | 12, 24, 28, 32, 48 | +| Calendar Settings | Regular | 12 | +| Calendar Settings | Filled | 12 | +| Calendar Shield | Regular | 12 | +| Calendar Shield | Filled | 12 | +| Calendar Sparkle | Regular | 12 | +| Calendar Sparkle | Filled | 12 | +| Calendar Star | Regular | 12, 28, 32, 48 | +| Calendar Star | Filled | 12, 28, 32, 48 | +| Calendar Sync | Regular | 12, 28, 32, 48 | +| Calendar Sync | Filled | 12, 28, 32, 48 | +| Calendar Template | Regular | 12, 16, 28, 48 | +| Calendar Template | Filled | 12, 16, 28, 48 | +| Calendar Today | Regular | 12, 32, 48 | +| Calendar Today | Filled | 12, 32, 48 | +| Calendar Toolbox | Regular | 12, 16, 28, 32, 48 | +| Calendar Toolbox | Filled | 12, 16, 28, 32, 48 | +| Calendar Video | Regular | 12, 16, 20, 32, 48 | +| Calendar Video | Filled | 12, 16, 20, 32, 48 | +| Calendar Week Numbers | Regular | 12, 16, 28, 32, 48 | +| Calendar Week Numbers | Filled | 12, 16, 28, 32, 48 | +| Calendar Week Start | Regular | 12, 16, 32, 48 | +| Calendar Week Start | Filled | 12, 16, 32, 48 | +| Calendar Work Week | Regular | 12, 32, 48 | +| Calendar Work Week | Filled | 12, 32, 48 | +| Call Add | Regular | 12, 28, 32, 48 | +| Call Add | Filled | 12, 28, 32, 48 | +| Call Checkmark | Regular | 12, 16, 28, 32, 48 | +| Call Checkmark | Filled | 12, 16, 28, 32, 48 | +| Call Connecting | Regular | 12, 16, 24, 28, 32, 48 | +| Call Connecting | Filled | 12, 16, 24, 28, 32, 48 | +| Call Dismiss | Regular | 12, 28, 32, 48 | +| Call Dismiss | Filled | 12, 28, 32, 48 | +| Call Exclamation | Regular | 12, 16, 24, 28, 32, 48 | +| Call Exclamation | Filled | 12, 16, 24, 28, 32, 48 | +| Call Forward | Regular | 12 | +| Call Forward | Filled | 12 | +| Call Inbound | Regular | 12, 32 | +| Call Inbound | Filled | 12, 32 | +| Call Missed | Regular | 32 | +| Call Missed | Filled | 32 | +| Call Outbound | Regular | 12, 32 | +| Call Outbound | Filled | 12, 32 | +| Call Park | Regular | 12 | +| Call Park | Filled | 12 | +| Call Pause | Regular | 12, 16, 28, 32, 48 | +| Call Pause | Filled | 12, 16, 28, 32, 48 | +| Call Prohibited | Regular | 12, 32 | +| Call Prohibited | Filled | 12, 32 | +| Call Transfer | Regular | 12, 28, 48 | +| Call Transfer | Filled | 12, 28, 48 | +| Call Warning | Regular | 12, 24, 28, 32, 48 | +| Call Warning | Filled | 12, 24, 28, 32, 48 | +| Calligraphy Pen | Regular | 12, 16, 28, 32, 48 | +| Calligraphy Pen | Filled | 12, 16, 28, 32, 48 | +| Calligraphy Pen Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Calligraphy Pen Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Calligraphy Pen Error | Regular | 12, 16, 24, 28, 32, 48 | +| Calligraphy Pen Error | Filled | 12, 16, 24, 28, 32, 48 | +| Calligraphy Pen Question Mark | Regular | 12, 16, 24, 28, 32, 48 | +| Calligraphy Pen Question Mark | Filled | 12, 16, 24, 28, 32, 48 | +| Camera | Regular | 12, 32, 48 | +| Camera | Filled | 12, 32, 48 | +| Camera Add | Regular | 12, 16, 28, 32 | +| Camera Add | Filled | 12, 16, 28, 32 | +| Camera Dome | Regular | 12, 32 | +| Camera Dome | Filled | 12, 32 | +| Camera Edit | Regular | 12, 16, 24, 28, 32, 48 | +| Camera Edit | Filled | 12, 16, 24, 28, 32, 48 | +| Camera Off | Regular | 12, 28, 32, 48 | +| Camera Off | Filled | 12, 28, 32, 48 | +| Camera Sparkles | Regular | 12, 28, 32, 48 | +| Camera Sparkles | Filled | 12, 28, 32, 48 | +| Camera Switch | Regular | 12, 16, 28, 32, 48 | +| Camera Switch | Filled | 12, 16, 28, 32, 48 | +| Card UI | Regular | 12, 16, 28, 32, 48 | +| Card UI | Filled | 12, 16, 28, 32, 48 | +| Caret Down | Regular | 28, 32, 48 | +| Caret Down | Filled | 28, 32, 48 | +| Caret Down Right | Regular | 28, 32, 48 | +| Caret Down Right | Filled | 28, 32, 48 | +| Caret Left | Regular | 28, 32, 48 | +| Caret Left | Filled | 28, 32, 48 | +| Caret Right | Regular | 28, 32, 48 | +| Caret Right | Filled | 28, 32, 48 | +| Caret Up | Regular | 28, 32, 48 | +| Caret Up | Filled | 28, 32, 48 | +| Cart | Regular | 12, 28, 32, 48 | +| Cart | Filled | 12, 28, 32, 48 | +| Cast | Regular | 12, 16, 32, 48 | +| Cast | Filled | 12, 16, 32, 48 | +| Cast Multiple | Regular | 12, 16, 32, 48 | +| Cast Multiple | Filled | 12, 16, 32, 48 | +| Catch Up | Regular | 12, 28, 32, 48 | +| Catch Up | Filled | 12, 28, 32, 48 | +| Cellular 3G | Regular | 12, 16, 28, 32, 48 | +| Cellular 3G | Filled | 12, 16, 28, 32, 48 | +| Cellular 4G | Regular | 12, 16, 28, 32, 48 | +| Cellular 4G | Filled | 12, 16, 28, 32, 48 | +| Cellular 5G | Regular | 12, 16, 28, 32, 48 | +| Cellular 5G | Filled | 12, 16, 28, 32, 48 | +| Cellular Data 1 | Regular | 12, 16, 28, 32, 48 | +| Cellular Data 1 | Filled | 12, 16, 28, 32, 48 | +| Cellular Data 2 | Regular | 12, 16, 28, 32, 48 | +| Cellular Data 2 | Filled | 12, 16, 28, 32, 48 | +| Cellular Data 3 | Regular | 12, 16, 28, 32, 48 | +| Cellular Data 3 | Filled | 12, 16, 28, 32, 48 | +| Cellular Data 4 | Regular | 12, 16, 28, 32, 48 | +| Cellular Data 4 | Filled | 12, 16, 28, 32, 48 | +| Cellular Data 5 | Regular | 12, 16, 28, 32, 48 | +| Cellular Data 5 | Filled | 12, 16, 28, 32, 48 | +| Cellular Off | Regular | 12, 16, 28, 32, 48 | +| Cellular Off | Filled | 12, 16, 28, 32, 48 | +| Cellular Warning | Regular | 12, 16, 28, 32, 48 | +| Cellular Warning | Filled | 12, 16, 28, 32, 48 | +| Center Horizontal | Regular | 12, 16, 28, 32, 48 | +| Center Horizontal | Filled | 12, 16, 28, 32, 48 | +| Center Vertical | Regular | 12, 16, 28, 32, 48 | +| Center Vertical | Filled | 12, 16, 28, 32, 48 | +| Certificate | Regular | 12, 28, 48 | +| Certificate | Filled | 12, 28, 48 | +| Channel | Regular | 12, 32 | +| Channel | Filled | 12, 32 | +| Channel Add | Regular | 12, 32 | +| Channel Add | Filled | 12, 32 | +| Channel Alert | Regular | 12, 32 | +| Channel Alert | Filled | 12, 32 | +| Channel Arrow Left | Regular | 12, 32 | +| Channel Arrow Left | Filled | 12, 32 | +| Channel Dismiss | Regular | 12, 32 | +| Channel Dismiss | Filled | 12, 32 | +| Channel Share | Regular | 32 | +| Channel Share | Filled | 32 | +| Channel Subtract | Regular | 12, 32 | +| Channel Subtract | Filled | 12, 32 | +| Chart Multiple | Regular | 12, 16, 28, 32, 48 | +| Chart Multiple | Filled | 12, 16, 28, 32, 48 | +| Chart Person | Regular | 12, 16, 32 | +| Chart Person | Filled | 12, 16, 32 | +| Chat Add | Regular | 12 | +| Chat Add | Filled | 12 | +| Chat Arrow Back | Regular | 12, 24, 28, 32, 48 | +| Chat Arrow Back | Filled | 12, 24, 28, 32, 48 | +| Chat Arrow Double Back | Regular | 12, 24, 28, 32, 48 | +| Chat Arrow Double Back | Filled | 12, 24, 28, 32, 48 | +| Chat Bubbles Question | Regular | 12, 48 | +| Chat Bubbles Question | Filled | 12, 48 | +| Chat Cursor | Regular | 12, 28, 32, 48 | +| Chat Cursor | Filled | 12, 28, 32, 48 | +| Chat Dismiss | Regular | 12, 28, 32, 48 | +| Chat Dismiss | Filled | 12, 28, 32, 48 | +| Chat Help | Regular | 12, 16, 28, 32, 48 | +| Chat Help | Filled | 12, 16, 28, 32, 48 | +| Chat Lock | Regular | 12, 32, 48 | +| Chat Lock | Filled | 12, 32, 48 | +| Chat Mail | Regular | 12, 16, 24, 28, 32, 48 | +| Chat Mail | Filled | 12, 16, 24, 28, 32, 48 | +| Chat Multiple | Regular | 12, 48 | +| Chat Multiple | Filled | 12, 48 | +| Chat Multiple Heart | Regular | 12, 48 | +| Chat Multiple Heart | Filled | 12, 48 | +| Chat Off | Regular | 12, 16, 28, 32, 48 | +| Chat Off | Filled | 12, 16, 28, 32, 48 | +| Chat Settings | Regular | 12, 16, 28, 32, 48 | +| Chat Settings | Filled | 12, 16, 28, 32, 48 | +| Chat Sparkle | Regular | 12 | +| Chat Sparkle | Filled | 12 | +| Chat Video | Regular | 12, 16, 28, 32, 48 | +| Chat Video | Filled | 12, 16, 28, 32, 48 | +| Chat Warning | Regular | 12, 28, 32, 48 | +| Chat Warning | Filled | 12, 28, 32, 48 | +| Check | Regular | 12, 16, 28, 32, 48 | +| Check | Filled | 12, 16, 28, 32, 48 | +| Checkbox 1 | Regular | 12, 16, 28, 32, 48 | +| Checkbox 1 | Filled | 12, 16, 28, 32, 48 | +| Checkbox 2 | Regular | 12, 16, 28, 32, 48 | +| Checkbox 2 | Filled | 12, 16, 28, 32, 48 | +| Checkbox Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Checkbox Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Checkbox Checked | Regular | 12, 28, 32, 48 | +| Checkbox Checked | Filled | 12, 28, 32, 48 | +| Checkbox Checked Sync | Regular | 12, 24, 28, 32, 48 | +| Checkbox Checked Sync | Filled | 12, 24, 28, 32, 48 | +| Checkbox Indeterminate | Regular | 12, 28, 32, 48 | +| Checkbox Indeterminate | Filled | 12, 28, 32, 48 | +| Checkbox Person | Regular | 12, 28, 32, 48 | +| Checkbox Person | Filled | 12, 28, 32, 48 | +| Checkbox Unchecked | Regular | 28, 32, 48 | +| Checkbox Unchecked | Filled | 28, 32, 48 | +| Checkbox Warning | Regular | 12, 16, 28, 32, 48 | +| Checkbox Warning | Filled | 12, 16, 28, 32, 48 | +| Checkmark Circle | Regular | 28 | +| Checkmark Circle | Filled | 28 | +| Checkmark Circle Square | Regular | 12, 28, 32, 48 | +| Checkmark Circle Square | Filled | 12, 28, 32, 48 | +| Checkmark Lock | Regular | 12, 28, 32, 48 | +| Checkmark Lock | Filled | 12, 28, 32, 48 | +| Checkmark Note | Regular | 12, 16, 24, 28, 32, 48 | +| Checkmark Note | Filled | 12, 16, 24, 28, 32, 48 | +| Checkmark Square | Regular | 12, 16, 28, 32, 48 | +| Checkmark Square | Filled | 12, 16, 28, 32, 48 | +| Checkmark Starburst | Regular | 12, 28, 32, 48 | +| Checkmark Starburst | Filled | 12, 28, 32, 48 | +| Checkmark Underline Circle | Regular | 12, 28, 32, 48 | +| Checkmark Underline Circle | Filled | 12, 28, 32, 48 | +| Chess | Regular | 12, 16, 24, 28, 32, 48 | +| Chess | Filled | 12, 16, 24, 28, 32, 48 | +| Chevron Double Down | Regular | 12, 24, 28, 32, 48 | +| Chevron Double Down | Filled | 12, 24, 28, 32, 48 | +| Chevron Double Left | Regular | 12, 24, 28, 32, 48 | +| Chevron Double Left | Filled | 12, 24, 28, 32, 48 | +| Chevron Double Right | Regular | 12, 24, 28, 32, 48 | +| Chevron Double Right | Filled | 12, 24, 28, 32, 48 | +| Chevron Double Up | Regular | 12, 24, 28, 32, 48 | +| Chevron Double Up | Filled | 12, 24, 28, 32, 48 | +| Chevron Down Up | Regular | 12, 28, 32, 48 | +| Chevron Down Up | Filled | 12, 28, 32, 48 | +| Chevron Up Down | Regular | 12, 28, 32, 48 | +| Chevron Up Down | Filled | 12, 28, 32, 48 | +| Circle Edit | Regular | 12, 16, 28, 32, 48 | +| Circle Edit | Filled | 12, 16, 28, 32, 48 | +| Circle Eraser | Regular | 12, 16, 24, 28, 32, 48 | +| Circle Eraser | Filled | 12, 16, 24, 28, 32, 48 | +| Circle Half Fill | Regular | 28, 32, 48 | +| Circle Half Fill | Filled | 28, 32, 48 | +| Circle Hint | Regular | 12, 24, 28, 32, 48 | +| Circle Hint | Filled | 12, 24, 28, 32, 48 | +| Circle Hint Half Vertical | Regular | 12, 28, 32, 48 | +| Circle Hint Half Vertical | Filled | 12, 28, 32, 48 | +| Circle Image | Regular | 12, 32, 48 | +| Circle Image | Filled | 12, 32, 48 | +| Circle Line | Regular | 28, 32, 48 | +| Circle Line | Filled | 28, 32, 48 | +| Circle Multiple Subtract Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Circle Multiple Subtract Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Circle Off | Regular | 12, 24, 28, 32, 48 | +| Circle Off | Filled | 12, 24, 28, 32, 48 | +| Circle Small | Regular | 12, 16, 28, 32, 48 | +| Circle Small | Filled | 12, 16, 28, 32, 48 | +| City | Regular | 12, 28, 32, 48 | +| City | Filled | 12, 28, 32, 48 | +| Class | Regular | 12, 16, 28, 32, 48 | +| Class | Filled | 12, 16, 28, 32, 48 | +| Classification | Regular | 12, 28, 32, 48 | +| Classification | Filled | 12, 28, 32, 48 | +| Clear Formatting | Regular | 12, 28, 32, 48 | +| Clear Formatting | Filled | 12, 28, 32, 48 | +| Clipboard 3 Day | Regular | 12, 28, 32, 48 | +| Clipboard 3 Day | Filled | 12, 28, 32, 48 | +| Clipboard Arrow Right | Regular | 12, 28, 32, 48 | +| Clipboard Arrow Right | Filled | 12, 28, 32, 48 | +| Clipboard Brush | Regular | 12, 48 | +| Clipboard Brush | Filled | 12, 48 | +| Clipboard Bullet List | Regular | 12, 24, 28, 32, 48 | +| Clipboard Bullet List | Filled | 12, 24, 28, 32, 48 | +| Clipboard Bullet List LTR | Regular | 12, 24, 28, 32, 48 | +| Clipboard Bullet List LTR | Filled | 12, 24, 28, 32, 48 | +| Clipboard Bullet List RTL | Regular | 12, 24, 28, 32, 48 | +| Clipboard Bullet List RTL | Filled | 12, 24, 28, 32, 48 | +| Clipboard Checkmark | Regular | 12, 28, 32, 48 | +| Clipboard Checkmark | Filled | 12, 28, 32, 48 | +| Clipboard Clock | Regular | 12, 16, 28, 32, 48 | +| Clipboard Clock | Filled | 12, 16, 28, 32, 48 | +| Clipboard Code | Regular | 12, 28, 32, 48 | +| Clipboard Code | Filled | 12, 28, 32, 48 | +| Clipboard Data Bar | Regular | 12, 16, 28, 48 | +| Clipboard Data Bar | Filled | 12, 16, 28, 48 | +| Clipboard Day | Regular | 12, 28, 32, 48 | +| Clipboard Day | Filled | 12, 28, 32, 48 | +| Clipboard Edit | Regular | 12, 16, 24, 28, 32, 48 | +| Clipboard Edit | Filled | 12, 16, 24, 28, 32, 48 | +| Clipboard Error | Regular | 12, 28, 32, 48 | +| Clipboard Error | Filled | 12, 28, 32, 48 | +| Clipboard Heart | Regular | 12, 16, 28, 32, 48 | +| Clipboard Heart | Filled | 12, 16, 28, 32, 48 | +| Clipboard Image | Regular | 12, 16, 28, 32, 48 | +| Clipboard Image | Filled | 12, 16, 28, 32, 48 | +| Clipboard Letter | Regular | 12, 28, 32, 48 | +| Clipboard Letter | Filled | 12, 28, 32, 48 | +| Clipboard Link | Regular | 12, 28, 32, 48 | +| Clipboard Link | Filled | 12, 28, 32, 48 | +| Clipboard Math Formula | Regular | 12, 48 | +| Clipboard Math Formula | Filled | 12, 48 | +| Clipboard Month | Regular | 12, 28, 32, 48 | +| Clipboard Month | Filled | 12, 28, 32, 48 | +| Clipboard More | Regular | 12, 16, 28, 32, 48 | +| Clipboard More | Filled | 12, 16, 28, 32, 48 | +| Clipboard Multiple | Regular | 12, 20, 24, 28, 32, 48 | +| Clipboard Multiple | Filled | 12, 20, 24, 28, 32, 48 | +| Clipboard Note | Regular | 12, 24, 28, 32, 48 | +| Clipboard Note | Filled | 12, 24, 28, 32, 48 | +| Clipboard Number 123 | Regular | 12, 48 | +| Clipboard Number 123 | Filled | 12, 48 | +| Clipboard Paste | Regular | 12, 28, 48 | +| Clipboard Paste | Filled | 12, 28, 48 | +| Clipboard Pulse | Regular | 12, 16, 28, 32, 48 | +| Clipboard Pulse | Filled | 12, 16, 28, 32, 48 | +| Clipboard Search | Regular | 12, 16, 28, 32, 48 | +| Clipboard Search | Filled | 12, 16, 28, 32, 48 | +| Clipboard Settings | Regular | 12, 16, 28, 32, 48 | +| Clipboard Settings | Filled | 12, 16, 28, 32, 48 | +| Clipboard Task | Regular | 12, 28, 32, 48 | +| Clipboard Task | Filled | 12, 28, 32, 48 | +| Clipboard Task Add | Regular | 12, 16, 28, 32, 48 | +| Clipboard Task Add | Filled | 12, 16, 28, 32, 48 | +| Clipboard Task List | Regular | 12, 20, 24, 28, 32, 48 | +| Clipboard Task List | Filled | 12, 20, 24, 28, 32, 48 | +| Clipboard Task List LTR | Regular | 12, 16, 28, 32, 48 | +| Clipboard Task List LTR | Filled | 12, 16, 28, 32, 48 | +| Clipboard Task List RTL | Regular | 12, 16, 28, 32, 48 | +| Clipboard Task List RTL | Filled | 12, 16, 28, 32, 48 | +| Clipboard Text | Regular | 12, 16, 20, 24, 28, 48 | +| Clipboard Text | Filled | 12, 16, 20, 24, 28, 48 | +| Clipboard Text Edit | Regular | 12, 16, 28, 48 | +| Clipboard Text Edit | Filled | 12, 16, 28, 48 | +| Clipboard Text LTR | Regular | 12, 28, 48 | +| Clipboard Text LTR | Filled | 12, 28, 48 | +| Clipboard Text RTL | Regular | 12, 28, 32, 48 | +| Clipboard Text RTL | Filled | 12, 28, 32, 48 | +| Clock Alarm | Regular | 12, 28, 48 | +| Clock Alarm | Filled | 12, 28, 48 | +| Clock Arrow Download | Regular | 12, 16, 28, 32, 48 | +| Clock Arrow Download | Filled | 12, 16, 28, 32, 48 | +| Clock Dismiss | Regular | 12, 16, 28, 32, 48 | +| Clock Dismiss | Filled | 12, 16, 28, 32, 48 | +| Clock Lock | Regular | 12, 28, 32, 48 | +| Clock Lock | Filled | 12, 28, 32, 48 | +| Clock Pause | Regular | 12, 16, 28, 32, 48 | +| Clock Pause | Filled | 12, 16, 28, 32, 48 | +| Clock Toolbox | Regular | 12, 16, 28, 32, 48 | +| Clock Toolbox | Filled | 12, 16, 28, 32, 48 | +| Closed Caption | Regular | 12 | +| Closed Caption | Filled | 12 | +| Closed Caption Off | Regular | 12, 32 | +| Closed Caption Off | Filled | 12, 32 | +| Cloud | Regular | 12 | +| Cloud | Filled | 12 | +| Cloud Add | Regular | 12, 28, 32, 48 | +| Cloud Add | Filled | 12, 28, 32, 48 | +| Cloud Archive | Regular | 12 | +| Cloud Archive | Filled | 12 | +| Cloud Arrow Down | Regular | 12 | +| Cloud Arrow Down | Filled | 12 | +| Cloud Arrow Up | Regular | 12 | +| Cloud Arrow Up | Filled | 12 | +| Cloud Beaker | Regular | 12 | +| Cloud Beaker | Filled | 12 | +| Cloud Bidirectional | Regular | 12, 16, 28, 32, 48 | +| Cloud Bidirectional | Filled | 12, 16, 28, 32, 48 | +| Cloud Checkmark | Regular | 12 | +| Cloud Checkmark | Filled | 12 | +| Cloud Cube | Regular | 12 | +| Cloud Cube | Filled | 12 | +| Cloud Database | Regular | 12, 16, 24, 28, 32, 48 | +| Cloud Database | Filled | 12, 16, 24, 28, 32, 48 | +| Cloud Desktop | Regular | 12, 16, 24, 28, 32, 48 | +| Cloud Desktop | Filled | 12, 16, 24, 28, 32, 48 | +| Cloud Dismiss | Regular | 12 | +| Cloud Dismiss | Filled | 12 | +| Cloud Edit | Regular | 12, 28, 32, 48 | +| Cloud Edit | Filled | 12, 28, 32, 48 | +| Cloud Error | Regular | 12 | +| Cloud Error | Filled | 12 | +| Cloud Flow | Regular | 12, 16, 28, 32, 48 | +| Cloud Flow | Filled | 12, 16, 28, 32, 48 | +| Cloud Link | Regular | 12, 28, 32, 48 | +| Cloud Link | Filled | 12, 28, 32, 48 | +| Cloud Off | Regular | 12 | +| Cloud Off | Filled | 12 | +| Cloud Swap | Regular | 12, 16, 28, 32, 48 | +| Cloud Swap | Filled | 12, 16, 28, 32, 48 | +| Cloud Sync | Regular | 12 | +| Cloud Sync | Filled | 12 | +| Cloud Words | Regular | 12 | +| Cloud Words | Filled | 12 | +| Clover | Regular | 12 | +| Clover | Filled | 12 | +| Code | Regular | 12, 28, 32, 48 | +| Code | Filled | 12, 28, 32, 48 | +| Code Block | Regular | 12 | +| Code Block | Filled | 12 | +| Code CS | Regular | 12, 20, 24, 28, 32, 48 | +| Code CS | Filled | 12, 20, 24, 28, 32, 48 | +| Code CS Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code CS Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Code Circle | Regular | 12, 16, 28, 48 | +| Code Circle | Filled | 12, 16, 28, 48 | +| Code FS | Regular | 12, 20, 24, 28, 32, 48 | +| Code FS | Filled | 12, 20, 24, 28, 32, 48 | +| Code FS Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code FS Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Code JS | Regular | 12, 20, 24, 28, 32, 48 | +| Code JS | Filled | 12, 20, 24, 28, 32, 48 | +| Code JS Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code JS Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Code PY | Regular | 12, 20, 24, 28, 32, 48 | +| Code PY | Filled | 12, 20, 24, 28, 32, 48 | +| Code PY Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code PY Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Code RB | Regular | 12, 20, 24, 28, 32, 48 | +| Code RB | Filled | 12, 20, 24, 28, 32, 48 | +| Code RB Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code RB Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Code TS | Regular | 12, 20, 24, 28, 32, 48 | +| Code TS | Filled | 12, 20, 24, 28, 32, 48 | +| Code TS Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code TS Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Code Text | Regular | 12, 24, 28, 32, 48 | +| Code Text | Filled | 12, 24, 28, 32, 48 | +| Code Text Edit | Regular | 12, 16, 24, 28, 32, 48 | +| Code Text Edit | Filled | 12, 16, 24, 28, 32, 48 | +| Code Text Off | Regular | 12, 20, 24, 28, 32, 48 | +| Code Text Off | Filled | 12, 20, 24, 28, 32, 48 | +| Code VB | Regular | 12, 20, 24, 28, 32, 48 | +| Code VB | Filled | 12, 20, 24, 28, 32, 48 | +| Code VB Rectangle | Regular | 12, 20, 24, 28, 32, 48 | +| Code VB Rectangle | Filled | 12, 20, 24, 28, 32, 48 | +| Collections | Regular | 12, 28, 32, 48 | +| Collections | Filled | 12, 28, 32, 48 | +| Collections Add | Regular | 12, 16, 28, 32, 48 | +| Collections Add | Filled | 12, 16, 28, 32, 48 | +| Color | Regular | 12, 28, 32, 48 | +| Color | Filled | 12, 28, 32, 48 | +| Color Background | Regular | 12, 16, 28, 32, 48 | +| Color Background | Filled | 12, 16, 28, 32, 48 | +| Color Background Accent | Regular | 12, 16, 28, 32, 48 | +| Color Background Accent | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Color Fill | Regular | 12, 32, 48 | +| Color Fill | Filled | 12, 32, 48 | +| Color Fill Accent | Regular | 12, 32, 48 | +| Color Fill Accent | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Color Line | Regular | 12, 28, 32, 48 | +| Color Line | Filled | 12, 28, 32, 48 | +| Color Line Accent | Regular | 12, 28, 32, 48 | +| Color Line Accent | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Column | Regular | 12, 16, 24, 28, 32, 48 | +| Column | Filled | 12, 16, 24, 28, 32, 48 | +| Column Arrow Right | Regular | 12, 16, 24, 28, 32, 48 | +| Column Arrow Right | Filled | 12, 16, 24, 28, 32, 48 | +| Column Double Compare | Regular | 12, 16, 24, 28, 32, 48 | +| Column Double Compare | Filled | 12, 16, 24, 28, 32, 48 | +| Column Edit | Regular | 12, 16, 28, 32, 48 | +| Column Edit | Filled | 12, 16, 28, 32, 48 | +| Column Single | Regular | 12, 20, 24, 28, 32, 48 | +| Column Single | Filled | 12, 20, 24, 28, 32, 48 | +| Column Single Compare | Regular | 12, 24, 28, 32, 48 | +| Column Single Compare | Filled | 12, 24, 28, 32, 48 | +| Column Triple | Regular | 12, 16, 28, 32, 48 | +| Column Triple | Filled | 12, 16, 28, 32, 48 | +| Column Triple Edit | Regular | 12, 16, 28, 32, 48 | +| Column Triple Edit | Filled | 12, 16, 28, 32, 48 | +| Comma | Regular | 12, 16, 28, 32, 48 | +| Comma | Filled | 12, 16, 28, 32, 48 | +| Comment | Regular | 32 | +| Comment | Filled | 32 | +| Comment Add | Regular | 32 | +| Comment Add | Filled | 32 | +| Comment Arrow Left | Regular | 32 | +| Comment Arrow Left | Filled | 32 | +| Comment Arrow Left Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Left Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Left Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Left Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Right | Regular | 32 | +| Comment Arrow Right | Filled | 32 | +| Comment Arrow Right Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Right Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Right Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Comment Arrow Right Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Comment Checkmark | Regular | 32 | +| Comment Checkmark | Filled | 32 | +| Comment Dismiss | Regular | 12, 16, 28, 32, 48 | +| Comment Dismiss | Filled | 12, 16, 28, 32, 48 | +| Comment Edit | Regular | 12, 28, 32, 48 | +| Comment Edit | Filled | 12, 28, 32, 48 | +| Comment Error | Regular | 12, 28, 32, 48 | +| Comment Error | Filled | 12, 28, 32, 48 | +| Comment Lightning | Regular | 12, 16, 28, 32, 48 | +| Comment Lightning | Filled | 12, 16, 28, 32, 48 | +| Comment Link | Regular | 12, 32 | +| Comment Link | Filled | 12, 32 | +| Comment Mention | Regular | 12, 28, 32, 48 | +| Comment Mention | Filled | 12, 28, 32, 48 | +| Comment Multiple | Regular | 12, 48 | +| Comment Multiple | Filled | 12, 48 | +| Comment Multiple Checkmark | Regular | 12, 32, 48 | +| Comment Multiple Checkmark | Filled | 12, 32, 48 | +| Comment Multiple Link | Regular | 12, 48 | +| Comment Multiple Link | Filled | 12, 48 | +| Comment Note | Regular | 12, 16, 28, 32, 48 | +| Comment Note | Filled | 12, 16, 28, 32, 48 | +| Comment Off | Regular | 12, 32 | +| Comment Off | Filled | 12, 32 | +| Communication | Regular | 12, 28, 32, 48 | +| Communication | Filled | 12, 28, 32, 48 | +| Communication Person | Regular | 12, 16, 28, 32, 48 | +| Communication Person | Filled | 12, 16, 28, 32, 48 | +| Communication Shield | Regular | 12, 28, 32, 48 | +| Communication Shield | Filled | 12, 28, 32, 48 | +| Compass Northwest | Regular | 12, 32, 48 | +| Compass Northwest | Filled | 12, 32, 48 | +| Component 2 Double Tap Swipe Down | Regular | 12, 16, 20, 28, 32, 48 | +| Component 2 Double Tap Swipe Down | Filled | 12, 16, 20, 28, 32, 48 | +| Component 2 Double Tap Swipe Up | Regular | 12, 16, 20, 28, 32, 48 | +| Component 2 Double Tap Swipe Up | Filled | 12, 16, 20, 28, 32, 48 | +| Cone | Regular | 12, 20, 24, 28, 32, 48 | +| Cone | Filled | 12, 20, 24, 28, 32, 48 | +| Conference Room | Regular | 12, 32 | +| Conference Room | Filled | 12, 32 | +| Connected | Regular | 12, 24, 28, 32, 48 | +| Connected | Filled | 12, 24, 28, 32, 48 | +| Connector | Regular | 12, 28, 32, 48 | +| Connector | Filled | 12, 28, 32, 48 | +| Contact Card | Regular | 12 | +| Contact Card | Filled | 12 | +| Contact Card Group | Regular | 12, 32 | +| Contact Card Group | Filled | 12, 32 | +| Contact Card Link | Regular | 12, 24, 28, 32, 48 | +| Contact Card Link | Filled | 12, 24, 28, 32, 48 | +| Contact Card Ribbon | Regular | 12 | +| Contact Card Ribbon | Filled | 12 | +| Content Settings | Regular | 12, 28, 48 | +| Content Settings | Filled | 12, 28, 48 | +| Content View | Regular | 12, 16, 48 | +| Content View | Filled | 12, 16, 48 | +| Content View Gallery | Regular | 12, 32, 48 | +| Content View Gallery | Filled | 12, 32, 48 | +| Content View Gallery Lightning | Regular | 12, 32, 48 | +| Content View Gallery Lightning | Filled | 12, 32, 48 | +| Contract Down Left | Regular | 12 | +| Contract Down Left | Filled | 12 | +| Contract Up Right | Regular | 12 | +| Contract Up Right | Filled | 12 | +| Control Button | Regular | 12, 16, 28, 32, 48 | +| Control Button | Filled | 12, 16, 28, 32, 48 | +| Convert Range | Regular | 12, 16, 28, 32, 48 | +| Convert Range | Filled | 12, 16, 28, 32, 48 | +| Cookies | Regular | 12 | +| Cookies | Filled | 12 | +| Copy | Regular | 12, 28, 48 | +| Copy | Filled | 12, 28, 48 | +| Copy Add | Regular | 12, 16, 28, 32, 48 | +| Copy Add | Filled | 12, 16, 28, 32, 48 | +| Copy Arrow Right | Regular | 12, 28, 32, 48 | +| Copy Arrow Right | Filled | 12, 28, 32, 48 | +| Copy Select | Regular | 12, 16, 28, 32, 48 | +| Copy Select | Filled | 12, 16, 28, 32, 48 | +| Couch | Regular | 16, 28 | +| Couch | Filled | 16, 28 | +| Credit Card Clock | Regular | 12, 16, 48 | +| Credit Card Clock | Filled | 12, 16, 48 | +| Credit Card Person | Regular | 12, 16, 28, 32, 48 | +| Credit Card Person | Filled | 12, 16, 28, 32, 48 | +| Credit Card Toolbox | Regular | 12, 16, 28, 32, 48 | +| Credit Card Toolbox | Filled | 12, 16, 28, 32, 48 | +| Crop | Regular | 12 | +| Crop | Filled | 12 | +| Crop Interim | Regular | 12, 16, 28, 32, 48 | +| Crop Interim | Filled | 12, 16, 28, 32, 48 | +| Crop Interim Off | Regular | 12, 16, 28, 32, 48 | +| Crop Interim Off | Filled | 12, 16, 28, 32, 48 | +| Crop Sparkle | Regular | 12, 16, 20, 28, 32, 48 | +| Crop Sparkle | Filled | 12, 16, 20, 28, 32, 48 | +| Crown | Regular | 12, 28, 32, 48 | +| Crown | Filled | 12, 28, 32, 48 | +| Crown Subtract | Regular | 12, 16, 20, 28, 32, 48 | +| Crown Subtract | Filled | 12, 16, 20, 28, 32, 48 | +| Cube | Regular | 28 | +| Cube | Filled | 28 | +| Cube Add | Regular | 12, 16, 24, 28, 32, 48 | +| Cube Add | Filled | 12, 16, 24, 28, 32, 48 | +| Cube Arrow Curve Down | Regular | 12, 16, 24, 28, 32, 48 | +| Cube Arrow Curve Down | Filled | 12, 16, 24, 28, 32, 48 | +| Cube Link | Regular | 12, 16, 24, 28, 32, 48 | +| Cube Link | Filled | 12, 16, 24, 28, 32, 48 | +| Cube Multiple | Regular | 12, 16, 28, 32, 48 | +| Cube Multiple | Filled | 12, 16, 28, 32, 48 | +| Cube Quick | Regular | 12, 32, 48 | +| Cube Quick | Filled | 12, 32, 48 | +| Cube Rotate | Regular | 12, 16, 24, 28, 32, 48 | +| Cube Rotate | Filled | 12, 16, 24, 28, 32, 48 | +| Cube Sync | Regular | 12, 16, 28, 32, 48 | +| Cube Sync | Filled | 12, 16, 28, 32, 48 | +| Cube Tree | Regular | 12, 16, 28, 32, 48 | +| Cube Tree | Filled | 12, 16, 28, 32, 48 | +| Currency Dollar Euro | Regular | 12, 28, 32, 48 | +| Currency Dollar Euro | Filled | 12, 28, 32, 48 | +| Currency Dollar Rupee | Regular | 12, 28, 32, 48 | +| Currency Dollar Rupee | Filled | 12, 28, 32, 48 | +| Cursor | Regular | 12, 28, 32, 48 | +| Cursor | Filled | 12, 28, 32, 48 | +| Cursor Click | Regular | 12, 16, 28, 32, 48 | +| Cursor Click | Filled | 12, 16, 28, 32, 48 | +| Cursor Hover | Regular | 12 | +| Cursor Hover | Filled | 12 | +| Cursor Hover Off | Regular | 12, 32 | +| Cursor Hover Off | Filled | 12, 32 | +| Cursor Prohibited | Regular | 12, 24, 28, 32, 48 | +| Cursor Prohibited | Filled | 12, 24, 28, 32, 48 | +| Cut | Regular | 12, 28, 32, 48 | +| Cut | Filled | 12, 28, 32, 48 | +| Dark Theme | Regular | 12, 16, 28, 32, 48 | +| Dark Theme | Filled | 12, 16, 28, 32, 48 | +| Data Area | Regular | 12, 16, 28, 32, 48 | +| Data Area | Filled | 12, 16, 28, 32, 48 | +| Data Bar Horizontal | Regular | 12, 16, 28, 32, 48 | +| Data Bar Horizontal | Filled | 12, 16, 28, 32, 48 | +| Data Bar Horizontal Descending | Regular | 12, 20, 24, 28, 32, 48 | +| Data Bar Horizontal Descending | Filled | 12, 20, 24, 28, 32, 48 | +| Data Bar Vertical | Regular | 12, 28, 48 | +| Data Bar Vertical | Filled | 12, 28, 48 | +| Data Bar Vertical Add | Regular | 12, 16, 28, 32, 48 | +| Data Bar Vertical Add | Filled | 12, 16, 28, 32, 48 | +| Data Bar Vertical Ascending | Regular | 12, 28, 32, 48 | +| Data Bar Vertical Ascending | Filled | 12, 28, 32, 48 | +| Data Bar Vertical Star | Regular | 12, 28, 48 | +| Data Bar Vertical Star | Filled | 12, 28, 48 | +| Data Funnel | Regular | 12, 16, 28, 32, 48 | +| Data Funnel | Filled | 12, 16, 28, 32, 48 | +| Data Histogram | Regular | 12, 28, 32, 48 | +| Data Histogram | Filled | 12, 28, 32, 48 | +| Data Line | Regular | 12, 16, 28, 32, 48 | +| Data Line | Filled | 12, 16, 28, 32, 48 | +| Data Pie | Regular | 12, 16, 28, 32, 48 | +| Data Pie | Filled | 12, 16, 28, 32, 48 | +| Data Scatter | Regular | 12, 16, 28, 32, 48 | +| Data Scatter | Filled | 12, 16, 28, 32, 48 | +| Data Sunburst | Regular | 12, 16, 28, 32, 48 | +| Data Sunburst | Filled | 12, 16, 28, 32, 48 | +| Data Treemap | Regular | 12, 16, 28, 32, 48 | +| Data Treemap | Filled | 12, 16, 28, 32, 48 | +| Data Trending | Regular | 12 | +| Data Trending | Filled | 12 | +| Data Usage | Regular | 12, 16, 28, 32, 48 | +| Data Usage | Filled | 12, 16, 28, 32, 48 | +| Data Usage Edit | Regular | 12, 16, 28, 32, 48 | +| Data Usage Edit | Filled | 12, 16, 28, 32, 48 | +| Data Usage Settings | Regular | 12, 16, 24, 28, 32, 48 | +| Data Usage Settings | Filled | 12, 16, 24, 28, 32, 48 | +| Data Usage Toolbox | Regular | 12, 16, 28, 32, 48 | +| Data Usage Toolbox | Filled | 12, 16, 28, 32, 48 | +| Data Waterfall | Regular | 12, 16, 28, 32, 48 | +| Data Waterfall | Filled | 12, 16, 28, 32, 48 | +| Data Whisker | Regular | 12, 16, 28, 32, 48 | +| Data Whisker | Filled | 12, 16, 28, 32, 48 | +| Database | Regular | 12, 28 | +| Database | Filled | 12, 28 | +| Database Arrow Down | Regular | 12, 16, 24, 28, 32, 48 | +| Database Arrow Down | Filled | 12, 16, 24, 28, 32, 48 | +| Database Arrow Right | Regular | 12, 16, 28, 48 | +| Database Arrow Right | Filled | 12, 16, 28, 48 | +| Database Arrow Up | Regular | 12, 16, 24, 28, 32, 48 | +| Database Arrow Up | Filled | 12, 16, 24, 28, 32, 48 | +| Database Lightning | Regular | 12, 16, 24, 28, 32, 48 | +| Database Lightning | Filled | 12, 16, 24, 28, 32, 48 | +| Database Link | Regular | 12, 16, 28, 32, 48 | +| Database Link | Filled | 12, 16, 28, 32, 48 | +| Database Multiple | Regular | 12, 16, 24, 28, 48 | +| Database Multiple | Filled | 12, 16, 24, 28, 48 | +| Database Person | Regular | 12, 16, 28, 32, 48 | +| Database Person | Filled | 12, 16, 28, 32, 48 | +| Database Plug Connected | Regular | 12, 16, 24, 28, 32, 48 | +| Database Plug Connected | Filled | 12, 16, 24, 28, 32, 48 | +| Database Search | Regular | 12, 16, 28, 32, 48 | +| Database Search | Filled | 12, 16, 28, 32, 48 | +| Database Stack | Regular | 12, 20, 24, 28, 32, 48 | +| Database Stack | Filled | 12, 20, 24, 28, 32, 48 | +| Database Switch | Regular | 12, 16, 24, 28, 32, 48 | +| Database Switch | Filled | 12, 16, 24, 28, 32, 48 | +| Database Warning | Regular | 12, 16, 24, 28, 32, 48 | +| Database Warning | Filled | 12, 16, 24, 28, 32, 48 | +| Database Window | Regular | 12, 16, 24, 28, 32, 48 | +| Database Window | Filled | 12, 16, 24, 28, 32, 48 | +| Decimal Arrow Left | Regular | 12, 16, 28, 32, 48 | +| Decimal Arrow Left | Filled | 12, 16, 28, 32, 48 | +| Decimal Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Decimal Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Delete Arrow Back | Regular | 12, 24, 28, 32, 48 | +| Delete Arrow Back | Filled | 12, 24, 28, 32, 48 | +| Delete Dismiss | Regular | 12, 16, 32, 48 | +| Delete Dismiss | Filled | 12, 16, 32, 48 | +| Delete Lines | Regular | 12, 16, 24, 28, 32, 48 | +| Delete Lines | Filled | 12, 16, 24, 28, 32, 48 | +| Delete Off | Regular | 12, 16, 28, 32, 48 | +| Delete Off | Filled | 12, 16, 28, 32, 48 | +| Dentist | Regular | 32 | +| Dentist | Filled | 32 | +| Design Ideas | Regular | 12, 28, 32, 48 | +| Design Ideas | Filled | 12, 28, 32, 48 | +| Desk | Regular | 12 | +| Desk | Filled | 12 | +| Desktop | Regular | 12, 48 | +| Desktop | Filled | 12, 48 | +| Desktop Arrow Down | Regular | 12, 28, 32, 48 | +| Desktop Arrow Down | Filled | 12, 28, 32, 48 | +| Desktop Arrow Right | Regular | 12, 28, 32, 48 | +| Desktop Arrow Right | Filled | 12, 28, 32, 48 | +| Desktop Checkmark | Regular | 12, 28, 32, 48 | +| Desktop Checkmark | Filled | 12, 28, 32, 48 | +| Desktop Cursor | Regular | 12, 32, 48 | +| Desktop Cursor | Filled | 12, 32, 48 | +| Desktop Edit | Regular | 12, 28, 32, 48 | +| Desktop Edit | Filled | 12, 28, 32, 48 | +| Desktop Flow | Regular | 12, 16, 28, 32, 48 | +| Desktop Flow | Filled | 12, 16, 28, 32, 48 | +| Desktop Keyboard | Regular | 12, 32, 48 | +| Desktop Keyboard | Filled | 12, 32, 48 | +| Desktop Mac | Regular | 12, 28, 48 | +| Desktop Mac | Filled | 12, 28, 48 | +| Desktop Pulse | Regular | 12 | +| Desktop Pulse | Filled | 12 | +| Desktop Signal | Regular | 12, 16, 28, 32, 48 | +| Desktop Signal | Filled | 12, 16, 28, 32, 48 | +| Desktop Speaker | Regular | 12, 16, 28, 32, 48 | +| Desktop Speaker | Filled | 12, 16, 28, 32, 48 | +| Desktop Speaker Off | Regular | 12, 16, 28, 32, 48 | +| Desktop Speaker Off | Filled | 12, 16, 28, 32, 48 | +| Desktop Sync | Regular | 12, 28, 32, 48 | +| Desktop Sync | Filled | 12, 28, 32, 48 | +| Desktop Toolbox | Regular | 12, 16, 28, 32, 48 | +| Desktop Toolbox | Filled | 12, 16, 28, 32, 48 | +| Desktop Tower | Regular | 12, 16, 28, 32, 48 | +| Desktop Tower | Filled | 12, 16, 28, 32, 48 | +| Developer Board | Regular | 12, 28, 32, 48 | +| Developer Board | Filled | 12, 28, 32, 48 | +| Developer Board Lightning | Regular | 12, 16, 24, 28, 32, 48 | +| Developer Board Lightning | Filled | 12, 16, 24, 28, 32, 48 | +| Developer Board Lightning Toolbox | Regular | 12, 16, 24, 28, 32, 48 | +| Developer Board Lightning Toolbox | Filled | 12, 16, 24, 28, 32, 48 | +| Developer Board Search | Regular | 12, 16, 28, 32, 48 | +| Developer Board Search | Filled | 12, 16, 28, 32, 48 | +| Device EQ | Regular | 12, 28, 32, 48 | +| Device EQ | Filled | 12, 28, 32, 48 | +| Device Meeting Room | Regular | 12 | +| Device Meeting Room | Filled | 12 | +| Device Meeting Room Remote | Regular | 12 | +| Device Meeting Room Remote | Filled | 12 | +| Diagram | Regular | 12, 16, 28, 32, 48 | +| Diagram | Filled | 12, 16, 28, 32, 48 | +| Dialpad | Regular | 12, 16 | +| Dialpad | Filled | 12, 16 | +| Dialpad Off | Regular | 12, 16, 28, 32, 48 | +| Dialpad Off | Filled | 12, 16, 28, 32, 48 | +| Dialpad Question Mark | Regular | 12, 16, 28, 32, 48 | +| Dialpad Question Mark | Filled | 12, 16, 28, 32, 48 | +| Diamond | Regular | 12 | +| Diamond | Filled | 12 | +| Directions | Regular | 12, 28, 32, 48 | +| Directions | Filled | 12, 28, 32, 48 | +| Dishwasher | Regular | 12, 16, 28 | +| Dishwasher | Filled | 12, 16, 28 | +| Dismiss Square | Regular | 12, 16, 28, 32, 48 | +| Dismiss Square | Filled | 12, 16, 28, 32, 48 | +| Dismiss Square Multiple | Regular | 12, 24, 28, 32, 48 | +| Dismiss Square Multiple | Filled | 12, 24, 28, 32, 48 | +| Diversity | Regular | 12, 32 | +| Diversity | Filled | 12, 32 | +| Divider Short | Regular | 12, 28, 32, 48 | +| Divider Short | Filled | 12, 28, 32, 48 | +| Divider Tall | Regular | 12, 28, 32, 48 | +| Divider Tall | Filled | 12, 28, 32, 48 | +| Dock | Regular | 12, 16, 28, 32, 48 | +| Dock | Filled | 12, 16, 28, 32, 48 | +| Dock Row | Regular | 12, 16, 28, 32, 48 | +| Dock Row | Filled | 12, 16, 28, 32, 48 | +| Doctor | Regular | 32 | +| Doctor | Filled | 32 | +| Document | Regular | 12 | +| Document | Filled | 12 | +| Document 100 | Regular | 12, 28, 32, 48 | +| Document 100 | Filled | 12, 28, 32, 48 | +| Document Add | Regular | 12, 32 | +| Document Add | Filled | 12, 32 | +| Document Arrow Down | Regular | 12, 24, 28, 32, 48 | +| Document Arrow Down | Filled | 12, 24, 28, 32, 48 | +| Document Arrow Left | Regular | 12, 32 | +| Document Arrow Left | Filled | 12, 32 | +| Document Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Document Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Document Arrow Up | Regular | 12, 24, 28, 32, 48 | +| Document Arrow Up | Filled | 12, 24, 28, 32, 48 | +| Document Border | Regular | 12, 16, 28, 48 | +| Document Border | Filled | 12, 16, 28, 48 | +| Document Border Print | Regular | 12, 16, 28, 48 | +| Document Border Print | Filled | 12, 16, 28, 48 | +| Document Briefcase | Regular | 12, 28, 48 | +| Document Briefcase | Filled | 12, 28, 48 | +| Document Bullet List | Regular | 12, 28, 32, 48 | +| Document Bullet List | Filled | 12, 28, 32, 48 | +| Document Bullet List Arrow Left | Regular | 12, 28, 32, 48 | +| Document Bullet List Arrow Left | Filled | 12, 28, 32, 48 | +| Document Bullet List Clock | Regular | 12, 16, 28, 32, 48 | +| Document Bullet List Clock | Filled | 12, 16, 28, 32, 48 | +| Document Bullet List Cube | Regular | 12, 28, 32, 48 | +| Document Bullet List Cube | Filled | 12, 28, 32, 48 | +| Document Bullet List Multiple | Regular | 12, 16, 28, 32, 48 | +| Document Bullet List Multiple | Filled | 12, 16, 28, 32, 48 | +| Document Bullet List Off | Regular | 12, 16, 28, 32, 48 | +| Document Bullet List Off | Filled | 12, 16, 28, 32, 48 | +| Document CS | Regular | 12, 20, 24, 28, 32, 48 | +| Document CS | Filled | 12, 20, 24, 28, 32, 48 | +| Document CSS | Regular | 12, 28, 32, 48 | +| Document CSS | Filled | 12, 28, 32, 48 | +| Document Catch Up | Regular | 12, 28, 32, 48 | +| Document Catch Up | Filled | 12, 28, 32, 48 | +| Document Checkmark | Regular | 12, 28, 32, 48 | +| Document Checkmark | Filled | 12, 28, 32, 48 | +| Document Chevron Double | Regular | 12, 16, 28, 32, 48 | +| Document Chevron Double | Filled | 12, 16, 28, 32, 48 | +| Document Contract | Regular | 12, 20, 24, 28, 32, 48 | +| Document Contract | Filled | 12, 20, 24, 28, 32, 48 | +| Document Copy | Regular | 12, 28, 32 | +| Document Copy | Filled | 12, 28, 32 | +| Document Cube | Regular | 12, 16, 28, 32, 48 | +| Document Cube | Filled | 12, 16, 28, 32, 48 | +| Document Data | Regular | 12, 28, 48 | +| Document Data | Filled | 12, 28, 48 | +| Document Data Link | Regular | 12, 28, 48 | +| Document Data Link | Filled | 12, 28, 48 | +| Document Data Lock | Regular | 12, 28, 48 | +| Document Data Lock | Filled | 12, 28, 48 | +| Document Database | Regular | 12, 16, 28, 32, 48 | +| Document Database | Filled | 12, 16, 28, 32, 48 | +| Document Dismiss | Regular | 12, 28, 32, 48 | +| Document Dismiss | Filled | 12, 28, 32, 48 | +| Document Edit | Regular | 12, 28, 32, 48 | +| Document Edit | Filled | 12, 28, 32, 48 | +| Document Endnote | Regular | 12, 16, 28, 32, 48 | +| Document Endnote | Filled | 12, 16, 28, 32, 48 | +| Document Error | Regular | 12, 28, 32, 48 | +| Document Error | Filled | 12, 28, 32, 48 | +| Document FS | Regular | 12, 20, 24, 28, 32, 48 | +| Document FS | Filled | 12, 20, 24, 28, 32, 48 | +| Document Fit | Regular | 12, 28, 32, 48 | +| Document Fit | Filled | 12, 28, 32, 48 | +| Document Flowchart | Regular | 12, 16, 28, 32, 48 | +| Document Flowchart | Filled | 12, 16, 28, 32, 48 | +| Document Folder | Regular | 12, 28, 32, 48 | +| Document Folder | Filled | 12, 28, 32, 48 | +| Document Footer | Regular | 12, 28, 32, 48 | +| Document Footer | Filled | 12, 28, 32, 48 | +| Document Footer Dismiss | Regular | 12, 16, 28, 32, 48 | +| Document Footer Dismiss | Filled | 12, 16, 28, 32, 48 | +| Document Header | Regular | 12, 28, 32, 48 | +| Document Header | Filled | 12, 28, 32, 48 | +| Document Header Arrow Down | Regular | 12, 28, 32, 48 | +| Document Header Arrow Down | Filled | 12, 28, 32, 48 | +| Document Header Dismiss | Regular | 12, 16, 28, 32, 48 | +| Document Header Dismiss | Filled | 12, 16, 28, 32, 48 | +| Document Header Footer | Regular | 12, 28, 32, 48 | +| Document Header Footer | Filled | 12, 28, 32, 48 | +| Document Heart | Regular | 12, 16, 28, 32, 48 | +| Document Heart | Filled | 12, 16, 28, 32, 48 | +| Document Heart Pulse | Regular | 12, 16, 28, 32, 48 | +| Document Heart Pulse | Filled | 12, 16, 28, 32, 48 | +| Document Image | Regular | 12, 24, 28, 32, 48 | +| Document Image | Filled | 12, 24, 28, 32, 48 | +| Document JAVA | Regular | 12, 24, 28, 32, 48 | +| Document JAVA | Filled | 12, 24, 28, 32, 48 | +| Document JS | Regular | 12, 20, 24, 28, 32, 48 | +| Document JS | Filled | 12, 20, 24, 28, 32, 48 | +| Document Javascript | Regular | 12, 16, 28, 32, 48 | +| Document Javascript | Filled | 12, 16, 28, 32, 48 | +| Document Key | Regular | 12, 16, 24, 28, 32, 48 | +| Document Key | Filled | 12, 16, 24, 28, 32, 48 | +| Document Landscape | Regular | 12, 16, 28, 32, 48 | +| Document Landscape | Filled | 12, 16, 28, 32, 48 | +| Document Landscape Data | Regular | 12, 16, 28, 32, 48 | +| Document Landscape Data | Filled | 12, 16, 28, 32, 48 | +| Document Landscape Split | Regular | 12, 16, 28, 32, 48 | +| Document Landscape Split | Filled | 12, 16, 28, 32, 48 | +| Document Landscape Split Hint | Regular | 12, 16, 28, 32, 48 | +| Document Landscape Split Hint | Filled | 12, 16, 28, 32, 48 | +| Document Lightning | Regular | 12 | +| Document Lightning | Filled | 12 | +| Document Link | Regular | 12, 28, 32, 48 | +| Document Link | Filled | 12, 28, 32, 48 | +| Document Lock | Regular | 12 | +| Document Lock | Filled | 12 | +| Document Margins | Regular | 12, 16, 28, 32, 48 | +| Document Margins | Filled | 12, 16, 28, 32, 48 | +| Document Mention | Regular | 12, 32 | +| Document Mention | Filled | 12, 32 | +| Document Multiple | Regular | 12, 28, 32, 48 | +| Document Multiple | Filled | 12, 28, 32, 48 | +| Document Multiple Percent | Regular | 12, 16, 28, 32, 48 | +| Document Multiple Percent | Filled | 12, 16, 28, 32, 48 | +| Document Multiple Prohibited | Regular | 12, 16, 28, 32, 48 | +| Document Multiple Prohibited | Filled | 12, 16, 28, 32, 48 | +| Document Multiple Sync | Regular | 12, 16, 24, 28, 32, 48 | +| Document Multiple Sync | Filled | 12, 16, 24, 28, 32, 48 | +| Document Number 1 | Regular | 12, 20, 24, 28, 32, 48 | +| Document Number 1 | Filled | 12, 20, 24, 28, 32, 48 | +| Document One Page | Regular | 12, 28, 32, 48 | +| Document One Page | Filled | 12, 28, 32, 48 | +| Document One Page Add | Regular | 12, 28, 32, 48 | +| Document One Page Add | Filled | 12, 28, 32, 48 | +| Document One Page Beaker | Regular | 12, 20, 24, 28, 32, 48 | +| Document One Page Beaker | Filled | 12, 20, 24, 28, 32, 48 | +| Document One Page Columns | Regular | 12, 16, 28, 32, 48 | +| Document One Page Columns | Filled | 12, 16, 28, 32, 48 | +| Document One Page Link | Regular | 12, 28, 32, 48 | +| Document One Page Link | Filled | 12, 28, 32, 48 | +| Document One Page Multiple | Regular | 12, 28, 32, 48 | +| Document One Page Multiple | Filled | 12, 28, 32, 48 | +| Document One Page Sparkle | Regular | 12, 28, 32, 48 | +| Document One Page Sparkle | Filled | 12, 28, 32, 48 | +| Document PDF | Regular | 12, 28, 48 | +| Document PDF | Filled | 12, 28, 48 | +| Document PY | Regular | 12, 20, 24, 28, 32, 48 | +| Document PY | Filled | 12, 20, 24, 28, 32, 48 | +| Document Page Bottom Center | Regular | 12, 16, 28, 32, 48 | +| Document Page Bottom Center | Filled | 12, 16, 28, 32, 48 | +| Document Page Bottom Left | Regular | 12, 16, 28, 32, 48 | +| Document Page Bottom Left | Filled | 12, 16, 28, 32, 48 | +| Document Page Bottom Right | Regular | 12, 16, 28, 32, 48 | +| Document Page Bottom Right | Filled | 12, 16, 28, 32, 48 | +| Document Page Break | Regular | 12, 16, 28, 32, 48 | +| Document Page Break | Filled | 12, 16, 28, 32, 48 | +| Document Page Number | Regular | 12, 16, 28, 32, 48 | +| Document Page Number | Filled | 12, 16, 28, 32, 48 | +| Document Page Top Center | Regular | 12, 16, 28, 32, 48 | +| Document Page Top Center | Filled | 12, 16, 28, 32, 48 | +| Document Page Top Left | Regular | 12, 16, 28, 32, 48 | +| Document Page Top Left | Filled | 12, 16, 28, 32, 48 | +| Document Page Top Right | Regular | 12, 16, 28, 32, 48 | +| Document Page Top Right | Filled | 12, 16, 28, 32, 48 | +| Document Percent | Regular | 12, 16, 28, 32, 48 | +| Document Percent | Filled | 12, 16, 28, 32, 48 | +| Document Person | Regular | 12, 24, 28, 32, 48 | +| Document Person | Filled | 12, 24, 28, 32, 48 | +| Document Pill | Regular | 12, 16, 28, 32, 48 | +| Document Pill | Filled | 12, 16, 28, 32, 48 | +| Document Print | Regular | 12, 16 | +| Document Print | Filled | 12, 16 | +| Document Prohibited | Regular | 12, 16, 28, 32, 48 | +| Document Prohibited | Filled | 12, 16, 28, 32, 48 | +| Document Question Mark | Regular | 12, 28, 32, 48 | +| Document Question Mark | Filled | 12, 28, 32, 48 | +| Document Queue | Regular | 12, 16, 28, 32, 48 | +| Document Queue | Filled | 12, 16, 28, 32, 48 | +| Document Queue Add | Regular | 12, 16, 28, 32, 48 | +| Document Queue Add | Filled | 12, 16, 28, 32, 48 | +| Document Queue Multiple | Regular | 12, 16, 28, 32, 48 | +| Document Queue Multiple | Filled | 12, 16, 28, 32, 48 | +| Document RB | Regular | 12, 20, 24, 28, 32, 48 | +| Document RB | Filled | 12, 20, 24, 28, 32, 48 | +| Document Ribbon | Regular | 12 | +| Document Ribbon | Filled | 12 | +| Document SASS | Regular | 12, 24, 28, 32, 48 | +| Document SASS | Filled | 12, 24, 28, 32, 48 | +| Document Save | Regular | 12, 16, 28, 32, 48 | +| Document Save | Filled | 12, 16, 28, 32, 48 | +| Document Search | Regular | 12, 28, 48 | +| Document Search | Filled | 12, 28, 48 | +| Document Settings | Regular | 12, 24, 28, 32, 48 | +| Document Settings | Filled | 12, 24, 28, 32, 48 | +| Document Split Hint | Regular | 12, 28, 32, 48 | +| Document Split Hint | Filled | 12, 28, 32, 48 | +| Document Split Hint Off | Regular | 12, 28, 32, 48 | +| Document Split Hint Off | Filled | 12, 28, 32, 48 | +| Document Sync | Regular | 12, 28, 48 | +| Document Sync | Filled | 12, 28, 48 | +| Document TS | Regular | 12, 20, 24, 28, 32, 48 | +| Document TS | Filled | 12, 20, 24, 28, 32, 48 | +| Document Table | Regular | 12, 28, 32, 48 | +| Document Table | Filled | 12, 28, 32, 48 | +| Document Table Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Document Table Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Document Table Checkmark | Regular | 12, 16, 28, 32, 48 | +| Document Table Checkmark | Filled | 12, 16, 28, 32, 48 | +| Document Table Cube | Regular | 12, 16, 28, 32, 48 | +| Document Table Cube | Filled | 12, 16, 28, 32, 48 | +| Document Table Search | Regular | 12, 16, 28, 32, 48 | +| Document Table Search | Filled | 12, 16, 28, 32, 48 | +| Document Table Truck | Regular | 12, 16, 28, 32, 48 | +| Document Table Truck | Filled | 12, 16, 28, 32, 48 | +| Document Target | Regular | 12, 20, 24, 28, 32, 48 | +| Document Target | Filled | 12, 20, 24, 28, 32, 48 | +| Document Text | Regular | 12, 28, 32, 48 | +| Document Text | Filled | 12, 28, 32, 48 | +| Document Text Clock | Regular | 12, 16, 28, 32, 48 | +| Document Text Clock | Filled | 12, 16, 28, 32, 48 | +| Document Text Extract | Regular | 12, 16, 28, 32, 48 | +| Document Text Extract | Filled | 12, 16, 28, 32, 48 | +| Document Text Link | Regular | 12, 16, 28, 32, 48 | +| Document Text Link | Filled | 12, 16, 28, 32, 48 | +| Document Text Toolbox | Regular | 12, 16, 28, 32, 48 | +| Document Text Toolbox | Filled | 12, 16, 28, 32, 48 | +| Document Toolbox | Regular | 12, 16, 28, 32, 48 | +| Document Toolbox | Filled | 12, 16, 28, 32, 48 | +| Document VB | Regular | 12, 20, 24, 28, 32, 48 | +| Document VB | Filled | 12, 20, 24, 28, 32, 48 | +| Document Width | Regular | 12, 16, 28, 32, 48 | +| Document Width | Filled | 12, 16, 28, 32, 48 | +| Document YML | Regular | 12, 24, 28, 32, 48 | +| Document YML | Filled | 12, 24, 28, 32, 48 | +| Door | Regular | 12, 24, 32, 48 | +| Door | Filled | 12, 24, 32, 48 | +| Door Arrow Left | Regular | 12, 28, 32, 48 | +| Door Arrow Left | Filled | 12, 28, 32, 48 | +| Door Arrow Right | Regular | 12, 24, 32, 48 | +| Door Arrow Right | Filled | 12, 24, 32, 48 | +| Door Tag | Regular | 12, 16, 28, 32, 48 | +| Door Tag | Filled | 12, 16, 28, 32, 48 | +| Double Swipe Down | Regular | 12, 16, 28, 32, 48 | +| Double Swipe Down | Filled | 12, 16, 28, 32, 48 | +| Double Swipe Up | Regular | 12, 16, 28, 32, 48 | +| Double Swipe Up | Filled | 12, 16, 28, 32, 48 | +| Double Tap Swipe Down | Regular | 12, 16, 28, 32, 48 | +| Double Tap Swipe Down | Filled | 12, 16, 28, 32, 48 | +| Double Tap Swipe Up | Regular | 12, 16, 28, 32, 48 | +| Double Tap Swipe Up | Filled | 12, 16, 28, 32, 48 | +| Drafts | Regular | 12, 28, 32, 48 | +| Drafts | Filled | 12, 28, 32, 48 | +| Drag | Regular | 12, 16, 28, 32, 48 | +| Drag | Filled | 12, 16, 28, 32, 48 | +| Draw Image | Regular | 12, 16, 28, 32, 48 | +| Draw Image | Filled | 12, 16, 28, 32, 48 | +| Draw Shape | Regular | 12, 16, 28, 32, 48 | +| Draw Shape | Filled | 12, 16, 28, 32, 48 | +| Draw Text | Regular | 12, 16, 28, 32, 48 | +| Draw Text | Filled | 12, 16, 28, 32, 48 | +| Drawer | Regular | 12, 16, 28, 32, 48 | +| Drawer | Filled | 12, 16, 28, 32, 48 | +| Drawer Add | Regular | 12, 16, 28, 32, 48 | +| Drawer Add | Filled | 12, 16, 28, 32, 48 | +| Drawer Arrow Download | Regular | 12, 16, 28, 32, 48 | +| Drawer Arrow Download | Filled | 12, 16, 28, 32, 48 | +| Drawer Dismiss | Regular | 12, 16, 28, 32, 48 | +| Drawer Dismiss | Filled | 12, 16, 28, 32, 48 | +| Drawer Play | Regular | 12, 16, 28, 32, 48 | +| Drawer Play | Filled | 12, 16, 28, 32, 48 | +| Drawer Subtract | Regular | 12, 16, 28, 32, 48 | +| Drawer Subtract | Filled | 12, 16, 28, 32, 48 | +| Drink Beer | Regular | 12, 28, 32, 48 | +| Drink Beer | Filled | 12, 28, 32, 48 | +| Drink Bottle | Regular | 12, 16, 24, 28, 48 | +| Drink Bottle | Filled | 12, 16, 24, 28, 48 | +| Drink Bottle Off | Regular | 12, 16, 24, 28, 48 | +| Drink Bottle Off | Filled | 12, 16, 24, 28, 48 | +| Drink Coffee | Regular | 12, 28, 32, 48 | +| Drink Coffee | Filled | 12, 28, 32, 48 | +| Drink Margarita | Regular | 12, 28, 32, 48 | +| Drink Margarita | Filled | 12, 28, 32, 48 | +| Drink To Go | Regular | 12, 16, 28, 32, 48 | +| Drink To Go | Filled | 12, 16, 28, 32, 48 | +| Drink Wine | Regular | 12, 28, 32, 48 | +| Drink Wine | Filled | 12, 28, 32, 48 | +| Drive Train | Regular | 12, 16, 28, 32, 48 | +| Drive Train | Filled | 12, 16, 28, 32, 48 | +| Drop | Regular | 32 | +| Drop | Filled | 32 | +| Dual Screen | Regular | 12, 16, 28, 32, 48 | +| Dual Screen | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Add | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Add | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Arrow Up | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Arrow Up | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Clock | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Clock | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Closed Alert | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Closed Alert | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Desktop | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Desktop | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Dismiss | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Dismiss | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Group | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Group | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Header | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Header | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Lock | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Lock | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Mirror | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Mirror | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Pagination | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Pagination | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Settings | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Settings | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Span | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Span | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Speaker | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Speaker | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Status Bar | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Status Bar | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Tablet | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Tablet | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Update | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Update | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Vertical Scroll | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Vertical Scroll | Filled | 12, 16, 28, 32, 48 | +| Dual Screen Vibrate | Regular | 12, 16, 28, 32, 48 | +| Dual Screen Vibrate | Filled | 12, 16, 28, 32, 48 | +| Dumbbell | Regular | 12, 32, 48 | +| Dumbbell | Filled | 12, 32, 48 | +| Dust | Regular | 12, 16, 32, 48 | +| Dust | Filled | 12, 16, 32, 48 | +| Earth | Regular | 12, 28 | +| Earth | Filled | 12, 28 | +| Earth Leaf | Regular | 12, 28 | +| Earth Leaf | Filled | 12, 28 | +| Edit Arrow Back | Regular | 12, 28, 32, 48 | +| Edit Arrow Back | Filled | 12, 28, 32, 48 | +| Edit Off | Regular | 12 | +| Edit Off | Filled | 12 | +| Edit Prohibited | Regular | 12 | +| Edit Prohibited | Filled | 12 | +| Edit Settings | Regular | 12, 16, 28, 32, 48 | +| Edit Settings | Filled | 12, 16, 28, 32, 48 | +| Elevator | Regular | 12, 16, 28 | +| Elevator | Filled | 12, 16, 28 | +| Emoji | Regular | 12 | +| Emoji | Filled | 12 | +| Emoji Add | Regular | 12, 28, 32, 48 | +| Emoji Add | Filled | 12, 28, 32, 48 | +| Emoji Angry | Regular | 12, 28, 32, 48 | +| Emoji Angry | Filled | 12, 28, 32, 48 | +| Emoji Edit | Regular | 12, 32 | +| Emoji Edit | Filled | 12, 32 | +| Emoji Hand | Regular | 12 | +| Emoji Hand | Filled | 12 | +| Emoji Hint | Regular | 12 | +| Emoji Hint | Filled | 12 | +| Emoji Laugh | Regular | 12, 28, 32, 48 | +| Emoji Laugh | Filled | 12, 28, 32, 48 | +| Emoji Meh | Regular | 12, 28, 32, 48 | +| Emoji Meh | Filled | 12, 28, 32, 48 | +| Emoji Multiple | Regular | 12, 16, 28, 32, 48 | +| Emoji Multiple | Filled | 12, 16, 28, 32, 48 | +| Emoji Sad | Regular | 12, 28, 32, 48 | +| Emoji Sad | Filled | 12, 28, 32, 48 | +| Emoji Sad Slight | Regular | 12, 16, 28, 32, 48 | +| Emoji Sad Slight | Filled | 12, 16, 28, 32, 48 | +| Emoji Smile Slight | Regular | 12, 16, 28, 32, 48 | +| Emoji Smile Slight | Filled | 12, 16, 28, 32, 48 | +| Emoji Sparkle | Regular | 12 | +| Emoji Sparkle | Filled | 12 | +| Emoji Surprise | Regular | 12, 16, 28, 32, 48 | +| Emoji Surprise | Filled | 12, 16, 28, 32, 48 | +| Engine | Regular | 12, 16, 28, 32, 48 | +| Engine | Filled | 12, 16, 28, 32, 48 | +| Equal Circle | Regular | 12, 16, 28, 32, 48 | +| Equal Circle | Filled | 12, 16, 28, 32, 48 | +| Equal Off | Regular | 28, 32, 48 | +| Equal Off | Filled | 28, 32, 48 | +| Eraser | Regular | 12, 16, 28, 32, 48 | +| Eraser | Filled | 12, 16, 28, 32, 48 | +| Eraser Medium | Regular | 12, 16, 28, 32, 48 | +| Eraser Medium | Filled | 12, 16, 28, 32, 48 | +| Eraser Segment | Regular | 12, 16, 28, 32, 48 | +| Eraser Segment | Filled | 12, 16, 28, 32, 48 | +| Eraser Small | Regular | 12, 16, 28, 32, 48 | +| Eraser Small | Filled | 12, 16, 28, 32, 48 | +| Eraser Tool | Regular | 12, 16, 28, 32, 48 | +| Eraser Tool | Filled | 12, 16, 28, 32, 48 | +| Error Circle | Regular | 28, 32 | +| Error Circle | Filled | 28, 32 | +| Error Circle Settings | Regular | 12, 24, 28, 32, 48 | +| Error Circle Settings | Filled | 12, 24, 28, 32, 48 | +| Expand Up Left | Regular | 12 | +| Expand Up Left | Filled | 12 | +| Expand Up Right | Regular | 12 | +| Expand Up Right | Filled | 12 | +| Extended Dock | Regular | 12, 16, 28, 32, 48 | +| Extended Dock | Filled | 12, 16, 28, 32, 48 | +| Eye Lines | Regular | 12, 16 | +| Eye Lines | Filled | 12, 16 | +| Eye Off | Regular | 12, 28, 32, 48 | +| Eye Off | Filled | 12, 28, 32, 48 | +| Eye Tracking | Regular | 12, 28, 32, 48 | +| Eye Tracking | Filled | 12, 28, 32, 48 | +| Eye Tracking Off | Regular | 12, 28, 32, 48 | +| Eye Tracking Off | Filled | 12, 28, 32, 48 | +| Eyedropper | Regular | 12, 28, 32, 48 | +| Eyedropper | Filled | 12, 28, 32, 48 | +| Eyedropper Off | Regular | 12, 16, 28, 32, 48 | +| Eyedropper Off | Filled | 12, 16, 28, 32, 48 | +| F Stop | Regular | 12, 32, 48 | +| F Stop | Filled | 12, 32, 48 | +| FPS 120 | Regular | 12, 16, 28, 32, 48 | +| FPS 120 | Filled | 12, 16, 28, 32, 48 | +| FPS 240 | Regular | 12, 16, 28, 32, 48 | +| FPS 240 | Filled | 12, 16, 28, 32, 48 | +| FPS 30 | Regular | 12, 32 | +| FPS 30 | Filled | 12, 32 | +| FPS 60 | Regular | 12, 32 | +| FPS 60 | Filled | 12, 32 | +| FPS 960 | Regular | 12, 16, 28, 32, 48 | +| FPS 960 | Filled | 12, 16, 28, 32, 48 | +| Fast Acceleration | Regular | 12, 16, 28, 32, 48 | +| Fast Acceleration | Filled | 12, 16, 28, 32, 48 | +| Fast Forward | Regular | 12, 32, 48 | +| Fast Forward | Filled | 12, 32, 48 | +| Fax | Regular | 12, 24, 28, 32, 48 | +| Fax | Filled | 12, 24, 28, 32, 48 | +| Feed | Regular | 12 | +| Feed | Filled | 12 | +| Filmstrip | Regular | 12, 28 | +| Filmstrip | Filled | 12, 28 | +| Filmstrip Image | Regular | 12, 16, 28, 32, 48 | +| Filmstrip Image | Filled | 12, 16, 28, 32, 48 | +| Filmstrip Off | Regular | 12, 16, 20, 24, 28, 32 | +| Filmstrip Off | Filled | 12, 16, 20, 24, 28, 32 | +| Filmstrip Play | Regular | 12, 28, 48 | +| Filmstrip Play | Filled | 12, 28, 48 | +| Filmstrip Split | Regular | 12, 28, 48 | +| Filmstrip Split | Filled | 12, 28, 48 | +| Filter | Regular | 48 | +| Filter | Filled | 48 | +| Filter Add | Regular | 12, 16, 24, 28, 32, 48 | +| Filter Add | Filled | 12, 16, 24, 28, 32, 48 | +| Filter Dismiss | Regular | 12, 28, 32, 48 | +| Filter Dismiss | Filled | 12, 28, 32, 48 | +| Filter Sync | Regular | 12, 16, 28, 32, 48 | +| Filter Sync | Filled | 12, 16, 28, 32, 48 | +| Fingerprint | Regular | 12, 28 | +| Fingerprint | Filled | 12, 28 | +| Fire | Regular | 12, 28, 32, 48 | +| Fire | Filled | 12, 28, 32, 48 | +| Fireplace | Regular | 12, 16, 28 | +| Fireplace | Filled | 12, 16, 28 | +| Fixed Width | Regular | 12, 16, 28, 32, 48 | +| Fixed Width | Filled | 12, 16, 28, 32, 48 | +| Flag | Regular | 12 | +| Flag | Filled | 12 | +| Flag Checkered | Regular | 12, 16, 24, 28, 32, 48 | +| Flag Checkered | Filled | 12, 16, 24, 28, 32, 48 | +| Flag Clock | Regular | 12 | +| Flag Clock | Filled | 12 | +| Flag Off | Regular | 12, 32 | +| Flag Off | Filled | 12, 32 | +| Flag Pride | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Flag Pride | Filled | 12 | +| Flag Pride Intersex Inclusive Progress | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Flag Pride Intersex Inclusive Progress | Filled | 12 | +| Flag Pride Philadelphia | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Flag Pride Philadelphia | Filled | 12 | +| Flag Pride Progress | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Flag Pride Progress | Filled | 12 | +| Flash | Regular | 12, 48 | +| Flash | Filled | 12, 48 | +| Flash Add | Regular | 12, 16, 24, 28, 32, 48 | +| Flash Add | Filled | 12, 16, 24, 28, 32, 48 | +| Flash Auto | Regular | 12, 16, 28, 32, 48 | +| Flash Auto | Filled | 12, 16, 28, 32, 48 | +| Flash Checkmark | Regular | 12, 32, 48 | +| Flash Checkmark | Filled | 12, 32, 48 | +| Flash Flow | Regular | 12, 28, 32, 48 | +| Flash Flow | Filled | 12, 28, 32, 48 | +| Flash Off | Regular | 12, 16, 28, 32, 48 | +| Flash Off | Filled | 12, 16, 28, 32, 48 | +| Flash Play | Regular | 12, 16, 24, 28, 32, 48 | +| Flash Play | Filled | 12, 16, 24, 28, 32, 48 | +| Flash Settings | Regular | 12, 16, 28, 32, 48 | +| Flash Settings | Filled | 12, 16, 28, 32, 48 | +| Flash Sparkle | Regular | 12, 16, 28, 32, 48 | +| Flash Sparkle | Filled | 12, 16, 28, 32, 48 | +| Flashlight | Regular | 12, 28, 32, 48 | +| Flashlight | Filled | 12, 28, 32, 48 | +| Flashlight Off | Regular | 12, 16, 28, 32, 48 | +| Flashlight Off | Filled | 12, 16, 28, 32, 48 | +| Flip Horizontal | Regular | 12 | +| Flip Horizontal | Filled | 12 | +| Flip Vertical | Regular | 12 | +| Flip Vertical | Filled | 12 | +| Flow | Regular | 12, 28, 48 | +| Flow | Filled | 12, 28, 48 | +| Flowchart | Regular | 12, 28, 48 | +| Flowchart | Filled | 12, 28, 48 | +| Flowchart Circle | Regular | 12, 16, 28, 32, 48 | +| Flowchart Circle | Filled | 12, 16, 28, 32, 48 | +| Fluent | Regular | 12, 16, 28 | +| Fluent | Filled | 12, 16, 28 | +| Fluid | Regular | 12, 28, 32, 48 | +| Fluid | Filled | 12, 28, 32, 48 | +| Folder | Regular | 12 | +| Folder | Filled | 12 | +| Folder Add | Regular | 12 | +| Folder Add | Filled | 12 | +| Folder Arrow Left | Regular | 12 | +| Folder Arrow Left | Filled | 12 | +| Folder Arrow Right | Regular | 12 | +| Folder Arrow Right | Filled | 12 | +| Folder Arrow Up | Regular | 12 | +| Folder Arrow Up | Filled | 12 | +| Folder Briefcase | Regular | 12, 16, 24, 28, 32, 48 | +| Folder Briefcase | Filled | 12, 16, 24, 28, 32, 48 | +| Folder Globe | Regular | 12, 24, 28, 32, 48 | +| Folder Globe | Filled | 12, 24, 28, 32, 48 | +| Folder Lightning | Regular | 12, 28, 32, 48 | +| Folder Lightning | Filled | 12, 28, 32, 48 | +| Folder Link | Regular | 12 | +| Folder Link | Filled | 12 | +| Folder List | Regular | 12, 24, 28, 32, 48 | +| Folder List | Filled | 12, 24, 28, 32, 48 | +| Folder Mail | Regular | 12, 48 | +| Folder Mail | Filled | 12, 48 | +| Folder Multiple | Regular | 12, 20, 24, 28, 32, 48 | +| Folder Multiple | Filled | 12, 20, 24, 28, 32, 48 | +| Folder Open | Regular | 12, 28, 32, 48 | +| Folder Open | Filled | 12, 28, 32, 48 | +| Folder Open Vertical | Regular | 12, 28, 32, 48 | +| Folder Open Vertical | Filled | 12, 28, 32, 48 | +| Folder People | Regular | 12, 16, 28, 32, 48 | +| Folder People | Filled | 12, 16, 28, 32, 48 | +| Folder Person | Regular | 12 | +| Folder Person | Filled | 12 | +| Folder Prohibited | Regular | 12 | +| Folder Prohibited | Filled | 12 | +| Folder Search | Regular | 12, 28, 32, 48 | +| Folder Search | Filled | 12, 28, 32, 48 | +| Folder Swap | Regular | 12, 28, 32, 48 | +| Folder Swap | Filled | 12, 28, 32, 48 | +| Folder Sync | Regular | 12, 28, 32, 48 | +| Folder Sync | Filled | 12, 28, 32, 48 | +| Folder Zip | Regular | 12, 28, 32, 48 | +| Folder Zip | Filled | 12, 28, 32, 48 | +| Font Decrease | Regular | 12, 16, 28, 32, 48 | +| Font Decrease | Filled | 12, 16, 28, 32, 48 | +| Font Increase | Regular | 12, 16, 28, 32, 48 | +| Font Increase | Filled | 12, 16, 28, 32, 48 | +| Font Space Tracking In | Regular | 12, 32, 48 | +| Font Space Tracking In | Filled | 12, 32, 48 | +| Font Space Tracking Out | Regular | 12, 32, 48 | +| Font Space Tracking Out | Filled | 12, 32, 48 | +| Food | Regular | 12, 28, 32, 48 | +| Food | Filled | 12, 28, 32, 48 | +| Food Apple | Regular | 12, 16, 28, 32, 48 | +| Food Apple | Filled | 12, 16, 28, 32, 48 | +| Food Cake | Regular | 28, 32, 48 | +| Food Cake | Filled | 28, 32, 48 | +| Food Carrot | Regular | 12, 16, 28, 32, 48 | +| Food Carrot | Filled | 12, 16, 28, 32, 48 | +| Food Chicken Leg | Regular | 12, 28, 48 | +| Food Chicken Leg | Filled | 12, 28, 48 | +| Food Egg | Regular | 12, 28, 32, 48 | +| Food Egg | Filled | 12, 28, 32, 48 | +| Food Fish | Regular | 12, 16, 28, 32, 48 | +| Food Fish | Filled | 12, 16, 28, 32, 48 | +| Food Grains | Regular | 12, 16, 28, 32, 48 | +| Food Grains | Filled | 12, 16, 28, 32, 48 | +| Food Pizza | Regular | 12, 16, 28, 32, 48 | +| Food Pizza | Filled | 12, 16, 28, 32, 48 | +| Food Toast | Regular | 12, 28, 32, 48 | +| Food Toast | Filled | 12, 28, 32, 48 | +| Form | Regular | 12, 16, 32 | +| Form | Filled | 12, 16, 32 | +| Form Multiple | Regular | 12, 16, 32 | +| Form Multiple | Filled | 12, 16, 32 | +| Form New | Regular | 12, 16, 32 | +| Form New | Filled | 12, 16, 32 | +| Frame | Regular | 12, 28, 32, 48 | +| Frame | Filled | 12, 28, 32, 48 | +| Full Screen Maximize | Regular | 12, 48 | +| Full Screen Maximize | Filled | 12, 48 | +| Full Screen Minimize | Regular | 12, 48 | +| Full Screen Minimize | Filled | 12, 48 | +| GIF | Regular | 12, 28, 32, 48 | +| GIF | Filled | 12, 28, 32, 48 | +| Games | Regular | 12 | +| Games | Filled | 12 | +| Gantt Chart | Regular | 12, 28, 32, 48 | +| Gantt Chart | Filled | 12, 28, 32, 48 | +| Gas | Regular | 12, 16, 28, 32, 48 | +| Gas | Filled | 12, 16, 28, 32, 48 | +| Gas Pump | Regular | 12, 16, 28, 32, 48 | +| Gas Pump | Filled | 12, 16, 28, 32, 48 | +| Gather | Regular | 12, 16, 24, 28, 32, 48 | +| Gather | Filled | 12, 16, 24, 28, 32, 48 | +| Gauge | Regular | 12, 16, 28, 48 | +| Gauge | Filled | 12, 16, 28, 48 | +| Gauge Add | Regular | 12, 16, 24, 28, 32, 48 | +| Gauge Add | Filled | 12, 16, 24, 28, 32, 48 | +| Gavel | Regular | 12, 28, 48 | +| Gavel | Filled | 12, 28, 48 | +| Gavel Prohibited | Regular | 12, 24, 28, 32, 48 | +| Gavel Prohibited | Filled | 12, 24, 28, 32, 48 | +| Gesture | Regular | 12, 16, 28, 32, 48 | +| Gesture | Filled | 12, 16, 28, 32, 48 | +| Gift | Regular | 12, 28, 32, 48 | +| Gift | Filled | 12, 28, 32, 48 | +| Gift Card | Regular | 12, 28, 32, 48 | +| Gift Card | Filled | 12, 28, 32, 48 | +| Gift Card Add | Regular | 12, 16, 28, 32, 48 | +| Gift Card Add | Filled | 12, 16, 28, 32, 48 | +| Gift Card Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Gift Card Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Gift Card Money | Regular | 12, 16, 28, 32, 48 | +| Gift Card Money | Filled | 12, 16, 28, 32, 48 | +| Gift Card Multiple | Regular | 12, 16, 28, 32, 48 | +| Gift Card Multiple | Filled | 12, 16, 28, 32, 48 | +| Gift Open | Regular | 12, 28, 32, 48 | +| Gift Open | Filled | 12, 28, 32, 48 | +| Glance | Regular | 16, 28, 32, 48 | +| Glance | Filled | 16, 28, 32, 48 | +| Glance Default | Regular | 16, 20, 24, 28, 32, 48 | +| Glance Default | Filled | 16, 20, 24, 28, 32, 48 | +| Glance Horizontal | Regular | 28, 48 | +| Glance Horizontal | Filled | 28, 48 | +| Glance Horizontal Sparkle | Regular | 12, 16, 20, 24, 28, 48 | +| Glance Horizontal Sparkle | Filled | 12, 16, 20, 24, 28, 48 | +| Glance Horizontal Sparkles | Regular | 12, 28, 32, 48 | +| Glance Horizontal Sparkles | Filled | 12, 28, 32, 48 | +| Glasses | Regular | 12 | +| Glasses | Filled | 12 | +| Glasses Off | Regular | 12 | +| Glasses Off | Filled | 12 | +| Globe Add | Regular | 12, 16, 28, 32, 48 | +| Globe Add | Filled | 12, 16, 28, 32, 48 | +| Globe Arrow Forward | Regular | 12, 28, 48 | +| Globe Arrow Forward | Filled | 12, 28, 48 | +| Globe Arrow Up | Regular | 12, 28, 32, 48 | +| Globe Arrow Up | Filled | 12, 28, 32, 48 | +| Globe Clock | Regular | 12, 28, 32, 48 | +| Globe Clock | Filled | 12, 28, 32, 48 | +| Globe Desktop | Regular | 12, 16, 28, 32, 48 | +| Globe Desktop | Filled | 12, 16, 28, 32, 48 | +| Globe Error | Regular | 12, 28, 32, 48 | +| Globe Error | Filled | 12, 28, 32, 48 | +| Globe Location | Regular | 12, 16, 28, 32, 48 | +| Globe Location | Filled | 12, 16, 28, 32, 48 | +| Globe Person | Regular | 12, 16, 28, 32, 48 | +| Globe Person | Filled | 12, 16, 28, 32, 48 | +| Globe Prohibited | Regular | 12, 28, 32, 48 | +| Globe Prohibited | Filled | 12, 28, 32, 48 | +| Globe Search | Regular | 12, 16, 28, 32, 48 | +| Globe Search | Filled | 12, 16, 28, 32, 48 | +| Globe Shield | Regular | 12, 16, 28, 32 | +| Globe Shield | Filled | 12, 16, 28, 32 | +| Globe Star | Regular | 12, 24, 28, 32, 48 | +| Globe Star | Filled | 12, 24, 28, 32, 48 | +| Globe Surface | Regular | 12, 16, 28, 48 | +| Globe Surface | Filled | 12, 16, 28, 48 | +| Globe Sync | Regular | 12, 28, 32, 48 | +| Globe Sync | Filled | 12, 28, 32, 48 | +| Globe Video | Regular | 12, 16 | +| Globe Video | Filled | 12, 16 | +| Globe Warning | Regular | 12, 28, 32, 48 | +| Globe Warning | Filled | 12, 28, 32, 48 | +| Grid | Regular | 12, 32, 48 | +| Grid | Filled | 12, 32, 48 | +| Grid Circles | Regular | 12, 16, 20, 32, 48 | +| Grid Circles | Filled | 12, 16, 20, 32, 48 | +| Grid Dots | Regular | 12, 16, 32, 48 | +| Grid Dots | Filled | 12, 16, 32, 48 | +| Grid Kanban | Regular | 12, 24, 28, 32, 48 | +| Grid Kanban | Filled | 12, 24, 28, 32, 48 | +| Group | Regular | 12, 16, 28, 32, 48 | +| Group | Filled | 12, 16, 28, 32, 48 | +| Group Dismiss | Regular | 12, 16, 28, 32, 48 | +| Group Dismiss | Filled | 12, 16, 28, 32, 48 | +| Group List | Regular | 12, 16, 28, 32, 48 | +| Group List | Filled | 12, 16, 28, 32, 48 | +| Group Return | Regular | 12, 16, 28, 32, 48 | +| Group Return | Filled | 12, 16, 28, 32, 48 | +| Guardian | Regular | 12, 16, 32 | +| Guardian | Filled | 12, 16, 32 | +| Guest Add | Regular | 12, 16, 28, 32, 48 | +| Guest Add | Filled | 12, 16, 28, 32, 48 | +| Guitar | Regular | 12, 32, 48 | +| Guitar | Filled | 12, 32, 48 | +| HD | Regular | 12, 28, 32, 48 | +| HD | Filled | 12, 28, 32, 48 | +| HDR | Regular | 12, 16, 28, 32, 48 | +| HDR | Filled | 12, 16, 28, 32, 48 | +| HDR Off | Regular | 12, 16, 28, 32, 48 | +| HDR Off | Filled | 12, 16, 28, 32, 48 | +| Hand Draw | Regular | 12, 32, 48 | +| Hand Draw | Filled | 12, 32, 48 | +| Hand Left | Regular | 12, 32, 48 | +| Hand Left | Filled | 12, 32, 48 | +| Hand Left Chat | Regular | 12, 32, 48 | +| Hand Left Chat | Filled | 12, 32, 48 | +| Hand Open Heart | Regular | 12, 16, 24, 28, 48 | +| Hand Open Heart | Filled | 12, 16, 24, 28, 48 | +| Hand Right | Regular | 12, 32, 48 | +| Hand Right | Filled | 12, 32, 48 | +| Hand Right Off | Regular | 12, 32, 48 | +| Hand Right Off | Filled | 12, 32, 48 | +| Hand Wave | Regular | 12, 28, 32, 48 | +| Hand Wave | Filled | 12, 28, 32, 48 | +| Handshake | Regular | 12, 28, 48 | +| Handshake | Filled | 12, 28, 48 | +| Hard Drive | Regular | 12 | +| Hard Drive | Filled | 12 | +| Hard Drive Call | Regular | 12, 16, 20, 28, 48 | +| Hard Drive Call | Filled | 12, 16, 20, 28, 48 | +| Hat Graduation | Regular | 32, 48 | +| Hat Graduation | Filled | 32, 48 | +| Hat Graduation Add | Regular | 12, 28, 32, 48 | +| Hat Graduation Add | Filled | 12, 28, 32, 48 | +| Hat Graduation Sparkle | Regular | 12, 32, 48 | +| Hat Graduation Sparkle | Filled | 12, 32, 48 | +| Headphones | Regular | 12, 16 | +| Headphones | Filled | 12, 16 | +| Headphones Sound Wave | Regular | 12, 16 | +| Headphones Sound Wave | Filled | 12, 16 | +| Headset | Regular | 12 | +| Headset | Filled | 12 | +| Headset Add | Regular | 12, 16, 28, 32, 48 | +| Headset Add | Filled | 12, 16, 28, 32, 48 | +| Headset VR | Regular | 12, 16, 28, 32, 48 | +| Headset VR | Filled | 12, 16, 28, 32, 48 | +| Heart Broken | Regular | 12, 28, 32, 48 | +| Heart Broken | Filled | 12, 28, 32, 48 | +| Heart Circle | Regular | 12, 28, 32, 48 | +| Heart Circle | Filled | 12, 28, 32, 48 | +| Heart Circle Hint | Regular | 12 | +| Heart Circle Hint | Filled | 12 | +| Heart Off | Regular | 12, 28, 32, 48 | +| Heart Off | Filled | 12, 28, 32, 48 | +| Heart Pulse | Regular | 12, 16, 28, 48 | +| Heart Pulse | Filled | 12, 16, 28, 48 | +| Heart Pulse Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Heart Pulse Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Heart Pulse Error | Regular | 12, 16, 24, 28, 32, 48 | +| Heart Pulse Error | Filled | 12, 16, 24, 28, 32, 48 | +| Heart Pulse Warning | Regular | 12, 16, 24, 28, 32, 48 | +| Heart Pulse Warning | Filled | 12, 16, 24, 28, 32, 48 | +| Hexagon Three | Regular | 28, 32, 48 | +| Hexagon Three | Filled | 28, 32, 48 | +| Highlight | Regular | 12, 28, 32, 48 | +| Highlight | Filled | 12, 28, 32, 48 | +| Highlight Accent | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Highlight Accent | Filled | 12, 28, 32, 48 | +| Highlight Link | Regular | 12, 16, 24, 28, 32, 48 | +| Highlight Link | Filled | 12, 16, 24, 28, 32, 48 | +| History | Regular | 12 | +| History | Filled | 12 | +| History Dismiss | Regular | 12, 16 | +| History Dismiss | Filled | 12, 16 | +| Home Add | Regular | 12, 16, 28, 32, 48 | +| Home Add | Filled | 12, 16, 28, 32, 48 | +| Home Checkmark | Regular | 12, 28, 32, 48 | +| Home Checkmark | Filled | 12, 28, 32, 48 | +| Home Database | Regular | 12, 16, 28, 48 | +| Home Database | Filled | 12, 16, 28, 48 | +| Home Heart | Regular | 12, 28, 48 | +| Home Heart | Filled | 12, 28, 48 | +| Home More | Regular | 12, 16, 28 | +| Home More | Filled | 12, 16, 28 | +| Home Person | Regular | 12, 16, 28, 32, 48 | +| Home Person | Filled | 12, 16, 28, 32, 48 | +| Home Split | Regular | 12, 16, 28 | +| Home Split | Filled | 12, 16, 28 | +| Hourglass | Regular | 12, 28, 32, 48 | +| Hourglass | Filled | 12, 28, 32, 48 | +| Hourglass Half | Regular | 12, 28, 32, 48 | +| Hourglass Half | Filled | 12, 28, 32, 48 | +| Hourglass One Quarter | Regular | 12, 28, 32, 48 | +| Hourglass One Quarter | Filled | 12, 28, 32, 48 | +| Hourglass Three Quarter | Regular | 12, 28, 32, 48 | +| Hourglass Three Quarter | Filled | 12, 28, 32, 48 | +| Icons | Regular | 12, 16, 28, 32, 48 | +| Icons | Filled | 12, 16, 28, 32, 48 | +| Image | Regular | 12 | +| Image | Filled | 12 | +| Image Add | Regular | 12, 16, 28, 32, 48 | +| Image Add | Filled | 12, 16, 28, 32, 48 | +| Image Alt Text | Regular | 12, 28, 32, 48 | +| Image Alt Text | Filled | 12, 28, 32, 48 | +| Image Arrow Back | Regular | 12, 16, 28, 32, 48 | +| Image Arrow Back | Filled | 12, 16, 28, 32, 48 | +| Image Arrow Counterclockwise | Regular | 12, 16, 28, 32, 48 | +| Image Arrow Counterclockwise | Filled | 12, 16, 28, 32, 48 | +| Image Arrow Forward | Regular | 12, 16, 28, 32, 48 | +| Image Arrow Forward | Filled | 12, 16, 28, 32, 48 | +| Image Border | Regular | 12 | +| Image Border | Filled | 12 | +| Image Circle | Regular | 12 | +| Image Circle | Filled | 12 | +| Image Copy | Regular | 12, 16, 32, 48 | +| Image Copy | Filled | 12, 16, 32, 48 | +| Image Edit | Regular | 12, 28, 32, 48 | +| Image Edit | Filled | 12, 28, 32, 48 | +| Image Globe | Regular | 12, 16, 28, 32, 48 | +| Image Globe | Filled | 12, 16, 28, 32, 48 | +| Image Multiple | Regular | 12 | +| Image Multiple | Filled | 12 | +| Image Multiple Off | Regular | 12, 24, 28, 32, 48 | +| Image Multiple Off | Filled | 12, 24, 28, 32, 48 | +| Image Off | Regular | 12, 16 | +| Image Off | Filled | 12, 16 | +| Image Prohibited | Regular | 12, 16, 28, 32, 48 | +| Image Prohibited | Filled | 12, 16, 28, 32, 48 | +| Image Reflection | Regular | 12, 16, 28, 32, 48 | +| Image Reflection | Filled | 12, 16, 28, 32, 48 | +| Image Search | Regular | 12, 16, 28, 32, 48 | +| Image Search | Filled | 12, 16, 28, 32, 48 | +| Image Shadow | Regular | 12, 16, 28, 32, 48 | +| Image Shadow | Filled | 12, 16, 28, 32, 48 | +| Image Sparkle | Regular | 12, 28, 32, 48 | +| Image Sparkle | Filled | 12, 28, 32, 48 | +| Image Stack | Regular | 12, 24, 28, 32, 48 | +| Image Stack | Filled | 12, 24, 28, 32, 48 | +| Image Table | Regular | 12 | +| Image Table | Filled | 12 | +| Immersive Reader | Regular | 12, 32, 48 | +| Immersive Reader | Filled | 12, 32, 48 | +| Important | Regular | 28, 48 | +| Important | Filled | 28, 48 | +| InPrivate Account | Regular | 12, 32, 48 | +| InPrivate Account | Filled | 12, 32, 48 | +| Incognito | Regular | 12, 16, 28, 32, 48 | +| Incognito | Filled | 12, 16, 28, 32, 48 | +| Info Shield | Regular | 12, 16, 24, 28, 32, 48 | +| Info Shield | Filled | 12, 16, 24, 28, 32, 48 | +| Ink Stroke | Regular | 12, 16, 28, 32, 48 | +| Ink Stroke | Filled | 12, 16, 28, 32, 48 | +| Ink Stroke Arrow Down | Regular | 12, 16, 28, 32, 48 | +| Ink Stroke Arrow Down | Filled | 12, 16, 28, 32, 48 | +| Ink Stroke Arrow Up Down | Regular | 12, 16, 28, 32, 48 | +| Ink Stroke Arrow Up Down | Filled | 12, 16, 28, 32, 48 | +| Inking Tool | Regular | 12, 28, 48 | +| Inking Tool | Filled | 12, 28, 48 | +| Inking Tool Accent | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Inking Tool Accent | Filled | 12, 28, 48 | +| Insert | Regular | 12, 16, 24, 28, 32, 48 | +| Insert | Filled | 12, 16, 24, 28, 32, 48 | +| IoT | Regular | 12, 28, 32, 48 | +| IoT | Filled | 12, 28, 32, 48 | +| IoT Alert | Regular | 12, 28, 32, 48 | +| IoT Alert | Filled | 12, 28, 32, 48 | +| JavaScript | Regular | 12, 28, 32, 48 | +| JavaScript | Filled | 12, 28, 32, 48 | +| Joystick | Regular | 12, 16, 24, 28, 32, 48 | +| Joystick | Filled | 12, 16, 24, 28, 32, 48 | +| Key | Regular | 12, 28, 48 | +| Key | Filled | 12, 28, 48 | +| Key Command | Regular | 12, 28, 32, 48 | +| Key Command | Filled | 12, 28, 32, 48 | +| Key Multiple | Regular | 12, 28, 32, 48 | +| Key Multiple | Filled | 12, 28, 32, 48 | +| Key Reset | Regular | 12, 16, 28, 32, 48 | +| Key Reset | Filled | 12, 16, 28, 32, 48 | +| Keyboard | Regular | 12, 28, 32, 48 | +| Keyboard | Filled | 12, 28, 32, 48 | +| Keyboard 123 | Regular | 12, 16, 28, 32, 48 | +| Keyboard 123 | Filled | 12, 16, 28, 32, 48 | +| Keyboard Dock | Regular | 12, 16, 28, 32, 48 | +| Keyboard Dock | Filled | 12, 16, 28, 32, 48 | +| Keyboard Layout Float | Regular | 12, 16, 28, 32, 48 | +| Keyboard Layout Float | Filled | 12, 16, 28, 32, 48 | +| Keyboard Layout One Handed Left | Regular | 12, 16, 28, 32, 48 | +| Keyboard Layout One Handed Left | Filled | 12, 16, 28, 32, 48 | +| Keyboard Layout Resize | Regular | 12, 16, 28, 32, 48 | +| Keyboard Layout Resize | Filled | 12, 16, 28, 32, 48 | +| Keyboard Layout Split | Regular | 12, 16, 28, 32, 48 | +| Keyboard Layout Split | Filled | 12, 16, 28, 32, 48 | +| Keyboard Mouse | Regular | 12, 20, 24, 28, 32, 48 | +| Keyboard Mouse | Filled | 12, 20, 24, 28, 32, 48 | +| Keyboard Shift | Regular | 12, 28, 32, 48 | +| Keyboard Shift | Filled | 12, 28, 32, 48 | +| Keyboard Shift Uppercase | Regular | 12, 28, 32, 48 | +| Keyboard Shift Uppercase | Filled | 12, 28, 32, 48 | +| Keyboard Tab | Regular | 12, 16, 28, 32, 48 | +| Keyboard Tab | Filled | 12, 16, 28, 32, 48 | +| Kiosk | Regular | 12, 16, 20, 28, 32, 48 | +| Kiosk | Filled | 12, 16, 20, 28, 32, 48 | +| Laptop | Regular | 12, 48 | +| Laptop | Filled | 12, 48 | +| Laptop Briefcase | Regular | 12, 16, 28, 48 | +| Laptop Briefcase | Filled | 12, 16, 28, 48 | +| Laptop Dismiss | Regular | 12, 24, 28, 32, 48 | +| Laptop Dismiss | Filled | 12, 24, 28, 32, 48 | +| Laptop Multiple | Regular | 12, 16, 20, 28, 32, 48 | +| Laptop Multiple | Filled | 12, 16, 20, 28, 32, 48 | +| Laptop Settings | Regular | 12, 16, 28, 48 | +| Laptop Settings | Filled | 12, 16, 28, 48 | +| Laptop Shield | Regular | 12, 24, 28, 32, 48 | +| Laptop Shield | Filled | 12, 24, 28, 32, 48 | +| Laser Tool | Regular | 12, 16, 24, 28, 32, 48 | +| Laser Tool | Filled | 12, 16, 24, 28, 32, 48 | +| Lasso | Regular | 12, 16, 32, 48 | +| Lasso | Filled | 12, 16, 32, 48 | +| Launcher Settings | Regular | 12, 16, 28, 32, 48 | +| Launcher Settings | Filled | 12, 16, 28, 32, 48 | +| Layer | Regular | 12, 16, 28, 32, 48 | +| Layer | Filled | 12, 16, 28, 32, 48 | +| Layer Diagonal | Regular | 12, 28, 32, 48 | +| Layer Diagonal | Filled | 12, 28, 32, 48 | +| Layer Diagonal Add | Regular | 12, 16, 24, 28, 32, 48 | +| Layer Diagonal Add | Filled | 12, 16, 24, 28, 32, 48 | +| Layer Diagonal Person | Regular | 12, 28, 32, 48 | +| Layer Diagonal Person | Filled | 12, 28, 32, 48 | +| Layer Diagonal Sparkle | Regular | 12, 28, 32, 48 | +| Layer Diagonal Sparkle | Filled | 12, 28, 32, 48 | +| Layout Cell Four | Regular | 12, 28, 32, 48 | +| Layout Cell Four | Filled | 12, 28, 32, 48 | +| Layout Cell Four Focus Bottom Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Cell Four Focus Bottom Left | Filled | 12, 28, 32, 48 | +| Layout Cell Four Focus Bottom Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Cell Four Focus Bottom Right | Filled | 12, 28, 32, 48 | +| Layout Cell Four Focus Top Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Cell Four Focus Top Left | Filled | 12, 28, 32, 48 | +| Layout Cell Four Focus Top Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Cell Four Focus Top Right | Filled | 12, 28, 32, 48 | +| Layout Column Four | Regular | 12, 28, 32, 48 | +| Layout Column Four | Filled | 12, 28, 32, 48 | +| Layout Column Four Focus Center Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Four Focus Center Left | Filled | 12, 28, 32, 48 | +| Layout Column Four Focus Center Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Four Focus Center Right | Filled | 12, 28, 32, 48 | +| Layout Column Four Focus Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Four Focus Left | Filled | 12, 28, 32, 48 | +| Layout Column Four Focus Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Four Focus Right | Filled | 12, 28, 32, 48 | +| Layout Column One Third Left | Regular | 12, 28, 32, 48 | +| Layout Column One Third Left | Filled | 12, 28, 32, 48 | +| Layout Column One Third Right | Regular | 12, 28, 32, 48 | +| Layout Column One Third Right | Filled | 12, 28, 32, 48 | +| Layout Column One Third Right Hint | Regular | 12, 28, 32, 48 | +| Layout Column One Third Right Hint | Filled | 12, 28, 32, 48 | +| Layout Column Three | Regular | 12, 28, 32, 48 | +| Layout Column Three | Filled | 12, 28, 32, 48 | +| Layout Column Three Focus Center | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Three Focus Center | Filled | 12, 28, 32, 48 | +| Layout Column Three Focus Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Three Focus Left | Filled | 12, 28, 32, 48 | +| Layout Column Three Focus Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Three Focus Right | Filled | 12, 28, 32, 48 | +| Layout Column Two | Regular | 12, 28, 32, 48 | +| Layout Column Two | Filled | 12, 28, 32, 48 | +| Layout Column Two Focus Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Focus Left | Filled | 12, 28, 32, 48 | +| Layout Column Two Focus Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Focus Right | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Left | Regular | 12, 28, 32, 48 | +| Layout Column Two Split Left | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Left Focus Bottom Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Split Left Focus Bottom Left | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Left Focus Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Split Left Focus Right | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Left Focus Top Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Split Left Focus Top Left | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Right | Regular | 12, 28, 32, 48 | +| Layout Column Two Split Right | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Right Focus Bottom Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Split Right Focus Bottom Right | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Right Focus Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Split Right Focus Left | Filled | 12, 28, 32, 48 | +| Layout Column Two Split Right Focus Top Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Column Two Split Right Focus Top Right | Filled | 12, 28, 32, 48 | +| Layout Row Four | Regular | 12, 28, 32, 48 | +| Layout Row Four | Filled | 12, 28, 32, 48 | +| Layout Row Four Focus Bottom | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Four Focus Bottom | Filled | 12, 28, 32, 48 | +| Layout Row Four Focus Center Bottom | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Four Focus Center Bottom | Filled | 12, 28, 32, 48 | +| Layout Row Four Focus Center Top | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Four Focus Center Top | Filled | 12, 28, 32, 48 | +| Layout Row Four Focus Top | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Four Focus Top | Filled | 12, 28, 32, 48 | +| Layout Row Three | Regular | 12, 28, 32, 48 | +| Layout Row Three | Filled | 12, 28, 32, 48 | +| Layout Row Three Focus Bottom | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Three Focus Bottom | Filled | 12, 28, 32, 48 | +| Layout Row Three Focus Center | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Three Focus Center | Filled | 12, 28, 32, 48 | +| Layout Row Three Focus Top | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Three Focus Top | Filled | 12, 28, 32, 48 | +| Layout Row Two | Regular | 12, 28, 32, 48 | +| Layout Row Two | Filled | 12, 28, 32, 48 | +| Layout Row Two Focus Bottom | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Focus Bottom | Filled | 12, 28, 32, 48 | +| Layout Row Two Focus Top | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Focus Top | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Bottom | Regular | 12, 28, 32, 48 | +| Layout Row Two Split Bottom | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Bottom Focus Bottom Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Split Bottom Focus Bottom Left | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Bottom Focus Bottom Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Split Bottom Focus Bottom Right | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Bottom Focus Top | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Split Bottom Focus Top | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Top | Regular | 12, 28, 32, 48 | +| Layout Row Two Split Top | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Top Focus Bottom | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Split Top Focus Bottom | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Top Focus Top Left | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Split Top Focus Top Left | Filled | 12, 28, 32, 48 | +| Layout Row Two Split Top Focus Top Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Layout Row Two Split Top Focus Top Right | Filled | 12, 28, 32, 48 | +| Leaf One | Regular | 12, 28, 48 | +| Leaf One | Filled | 12, 28, 48 | +| Leaf Three | Regular | 12, 28, 32, 48 | +| Leaf Three | Filled | 12, 28, 32, 48 | +| Leaf Two | Regular | 12, 28 | +| Leaf Two | Filled | 12, 28 | +| Learning App | Regular | 12, 16, 28, 32, 48 | +| Learning App | Filled | 12, 16, 28, 32, 48 | +| Library | Regular | 12, 48 | +| Library | Filled | 12, 48 | +| Lightbulb | Regular | 12 | +| Lightbulb | Filled | 12 | +| Lightbulb Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Lightbulb Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Lightbulb Circle | Regular | 12, 16, 28, 32, 48 | +| Lightbulb Circle | Filled | 12, 16, 28, 32, 48 | +| Lightbulb Filament | Regular | 12, 28 | +| Lightbulb Filament | Filled | 12, 28 | +| Lightbulb Person | Regular | 12 | +| Lightbulb Person | Filled | 12 | +| Likert | Regular | 12, 28, 32, 48 | +| Likert | Filled | 12, 28, 32, 48 | +| Line | Regular | 12, 16, 28 | +| Line | Filled | 12, 16, 28 | +| Line Dashes | Regular | 12, 16, 28 | +| Line Dashes | Filled | 12, 16, 28 | +| Line Horizontal 1 | Regular | 12, 32, 48 | +| Line Horizontal 1 | Filled | 12, 32, 48 | +| Line Horizontal 1 Dashes | Regular | 12, 32, 48 | +| Line Horizontal 1 Dashes | Filled | 12, 32, 48 | +| Line Horizontal 2 Dashes Solid | Regular | 12, 32, 48 | +| Line Horizontal 2 Dashes Solid | Filled | 12, 32, 48 | +| Line Horizontal 3 | Regular | 12, 16, 24, 28, 32, 48 | +| Line Horizontal 3 | Filled | 12, 16, 24, 28, 32, 48 | +| Line Horizontal 4 | Regular | 12, 24, 28, 32, 48 | +| Line Horizontal 4 | Filled | 12, 24, 28, 32, 48 | +| Line Horizontal 4 Search | Regular | 12, 24, 28, 32, 48 | +| Line Horizontal 4 Search | Filled | 12, 24, 28, 32, 48 | +| Line Horizontal 5 | Regular | 12, 16, 24, 28, 32, 48 | +| Line Horizontal 5 | Filled | 12, 16, 24, 28, 32, 48 | +| Line Horizontal 5 Error | Regular | 12, 16, 24, 28, 32, 48 | +| Line Horizontal 5 Error | Filled | 12, 16, 24, 28, 32, 48 | +| Line Style | Regular | 12, 16, 28, 32, 48 | +| Line Style | Filled | 12, 16, 28, 32, 48 | +| Line Thickness | Regular | 12, 16, 28, 32, 48 | +| Line Thickness | Filled | 12, 16, 28, 32, 48 | +| Link Add | Regular | 12, 28, 32, 48 | +| Link Add | Filled | 12, 28, 32, 48 | +| Link Dismiss | Regular | 12, 28, 32, 48 | +| Link Dismiss | Filled | 12, 28, 32, 48 | +| Link Edit | Regular | 12, 28, 32, 48 | +| Link Edit | Filled | 12, 28, 32, 48 | +| Link Multiple | Regular | 12, 28, 32, 48 | +| Link Multiple | Filled | 12, 28, 32, 48 | +| Link Person | Regular | 12, 28 | +| Link Person | Filled | 12, 28 | +| Link Settings | Regular | 12, 16, 20, 28, 32, 48 | +| Link Settings | Filled | 12, 16, 20, 28, 32, 48 | +| Link Square | Regular | 28, 32, 48 | +| Link Square | Filled | 28, 32, 48 | +| Link Toolbox | Regular | 12, 16, 24, 28, 32, 48 | +| Link Toolbox | Filled | 12, 16, 24, 28, 32, 48 | +| List | Regular | 12, 32, 48 | +| List | Filled | 12, 32, 48 | +| List Bar | Regular | 12, 24, 28, 32, 48 | +| List Bar | Filled | 12, 24, 28, 32, 48 | +| List Bar Tree | Regular | 12, 24, 28, 32, 48 | +| List Bar Tree | Filled | 12, 24, 28, 32, 48 | +| List Bar Tree Offset | Regular | 12, 24, 28, 32, 48 | +| List Bar Tree Offset | Filled | 12, 24, 28, 32, 48 | +| List RTL | Regular | 12, 24, 28, 32, 48 | +| List RTL | Filled | 12, 24, 28, 32, 48 | +| Live | Regular | 12, 16, 28, 32, 48 | +| Live | Filled | 12, 16, 28, 32, 48 | +| Live Off | Regular | 12, 16, 28, 32, 48 | +| Live Off | Filled | 12, 16, 28, 32, 48 | +| Local Language | Regular | 12, 32, 48 | +| Local Language | Filled | 12, 32, 48 | +| Location | Regular | 32 | +| Location | Filled | 32 | +| Location Add | Regular | 12, 28, 32, 48 | +| Location Add | Filled | 12, 28, 32, 48 | +| Location Add Left | Regular | 12, 16, 24, 28, 32, 48 | +| Location Add Left | Filled | 12, 16, 24, 28, 32, 48 | +| Location Add Right | Regular | 12, 16, 24, 28, 32, 48 | +| Location Add Right | Filled | 12, 16, 24, 28, 32, 48 | +| Location Add Up | Regular | 12, 16, 24, 28, 32, 48 | +| Location Add Up | Filled | 12, 16, 24, 28, 32, 48 | +| Location Arrow Left | Regular | 12, 24, 28, 32 | +| Location Arrow Left | Filled | 12, 24, 28, 32 | +| Location Arrow Right | Regular | 12, 24, 28, 32 | +| Location Arrow Right | Filled | 12, 24, 28, 32 | +| Location Arrow Up | Regular | 12, 24, 28, 32 | +| Location Arrow Up | Filled | 12, 24, 28, 32 | +| Location Dismiss | Regular | 12, 16, 28, 32, 48 | +| Location Dismiss | Filled | 12, 16, 28, 32, 48 | +| Location Live | Regular | 12, 16, 28, 32, 48 | +| Location Live | Filled | 12, 16, 28, 32, 48 | +| Location Off | Regular | 12, 32 | +| Location Off | Filled | 12, 32 | +| Location Target Square | Regular | 12, 28, 48 | +| Location Target Square | Filled | 12, 28, 48 | +| Lock Closed Key | Regular | 12, 28, 32, 48 | +| Lock Closed Key | Filled | 12, 28, 32, 48 | +| Lock Multiple | Regular | 12, 16, 28, 32, 48 | +| Lock Multiple | Filled | 12, 16, 28, 32, 48 | +| Lock Shield | Regular | 12 | +| Lock Shield | Filled | 12 | +| Lottery | Regular | 12, 16, 28, 32, 48 | +| Lottery | Filled | 12, 16, 28, 32, 48 | +| Luggage | Regular | 12 | +| Luggage | Filled | 12 | +| Mail Add | Regular | 12, 28, 32, 48 | +| Mail Add | Filled | 12, 28, 32, 48 | +| Mail Alert | Regular | 12, 32, 48 | +| Mail Alert | Filled | 12, 32, 48 | +| Mail All Read | Regular | 12, 32, 48 | +| Mail All Read | Filled | 12, 32, 48 | +| Mail All Unread | Regular | 12, 16, 24, 28, 32, 48 | +| Mail All Unread | Filled | 12, 16, 24, 28, 32, 48 | +| Mail Arrow Double Back | Regular | 12, 28, 32, 48 | +| Mail Arrow Double Back | Filled | 12, 28, 32, 48 | +| Mail Arrow Down | Regular | 12, 24, 28, 32, 48 | +| Mail Arrow Down | Filled | 12, 24, 28, 32, 48 | +| Mail Arrow Forward | Regular | 12, 24, 28, 32, 48 | +| Mail Arrow Forward | Filled | 12, 24, 28, 32, 48 | +| Mail Arrow Up | Regular | 12, 28, 32, 48 | +| Mail Arrow Up | Filled | 12, 28, 32, 48 | +| Mail Attach | Regular | 12, 32, 48 | +| Mail Attach | Filled | 12, 32, 48 | +| Mail Checkmark | Regular | 12, 28, 32, 48 | +| Mail Checkmark | Filled | 12, 28, 32, 48 | +| Mail Clock | Regular | 12, 28, 32, 48 | +| Mail Clock | Filled | 12, 28, 32, 48 | +| Mail Copy | Regular | 12, 16, 28, 32, 48 | +| Mail Copy | Filled | 12, 16, 28, 32, 48 | +| Mail Dismiss | Regular | 12, 32, 48 | +| Mail Dismiss | Filled | 12, 32, 48 | +| Mail Edit | Regular | 12, 16, 28, 32, 48 | +| Mail Edit | Filled | 12, 16, 28, 32, 48 | +| Mail Error | Regular | 12, 28, 32, 48 | +| Mail Error | Filled | 12, 28, 32, 48 | +| Mail Inbox | Regular | 12, 32, 48 | +| Mail Inbox | Filled | 12, 32, 48 | +| Mail Inbox Add | Regular | 12, 32, 48 | +| Mail Inbox Add | Filled | 12, 32, 48 | +| Mail Inbox All | Regular | 12, 16, 28, 32, 48 | +| Mail Inbox All | Filled | 12, 16, 28, 32, 48 | +| Mail Inbox Arrow Down | Regular | 12, 24, 28, 32, 48 | +| Mail Inbox Arrow Down | Filled | 12, 24, 28, 32, 48 | +| Mail Inbox Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Mail Inbox Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Mail Inbox Arrow Up | Regular | 12, 16, 28, 32, 48 | +| Mail Inbox Arrow Up | Filled | 12, 16, 28, 32, 48 | +| Mail Inbox Checkmark | Regular | 12, 32, 48 | +| Mail Inbox Checkmark | Filled | 12, 32, 48 | +| Mail Inbox Dismiss | Regular | 12, 32, 48 | +| Mail Inbox Dismiss | Filled | 12, 32, 48 | +| Mail Link | Regular | 12, 16, 28, 32, 48 | +| Mail Link | Filled | 12, 16, 28, 32, 48 | +| Mail List | Regular | 12, 32, 48 | +| Mail List | Filled | 12, 32, 48 | +| Mail Multiple | Regular | 12, 48 | +| Mail Multiple | Filled | 12, 48 | +| Mail Off | Regular | 12, 28, 32, 48 | +| Mail Off | Filled | 12, 28, 32, 48 | +| Mail Open Person | Regular | 12, 28, 32, 48 | +| Mail Open Person | Filled | 12, 28, 32, 48 | +| Mail Pause | Regular | 12, 24, 28, 32, 48 | +| Mail Pause | Filled | 12, 24, 28, 32, 48 | +| Mail Prohibited | Regular | 12, 32, 48 | +| Mail Prohibited | Filled | 12, 32, 48 | +| Mail Read | Regular | 12 | +| Mail Read | Filled | 12 | +| Mail Read Multiple | Regular | 12, 48 | +| Mail Read Multiple | Filled | 12, 48 | +| Mail Rewind | Regular | 12, 28, 32, 48 | +| Mail Rewind | Filled | 12, 28, 32, 48 | +| Mail Settings | Regular | 12, 24, 28, 32, 48 | +| Mail Settings | Filled | 12, 24, 28, 32, 48 | +| Mail Shield | Regular | 12, 24, 28, 32, 48 | +| Mail Shield | Filled | 12, 24, 28, 32, 48 | +| Mail Template | Regular | 12, 28, 32, 48 | +| Mail Template | Filled | 12, 28, 32, 48 | +| Mail Warning | Regular | 12, 28, 32, 48 | +| Mail Warning | Filled | 12, 28, 32, 48 | +| Mailbox | Regular | 12, 24, 28, 32, 48 | +| Mailbox | Filled | 12, 24, 28, 32, 48 | +| Map | Regular | 12, 28, 32, 48 | +| Map | Filled | 12, 28, 32, 48 | +| Map Drive | Regular | 12, 28, 32, 48 | +| Map Drive | Filled | 12, 28, 32, 48 | +| Markdown | Regular | 12, 16, 24, 28, 32, 48 | +| Markdown | Filled | 12, 16, 24, 28, 32, 48 | +| Match App Layout | Regular | 12, 16, 28, 32, 48 | +| Match App Layout | Filled | 12, 16, 28, 32, 48 | +| Math Format Linear | Regular | 12, 16, 28, 32, 48 | +| Math Format Linear | Filled | 12, 16, 28, 32, 48 | +| Math Format Professional | Regular | 12, 28, 32, 48 | +| Math Format Professional | Filled | 12, 28, 32, 48 | +| Math Formula | Regular | 12, 28, 48 | +| Math Formula | Filled | 12, 28, 48 | +| Math Symbols | Regular | 12 | +| Math Symbols | Filled | 12 | +| Maximize | Regular | 12, 32 | +| Maximize | Filled | 12, 32 | +| Meet Now | Regular | 12 | +| Meet Now | Filled | 12 | +| Megaphone | Regular | 12, 32, 48 | +| Megaphone | Filled | 12, 32, 48 | +| Megaphone Circle | Regular | 12, 16, 28, 32, 48 | +| Megaphone Circle | Filled | 12, 16, 28, 32, 48 | +| Megaphone Loud | Regular | 12, 48 | +| Megaphone Loud | Filled | 12, 48 | +| Megaphone Off | Regular | 12, 32, 48 | +| Megaphone Off | Filled | 12, 32, 48 | +| Memory | Regular | 12, 20, 24, 28, 32, 48 | +| Memory | Filled | 12, 20, 24, 28, 32, 48 | +| Mention | Regular | 28 | +| Mention | Filled | 28 | +| Mention Arrow Down | Regular | 12, 16, 24, 28, 32, 48 | +| Mention Arrow Down | Filled | 12, 16, 24, 28, 32, 48 | +| Mention Brackets | Regular | 12, 16, 24, 28, 32, 48 | +| Mention Brackets | Filled | 12, 16, 24, 28, 32, 48 | +| Merge | Regular | 12, 28, 32, 48 | +| Merge | Filled | 12, 28, 32, 48 | +| Mic | Regular | 12 | +| Mic | Filled | 12 | +| Mic Prohibited | Regular | 12, 32 | +| Mic Prohibited | Filled | 12, 32 | +| Mic Pulse | Regular | 12 | +| Mic Pulse | Filled | 12 | +| Mic Pulse Off | Regular | 12 | +| Mic Pulse Off | Filled | 12 | +| Mic Record | Regular | 12, 16, 32, 48 | +| Mic Record | Filled | 12, 16, 32, 48 | +| Mic Settings | Regular | 12, 16, 28, 32, 48 | +| Mic Settings | Filled | 12, 16, 28, 32, 48 | +| Mic Sparkle | Regular | 12, 28, 32, 48 | +| Mic Sparkle | Filled | 12, 28, 32, 48 | +| Mic Sync | Regular | 12, 16, 24, 28, 32, 48 | +| Mic Sync | Filled | 12, 16, 24, 28, 32, 48 | +| Microscope | Regular | 12, 16, 28, 32, 48 | +| Microscope | Filled | 12, 16, 28, 32, 48 | +| Midi | Regular | 12, 16, 28, 32, 48 | +| Midi | Filled | 12, 16, 28, 32, 48 | +| Mobile Optimized | Regular | 12, 16, 28, 32, 48 | +| Mobile Optimized | Filled | 12, 16, 28, 32, 48 | +| Mold | Regular | 12, 16, 32, 48 | +| Mold | Filled | 12, 16, 32, 48 | +| Molecule | Regular | 12 | +| Molecule | Filled | 12 | +| Money | Regular | 12, 28, 32, 48 | +| Money | Filled | 12, 28, 32, 48 | +| Money Calculator | Regular | 12, 16, 28, 32, 48 | +| Money Calculator | Filled | 12, 16, 28, 32, 48 | +| Money Dismiss | Regular | 12, 16, 28, 32, 48 | +| Money Dismiss | Filled | 12, 16, 28, 32, 48 | +| Money Hand | Regular | 12, 28, 32, 48 | +| Money Hand | Filled | 12, 28, 32, 48 | +| Money Off | Regular | 12, 16, 28, 32, 48 | +| Money Off | Filled | 12, 16, 28, 32, 48 | +| Money Settings | Regular | 12, 28, 32, 48 | +| Money Settings | Filled | 12, 28, 32, 48 | +| More Circle | Regular | 12 | +| More Circle | Filled | 12 | +| More Horizontal | Regular | 12 | +| More Horizontal | Filled | 12 | +| More Vertical | Regular | 12 | +| More Vertical | Filled | 12 | +| Mountain Location Bottom | Regular | 12, 16, 32, 48 | +| Mountain Location Bottom | Filled | 12, 16, 32, 48 | +| Mountain Location Top | Regular | 12, 16, 32, 48 | +| Mountain Location Top | Filled | 12, 16, 32, 48 | +| Mountain Trail | Regular | 12, 16, 32, 48 | +| Mountain Trail | Filled | 12, 16, 32, 48 | +| Movies and TV | Regular | 12, 28, 32, 48 | +| Movies and TV | Filled | 12, 28, 32, 48 | +| Multiplier 1_2x | Regular | 12, 16 | +| Multiplier 1_2x | Filled | 12, 16 | +| Multiplier 1_5x | Regular | 12, 16 | +| Multiplier 1_5x | Filled | 12, 16 | +| Multiplier 1_8x | Regular | 12, 16 | +| Multiplier 1_8x | Filled | 12, 16 | +| Multiplier 1x | Regular | 12, 16 | +| Multiplier 1x | Filled | 12, 16 | +| Multiplier 2x | Regular | 12, 16 | +| Multiplier 2x | Filled | 12, 16 | +| Multiplier _5x | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Multiplier _5x | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Multiselect | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Multiselect | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Multiselect LTR | Regular | 12, 28, 32, 48 | +| Multiselect LTR | Filled | 12, 28, 32, 48 | +| Multiselect RTL | Regular | 12, 28, 32, 48 | +| Multiselect RTL | Filled | 12, 28, 32, 48 | +| Music Note 1 | Regular | 12, 16, 28, 32, 48 | +| Music Note 1 | Filled | 12, 16, 28, 32, 48 | +| Music Note 2 | Regular | 12, 28, 32, 48 | +| Music Note 2 | Filled | 12, 28, 32, 48 | +| Music Note 2 Play | Regular | 12, 16, 24, 28, 32, 48 | +| Music Note 2 Play | Filled | 12, 16, 24, 28, 32, 48 | +| Music Note Off 1 | Regular | 12, 16, 28, 32, 48 | +| Music Note Off 1 | Filled | 12, 16, 28, 32, 48 | +| Music Note Off 2 | Regular | 12, 28, 32, 48 | +| Music Note Off 2 | Filled | 12, 28, 32, 48 | +| My Location | Regular | 28, 32, 48 | +| My Location | Filled | 28, 32, 48 | +| Navigation | Regular | 12, 28, 32, 48 | +| Navigation | Filled | 12, 28, 32, 48 | +| Navigation Location Target | Regular | 12, 16, 24, 28, 32, 48 | +| Navigation Location Target | Filled | 12, 16, 24, 28, 32, 48 | +| Navigation Play | Regular | 12, 16, 24, 28, 32, 48 | +| Navigation Play | Filled | 12, 16, 24, 28, 32, 48 | +| Navigation Unread | Regular | 12, 16, 28, 32, 48 | +| Navigation Unread | Filled | 12, 16, 28, 32, 48 | +| Network Adapter | Regular | 12, 20, 24, 28, 32, 48 | +| Network Adapter | Filled | 12, 20, 24, 28, 32, 48 | +| Network Check | Regular | 12, 16, 28, 32, 48 | +| Network Check | Filled | 12, 16, 28, 32, 48 | +| New | Regular | 12, 28, 32, 48 | +| New | Filled | 12, 28, 32, 48 | +| News | Regular | 12, 32, 48 | +| News | Filled | 12, 32, 48 | +| Next | Regular | 12 | +| Next | Filled | 12 | +| Next Frame | Regular | 12, 16, 28, 32, 48 | +| Next Frame | Filled | 12, 16, 28, 32, 48 | +| Note | Regular | 12, 32 | +| Note | Filled | 12, 32 | +| Note Add | Regular | 12, 32 | +| Note Add | Filled | 12, 32 | +| Note Edit | Regular | 12, 16, 28, 32, 48 | +| Note Edit | Filled | 12, 16, 28, 32, 48 | +| Note Pin | Regular | 12, 24, 28, 32, 48 | +| Note Pin | Filled | 12, 24, 28, 32, 48 | +| Notebook | Regular | 12, 28, 48 | +| Notebook | Filled | 12, 28, 48 | +| Notebook Add | Regular | 12, 16, 28, 32, 48 | +| Notebook Add | Filled | 12, 16, 28, 32, 48 | +| Notebook Arrow Curve Down | Regular | 12, 16, 24, 28, 32, 48 | +| Notebook Arrow Curve Down | Filled | 12, 16, 24, 28, 32, 48 | +| Notebook Error | Regular | 12, 16, 28, 32, 48 | +| Notebook Error | Filled | 12, 16, 28, 32, 48 | +| Notebook Eye | Regular | 12, 16, 24, 28, 32, 48 | +| Notebook Eye | Filled | 12, 16, 24, 28, 32, 48 | +| Notebook Lightning | Regular | 12, 16, 28, 32, 48 | +| Notebook Lightning | Filled | 12, 16, 28, 32, 48 | +| Notebook Question Mark | Regular | 12, 16, 28, 32, 48 | +| Notebook Question Mark | Filled | 12, 16, 28, 32, 48 | +| Notebook Section | Regular | 12, 16, 28, 32, 48 | +| Notebook Section | Filled | 12, 16, 28, 32, 48 | +| Notebook Section Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Notebook Section Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Notebook Subsection | Regular | 12, 16, 28, 32, 48 | +| Notebook Subsection | Filled | 12, 16, 28, 32, 48 | +| Notebook Sync | Regular | 12, 16, 28, 32, 48 | +| Notebook Sync | Filled | 12, 16, 28, 32, 48 | +| Notepad | Regular | 48 | +| Notepad | Filled | 48 | +| Notepad Edit | Regular | 12, 24, 28, 32, 48 | +| Notepad Edit | Filled | 12, 24, 28, 32, 48 | +| Notepad Person | Regular | 12, 28, 32, 48 | +| Notepad Person | Filled | 12, 28, 32, 48 | +| Number Circle 0 | Regular | 12 | +| Number Circle 0 | Filled | 12 | +| Number Circle 1 | Regular | 12 | +| Number Circle 1 | Filled | 12 | +| Number Circle 2 | Regular | 12 | +| Number Circle 2 | Filled | 12 | +| Number Circle 3 | Regular | 12 | +| Number Circle 3 | Filled | 12 | +| Number Circle 4 | Regular | 12 | +| Number Circle 4 | Filled | 12 | +| Number Circle 5 | Regular | 12 | +| Number Circle 5 | Filled | 12 | +| Number Circle 6 | Regular | 12 | +| Number Circle 6 | Filled | 12 | +| Number Circle 7 | Regular | 12 | +| Number Circle 7 | Filled | 12 | +| Number Circle 8 | Regular | 12 | +| Number Circle 8 | Filled | 12 | +| Number Circle 9 | Regular | 12 | +| Number Circle 9 | Filled | 12 | +| Number Row | Regular | 12, 28, 32, 48 | +| Number Row | Filled | 12, 28, 32, 48 | +| Number Symbol | Regular | 12 | +| Number Symbol | Filled | 12 | +| Number Symbol Dismiss | Regular | 12, 16, 28, 32, 48 | +| Number Symbol Dismiss | Filled | 12, 16, 28, 32, 48 | +| Number Symbol Square | Regular | 12, 16, 28, 32, 48 | +| Number Symbol Square | Filled | 12, 16, 28, 32, 48 | +| Open Folder | Regular | 12, 32 | +| Open Folder | Filled | 12, 32 | +| Open Off | Regular | 12, 32 | +| Open Off | Filled | 12, 32 | +| Options | Regular | 12, 28, 32 | +| Options | Filled | 12, 28, 32 | +| Organization Horizontal | Regular | 12, 28, 32, 48 | +| Organization Horizontal | Filled | 12, 28, 32, 48 | +| Orientation | Regular | 12, 16, 28, 32, 48 | +| Orientation | Filled | 12, 16, 28, 32, 48 | +| Oval | Regular | 12 | +| Oval | Filled | 12 | +| Oven | Regular | 12, 16, 28 | +| Oven | Filled | 12, 16, 28 | +| Padding Down | Regular | 12, 16, 28, 32, 48 | +| Padding Down | Filled | 12, 16, 28, 32, 48 | +| Padding Left | Regular | 12, 16, 28, 32, 48 | +| Padding Left | Filled | 12, 16, 28, 32, 48 | +| Padding Right | Regular | 12, 16, 28, 32, 48 | +| Padding Right | Filled | 12, 16, 28, 32, 48 | +| Padding Top | Regular | 12, 16, 28, 32, 48 | +| Padding Top | Filled | 12, 16, 28, 32, 48 | +| Page Fit | Regular | 12, 28, 32, 48 | +| Page Fit | Filled | 12, 28, 32, 48 | +| Paint Brush | Regular | 12, 28, 48 | +| Paint Brush | Filled | 12, 28, 48 | +| Paint Brush Arrow Down | Regular | 12, 16, 28, 32, 48 | +| Paint Brush Arrow Down | Filled | 12, 16, 28, 32, 48 | +| Paint Brush Arrow Up | Regular | 12, 16, 28, 32, 48 | +| Paint Brush Arrow Up | Filled | 12, 16, 28, 32, 48 | +| Paint Bucket | Regular | 12, 28, 32, 48 | +| Paint Bucket | Filled | 12, 28, 32, 48 | +| Pair | Regular | 12, 16, 28, 32, 48 | +| Pair | Filled | 12, 16, 28, 32, 48 | +| Panel Bottom | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Bottom | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Bottom Contract | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Bottom Contract | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Bottom Expand | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Bottom Expand | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Left | Regular | 12 | +| Panel Left | Filled | 12 | +| Panel Left Add | Regular | 12 | +| Panel Left Add | Filled | 12 | +| Panel Left Contract | Regular | 12, 32, 48 | +| Panel Left Contract | Filled | 12, 32, 48 | +| Panel Left Expand | Regular | 12, 32, 48 | +| Panel Left Expand | Filled | 12, 32, 48 | +| Panel Left Focus Right | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Panel Left Focus Right | Filled | 12, 32, 48 | +| Panel Left Header | Regular | 12 | +| Panel Left Header | Filled | 12 | +| Panel Left Header Add | Regular | 12 | +| Panel Left Header Add | Filled | 12 | +| Panel Left Header Key | Regular | 12, 28, 32, 48 | +| Panel Left Header Key | Filled | 12, 28, 32, 48 | +| Panel Left Key | Regular | 12, 28, 32, 48 | +| Panel Left Key | Filled | 12, 28, 32, 48 | +| Panel Left Text | Regular | 12 | +| Panel Left Text | Filled | 12 | +| Panel Left Text Add | Regular | 12 | +| Panel Left Text Add | Filled | 12 | +| Panel Left Text Dismiss | Regular | 12 | +| Panel Left Text Dismiss | Filled | 12 | +| Panel Right | Regular | 12 | +| Panel Right | Filled | 12 | +| Panel Right Add | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Right Add | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Right Contract | Regular | 12, 28, 32, 48 | +| Panel Right Contract | Filled | 12, 28, 32, 48 | +| Panel Right Cursor | Regular | 12, 16, 28, 32, 48 | +| Panel Right Cursor | Filled | 12, 16, 28, 32, 48 | +| Panel Right Expand | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Right Expand | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Right Gallery | Regular | 12, 32, 48 | +| Panel Right Gallery | Filled | 12, 32, 48 | +| Panel Separate Window | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Separate Window | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Top Contract | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Top Contract | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Top Expand | Regular | 12, 16, 24, 28, 32, 48 | +| Panel Top Expand | Filled | 12, 16, 24, 28, 32, 48 | +| Panel Top Gallery | Regular | 12, 32, 48 | +| Panel Top Gallery | Filled | 12, 32, 48 | +| Password | Regular | 12, 28, 32, 48 | +| Password | Filled | 12, 28, 32, 48 | +| Patch | Regular | 12, 16, 28, 32, 48 | +| Patch | Filled | 12, 16, 28, 32, 48 | +| Patient | Regular | 12, 16, 28, 48 | +| Patient | Filled | 12, 16, 28, 48 | +| Pause Circle | Regular | 12, 16, 28 | +| Pause Circle | Filled | 12, 16, 28 | +| Pause Off | Regular | 12, 24, 28, 32, 48 | +| Pause Off | Filled | 12, 24, 28, 32, 48 | +| Pause Settings | Regular | 12, 24, 28, 32, 48 | +| Pause Settings | Filled | 12, 24, 28, 32, 48 | +| Payment | Regular | 12 | +| Payment | Filled | 12 | +| Payment Wireless | Regular | 12 | +| Payment Wireless | Filled | 12 | +| Pen | Regular | 12 | +| Pen | Filled | 12 | +| Pen Dismiss | Regular | 12 | +| Pen Dismiss | Filled | 12 | +| Pen Off | Regular | 12 | +| Pen Off | Filled | 12 | +| Pen Prohibited | Regular | 12 | +| Pen Prohibited | Filled | 12 | +| Pen Sparkle | Regular | 12 | +| Pen Sparkle | Filled | 12 | +| Pentagon | Regular | 12, 16, 24, 28 | +| Pentagon | Filled | 12, 16, 24, 28 | +| People Add | Regular | 12, 32, 48 | +| People Add | Filled | 12, 32, 48 | +| People Audience | Regular | 12, 16, 28, 48 | +| People Audience | Filled | 12, 16, 28, 48 | +| People Call | Regular | 12, 28, 32, 48 | +| People Call | Filled | 12, 28, 32, 48 | +| People Chat | Regular | 12, 28, 32, 48 | +| People Chat | Filled | 12, 28, 32, 48 | +| People Checkmark | Regular | 12, 28, 32, 48 | +| People Checkmark | Filled | 12, 28, 32, 48 | +| People Community | Regular | 12 | +| People Community | Filled | 12 | +| People Community Add | Regular | 12, 16, 32, 48 | +| People Community Add | Filled | 12, 16, 32, 48 | +| People Edit | Regular | 12, 28, 32, 48 | +| People Edit | Filled | 12, 28, 32, 48 | +| People Error | Regular | 12, 28, 32, 48 | +| People Error | Filled | 12, 28, 32, 48 | +| People List | Regular | 12, 48 | +| People List | Filled | 12, 48 | +| People Lock | Regular | 12, 16, 28, 32, 48 | +| People Lock | Filled | 12, 16, 28, 32, 48 | +| People Money | Regular | 12, 16, 28, 32, 48 | +| People Money | Filled | 12, 16, 28, 32, 48 | +| People Prohibited | Regular | 12, 28, 32, 48 | +| People Prohibited | Filled | 12, 28, 32, 48 | +| People Queue | Regular | 12, 16, 28, 32, 48 | +| People Queue | Filled | 12, 16, 28, 32, 48 | +| People Search | Regular | 12, 16, 28, 32, 48 | +| People Search | Filled | 12, 16, 28, 32, 48 | +| People Settings | Regular | 12, 16, 32, 48 | +| People Settings | Filled | 12, 16, 32, 48 | +| People Star | Regular | 12 | +| People Star | Filled | 12 | +| People Swap | Regular | 12, 32, 48 | +| People Swap | Filled | 12, 32, 48 | +| People Sync | Regular | 12, 24, 32, 48 | +| People Sync | Filled | 12, 24, 32, 48 | +| People Team | Regular | 12 | +| People Team | Filled | 12 | +| People Team Add | Regular | 12, 16, 28, 32, 48 | +| People Team Add | Filled | 12, 16, 28, 32, 48 | +| People Team Delete | Regular | 12, 48 | +| People Team Delete | Filled | 12, 48 | +| People Team Toolbox | Regular | 12, 16, 28, 32, 48 | +| People Team Toolbox | Filled | 12, 16, 28, 32, 48 | +| People Toolbox | Regular | 12, 24, 28, 32, 48 | +| People Toolbox | Filled | 12, 24, 28, 32, 48 | +| Person 5 | Regular | 12, 16, 24, 28, 48 | +| Person 5 | Filled | 12, 16, 24, 28, 48 | +| Person 6 | Regular | 12, 16, 24, 28, 48 | +| Person 6 | Filled | 12, 16, 24, 28, 48 | +| Person Accounts | Regular | 12, 16, 28, 32, 48 | +| Person Accounts | Filled | 12, 16, 28, 32, 48 | +| Person Add | Regular | 12, 48 | +| Person Add | Filled | 12, 48 | +| Person Alert | Regular | 12, 28, 32, 48 | +| Person Alert | Filled | 12, 28, 32, 48 | +| Person Arrow Back | Regular | 12 | +| Person Arrow Back | Filled | 12 | +| Person Arrow Left | Regular | 12, 28, 32, 48 | +| Person Arrow Left | Filled | 12, 28, 32, 48 | +| Person Arrow Right | Regular | 12, 28, 32, 48 | +| Person Arrow Right | Filled | 12, 28, 32, 48 | +| Person Available | Regular | 12, 28, 32, 48 | +| Person Available | Filled | 12, 28, 32, 48 | +| Person Board | Regular | 12, 48 | +| Person Board | Filled | 12, 48 | +| Person Call | Regular | 12, 28, 32, 48 | +| Person Call | Filled | 12, 28, 32, 48 | +| Person Chat | Regular | 12, 28, 32, 48 | +| Person Chat | Filled | 12, 28, 32, 48 | +| Person Circle | Regular | 16, 48 | +| Person Circle | Filled | 16, 48 | +| Person Clock | Regular | 12, 28, 32, 48 | +| Person Clock | Filled | 12, 28, 32, 48 | +| Person Delete | Regular | 12, 28, 32, 48 | +| Person Delete | Filled | 12, 28, 32, 48 | +| Person Desktop | Regular | 12, 16, 24, 28, 32, 48 | +| Person Desktop | Filled | 12, 16, 24, 28, 32, 48 | +| Person Edit | Regular | 12, 16, 28, 32 | +| Person Edit | Filled | 12, 16, 28, 32 | +| Person Feedback | Regular | 12 | +| Person Feedback | Filled | 12 | +| Person Heart | Regular | 12, 16, 28, 32, 48 | +| Person Heart | Filled | 12, 16, 28, 32, 48 | +| Person Info | Regular | 12, 28, 32, 48 | +| Person Info | Filled | 12, 28, 32, 48 | +| Person Key | Regular | 12, 16, 24, 28, 32, 48 | +| Person Key | Filled | 12, 16, 24, 28, 32, 48 | +| Person Lightbulb | Regular | 12, 16, 28, 32, 48 | +| Person Lightbulb | Filled | 12, 16, 28, 32, 48 | +| Person Lightning | Regular | 12, 24, 28, 32, 48 | +| Person Lightning | Filled | 12, 24, 28, 32, 48 | +| Person Link | Regular | 12 | +| Person Link | Filled | 12 | +| Person Lock | Regular | 12, 28, 32, 48 | +| Person Lock | Filled | 12, 28, 32, 48 | +| Person Mail | Regular | 12, 32 | +| Person Mail | Filled | 12, 32 | +| Person Money | Regular | 12, 16, 28, 32, 48 | +| Person Money | Filled | 12, 16, 28, 32, 48 | +| Person Note | Regular | 12, 28, 32, 48 | +| Person Note | Filled | 12, 28, 32, 48 | +| Person Phone | Regular | 12, 16, 20, 28, 32, 48 | +| Person Phone | Filled | 12, 16, 20, 28, 32, 48 | +| Person Pill | Regular | 12, 16, 28, 32, 48 | +| Person Pill | Filled | 12, 16, 28, 32, 48 | +| Person Prohibited | Regular | 12, 32, 48 | +| Person Prohibited | Filled | 12, 32, 48 | +| Person Question Mark | Regular | 12, 28, 32, 48 | +| Person Question Mark | Filled | 12, 28, 32, 48 | +| Person Ribbon | Regular | 12, 24, 28, 32, 48 | +| Person Ribbon | Filled | 12, 24, 28, 32, 48 | +| Person Running | Regular | 12, 16, 24, 28, 32, 48 | +| Person Running | Filled | 12, 16, 24, 28, 32, 48 | +| Person Search | Regular | 12, 28, 48 | +| Person Search | Filled | 12, 28, 48 | +| Person Settings | Regular | 12, 24, 28, 32, 48 | +| Person Settings | Filled | 12, 24, 28, 32, 48 | +| Person Square | Regular | 12, 28, 48 | +| Person Square | Filled | 12, 28, 48 | +| Person Square Checkmark | Regular | 12, 28, 48 | +| Person Square Checkmark | Filled | 12, 28, 48 | +| Person Standing | Regular | 12, 20, 24, 28, 32, 48 | +| Person Standing | Filled | 12, 20, 24, 28, 32, 48 | +| Person Star | Regular | 12 | +| Person Star | Filled | 12 | +| Person Starburst | Regular | 12, 16, 28, 32, 48 | +| Person Starburst | Filled | 12, 16, 28, 32, 48 | +| Person Subtract | Regular | 12, 28, 32, 48 | +| Person Subtract | Filled | 12, 28, 32, 48 | +| Person Support | Regular | 12, 32, 48 | +| Person Support | Filled | 12, 32, 48 | +| Person Swap | Regular | 12, 28, 32, 48 | +| Person Swap | Filled | 12, 28, 32, 48 | +| Person Sync | Regular | 12 | +| Person Sync | Filled | 12 | +| Person Tag | Regular | 12, 16 | +| Person Tag | Filled | 12, 16 | +| Person Voice | Regular | 12, 28, 32, 48 | +| Person Voice | Filled | 12, 28, 32, 48 | +| Person Walking | Regular | 12, 28, 32, 48 | +| Person Walking | Filled | 12, 28, 32, 48 | +| Person Warning | Regular | 12 | +| Person Warning | Filled | 12 | +| Person Wrench | Regular | 12, 16, 24, 28, 32, 48 | +| Person Wrench | Filled | 12, 16, 24, 28, 32, 48 | +| Phone Add | Regular | 12, 16, 28, 32, 48 | +| Phone Add | Filled | 12, 16, 28, 32, 48 | +| Phone Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Phone Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Phone Briefcase | Regular | 12, 16, 20, 28, 32, 48 | +| Phone Briefcase | Filled | 12, 16, 20, 28, 32, 48 | +| Phone Chat | Regular | 12, 32, 48 | +| Phone Chat | Filled | 12, 32, 48 | +| Phone Checkmark | Regular | 12, 24, 28, 32, 48 | +| Phone Checkmark | Filled | 12, 24, 28, 32, 48 | +| Phone Desktop | Regular | 12 | +| Phone Desktop | Filled | 12 | +| Phone Desktop Add | Regular | 12, 16, 24, 28, 32, 48 | +| Phone Desktop Add | Filled | 12, 16, 24, 28, 32, 48 | +| Phone Dismiss | Regular | 12, 16, 28, 32, 48 | +| Phone Dismiss | Filled | 12, 16, 28, 32, 48 | +| Phone Edit | Regular | 12, 16, 28, 32, 48 | +| Phone Edit | Filled | 12, 16, 28, 32, 48 | +| Phone Eraser | Regular | 12, 24, 28, 32, 48 | +| Phone Eraser | Filled | 12, 24, 28, 32, 48 | +| Phone Footer Arrow Down | Regular | 12, 16, 28, 32, 48 | +| Phone Footer Arrow Down | Filled | 12, 16, 28, 32, 48 | +| Phone Header Arrow Up | Regular | 12, 16, 28, 32, 48 | +| Phone Header Arrow Up | Filled | 12, 16, 28, 32, 48 | +| Phone Key | Regular | 12, 16, 28, 32, 48 | +| Phone Key | Filled | 12, 16, 28, 32, 48 | +| Phone Laptop | Regular | 12, 28, 48 | +| Phone Laptop | Filled | 12, 28, 48 | +| Phone Link Setup | Regular | 12, 16, 28, 32, 48 | +| Phone Link Setup | Filled | 12, 16, 28, 32, 48 | +| Phone Lock | Regular | 12, 16, 28, 32, 48 | +| Phone Lock | Filled | 12, 16, 28, 32, 48 | +| Phone Multiple | Regular | 12, 16, 20, 28, 32, 48 | +| Phone Multiple | Filled | 12, 16, 20, 28, 32, 48 | +| Phone Multiple Settings | Regular | 12, 16, 20, 28, 32, 48 | +| Phone Multiple Settings | Filled | 12, 16, 20, 28, 32, 48 | +| Phone Page Header | Regular | 12, 16, 28, 32, 48 | +| Phone Page Header | Filled | 12, 16, 28, 32, 48 | +| Phone Pagination | Regular | 12, 16, 28, 32, 48 | +| Phone Pagination | Filled | 12, 16, 28, 32, 48 | +| Phone Person | Regular | 12, 16, 20, 28, 32, 48 | +| Phone Person | Filled | 12, 16, 20, 28, 32, 48 | +| Phone Screen Time | Regular | 12, 16, 28, 32, 48 | +| Phone Screen Time | Filled | 12, 16, 28, 32, 48 | +| Phone Shake | Regular | 12, 16, 28, 32, 48 | +| Phone Shake | Filled | 12, 16, 28, 32, 48 | +| Phone Span In | Regular | 12, 32, 48 | +| Phone Span In | Filled | 12, 32, 48 | +| Phone Span Out | Regular | 12, 32, 48 | +| Phone Span Out | Filled | 12, 32, 48 | +| Phone Speaker | Regular | 12, 16, 28, 32, 48 | +| Phone Speaker | Filled | 12, 16, 28, 32, 48 | +| Phone Status Bar | Regular | 12, 16, 28, 32, 48 | +| Phone Status Bar | Filled | 12, 16, 28, 32, 48 | +| Phone Subtract | Regular | 12, 16, 20, 28, 32, 48 | +| Phone Subtract | Filled | 12, 16, 20, 28, 32, 48 | +| Phone Tablet | Regular | 12, 16, 28, 32, 48 | +| Phone Tablet | Filled | 12, 16, 28, 32, 48 | +| Phone Update | Regular | 12, 16, 28, 32, 48 | +| Phone Update | Filled | 12, 16, 28, 32, 48 | +| Phone Update Checkmark | Regular | 12, 16, 28, 32, 48 | +| Phone Update Checkmark | Filled | 12, 16, 28, 32, 48 | +| Phone Vertical Scroll | Regular | 12, 16, 28, 32, 48 | +| Phone Vertical Scroll | Filled | 12, 16, 28, 32, 48 | +| Phone Vibrate | Regular | 12, 16, 28, 32, 48 | +| Phone Vibrate | Filled | 12, 16, 28, 32, 48 | +| Photo Filter | Regular | 12, 16, 28, 32, 48 | +| Photo Filter | Filled | 12, 16, 28, 32, 48 | +| Pi | Regular | 12, 16, 28, 32, 48 | +| Pi | Filled | 12, 16, 28, 32, 48 | +| Picture In Picture | Regular | 12, 28, 32, 48 | +| Picture In Picture | Filled | 12, 28, 32, 48 | +| Picture In Picture Enter | Regular | 12, 28, 32, 48 | +| Picture In Picture Enter | Filled | 12, 28, 32, 48 | +| Picture In Picture Exit | Regular | 12, 28, 32, 48 | +| Picture In Picture Exit | Filled | 12, 28, 32, 48 | +| Pill | Regular | 12, 32, 48 | +| Pill | Filled | 12, 32, 48 | +| Pin Off | Regular | 12 | +| Pin Off | Filled | 12 | +| Pipeline | Regular | 12, 16, 28, 48 | +| Pipeline | Filled | 12, 16, 28, 48 | +| Pipeline Add | Regular | 12, 16, 24, 28, 48 | +| Pipeline Add | Filled | 12, 16, 24, 28, 48 | +| Pipeline Arrow Curve Down | Regular | 12, 16, 24, 28, 32, 48 | +| Pipeline Arrow Curve Down | Filled | 12, 16, 24, 28, 32, 48 | +| Pipeline Play | Regular | 12, 16, 24, 28, 32, 48 | +| Pipeline Play | Filled | 12, 16, 24, 28, 32, 48 | +| Pivot | Regular | 12, 16, 28, 32, 48 | +| Pivot | Filled | 12, 16, 28, 32, 48 | +| Plant Grass | Regular | 12, 16, 32, 48 | +| Plant Grass | Filled | 12, 16, 32, 48 | +| Plant Ragweed | Regular | 12, 16, 32, 48 | +| Plant Ragweed | Filled | 12, 16, 32, 48 | +| Play Circle | Regular | 12, 32 | +| Play Circle | Filled | 12, 32 | +| Play Circle Hint | Regular | 12, 28, 32, 48 | +| Play Circle Hint | Filled | 12, 28, 32, 48 | +| Play Multiple | Regular | 12, 20, 24, 28, 32, 48 | +| Play Multiple | Filled | 12, 20, 24, 28, 32, 48 | +| Play Settings | Regular | 12, 16, 24, 28, 32, 48 | +| Play Settings | Filled | 12, 16, 24, 28, 32, 48 | +| Playing Cards | Regular | 12, 16, 24, 28, 32, 48 | +| Playing Cards | Filled | 12, 16, 24, 28, 32, 48 | +| Plug Connected | Regular | 12, 28, 32, 48 | +| Plug Connected | Filled | 12, 28, 32, 48 | +| Plug Connected Add | Regular | 12, 16, 24, 28, 32, 48 | +| Plug Connected Add | Filled | 12, 16, 24, 28, 32, 48 | +| Plug Connected Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Plug Connected Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Plug Connected Settings | Regular | 12, 16, 28, 32, 48 | +| Plug Connected Settings | Filled | 12, 16, 28, 32, 48 | +| Plug Disconnected | Regular | 12, 32 | +| Plug Disconnected | Filled | 12, 32 | +| Point Scan | Regular | 12, 16, 28, 32, 48 | +| Point Scan | Filled | 12, 16, 28, 32, 48 | +| Poll | Regular | 12, 28, 48 | +| Poll | Filled | 12, 28, 48 | +| Poll Horizontal | Regular | 12, 28, 32, 48 | +| Poll Horizontal | Filled | 12, 28, 32, 48 | +| Poll Off | Regular | 12, 28, 48 | +| Poll Off | Filled | 12, 28, 48 | +| Port HDMI | Regular | 12, 16, 28, 32, 48 | +| Port HDMI | Filled | 12, 16, 28, 32, 48 | +| Port Micro USB | Regular | 12, 16, 28, 32, 48 | +| Port Micro USB | Filled | 12, 16, 28, 32, 48 | +| Port USB A | Regular | 12, 16, 28, 32, 48 | +| Port USB A | Filled | 12, 16, 28, 32, 48 | +| Port USB C | Regular | 12, 16, 28, 32, 48 | +| Port USB C | Filled | 12, 16, 28, 32, 48 | +| Position Backward | Regular | 12, 16, 28, 32, 48 | +| Position Backward | Filled | 12, 16, 28, 32, 48 | +| Position Forward | Regular | 12, 16, 28, 32, 48 | +| Position Forward | Filled | 12, 16, 28, 32, 48 | +| Position To Back | Regular | 12, 16, 28, 32, 48 | +| Position To Back | Filled | 12, 16, 28, 32, 48 | +| Position To Front | Regular | 12, 16, 28, 32, 48 | +| Position To Front | Filled | 12, 16, 28, 32, 48 | +| Power | Regular | 12, 16, 32, 48 | +| Power | Filled | 12, 16, 32, 48 | +| Predictions | Regular | 12, 16, 28, 32, 48 | +| Predictions | Filled | 12, 16, 28, 32, 48 | +| Premium | Regular | 48 | +| Premium | Filled | 48 | +| Premium Person | Regular | 12, 28, 32, 48 | +| Premium Person | Filled | 12, 28, 32, 48 | +| Presence Available | Regular | 28, 32, 48 | +| Presence Available | Filled | 28, 32, 48 | +| Presence Away | Regular | 28, 32, 48 | +| Presence Away | Filled | 28, 32, 48 | +| Presence Blocked | Regular | 28, 32, 48 | +| Presence Blocked | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Presence Busy | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Presence Busy | Filled | 28, 32, 48 | +| Presence DND | Regular | 28, 32, 48 | +| Presence DND | Filled | 28, 32, 48 | +| Presence OOF | Regular | 28, 32, 48 | +| Presence OOF | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Presence Offline | Regular | 28, 32, 48 | +| Presence Offline | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Presence Unknown | Regular | 28, 32, 48 | +| Presence Unknown | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Presenter | Regular | 12, 16, 28, 32, 48 | +| Presenter | Filled | 12, 16, 28, 32, 48 | +| Presenter Off | Regular | 12, 16, 28, 32, 48 | +| Presenter Off | Filled | 12, 16, 28, 32, 48 | +| Preview Link | Regular | 12, 28, 32, 48 | +| Preview Link | Filled | 12, 28, 32, 48 | +| Previous | Regular | 12 | +| Previous | Filled | 12 | +| Previous Frame | Regular | 12, 16, 28, 32, 48 | +| Previous Frame | Filled | 12, 16, 28, 32, 48 | +| Print | Regular | 12 | +| Print | Filled | 12 | +| Print Add | Regular | 12, 16, 28, 32, 48 | +| Print Add | Filled | 12, 16, 28, 32, 48 | +| Production | Regular | 12, 16, 28, 32, 48 | +| Production | Filled | 12, 16, 28, 32, 48 | +| Production Checkmark | Regular | 12, 16, 28, 32, 48 | +| Production Checkmark | Filled | 12, 16, 28, 32, 48 | +| Prohibited Multiple | Regular | 12, 32, 48 | +| Prohibited Multiple | Filled | 12, 32, 48 | +| Prohibited Note | Regular | 12, 16, 24, 28, 32, 48 | +| Prohibited Note | Filled | 12, 16, 24, 28, 32, 48 | +| Projection Screen | Regular | 12, 32, 48 | +| Projection Screen | Filled | 12, 32, 48 | +| Projection Screen Dismiss | Regular | 12, 32, 48 | +| Projection Screen Dismiss | Filled | 12, 32, 48 | +| Projection Screen Text | Regular | 12, 16, 28, 32, 48 | +| Projection Screen Text | Filled | 12, 16, 28, 32, 48 | +| Protocol Handler | Regular | 12, 28, 32, 48 | +| Protocol Handler | Filled | 12, 28, 32, 48 | +| Pulse | Regular | 12, 16, 48 | +| Pulse | Filled | 12, 16, 48 | +| Pulse Square | Regular | 12, 16, 28, 32, 48 | +| Pulse Square | Filled | 12, 16, 28, 32, 48 | +| Puzzle Cube | Regular | 12, 32 | +| Puzzle Cube | Filled | 12, 32 | +| Puzzle Cube Piece | Regular | 12, 16, 24, 28, 32, 48 | +| Puzzle Cube Piece | Filled | 12, 16, 24, 28, 32, 48 | +| Puzzle Piece Shield | Regular | 12, 16, 24, 28, 32, 48 | +| Puzzle Piece Shield | Filled | 12, 16, 24, 28, 32, 48 | +| Puzzle piece | Regular | 12, 28, 32, 48 | +| Puzzle piece | Filled | 12, 28, 32, 48 | +| QR Code | Regular | 12, 16, 32, 48 | +| QR Code | Filled | 12, 16, 32, 48 | +| Question | Regular | 12 | +| Question | Filled | 12 | +| Quiz New | Regular | 12, 16, 32 | +| Quiz New | Filled | 12, 16, 32 | +| RAM | Regular | 12, 24, 28, 32, 48 | +| RAM | Filled | 12, 24, 28, 32, 48 | +| RSS | Regular | 12, 28, 32, 48 | +| RSS | Filled | 12, 28, 32, 48 | +| Radar | Regular | 12, 16, 24, 28, 32, 48 | +| Radar | Filled | 12, 16, 24, 28, 32, 48 | +| Radar Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Radar Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Radar Rectangle Multiple | Regular | 12, 16, 24, 28, 32, 48 | +| Radar Rectangle Multiple | Filled | 12, 16, 24, 28, 32, 48 | +| Radio Button | Regular | 12, 28, 32, 48 | +| Radio Button | Filled | 12, 28, 32, 48 | +| Radio Button Off | Regular | 12, 20, 24, 28, 32, 48 | +| Radio Button Off | Filled | 12, 20, 24, 28, 32, 48 | +| Rating Mature | Regular | 12, 28, 32, 48 | +| Rating Mature | Filled | 12, 28, 32, 48 | +| Ratio One To One | Regular | 12, 16, 28, 32, 48 | +| Ratio One To One | Filled | 12, 16, 28, 32, 48 | +| Re Order | Regular | 12, 28, 32, 48 | +| Re Order | Filled | 12, 28, 32, 48 | +| Re Order Dots Horizontal | Regular | 12, 28, 32, 48 | +| Re Order Dots Horizontal | Filled | 12, 28, 32, 48 | +| Re Order Dots Vertical | Regular | 12, 28, 32, 48 | +| Re Order Dots Vertical | Filled | 12, 28, 32, 48 | +| Read Aloud | Regular | 12, 32, 48 | +| Read Aloud | Filled | 12, 32, 48 | +| Reading List | Regular | 12, 32, 48 | +| Reading List | Filled | 12, 32, 48 | +| Reading List Add | Regular | 12, 32, 48 | +| Reading List Add | Filled | 12, 32, 48 | +| Reading Mode Mobile | Regular | 12, 16, 28, 32, 48 | +| Reading Mode Mobile | Filled | 12, 16, 28, 32, 48 | +| Real Estate | Regular | 12, 16, 28, 32, 48 | +| Real Estate | Filled | 12, 16, 28, 32, 48 | +| Receipt | Regular | 12, 48 | +| Receipt | Filled | 12, 48 | +| Receipt Add | Regular | 12, 16, 28, 32, 48 | +| Receipt Add | Filled | 12, 16, 28, 32, 48 | +| Receipt Bag | Regular | 12, 16, 28, 32, 48 | +| Receipt Bag | Filled | 12, 16, 28, 32, 48 | +| Receipt Cube | Regular | 12, 16, 28, 32, 48 | +| Receipt Cube | Filled | 12, 16, 28, 32, 48 | +| Receipt Money | Regular | 12, 28, 32, 48 | +| Receipt Money | Filled | 12, 28, 32, 48 | +| Receipt Play | Regular | 12, 16, 28, 32, 48 | +| Receipt Play | Filled | 12, 16, 28, 32, 48 | +| Receipt Search | Regular | 12, 16, 24, 28, 32, 48 | +| Receipt Search | Filled | 12, 16, 24, 28, 32, 48 | +| Receipt Sparkles | Regular | 12, 28, 32, 48 | +| Receipt Sparkles | Filled | 12, 28, 32, 48 | +| Rectangle Landscape Hint Copy | Regular | 12, 28, 32, 48 | +| Rectangle Landscape Hint Copy | Filled | 12, 28, 32, 48 | +| Rectangle Landscape Sparkle | Regular | 12 | +| Rectangle Landscape Sparkle | Filled | 12 | +| Rectangle Landscape Sync | Regular | 12, 32, 48 | +| Rectangle Landscape Sync | Filled | 12, 32, 48 | +| Rectangle Landscape Sync Off | Regular | 12, 32, 48 | +| Rectangle Landscape Sync Off | Filled | 12, 32, 48 | +| Rectangle Portrait Location Target | Regular | 12, 16, 24, 28, 32, 48 | +| Rectangle Portrait Location Target | Filled | 12, 16, 24, 28, 32, 48 | +| Recycle | Regular | 12, 16, 24, 28, 48 | +| Recycle | Filled | 12, 16, 24, 28, 48 | +| Remix Add | Regular | 12, 28, 48 | +| Remix Add | Filled | 12, 28, 48 | +| Remote | Regular | 12, 24, 28, 32, 48 | +| Remote | Filled | 12, 24, 28, 32, 48 | +| Rename | Regular | 12, 32, 48 | +| Rename | Filled | 12, 32, 48 | +| Reorder | Regular | 12, 16, 24, 28, 32, 48 | +| Reorder | Filled | 12, 16, 24, 28, 32, 48 | +| Replay | Regular | 12, 16, 24, 28, 32, 48 | +| Replay | Filled | 12, 16, 24, 28, 32, 48 | +| Resize | Regular | 12 | +| Resize | Filled | 12 | +| Resize Image | Regular | 12, 16, 28, 32, 48 | +| Resize Image | Filled | 12, 16, 28, 32, 48 | +| Resize Large | Regular | 12, 28, 32, 48 | +| Resize Large | Filled | 12, 28, 32, 48 | +| Resize Small | Regular | 12, 28, 32, 48 | +| Resize Small | Filled | 12, 28, 32, 48 | +| Resize Table | Regular | 12, 16, 28, 32, 48 | +| Resize Table | Filled | 12, 16, 28, 32, 48 | +| Resize Video | Regular | 12, 16, 28, 32, 48 | +| Resize Video | Filled | 12, 16, 28, 32, 48 | +| Reward | Regular | 28, 32, 48 | +| Reward | Filled | 28, 32, 48 | +| Rewind | Regular | 12, 32, 48 | +| Rewind | Filled | 12, 32, 48 | +| Rhombus | Regular | 12 | +| Rhombus | Filled | 12 | +| Ribbon | Regular | 28, 48 | +| Ribbon | Filled | 28, 48 | +| Ribbon Add | Regular | 12, 16, 28, 32, 48 | +| Ribbon Add | Filled | 12, 16, 28, 32, 48 | +| Ribbon Off | Regular | 28, 48 | +| Ribbon Off | Filled | 28, 48 | +| Ribbon Star | Regular | 12, 16, 28, 32, 48 | +| Ribbon Star | Filled | 12, 16, 28, 32, 48 | +| Road Cone | Regular | 12 | +| Road Cone | Filled | 12 | +| Rocket | Regular | 12, 28, 32, 48 | +| Rocket | Filled | 12, 28, 32, 48 | +| Rotate Left | Regular | 12, 16, 28, 32, 48 | +| Rotate Left | Filled | 12, 16, 28, 32, 48 | +| Rotate Right | Regular | 12, 16, 28, 32, 48 | +| Rotate Right | Filled | 12, 16, 28, 32, 48 | +| Router | Regular | 12, 16, 28, 32, 48 | +| Router | Filled | 12, 16, 28, 32, 48 | +| Row Triple | Regular | 12, 16, 28, 32, 48 | +| Row Triple | Filled | 12, 16, 28, 32, 48 | +| Ruler | Regular | 12 | +| Ruler | Filled | 12 | +| Run | Regular | 12, 28, 32, 48 | +| Run | Filled | 12, 28, 32, 48 | +| SIM | Regular | 12, 28, 32, 48 | +| SIM | Filled | 12, 28, 32, 48 | +| Sanitize | Regular | 12, 16, 28, 32, 48 | +| Sanitize | Filled | 12, 16, 28, 32, 48 | +| Save | Regular | 12, 32, 48 | +| Save | Filled | 12, 32, 48 | +| Save Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Save Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Save Copy | Regular | 12, 16, 28, 32, 48 | +| Save Copy | Filled | 12, 16, 28, 32, 48 | +| Save Edit | Regular | 12, 16, 28, 32, 48 | +| Save Edit | Filled | 12, 16, 28, 32, 48 | +| Save Image | Regular | 12, 16, 24, 28, 32, 48 | +| Save Image | Filled | 12, 16, 24, 28, 32, 48 | +| Save Multiple | Regular | 12, 28, 32, 48 | +| Save Multiple | Filled | 12, 28, 32, 48 | +| Save Search | Regular | 12, 16, 24, 28, 32, 48 | +| Save Search | Filled | 12, 16, 24, 28, 32, 48 | +| Save Sync | Regular | 12, 16, 24, 28, 32, 48 | +| Save Sync | Filled | 12, 16, 24, 28, 32, 48 | +| Savings | Regular | 12, 28, 32, 48 | +| Savings | Filled | 12, 28, 32, 48 | +| Scale Fill | Regular | 12, 16, 28, 32, 48 | +| Scale Fill | Filled | 12, 16, 28, 32, 48 | +| Scale Fit | Regular | 12, 28, 32, 48 | +| Scale Fit | Filled | 12, 28, 32, 48 | +| Scales | Regular | 12, 16, 28, 48 | +| Scales | Filled | 12, 16, 28, 48 | +| Scan | Regular | 12, 28, 32, 48 | +| Scan | Filled | 12, 28, 32, 48 | +| Scan Camera | Regular | 12, 32 | +| Scan Camera | Filled | 12, 32 | +| Scan Object | Regular | 12, 16, 28, 32, 48 | +| Scan Object | Filled | 12, 16, 28, 32, 48 | +| Scan Person | Regular | 12, 32 | +| Scan Person | Filled | 12, 32 | +| Scan QR Code | Regular | 12, 16, 20, 28, 32, 48 | +| Scan QR Code | Filled | 12, 16, 20, 28, 32, 48 | +| Scan Table | Regular | 12, 16, 28, 32, 48 | +| Scan Table | Filled | 12, 16, 28, 32, 48 | +| Scan Text | Regular | 12, 32, 48 | +| Scan Text | Filled | 12, 32, 48 | +| Scan Thumb Up | Regular | 12, 32 | +| Scan Thumb Up | Filled | 12, 32 | +| Scan Thumb Up Off | Regular | 12, 32 | +| Scan Thumb Up Off | Filled | 12, 32 | +| Scan Type | Regular | 12, 16, 28, 32, 48 | +| Scan Type | Filled | 12, 16, 28, 32, 48 | +| Scan Type Checkmark | Regular | 12, 16, 28, 32, 48 | +| Scan Type Checkmark | Filled | 12, 16, 28, 32, 48 | +| Scan Type Off | Regular | 12, 16, 28, 32, 48 | +| Scan Type Off | Filled | 12, 16, 28, 32, 48 | +| Scratchpad | Regular | 12, 16, 28, 32, 48 | +| Scratchpad | Filled | 12, 16, 28, 32, 48 | +| Screen Cut | Regular | 12, 16, 24, 28, 32, 48 | +| Screen Cut | Filled | 12, 16, 24, 28, 32, 48 | +| Screen Person | Regular | 12, 16, 24, 28, 32, 48 | +| Screen Person | Filled | 12, 16, 24, 28, 32, 48 | +| Screen Search | Regular | 12, 16, 28, 32, 48 | +| Screen Search | Filled | 12, 16, 28, 32, 48 | +| Screenshot | Regular | 12, 32, 48 | +| Screenshot | Filled | 12, 32, 48 | +| Screenshot Record | Regular | 12, 32, 48 | +| Screenshot Record | Filled | 12, 32, 48 | +| Script | Regular | 12, 28, 48 | +| Script | Filled | 12, 28, 48 | +| Search Info | Regular | 12, 16, 28, 32, 48 | +| Search Info | Filled | 12, 16, 28, 32, 48 | +| Search Settings | Regular | 12, 16, 24, 28, 32, 48 | +| Search Settings | Filled | 12, 16, 24, 28, 32, 48 | +| Search Shield | Regular | 12, 16, 24, 28, 32, 48 | +| Search Shield | Filled | 12, 16, 24, 28, 32, 48 | +| Search Square | Regular | 12, 16, 28, 32, 48 | +| Search Square | Filled | 12, 16, 28, 32, 48 | +| Search Visual | Regular | 12, 28, 32, 48 | +| Search Visual | Filled | 12, 28, 32, 48 | +| Seat | Regular | 12, 28, 32, 48 | +| Seat | Filled | 12, 28, 32, 48 | +| Seat Add | Regular | 12, 28, 32, 48 | +| Seat Add | Filled | 12, 28, 32, 48 | +| Select All Off | Regular | 12, 28, 32, 48 | +| Select All Off | Filled | 12, 28, 32, 48 | +| Select All On | Regular | 12, 28, 32, 48 | +| Select All On | Filled | 12, 28, 32, 48 | +| Select Object | Regular | 12, 16, 28, 32, 48 | +| Select Object | Filled | 12, 16, 28, 32, 48 | +| Select Object Skew | Regular | 12, 16, 28, 32, 48 | +| Select Object Skew | Filled | 12, 16, 28, 32, 48 | +| Select Object Skew Dismiss | Regular | 12, 16, 28, 32, 48 | +| Select Object Skew Dismiss | Filled | 12, 16, 28, 32, 48 | +| Select Object Skew Edit | Regular | 12, 16, 28, 32, 48 | +| Select Object Skew Edit | Filled | 12, 16, 28, 32, 48 | +| Send | Regular | 12 | +| Send | Filled | 12 | +| Send Beaker | Regular | 12 | +| Send Beaker | Filled | 12 | +| Send Clock | Regular | 12, 16, 28, 32, 48 | +| Send Clock | Filled | 12, 16, 28, 32, 48 | +| Send Copy | Regular | 12, 16, 28, 32, 48 | +| Send Copy | Filled | 12, 16, 28, 32, 48 | +| Serial Port | Regular | 12, 28, 32, 48 | +| Serial Port | Filled | 12, 28, 32, 48 | +| Server | Regular | 28, 32, 48 | +| Server | Filled | 28, 32, 48 | +| Server Link | Regular | 12, 28, 32, 48 | +| Server Link | Filled | 12, 28, 32, 48 | +| Server Multiple | Regular | 12, 16, 24, 28, 32, 48 | +| Server Multiple | Filled | 12, 16, 24, 28, 32, 48 | +| Server Play | Regular | 12, 16, 24, 28, 32, 48 | +| Server Play | Filled | 12, 16, 24, 28, 32, 48 | +| Server Surface | Regular | 12, 20, 24, 28, 32, 48 | +| Server Surface | Filled | 12, 20, 24, 28, 32, 48 | +| Server Surface Multiple | Regular | 12, 20, 24, 28, 32, 48 | +| Server Surface Multiple | Filled | 12, 20, 24, 28, 32, 48 | +| Service Bell | Regular | 12, 28, 32, 48 | +| Service Bell | Filled | 12, 28, 32, 48 | +| Settings | Regular | 12 | +| Settings | Filled | 12 | +| Settings Chat | Regular | 12, 16, 28, 32, 48 | +| Settings Chat | Filled | 12, 16, 28, 32, 48 | +| Settings Cog Multiple | Regular | 12, 16, 28, 32, 48 | +| Settings Cog Multiple | Filled | 12, 16, 28, 32, 48 | +| Shape Exclude | Regular | 12, 28, 32, 48 | +| Shape Exclude | Filled | 12, 28, 32, 48 | +| Shape Intersect | Regular | 12, 28, 32, 48 | +| Shape Intersect | Filled | 12, 28, 32, 48 | +| Shape Organic | Regular | 12 | +| Shape Organic | Filled | 12 | +| Shape Subtract | Regular | 12, 28, 32, 48 | +| Shape Subtract | Filled | 12, 28, 32, 48 | +| Shape Union | Regular | 12, 28, 32, 48 | +| Shape Union | Filled | 12, 28, 32, 48 | +| Shapes | Regular | 12 | +| Shapes | Filled | 12 | +| Share | Regular | 12, 32 | +| Share | Filled | 12, 32 | +| Share Android | Regular | 12, 28, 48 | +| Share Android | Filled | 12, 28, 48 | +| Share Close Tray | Regular | 12, 16, 28, 32, 48 | +| Share Close Tray | Filled | 12, 16, 28, 32, 48 | +| Share Screen Person | Regular | 12, 32, 48 | +| Share Screen Person | Filled | 12, 32, 48 | +| Share Screen Person Overlay | Regular | 12, 32, 48 | +| Share Screen Person Overlay | Filled | 12, 32, 48 | +| Share Screen Person Overlay Inside | Regular | 12, 32, 48 | +| Share Screen Person Overlay Inside | Filled | 12, 32, 48 | +| Share Screen Person P | Regular | 12, 32, 48 | +| Share Screen Person P | Filled | 12, 32, 48 | +| Share Screen Start | Regular | 12, 16, 32 | +| Share Screen Start | Filled | 12, 16, 32 | +| Share Screen Stop | Regular | 12, 32 | +| Share Screen Stop | Filled | 12, 32 | +| Share iOS | Regular | 12, 16, 32 | +| Share iOS | Filled | 12, 16, 32 | +| Shield Add | Regular | 12, 28, 32, 48 | +| Shield Add | Filled | 12, 28, 32, 48 | +| Shield Badge | Regular | 12, 16, 28, 32, 48 | +| Shield Badge | Filled | 12, 16, 28, 32, 48 | +| Shield Checkmark | Regular | 12, 32 | +| Shield Checkmark | Filled | 12, 32 | +| Shield Dismiss | Regular | 12, 28, 32, 48 | +| Shield Dismiss | Filled | 12, 28, 32, 48 | +| Shield Dismiss Shield | Regular | 12, 16, 24, 28, 32, 48 | +| Shield Dismiss Shield | Filled | 12, 16, 24, 28, 32, 48 | +| Shield Error | Regular | 12, 28, 32, 48 | +| Shield Error | Filled | 12, 28, 32, 48 | +| Shield Globe | Regular | 12, 28, 32, 48 | +| Shield Globe | Filled | 12, 28, 32, 48 | +| Shield Keyhole | Regular | 12, 28, 32, 48 | +| Shield Keyhole | Filled | 12, 28, 32, 48 | +| Shield Lock | Regular | 12, 32 | +| Shield Lock | Filled | 12, 32 | +| Shield Person | Regular | 12, 16, 24, 28, 32, 48 | +| Shield Person | Filled | 12, 16, 24, 28, 32, 48 | +| Shield Person Add | Regular | 12, 16, 24, 28, 32, 48 | +| Shield Person Add | Filled | 12, 16, 24, 28, 32, 48 | +| Shield Prohibited | Regular | 12, 16, 28, 32, 48 | +| Shield Prohibited | Filled | 12, 16, 28, 32, 48 | +| Shield Question | Regular | 12, 28, 48 | +| Shield Question | Filled | 12, 28, 48 | +| Shield Task | Regular | 12, 32 | +| Shield Task | Filled | 12, 32 | +| Shifts | Regular | 12, 48 | +| Shifts | Filled | 12, 48 | +| Shifts 30 Minutes | Regular | 12, 16, 28, 32, 48 | +| Shifts 30 Minutes | Filled | 12, 16, 28, 32, 48 | +| Shifts Activity | Regular | 12, 28, 32, 48 | +| Shifts Activity | Filled | 12, 28, 32, 48 | +| Shifts Add | Regular | 12, 16, 28, 32, 48 | +| Shifts Add | Filled | 12, 16, 28, 32, 48 | +| Shifts Availability | Regular | 12, 16, 28, 32, 48 | +| Shifts Availability | Filled | 12, 16, 28, 32, 48 | +| Shifts Checkmark | Regular | 12, 16, 28, 32, 48 | +| Shifts Checkmark | Filled | 12, 16, 28, 32, 48 | +| Shifts Day | Regular | 12, 16, 28, 32, 48 | +| Shifts Day | Filled | 12, 16, 28, 32, 48 | +| Shifts Open | Regular | 12, 16, 28, 32, 48 | +| Shifts Open | Filled | 12, 16, 28, 32, 48 | +| Shifts Prohibited | Regular | 12, 16, 28, 32, 48 | +| Shifts Prohibited | Filled | 12, 16, 28, 32, 48 | +| Shifts Question Mark | Regular | 12, 16, 28, 32, 48 | +| Shifts Question Mark | Filled | 12, 16, 28, 32, 48 | +| Shifts Team | Regular | 12, 16, 28, 32, 48 | +| Shifts Team | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag | Regular | 12, 28, 32, 48 | +| Shopping Bag | Filled | 12, 28, 32, 48 | +| Shopping Bag Add | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Add | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag Arrow Left | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Arrow Left | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag Dismiss | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Dismiss | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag Pause | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Pause | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag Percent | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Percent | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag Play | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Play | Filled | 12, 16, 28, 32, 48 | +| Shopping Bag Tag | Regular | 12, 16, 28, 32, 48 | +| Shopping Bag Tag | Filled | 12, 16, 28, 32, 48 | +| Shortpick | Regular | 12, 16, 28, 32, 48 | +| Shortpick | Filled | 12, 16, 28, 32, 48 | +| Showerhead | Regular | 12, 16, 28, 48 | +| Showerhead | Filled | 12, 16, 28, 48 | +| Sidebar Search | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Sidebar Search | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Sidebar Search LTR | Regular | 12, 16, 24, 28, 32, 48 | +| Sidebar Search LTR | Filled | 12, 16, 24, 28, 32, 48 | +| Sidebar Search RTL | Regular | 12, 16, 24, 28, 32, 48 | +| Sidebar Search RTL | Filled | 12, 16, 24, 28, 32, 48 | +| Sign Out | Regular | 12, 16, 28, 32, 48 | +| Sign Out | Filled | 12, 16, 28, 32, 48 | +| Signature | Regular | 12, 48 | +| Signature | Filled | 12, 48 | +| Skip Back 10 | Regular | 12, 16 | +| Skip Back 10 | Filled | 12, 16 | +| Skip Forward 10 | Regular | 12, 16 | +| Skip Forward 10 | Filled | 12, 16 | +| Skip Forward 30 | Regular | 12, 16 | +| Skip Forward 30 | Filled | 12, 16 | +| Skip Forward Tab | Regular | 12, 16, 28, 32, 48 | +| Skip Forward Tab | Filled | 12, 16, 28, 32, 48 | +| Slash Forward | Regular | 28, 32, 48 | +| Slash Forward | Filled | 28, 32, 48 | +| Sleep | Regular | 12, 16, 28, 32, 48 | +| Sleep | Filled | 12, 16, 28, 32, 48 | +| Slide Add | Regular | 12 | +| Slide Add | Filled | 12 | +| Slide Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Slide Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Slide Content | Regular | 12, 16, 20, 28, 32, 48 | +| Slide Content | Filled | 12, 16, 20, 28, 32, 48 | +| Slide Eraser | Regular | 12, 28, 32, 48 | +| Slide Eraser | Filled | 12, 28, 32, 48 | +| Slide Grid | Regular | 12, 16, 28, 32, 48 | +| Slide Grid | Filled | 12, 16, 28, 32, 48 | +| Slide Hide | Regular | 12, 16, 28, 32, 48 | +| Slide Hide | Filled | 12, 16, 28, 32, 48 | +| Slide Layout | Regular | 12, 16, 28, 32, 48 | +| Slide Layout | Filled | 12, 16, 28, 32, 48 | +| Slide Link | Regular | 12, 16, 28, 32, 48 | +| Slide Link | Filled | 12, 16, 28, 32, 48 | +| Slide Microphone | Regular | 12, 16, 28, 48 | +| Slide Microphone | Filled | 12, 16, 28, 48 | +| Slide Multiple | Regular | 12, 16, 28, 32, 48 | +| Slide Multiple | Filled | 12, 16, 28, 32, 48 | +| Slide Multiple Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Slide Multiple Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Slide Multiple Search | Regular | 12, 16, 28, 32, 48 | +| Slide Multiple Search | Filled | 12, 16, 28, 32, 48 | +| Slide Record | Regular | 12, 32 | +| Slide Record | Filled | 12, 32 | +| Slide Search | Regular | 12, 48 | +| Slide Search | Filled | 12, 48 | +| Slide Settings | Regular | 12, 16, 28, 32, 48 | +| Slide Settings | Filled | 12, 16, 28, 32, 48 | +| Slide Size | Regular | 12, 16, 28, 32, 48 | +| Slide Size | Filled | 12, 16, 28, 32, 48 | +| Slide Text | Regular | 12, 32 | +| Slide Text | Filled | 12, 32 | +| Slide Text Edit | Regular | 12, 32, 48 | +| Slide Text Edit | Filled | 12, 32, 48 | +| Slide Text Multiple | Regular | 12, 28, 48 | +| Slide Text Multiple | Filled | 12, 28, 48 | +| Slide Text Person | Regular | 12 | +| Slide Text Person | Filled | 12 | +| Slide Text Sparkle | Regular | 12 | +| Slide Text Sparkle | Filled | 12 | +| Slide Transition | Regular | 12, 16, 28, 32, 48 | +| Slide Transition | Filled | 12, 16, 28, 32, 48 | +| Smartwatch | Regular | 12, 16, 28, 32, 48 | +| Smartwatch | Filled | 12, 16, 28, 32, 48 | +| Smartwatch Dot | Regular | 12, 16, 28, 32, 48 | +| Smartwatch Dot | Filled | 12, 16, 28, 32, 48 | +| Snooze | Regular | 12, 28, 32, 48 | +| Snooze | Filled | 12, 28, 32, 48 | +| Sound Source | Regular | 12, 16, 32, 48 | +| Sound Source | Filled | 12, 16, 32, 48 | +| Sound Wave Circle | Regular | 12, 16, 28, 32, 48 | +| Sound Wave Circle | Filled | 12, 16, 28, 32, 48 | +| Space 3D | Regular | 12 | +| Space 3D | Filled | 12 | +| Spacebar | Regular | 12, 16, 28, 32, 48 | +| Spacebar | Filled | 12, 16, 28, 32, 48 | +| Sparkle | Regular | 12 | +| Sparkle | Filled | 12 | +| Sparkle Circle | Regular | 12 | +| Sparkle Circle | Filled | 12 | +| Speaker 0 | Regular | 12 | +| Speaker 0 | Filled | 12 | +| Speaker 1 | Regular | 12 | +| Speaker 1 | Filled | 12 | +| Speaker 2 | Regular | 12 | +| Speaker 2 | Filled | 12 | +| Speaker Bluetooth | Regular | 12, 16, 32, 48 | +| Speaker Bluetooth | Filled | 12, 16, 32, 48 | +| Speaker Box | Regular | 12, 28, 32, 48 | +| Speaker Box | Filled | 12, 28, 32, 48 | +| Speaker Edit | Regular | 12, 28, 32, 48 | +| Speaker Edit | Filled | 12, 28, 32, 48 | +| Speaker Mute | Regular | 12 | +| Speaker Mute | Filled | 12 | +| Speaker Off | Regular | 12, 32 | +| Speaker Off | Filled | 12, 32 | +| Speaker Settings | Regular | 12, 16, 32, 48 | +| Speaker Settings | Filled | 12, 16, 32, 48 | +| Speaker USB | Regular | 12, 16, 32, 48 | +| Speaker USB | Filled | 12, 16, 32, 48 | +| Spinner iOS | Regular | 12, 24, 28, 32, 48 | +| Spinner iOS | Filled | 12, 24, 28, 32, 48 | +| Split Hint | Regular | 12, 16, 24, 28, 32, 48 | +| Split Hint | Filled | 12, 16, 24, 28, 32, 48 | +| Sport | Regular | 12, 28, 32, 48 | +| Sport | Filled | 12, 28, 32, 48 | +| Sport American Football | Regular | 12, 16, 28, 32, 48 | +| Sport American Football | Filled | 12, 16, 28, 32, 48 | +| Sport Baseball | Regular | 12, 16, 28, 32, 48 | +| Sport Baseball | Filled | 12, 16, 28, 32, 48 | +| Sport Basketball | Regular | 12, 16, 28, 32, 48 | +| Sport Basketball | Filled | 12, 16, 28, 32, 48 | +| Sport Hockey | Regular | 12, 16, 28, 32, 48 | +| Sport Hockey | Filled | 12, 16, 28, 32, 48 | +| Sport Soccer | Regular | 12, 28, 32, 48 | +| Sport Soccer | Filled | 12, 28, 32, 48 | +| Spray Can | Regular | 12, 20, 24, 28, 32, 48 | +| Spray Can | Filled | 12, 20, 24, 28, 32, 48 | +| Square Add | Regular | 12, 24, 28, 32, 48 | +| Square Add | Filled | 12, 24, 28, 32, 48 | +| Square Arrow Forward | Regular | 12 | +| Square Arrow Forward | Filled | 12 | +| Square Dismiss | Regular | 12, 24, 28, 32, 48 | +| Square Dismiss | Filled | 12, 24, 28, 32, 48 | +| Square Eraser | Regular | 12, 16, 24, 28, 32, 48 | +| Square Eraser | Filled | 12, 16, 24, 28, 32, 48 | +| Square Hint | Regular | 12 | +| Square Hint | Filled | 12 | +| Square Hint Apps | Regular | 12, 16, 28, 32, 48 | +| Square Hint Apps | Filled | 12, 16, 28, 32, 48 | +| Square Hint Arrow Back | Regular | 12, 24, 28, 32, 48 | +| Square Hint Arrow Back | Filled | 12, 24, 28, 32, 48 | +| Square Hint Sparkles | Regular | 12 | +| Square Hint Sparkles | Filled | 12 | +| Square Multiple | Regular | 12 | +| Square Multiple | Filled | 12 | +| Square Shadow | Regular | 16, 24, 28, 32, 48 | +| Square Shadow | Filled | 16, 24, 28, 32, 48 | +| Squares Nested | Regular | 12, 16, 24, 28, 32, 48 | +| Squares Nested | Filled | 12, 16, 24, 28, 32, 48 | +| Stack | Regular | 12, 28, 48 | +| Stack | Filled | 12, 28, 48 | +| Stack Add | Regular | 12, 16, 28, 32, 48 | +| Stack Add | Filled | 12, 16, 28, 32, 48 | +| Stack Arrow Forward | Regular | 12, 16, 28, 32, 48 | +| Stack Arrow Forward | Filled | 12, 16, 28, 32, 48 | +| Stack Star | Regular | 12, 28, 32, 48 | +| Stack Star | Filled | 12, 28, 32, 48 | +| Stack Vertical | Regular | 12, 16, 28, 32, 48 | +| Stack Vertical | Filled | 12, 16, 28, 32, 48 | +| Star Add | Regular | 12, 32, 48 | +| Star Add | Filled | 12, 32, 48 | +| Star Arrow Back | Regular | 12, 28, 32, 48 | +| Star Arrow Back | Filled | 12, 28, 32, 48 | +| Star Arrow Right End | Regular | 12, 16, 28, 32, 48 | +| Star Arrow Right End | Filled | 12, 16, 28, 32, 48 | +| Star Arrow Right Start | Regular | 12, 16, 28, 32, 48 | +| Star Arrow Right Start | Filled | 12, 16, 28, 32, 48 | +| Star Checkmark | Regular | 12, 32, 48 | +| Star Checkmark | Filled | 12, 32, 48 | +| Star Dismiss | Regular | 12, 32, 48 | +| Star Dismiss | Filled | 12, 32, 48 | +| Star Edit | Regular | 12, 16, 28, 32, 48 | +| Star Edit | Filled | 12, 16, 28, 32, 48 | +| Star Emphasis | Regular | 12, 28, 48 | +| Star Emphasis | Filled | 12, 28, 48 | +| Star Half | Regular | 32, 48 | +| Star Half | Filled | 32, 48 | +| Star Line Horizontal 3 | Regular | 12, 28, 32, 48 | +| Star Line Horizontal 3 | Filled | 12, 28, 32, 48 | +| Star Off | Regular | 32, 48 | +| Star Off | Filled | 32, 48 | +| Star One Quarter | Regular | 32, 48 | +| Star One Quarter | Filled | 32, 48 | +| Star Prohibited | Regular | 12, 28, 32, 48 | +| Star Prohibited | Filled | 12, 28, 32, 48 | +| Star Settings | Regular | 12, 16, 28, 32, 48 | +| Star Settings | Filled | 12, 16, 28, 32, 48 | +| Star Three Quarter | Regular | 32, 48 | +| Star Three Quarter | Filled | 32, 48 | +| Step | Regular | 12, 28, 32, 48 | +| Step | Filled | 12, 28, 32, 48 | +| Steps | Regular | 12, 28, 32, 48 | +| Steps | Filled | 12, 28, 32, 48 | +| Stethoscope | Regular | 12, 16, 28, 32, 48 | +| Stethoscope | Filled | 12, 16, 28, 32, 48 | +| Sticker | Regular | 16, 28, 32, 48 | +| Sticker | Filled | 16, 28, 32, 48 | +| Sticker Add | Regular | 12, 16, 28, 32, 48 | +| Sticker Add | Filled | 12, 16, 28, 32, 48 | +| Stop | Regular | 12, 28, 32, 48 | +| Stop | Filled | 12, 28, 32, 48 | +| Storage | Regular | 12, 16, 28, 32, 48 | +| Storage | Filled | 12, 16, 28, 32, 48 | +| Store Microsoft | Regular | 12, 28, 32, 48 | +| Store Microsoft | Filled | 12, 28, 32, 48 | +| Stream | Regular | 12, 16, 28 | +| Stream | Filled | 12, 16, 28 | +| Stream Input | Regular | 12, 16, 24, 28, 32, 48 | +| Stream Input | Filled | 12, 16, 24, 28, 32, 48 | +| Stream Input Output | Regular | 12, 16, 24, 28, 32, 48 | +| Stream Input Output | Filled | 12, 16, 24, 28, 32, 48 | +| Stream Output | Regular | 12, 16, 24, 28, 32, 48 | +| Stream Output | Filled | 12, 16, 24, 28, 32, 48 | +| Street Sign | Regular | 12, 16, 28, 32, 48 | +| Street Sign | Filled | 12, 16, 28, 32, 48 | +| Style Guide | Regular | 12, 16, 28, 32, 48 | +| Style Guide | Filled | 12, 16, 28, 32, 48 | +| Sub Grid | Regular | 12, 16, 28, 32, 48 | +| Sub Grid | Filled | 12, 16, 28, 32, 48 | +| Subtitles | Regular | 12, 28, 32, 48 | +| Subtitles | Filled | 12, 28, 32, 48 | +| Subtract | Regular | 32 | +| Subtract | Filled | 32 | +| Subtract Circle Arrow Back | Regular | 12, 24, 28, 32, 48 | +| Subtract Circle Arrow Back | Filled | 12, 24, 28, 32, 48 | +| Subtract Circle Arrow Forward | Regular | 12, 24, 28, 32, 48 | +| Subtract Circle Arrow Forward | Filled | 12, 24, 28, 32, 48 | +| Subtract Parentheses | Regular | 12 | +| Subtract Parentheses | Filled | 12 | +| Subtract Square | Regular | 12, 28, 32, 48 | +| Subtract Square | Filled | 12, 28, 32, 48 | +| Subtract Square Multiple | Regular | 12, 24, 28, 32, 48 | +| Subtract Square Multiple | Filled | 12, 24, 28, 32, 48 | +| Surface Earbuds | Regular | 12, 16, 28, 32, 48 | +| Surface Earbuds | Filled | 12, 16, 28, 32, 48 | +| Surface Hub | Regular | 12, 16, 28, 32, 48 | +| Surface Hub | Filled | 12, 16, 28, 32, 48 | +| Swimming Pool | Regular | 12, 16, 28 | +| Swimming Pool | Filled | 12, 16, 28 | +| Swipe Down | Regular | 12, 16, 28, 32, 48 | +| Swipe Down | Filled | 12, 16, 28, 32, 48 | +| Swipe Right | Regular | 12, 16, 28, 32, 48 | +| Swipe Right | Filled | 12, 16, 28, 32, 48 | +| Swipe Up | Regular | 12, 16, 28, 32, 48 | +| Swipe Up | Filled | 12, 16, 28, 32, 48 | +| Symbols | Regular | 12, 28, 32, 48 | +| Symbols | Filled | 12, 28, 32, 48 | +| Sync Off | Regular | 12, 24, 28, 32, 48 | +| Sync Off | Filled | 12, 24, 28, 32, 48 | +| Syringe | Regular | 12, 16, 28, 32, 48 | +| Syringe | Filled | 12, 16, 28, 32, 48 | +| System | Regular | 12, 16, 28, 32, 48 | +| System | Filled | 12, 16, 28, 32, 48 | +| TV | Regular | 12, 32 | +| TV | Filled | 12, 32 | +| TV Arrow Right | Regular | 12, 16, 24, 28, 32, 48 | +| TV Arrow Right | Filled | 12, 16, 24, 28, 32, 48 | +| TV USB | Regular | 12, 32 | +| TV USB | Filled | 12, 32 | +| Tab | Regular | 12, 32, 48 | +| Tab | Filled | 12, 32, 48 | +| Tab Add | Regular | 12, 16, 28, 32, 48 | +| Tab Add | Filled | 12, 16, 28, 32, 48 | +| Tab Arrow Left | Regular | 12, 16, 28, 32, 48 | +| Tab Arrow Left | Filled | 12, 16, 28, 32, 48 | +| Tab Desktop | Regular | 12, 32, 48 | +| Tab Desktop | Filled | 12, 32, 48 | +| Tab Desktop Arrow Clockwise | Regular | 12, 28, 32, 48 | +| Tab Desktop Arrow Clockwise | Filled | 12, 28, 32, 48 | +| Tab Desktop Arrow Left | Regular | 12, 16, 24, 28, 32, 48 | +| Tab Desktop Arrow Left | Filled | 12, 16, 24, 28, 32, 48 | +| Tab Desktop Bottom | Regular | 12, 16, 28, 32, 48 | +| Tab Desktop Bottom | Filled | 12, 16, 28, 32, 48 | +| Tab Desktop Clock | Regular | 12, 16, 24, 28, 32, 48 | +| Tab Desktop Clock | Filled | 12, 16, 24, 28, 32, 48 | +| Tab Desktop Copy | Regular | 12, 16, 24, 28, 32, 48 | +| Tab Desktop Copy | Filled | 12, 16, 24, 28, 32, 48 | +| Tab Desktop Image | Regular | 12, 28, 32, 48 | +| Tab Desktop Image | Filled | 12, 28, 32, 48 | +| Tab Desktop Link | Regular | 12, 32, 48 | +| Tab Desktop Link | Filled | 12, 32, 48 | +| Tab Desktop Multiple | Regular | 12, 24, 28, 32, 48 | +| Tab Desktop Multiple | Filled | 12, 24, 28, 32, 48 | +| Tab Desktop Multiple Add | Regular | 12, 24, 28, 32, 48 | +| Tab Desktop Multiple Add | Filled | 12, 24, 28, 32, 48 | +| Tab Desktop Multiple Bottom | Regular | 12, 16, 28, 32, 48 | +| Tab Desktop Multiple Bottom | Filled | 12, 16, 28, 32, 48 | +| Tab Desktop New Page | Regular | 12, 16, 24, 28, 32, 48 | +| Tab Desktop New Page | Filled | 12, 16, 24, 28, 32, 48 | +| Tab In Private | Regular | 12, 32, 48 | +| Tab In Private | Filled | 12, 32, 48 | +| Tab InPrivate Account | Regular | 12, 16, 28, 32, 48 | +| Tab InPrivate Account | Filled | 12, 16, 28, 32, 48 | +| Tab Prohibited | Regular | 12, 16, 28, 32, 48 | +| Tab Prohibited | Filled | 12, 16, 28, 32, 48 | +| Tab Shield Dismiss | Regular | 12, 16, 28, 32, 48 | +| Tab Shield Dismiss | Filled | 12, 16, 28, 32, 48 | +| Table | Regular | 12 | +| Table | Filled | 12 | +| Table Add | Regular | 12, 32, 48 | +| Table Add | Filled | 12, 32, 48 | +| Table Arrow Up | Regular | 12, 16, 28, 32, 48 | +| Table Arrow Up | Filled | 12, 16, 28, 32, 48 | +| Table Bottom Row | Regular | 12 | +| Table Bottom Row | Filled | 12 | +| Table Calculator | Regular | 12, 24, 28, 32, 48 | +| Table Calculator | Filled | 12, 24, 28, 32, 48 | +| Table Cell Edit | Regular | 12, 32, 48 | +| Table Cell Edit | Filled | 12, 32, 48 | +| Table Cells Merge | Regular | 12, 32, 48 | +| Table Cells Merge | Filled | 12, 32, 48 | +| Table Cells Split | Regular | 12, 32, 48 | +| Table Cells Split | Filled | 12, 32, 48 | +| Table Checker | Regular | 12, 16, 24, 28, 32, 48 | +| Table Checker | Filled | 12, 16, 24, 28, 32, 48 | +| Table Column Top Bottom | Regular | 12, 16, 28, 32, 48 | +| Table Column Top Bottom | Filled | 12, 16, 28, 32, 48 | +| Table Copy | Regular | 12, 16, 24, 28, 32, 48 | +| Table Copy | Filled | 12, 16, 24, 28, 32, 48 | +| Table Default | Regular | 12, 16, 20, 24, 28, 48 | +| Table Default | Filled | 12, 16, 20, 24, 28, 48 | +| Table Delete Column | Regular | 12, 32, 48 | +| Table Delete Column | Filled | 12, 32, 48 | +| Table Delete Row | Regular | 12, 32, 48 | +| Table Delete Row | Filled | 12, 32, 48 | +| Table Dismiss | Regular | 12, 32, 48 | +| Table Dismiss | Filled | 12, 32, 48 | +| Table Edit | Regular | 12, 32, 48 | +| Table Edit | Filled | 12, 32, 48 | +| Table Freeze Column | Regular | 12, 32, 48 | +| Table Freeze Column | Filled | 12, 32, 48 | +| Table Freeze Column And Row | Regular | 12, 32, 48 | +| Table Freeze Column And Row | Filled | 12, 32, 48 | +| Table Freeze Column And Row Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column And Row Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column And Row Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column And Row Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Column Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Table Freeze Row | Regular | 12, 32, 48 | +| Table Freeze Row | Filled | 12, 32, 48 | +| Table Image | Regular | 12, 16, 24, 28, 32, 48 | +| Table Image | Filled | 12, 16, 24, 28, 32, 48 | +| Table Insert Column | Regular | 12, 32, 48 | +| Table Insert Column | Filled | 12, 32, 48 | +| Table Insert Row | Regular | 12, 32, 48 | +| Table Insert Row | Filled | 12, 32, 48 | +| Table Lightning | Regular | 12, 32, 48 | +| Table Lightning | Filled | 12, 32, 48 | +| Table Link | Regular | 12, 32, 48 | +| Table Link | Filled | 12, 32, 48 | +| Table Lock | Regular | 12 | +| Table Lock | Filled | 12 | +| Table Move Above | Regular | 12, 32, 48 | +| Table Move Above | Filled | 12, 32, 48 | +| Table Move Below | Regular | 12, 32, 48 | +| Table Move Below | Filled | 12, 32, 48 | +| Table Move Left | Regular | 12, 32, 48 | +| Table Move Left | Filled | 12, 32, 48 | +| Table Move Right | Regular | 12, 32, 48 | +| Table Move Right | Filled | 12, 32, 48 | +| Table Multiple | Regular | 12, 16, 24, 28, 32, 48 | +| Table Multiple | Filled | 12, 16, 24, 28, 32, 48 | +| Table Offset | Regular | 12, 16, 28, 32, 48 | +| Table Offset | Filled | 12, 16, 28, 32, 48 | +| Table Offset Add | Regular | 12, 16, 28, 32, 48 | +| Table Offset Add | Filled | 12, 16, 28, 32, 48 | +| Table Offset Less Than Or Equal To | Regular | 12, 16, 28, 32, 48 | +| Table Offset Less Than Or Equal To | Filled | 12, 16, 28, 32, 48 | +| Table Offset Settings | Regular | 12, 16, 28, 32, 48 | +| Table Offset Settings | Filled | 12, 16, 28, 32, 48 | +| Table Resize Column | Regular | 12, 32, 48 | +| Table Resize Column | Filled | 12, 32, 48 | +| Table Resize Row | Regular | 12, 32, 48 | +| Table Resize Row | Filled | 12, 32, 48 | +| Table Search | Regular | 12, 16, 24, 28, 32, 48 | +| Table Search | Filled | 12, 16, 24, 28, 32, 48 | +| Table Settings | Regular | 12, 32, 48 | +| Table Settings | Filled | 12, 32, 48 | +| Table Simple | Regular | 12 | +| Table Simple | Filled | 12 | +| Table Simple Checkmark | Regular | 12 | +| Table Simple Checkmark | Filled | 12 | +| Table Simple Exclude | Regular | 12 | +| Table Simple Exclude | Filled | 12 | +| Table Simple Include | Regular | 12 | +| Table Simple Include | Filled | 12 | +| Table Simple Multiple | Regular | 12, 16, 28, 32, 48 | +| Table Simple Multiple | Filled | 12, 16, 28, 32, 48 | +| Table Split | Regular | 12, 16, 24, 28, 32, 48 | +| Table Split | Filled | 12, 16, 24, 28, 32, 48 | +| Table Stack Above | Regular | 12, 32, 48 | +| Table Stack Above | Filled | 12, 32, 48 | +| Table Stack Below | Regular | 12, 32, 48 | +| Table Stack Below | Filled | 12, 32, 48 | +| Table Stack Left | Regular | 12, 32, 48 | +| Table Stack Left | Filled | 12, 32, 48 | +| Table Stack Right | Regular | 12, 32, 48 | +| Table Stack Right | Filled | 12, 32, 48 | +| Table Switch | Regular | 12, 32, 48 | +| Table Switch | Filled | 12, 32, 48 | +| Tablet | Regular | 28 | +| Tablet | Filled | 28 | +| Tablet Laptop | Regular | 12, 16, 28, 32, 48 | +| Tablet Laptop | Filled | 12, 16, 28, 32, 48 | +| Tablet Speaker | Regular | 12, 16, 28, 32, 48 | +| Tablet Speaker | Filled | 12, 16, 28, 32, 48 | +| Tabs | Regular | 12, 28, 32, 48 | +| Tabs | Filled | 12, 28, 32, 48 | +| Tag | Regular | 12, 48 | +| Tag | Filled | 12, 48 | +| Tag Circle | Regular | 12, 16, 24, 28, 32, 48 | +| Tag Circle | Filled | 12, 16, 24, 28, 32, 48 | +| Tag Dismiss | Regular | 12, 28, 32, 48 | +| Tag Dismiss | Filled | 12, 28, 32, 48 | +| Tag Error | Regular | 12, 28, 32, 48 | +| Tag Error | Filled | 12, 28, 32, 48 | +| Tag Lock | Regular | 12, 28, 48 | +| Tag Lock | Filled | 12, 28, 48 | +| Tag Lock Accent | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Tag Lock Accent | Filled | 12, 28, 48 | +| Tag Multiple | Regular | 12, 28, 32, 48 | +| Tag Multiple | Filled | 12, 28, 32, 48 | +| Tag Off | Regular | 12, 16, 28, 32, 48 | +| Tag Off | Filled | 12, 16, 28, 32, 48 | +| Tag Question Mark | Regular | 12, 28, 48 | +| Tag Question Mark | Filled | 12, 28, 48 | +| Tag Reset | Regular | 12, 16, 28, 32, 48 | +| Tag Reset | Filled | 12, 16, 28, 32, 48 | +| Tag Search | Regular | 12, 16, 28, 32, 48 | +| Tag Search | Filled | 12, 16, 28, 32, 48 | +| Tap Double | Regular | 12, 16, 28 | +| Tap Double | Filled | 12, 16, 28 | +| Tap Single | Regular | 12, 16, 28 | +| Tap Single | Filled | 12, 16, 28 | +| Target | Regular | 12, 28, 48 | +| Target | Filled | 12, 28, 48 | +| Target Add | Regular | 12, 16, 28, 32, 48 | +| Target Add | Filled | 12, 16, 28, 32, 48 | +| Target Arrow | Regular | 12, 28, 32, 48 | +| Target Arrow | Filled | 12, 28, 32, 48 | +| Target Dismiss | Regular | 12, 16, 28, 32, 48 | +| Target Dismiss | Filled | 12, 16, 28, 32, 48 | +| Target Edit | Regular | 12, 28, 32, 48 | +| Target Edit | Filled | 12, 28, 32, 48 | +| Task List | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Task List | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Task List Add | Regular | 12, 16, 28, 32, 48 | +| Task List Add | Filled | 12, 16, 28, 32, 48 | +| Task List LTR | Regular | 12, 16, 28, 32, 48 | +| Task List LTR | Filled | 12, 16, 28, 32, 48 | +| Task List RTL | Regular | 12, 16, 28, 32, 48 | +| Task List RTL | Filled | 12, 16, 28, 32, 48 | +| Task List Square | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Task List Square | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Task List Square Add | Regular | 12, 16, 28, 32, 48 | +| Task List Square Add | Filled | 12, 16, 28, 32, 48 | +| Task List Square Database | Regular | 12, 16, 24, 28, 32, 48 | +| Task List Square Database | Filled | 12, 16, 24, 28, 32, 48 | +| Task List Square LTR | Regular | 12, 28, 32, 48 | +| Task List Square LTR | Filled | 12, 28, 32, 48 | +| Task List Square Person | Regular | 12, 16, 24, 28, 32, 48 | +| Task List Square Person | Filled | 12, 16, 24, 28, 32, 48 | +| Task List Square RTL | Regular | 12, 28, 32, 48 | +| Task List Square RTL | Filled | 12, 28, 32, 48 | +| Task List Square Settings | Regular | 12, 16, 24, 28, 32, 48 | +| Task List Square Settings | Filled | 12, 16, 24, 28, 32, 48 | +| Tasks App | Regular | 12, 16, 32, 48 | +| Tasks App | Filled | 12, 16, 32, 48 | +| Teardrop Bottom Right | Regular | 12 | +| Teardrop Bottom Right | Filled | 12 | +| Teddy | Regular | 12, 16, 28, 32, 48 | +| Teddy | Filled | 12, 16, 28, 32, 48 | +| Temperature | Regular | 12, 28 | +| Temperature | Filled | 12, 28 | +| Tent | Regular | 32 | +| Tent | Filled | 32 | +| Tetris App | Regular | 12 | +| Tetris App | Filled | 12 | +| Text | Regular | 20, 24, 28, 48 | +| Text | Filled | 20, 24, 28, 48 | +| Text Abc Underline Double | Regular | 12, 16, 20, 24, 28, 48 | +| Text Abc Underline Double | Filled | 12, 16, 20, 24, 28, 48 | +| Text Add | Regular | 12, 16, 24, 28, 32, 48 | +| Text Add | Filled | 12, 16, 24, 28, 32, 48 | +| Text Add Space After | Regular | 12, 16, 28, 32, 48 | +| Text Add Space After | Filled | 12, 16, 28, 32, 48 | +| Text Add Space Before | Regular | 12, 16, 28, 32, 48 | +| Text Add Space Before | Filled | 12, 16, 28, 32, 48 | +| Text Add T | Regular | 12, 16, 28, 32, 48 | +| Text Add T | Filled | 12, 16, 28, 32, 48 | +| Text Align Center | Regular | 12, 28, 32, 48 | +| Text Align Center | Filled | 12, 28, 32, 48 | +| Text Align Center Rotate 270 | Regular | 12, 28, 32, 48 | +| Text Align Center Rotate 270 | Filled | 12, 28, 32, 48 | +| Text Align Center Rotate 90 | Regular | 12, 28, 32, 48 | +| Text Align Center Rotate 90 | Filled | 12, 28, 32, 48 | +| Text Align Distributed | Regular | 12, 16, 28, 32, 48 | +| Text Align Distributed | Filled | 12, 16, 28, 32, 48 | +| Text Align Distributed Evenly | Regular | 12, 16, 28, 32, 48 | +| Text Align Distributed Evenly | Filled | 12, 16, 28, 32, 48 | +| Text Align Distributed Vertical | Regular | 12, 16, 28, 32, 48 | +| Text Align Distributed Vertical | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify Low | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify Low | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify Low 90 | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify Low 90 | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify Low Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify Low Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify Low Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify Low Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Align Justify Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| Text Align Justify Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| Text Align Left | Regular | 12, 28, 32, 48 | +| Text Align Left | Filled | 12, 28, 32, 48 | +| Text Align Left Rotate 270 | Regular | 12, 28, 32, 48 | +| Text Align Left Rotate 270 | Filled | 12, 28, 32, 48 | +| Text Align Left Rotate 90 | Regular | 12, 28, 32, 48 | +| Text Align Left Rotate 90 | Filled | 12, 28, 32, 48 | +| Text Align Left Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Align Left Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Align Left Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Align Left Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Align Right | Regular | 12, 28, 32, 48 | +| Text Align Right | Filled | 12, 28, 32, 48 | +| Text Align Right Rotate 270 | Regular | 12, 28, 32, 48 | +| Text Align Right Rotate 270 | Filled | 12, 28, 32, 48 | +| Text Align Right Rotate 90 | Regular | 12, 28, 32, 48 | +| Text Align Right Rotate 90 | Filled | 12, 28, 32, 48 | +| Text Arrow Down Right Column | Regular | 12 | +| Text Arrow Down Right Column | Filled | 12 | +| Text Asterisk | Regular | 12, 24, 28, 32, 48 | +| Text Asterisk | Filled | 12, 24, 28, 32, 48 | +| Text Baseline | Regular | 12, 16, 24, 28, 32, 48 | +| Text Baseline | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bold | Regular | 12, 28, 32, 48 | +| Text Bold | Filled | 12, 28, 32, 48 | +| Text Box Settings | Regular | 12, 16, 28, 32, 48 | +| Text Box Settings | Filled | 12, 16, 28, 32, 48 | +| Text Bullet List | Regular | 12, 28, 32, 48 | +| Text Bullet List | Filled | 12, 28, 32, 48 | +| Text Bullet List 270 | Regular | 12, 16, 20, 28, 32, 48 | +| Text Bullet List 270 | Filled | 12, 16, 20, 28, 32, 48 | +| Text Bullet List 90 | Regular | 12, 16, 28, 32, 48 | +| Text Bullet List 90 | Filled | 12, 16, 28, 32, 48 | +| Text Bullet List Add | Regular | 12, 16, 28, 32, 48 | +| Text Bullet List Add | Filled | 12, 16, 28, 32, 48 | +| Text Bullet List Checkmark | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Checkmark | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Dismiss | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Dismiss | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List LTR | Regular | 12, 28, 32, 48 | +| Text Bullet List LTR | Filled | 12, 28, 32, 48 | +| Text Bullet List LTR 90 | Regular | 12, 16, 28, 32, 48 | +| Text Bullet List LTR 90 | Filled | 12, 16, 28, 32, 48 | +| Text Bullet List LTR Rotate 270 | Regular | 12, 16, 20, 28, 32, 48 | +| Text Bullet List LTR Rotate 270 | Filled | 12, 16, 20, 28, 32, 48 | +| Text Bullet List RTL | Regular | 12, 28, 32, 48 | +| Text Bullet List RTL | Filled | 12, 28, 32, 48 | +| Text Bullet List RTL 90 | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List RTL 90 | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square | Regular | 12, 28 | +| Text Bullet List Square | Filled | 12, 28 | +| Text Bullet List Square Clock | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Clock | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Edit | Regular | 12, 16, 28, 32, 48 | +| Text Bullet List Square Edit | Filled | 12, 16, 28, 32, 48 | +| Text Bullet List Square Person | Regular | 12, 16, 24, 28, 48 | +| Text Bullet List Square Person | Filled | 12, 16, 24, 28, 48 | +| Text Bullet List Square Search | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Search | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Settings | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Settings | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Shield | Regular | 12, 16, 24, 28, 32 | +| Text Bullet List Square Shield | Filled | 12, 16, 24, 28, 32 | +| Text Bullet List Square Sparkle | Regular | 12, 28, 32, 48 | +| Text Bullet List Square Sparkle | Filled | 12, 28, 32, 48 | +| Text Bullet List Square Toolbox | Regular | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Toolbox | Filled | 12, 16, 24, 28, 32, 48 | +| Text Bullet List Square Warning | Regular | 12, 28, 32, 48 | +| Text Bullet List Square Warning | Filled | 12, 28, 32, 48 | +| Text Bullet List Tree | Regular | 12, 28, 32, 48 | +| Text Bullet List Tree | Filled | 12, 28, 32, 48 | +| Text Case Lowercase | Regular | 12, 28, 32, 48 | +| Text Case Lowercase | Filled | 12, 28, 32, 48 | +| Text Case Title | Regular | 12, 28, 32, 48 | +| Text Case Title | Filled | 12, 28, 32, 48 | +| Text Case Uppercase | Regular | 12, 28, 32, 48 | +| Text Case Uppercase | Filled | 12, 28, 32, 48 | +| Text Change Case | Regular | 12, 28, 32, 48 | +| Text Change Case | Filled | 12, 28, 32, 48 | +| Text Clear Formatting | Regular | 12, 28, 32, 48 | +| Text Clear Formatting | Filled | 12, 28, 32, 48 | +| Text Collapse | Regular | 12, 16, 28, 32, 48 | +| Text Collapse | Filled | 12, 16, 28, 32, 48 | +| Text Color | Regular | 12, 28, 32, 48 | +| Text Color | Filled | 12, 28, 32, 48 | +| Text Color Accent | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Color Accent | Filled | 12, 28, 32, 48 | +| Text Column One | Regular | 12, 16, 28, 32, 48 | +| Text Column One | Filled | 12, 16, 28, 32, 48 | +| Text Column One Narrow | Regular | 12, 16, 28, 32, 48 | +| Text Column One Narrow | Filled | 12, 16, 28, 32, 48 | +| Text Column One Semi Narrow | Regular | 12, 16, 28, 32, 48 | +| Text Column One Semi Narrow | Filled | 12, 16, 28, 32, 48 | +| Text Column One Wide | Regular | 12, 16, 28, 32, 48 | +| Text Column One Wide | Filled | 12, 16, 28, 32, 48 | +| Text Column One Wide Lightning | Regular | 12, 16, 28, 32, 48 | +| Text Column One Wide Lightning | Filled | 12, 16, 28, 32, 48 | +| Text Column Three | Regular | 12, 16, 28, 32, 48 | +| Text Column Three | Filled | 12, 16, 28, 32, 48 | +| Text Column Two | Regular | 12, 16, 28, 32, 48 | +| Text Column Two | Filled | 12, 16, 28, 32, 48 | +| Text Column Two Left | Regular | 12, 16, 28, 32, 48 | +| Text Column Two Left | Filled | 12, 16, 28, 32, 48 | +| Text Column Two Right | Regular | 12, 16, 28, 32, 48 | +| Text Column Two Right | Filled | 12, 16, 28, 32, 48 | +| Text Column Wide | Regular | 12, 16, 28, 32, 48 | +| Text Column Wide | Filled | 12, 16, 28, 32, 48 | +| Text Continuous | Regular | 12, 16, 28, 32, 48 | +| Text Continuous | Filled | 12, 16, 28, 32, 48 | +| Text Density | Regular | 12, 48 | +| Text Density | Filled | 12, 48 | +| Text Description | Regular | 12, 48 | +| Text Description | Filled | 12, 48 | +| Text Description LTR | Regular | 12, 16, 28, 32, 48 | +| Text Description LTR | Filled | 12, 16, 28, 32, 48 | +| Text Description RTL | Regular | 12, 16, 28, 32, 48 | +| Text Description RTL | Filled | 12, 16, 28, 32, 48 | +| Text Direction Horizontal LTR | Regular | 12, 16, 28, 32, 48 | +| Text Direction Horizontal LTR | Filled | 12, 16, 28, 32, 48 | +| Text Direction Horizontal Left | Regular | 12, 16, 28, 32, 48 | +| Text Direction Horizontal Left | Filled | 12, 16, 28, 32, 48 | +| Text Direction Horizontal RTL | Regular | 12, 16, 28, 32, 48 | +| Text Direction Horizontal RTL | Filled | 12, 16, 28, 32, 48 | +| Text Direction Horizontal Right | Regular | 12, 16, 28, 32, 48 | +| Text Direction Horizontal Right | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 270 Right | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 270 Right | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 315 Right | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 315 Right | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 45 Right | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 45 Right | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 LTR | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 LTR | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 Left | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 Left | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 RTL | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 RTL | Filled | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 Right | Regular | 12, 16, 28, 32, 48 | +| Text Direction Rotate 90 Right | Filled | 12, 16, 28, 32, 48 | +| Text Direction Vertical | Regular | 12, 16, 28, 32, 48 | +| Text Direction Vertical | Filled | 12, 16, 28, 32, 48 | +| Text Edit Style | Regular | 12, 28, 32, 48 | +| Text Edit Style | Filled | 12, 28, 32, 48 | +| Text Edit Style Character A | Regular | 12, 16, 20, 24, 28, 48 | +| Text Edit Style Character A | Filled | 12, 16, 20, 24, 28, 48 | +| Text Edit Style Character Ga | Regular | 12, 16, 20, 24, 28, 48 | +| Text Edit Style Character Ga | Filled | 12, 16, 20, 24, 28, 48 | +| Text Effects | Regular | 12, 16, 28, 32, 48 | +| Text Effects | Filled | 12, 16, 28, 32, 48 | +| Text Effects Sparkle | Regular | 12, 16, 28, 32, 48 | +| Text Effects Sparkle | Filled | 12, 16, 28, 32, 48 | +| Text Expand | Regular | 12, 28, 32, 48 | +| Text Expand | Filled | 12, 28, 32, 48 | +| Text Field | Regular | 12, 28, 32, 48 | +| Text Field | Filled | 12, 28, 32, 48 | +| Text First Line | Regular | 12, 16, 28, 32, 48 | +| Text First Line | Filled | 12, 16, 28, 32, 48 | +| Text First Line Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text First Line Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text First Line Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text First Line Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Font | Regular | 12, 28, 32, 48 | +| Text Font | Filled | 12, 28, 32, 48 | +| Text Font Info | Regular | 12, 28, 32, 48 | +| Text Font Info | Filled | 12, 28, 32, 48 | +| Text Font Size | Regular | 12, 28, 32, 48 | +| Text Font Size | Filled | 12, 28, 32, 48 | +| Text Footnote | Regular | 12, 16, 28, 32, 48 | +| Text Footnote | Filled | 12, 16, 28, 32, 48 | +| Text Grammar Arrow Left | Regular | 12, 16, 28, 32, 48 | +| Text Grammar Arrow Left | Filled | 12, 16, 28, 32, 48 | +| Text Grammar Arrow Left Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Left Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Left Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Left Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Right | Regular | 12, 16, 28, 32, 48 | +| Text Grammar Arrow Right | Filled | 12, 16, 28, 32, 48 | +| Text Grammar Arrow Right Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Right Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Right Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Arrow Right Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Grammar Checkmark | Regular | 12, 16, 28, 32, 48 | +| Text Grammar Checkmark | Filled | 12, 16, 28, 32, 48 | +| Text Grammar Dismiss | Regular | 12, 16, 28, 32, 48 | +| Text Grammar Dismiss | Filled | 12, 16, 28, 32, 48 | +| Text Grammar Error | Regular | 12, 16, 24, 28, 32, 48 | +| Text Grammar Error | Filled | 12, 16, 24, 28, 32, 48 | +| Text Grammar Lightning | Regular | 12, 48 | +| Text Grammar Lightning | Filled | 12, 48 | +| Text Grammar Settings | Regular | 12, 16, 28, 32, 48 | +| Text Grammar Settings | Filled | 12, 16, 28, 32, 48 | +| Text Grammar Wand | Regular | 12, 28, 32, 48 | +| Text Grammar Wand | Filled | 12, 28, 32, 48 | +| Text Hanging | Regular | 12, 16, 28, 32, 48 | +| Text Hanging | Filled | 12, 16, 28, 32, 48 | +| Text Hanging Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Hanging Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Hanging Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Hanging Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Header 1 | Regular | 12, 16, 28, 32, 48 | +| Text Header 1 | Filled | 12, 16, 28, 32, 48 | +| Text Header 1 Lines | Regular | 12, 28, 32, 48 | +| Text Header 1 Lines | Filled | 12, 28, 32, 48 | +| Text Header 1 Lines Caret | Regular | 12, 28, 32, 48 | +| Text Header 1 Lines Caret | Filled | 12, 28, 32, 48 | +| Text Header 2 | Regular | 12, 16, 28, 32, 48 | +| Text Header 2 | Filled | 12, 16, 28, 32, 48 | +| Text Header 2 Lines | Regular | 12, 28, 32, 48 | +| Text Header 2 Lines | Filled | 12, 28, 32, 48 | +| Text Header 2 Lines Caret | Regular | 12, 28, 32, 48 | +| Text Header 2 Lines Caret | Filled | 12, 28, 32, 48 | +| Text Header 3 | Regular | 12, 16, 28, 32, 48 | +| Text Header 3 | Filled | 12, 16, 28, 32, 48 | +| Text Header 3 Lines | Regular | 12, 28, 32, 48 | +| Text Header 3 Lines | Filled | 12, 28, 32, 48 | +| Text Header 3 Lines Caret | Regular | 12, 28, 32, 48 | +| Text Header 3 Lines Caret | Filled | 12, 28, 32, 48 | +| Text Indent Decrease | Regular | 12, 28, 32, 48 | +| Text Indent Decrease | Filled | 12, 28, 32, 48 | +| Text Indent Decrease LTR | Regular | 12, 28, 32, 48 | +| Text Indent Decrease LTR | Filled | 12, 28, 32, 48 | +| Text Indent Decrease LTR 90 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Decrease LTR 90 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Decrease LTR Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Decrease LTR Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Decrease RTL | Regular | 12, 28, 32, 48 | +| Text Indent Decrease RTL | Filled | 12, 28, 32, 48 | +| Text Indent Decrease RTL 90 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Decrease RTL 90 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Decrease RTL Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Decrease RTL Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Decrease Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Decrease Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Decrease Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Decrease Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Increase | Regular | 12, 28, 32, 48 | +| Text Indent Increase | Filled | 12, 28, 32, 48 | +| Text Indent Increase LTR | Regular | 12, 28, 32, 48 | +| Text Indent Increase LTR | Filled | 12, 28, 32, 48 | +| Text Indent Increase LTR 90 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Increase LTR 90 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Increase LTR Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Increase LTR Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Increase RTL | Regular | 12, 28, 32, 48 | +| Text Indent Increase RTL | Filled | 12, 28, 32, 48 | +| Text Indent Increase RTL 90 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Increase RTL 90 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Increase RTL Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Increase RTL Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Increase Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Increase Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Indent Increase Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| Text Indent Increase Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| Text Italic | Regular | 12, 28, 32, 48 | +| Text Italic | Filled | 12, 28, 32, 48 | +| Text Line Spacing | Regular | 12, 16, 28, 32, 48 | +| Text Line Spacing | Filled | 12, 16, 28, 32, 48 | +| Text More | Regular | 12, 16, 28, 32, 48 | +| Text More | Filled | 12, 16, 28, 32, 48 | +| Text Number Format | Regular | 12, 16, 28, 32, 48 | +| Text Number Format | Filled | 12, 16, 28, 32, 48 | +| Text Number List | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Number List | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Number List LTR | Regular | 12, 28, 32, 48 | +| Text Number List LTR | Filled | 12, 28, 32, 48 | +| Text Number List LTR 90 | Regular | 12, 16, 28, 32, 48 | +| Text Number List LTR 90 | Filled | 12, 16, 28, 32, 48 | +| Text Number List LTR Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Number List LTR Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Number List RTL | Regular | 12, 28, 32, 48 | +| Text Number List RTL | Filled | 12, 28, 32, 48 | +| Text Number List RTL 90 | Regular | 12, 16, 28, 32, 48 | +| Text Number List RTL 90 | Filled | 12, 16, 28, 32, 48 | +| Text Number List RTL Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Number List RTL Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Number List Rotate 270 | Regular | 12, 16, 28, 32, 48 | +| Text Number List Rotate 270 | Filled | 12, 16, 28, 32, 48 | +| Text Number List Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| Text Number List Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| Text Paragraph | Regular | 12, 28, 32, 48 | +| Text Paragraph | Filled | 12, 28, 32, 48 | +| Text Paragraph Direction | Regular | 12, 16, 28, 32, 48 | +| Text Paragraph Direction | Filled | 12, 16, 28, 32, 48 | +| Text Paragraph Direction Left | Regular | 12, 24, 28, 32, 48 | +| Text Paragraph Direction Left | Filled | 12, 24, 28, 32, 48 | +| Text Paragraph Direction Right | Regular | 12, 24, 28, 32, 48 | +| Text Paragraph Direction Right | Filled | 12, 24, 28, 32, 48 | +| Text Paragraph Temp LTR | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Paragraph Temp LTR | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Paragraph Temp RTL | Regular | 12, 16, 20, 24, 28, 32, 48 | +| Text Paragraph Temp RTL | Filled | 12, 16, 20, 24, 28, 32, 48 | +| Text Period Asterisk | Regular | 12, 16, 24, 28, 32, 48 | +| Text Period Asterisk | Filled | 12, 16, 24, 28, 32, 48 | +| Text Position Behind | Regular | 12, 16, 28, 32, 48 | +| Text Position Behind | Filled | 12, 16, 28, 32, 48 | +| Text Position Front | Regular | 12, 16, 28, 32, 48 | +| Text Position Front | Filled | 12, 16, 28, 32, 48 | +| Text Position Line | Regular | 12, 16, 28, 32, 48 | +| Text Position Line | Filled | 12, 16, 28, 32, 48 | +| Text Position Square | Regular | 12, 16, 28, 32, 48 | +| Text Position Square | Filled | 12, 16, 28, 32, 48 | +| Text Position Square Left | Regular | 12, 28, 32, 48 | +| Text Position Square Left | Filled | 12, 28, 32, 48 | +| Text Position Square Right | Regular | 12, 28, 32, 48 | +| Text Position Square Right | Filled | 12, 28, 32, 48 | +| Text Position Through | Regular | 12, 16, 28, 32, 48 | +| Text Position Through | Filled | 12, 16, 28, 32, 48 | +| Text Position Tight | Regular | 12, 16, 28, 32, 48 | +| Text Position Tight | Filled | 12, 16, 28, 32, 48 | +| Text Position Top Bottom | Regular | 12, 16, 28, 32, 48 | +| Text Position Top Bottom | Filled | 12, 16, 28, 32, 48 | +| Text Proofing Tools | Regular | 12, 16, 28, 32, 48 | +| Text Proofing Tools | Filled | 12, 16, 28, 32, 48 | +| Text Quote | Regular | 12, 28, 32, 48 | +| Text Quote | Filled | 12, 28, 32, 48 | +| Text Sort Ascending | Regular | 12, 28, 32, 48 | +| Text Sort Ascending | Filled | 12, 28, 32, 48 | +| Text Sort Descending | Regular | 12, 28, 32, 48 | +| Text Sort Descending | Filled | 12, 28, 32, 48 | +| Text Strikethrough | Regular | 12, 28, 32, 48 | +| Text Strikethrough | Filled | 12, 28, 32, 48 | +| Text Subscript | Regular | 12, 28, 32, 48 | +| Text Subscript | Filled | 12, 28, 32, 48 | +| Text Superscript | Regular | 12, 28, 32, 48 | +| Text Superscript | Filled | 12, 28, 32, 48 | +| Text T Tag | Regular | 12, 20, 24, 28, 32, 48 | +| Text T Tag | Filled | 12, 20, 24, 28, 32, 48 | +| Text Underline | Regular | 12, 28, 32, 48 | +| Text Underline | Filled | 12, 28, 32, 48 | +| Text Underline Character U | Regular | 12, 28, 32, 48 | +| Text Underline Character U | Filled | 12, 28, 32, 48 | +| Text Underline Double | Regular | 12, 16, 28, 32, 48 | +| Text Underline Double | Filled | 12, 16, 28, 32, 48 | +| Text Whole Word | Regular | 12, 24, 28, 32, 48 | +| Text Whole Word | Filled | 12, 24, 28, 32, 48 | +| Text Word Count | Regular | 12, 16, 28, 32, 48 | +| Text Word Count | Filled | 12, 16, 28, 32, 48 | +| Text Wrap | Regular | 12, 28, 32, 48 | +| Text Wrap | Filled | 12, 28, 32, 48 | +| Text Wrap Off | Regular | 12, 28, 32, 48 | +| Text Wrap Off | Filled | 12, 28, 32, 48 | +| TextBox | Regular | 12, 28, 32, 48 | +| TextBox | Filled | 12, 28, 32, 48 | +| TextBox Align Bottom | Regular | 12, 16, 28, 32, 48 | +| TextBox Align Bottom | Filled | 12, 16, 28, 32, 48 | +| TextBox Align Bottom Center | Regular | 12, 28, 32, 48 | +| TextBox Align Bottom Center | Filled | 12, 28, 32, 48 | +| TextBox Align Bottom Left | Regular | 12, 28, 32, 48 | +| TextBox Align Bottom Left | Filled | 12, 28, 32, 48 | +| TextBox Align Bottom Right | Regular | 12, 28, 32, 48 | +| TextBox Align Bottom Right | Filled | 12, 28, 32, 48 | +| TextBox Align Bottom Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| TextBox Align Bottom Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| TextBox Align Center | Regular | 12, 28, 32, 48 | +| TextBox Align Center | Filled | 12, 28, 32, 48 | +| TextBox Align Middle | Regular | 12, 28, 32, 48 | +| TextBox Align Middle | Filled | 12, 28, 32, 48 | +| TextBox Align Middle Left | Regular | 12, 28, 32, 48 | +| TextBox Align Middle Left | Filled | 12, 28, 32, 48 | +| TextBox Align Middle Right | Regular | 12, 28, 32, 48 | +| TextBox Align Middle Right | Filled | 12, 28, 32, 48 | +| TextBox Align Middle Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| TextBox Align Middle Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| TextBox Align Top | Regular | 12, 16, 28, 32, 48 | +| TextBox Align Top | Filled | 12, 16, 28, 32, 48 | +| TextBox Align Top Center | Regular | 12, 28, 32, 48 | +| TextBox Align Top Center | Filled | 12, 28, 32, 48 | +| TextBox Align Top Left | Regular | 12, 28, 32, 48 | +| TextBox Align Top Left | Filled | 12, 28, 32, 48 | +| TextBox Align Top Right | Regular | 12, 28, 32, 48 | +| TextBox Align Top Right | Filled | 12, 28, 32, 48 | +| TextBox Align Top Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| TextBox Align Top Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| TextBox More | Regular | 12, 16, 28, 32, 48 | +| TextBox More | Filled | 12, 16, 28, 32, 48 | +| TextBox Rotate 90 | Regular | 12, 16, 28, 32, 48 | +| TextBox Rotate 90 | Filled | 12, 16, 28, 32, 48 | +| TextBox Settings | Regular | 12, 16, 28, 32, 48 | +| TextBox Settings | Filled | 12, 16, 28, 32, 48 | +| Thinking | Regular | 12, 16, 28, 32, 48 | +| Thinking | Filled | 12, 16, 28, 32, 48 | +| Thumb Dislike | Regular | 12, 28, 32, 48 | +| Thumb Dislike | Filled | 12, 28, 32, 48 | +| Thumb Like | Regular | 12, 32 | +| Thumb Like | Filled | 12, 32 | +| Thumb Like Dislike | Regular | 12, 28, 32, 48 | +| Thumb Like Dislike | Filled | 12, 28, 32, 48 | +| Ticket Diagonal | Regular | 12, 32, 48 | +| Ticket Diagonal | Filled | 12, 32, 48 | +| Ticket Horizontal | Regular | 12, 16, 28, 32, 48 | +| Ticket Horizontal | Filled | 12, 16, 28, 32, 48 | +| Time And Weather | Regular | 12, 16, 28, 32, 48 | +| Time And Weather | Filled | 12, 16, 28, 32, 48 | +| Time Picker | Regular | 12, 16, 28, 32, 48 | +| Time Picker | Filled | 12, 16, 28, 32, 48 | +| Timeline | Regular | 12, 16, 28, 32, 48 | +| Timeline | Filled | 12, 16, 28, 32, 48 | +| Timer 10 | Regular | 12, 16, 28, 32, 48 | +| Timer 10 | Filled | 12, 16, 28, 32, 48 | +| Timer 2 | Regular | 12, 16, 28, 32, 48 | +| Timer 2 | Filled | 12, 16, 28, 32, 48 | +| Timer 3 | Regular | 12, 16, 28, 32, 48 | +| Timer 3 | Filled | 12, 16, 28, 32, 48 | +| Timer Off | Regular | 12, 16, 28, 32, 48 | +| Timer Off | Filled | 12, 16, 28, 32, 48 | +| Toggle Left | Regular | 12, 32 | +| Toggle Left | Filled | 12, 32 | +| Toggle Multiple | Regular | 12, 28, 32, 48 | +| Toggle Multiple | Filled | 12, 28, 32, 48 | +| Toggle Right | Regular | 12, 32 | +| Toggle Right | Filled | 12, 32 | +| Toolbox | Regular | 32, 48 | +| Toolbox | Filled | 32, 48 | +| Tooltip Quote | Regular | 12, 16, 28, 32, 48 | +| Tooltip Quote | Filled | 12, 16, 28, 32, 48 | +| Top Speed | Regular | 12, 16, 28, 32, 48 | +| Top Speed | Filled | 12, 16, 28, 32, 48 | +| Translate | Regular | 12, 28, 32, 48 | +| Translate | Filled | 12, 28, 32, 48 | +| Translate Auto | Regular | 12, 28, 32, 48 | +| Translate Auto | Filled | 12, 28, 32, 48 | +| Translate Off | Regular | 12, 28, 32, 48 | +| Translate Off | Filled | 12, 28, 32, 48 | +| Transmission | Regular | 12, 16, 28, 32, 48 | +| Transmission | Filled | 12, 16, 28, 32, 48 | +| Tray Item Add | Regular | 12, 16, 28, 32, 48 | +| Tray Item Add | Filled | 12, 16, 28, 32, 48 | +| Tray Item Remove | Regular | 12, 16, 28, 32, 48 | +| Tray Item Remove | Filled | 12, 16, 28, 32, 48 | +| Tree Deciduous | Regular | 12, 16, 32, 48 | +| Tree Deciduous | Filled | 12, 16, 32, 48 | +| Tree Evergreen | Regular | 12, 16, 24, 28, 32, 48 | +| Tree Evergreen | Filled | 12, 16, 24, 28, 32, 48 | +| Triangle Down | Regular | 28 | +| Triangle Down | Filled | 28 | +| Triangle Left | Regular | 24, 28 | +| Triangle Left | Filled | 24, 28 | +| Triangle Right | Regular | 24, 28 | +| Triangle Right | Filled | 24, 28 | +| Triangle Up | Regular | 12, 16, 24, 28, 32, 48 | +| Triangle Up | Filled | 12, 16, 24, 28, 32, 48 | +| Trophy | Regular | 12 | +| Trophy | Filled | 12 | +| Trophy Lock | Regular | 12 | +| Trophy Lock | Filled | 12 | +| Trophy Off | Regular | 12 | +| Trophy Off | Filled | 12 | +| USB Plug | Regular | 12, 16, 28, 32, 48 | +| USB Plug | Filled | 12, 16, 28, 32, 48 | +| Umbrella | Regular | 12, 16, 28, 32, 48 | +| Umbrella | Filled | 12, 16, 28, 32, 48 | +| Uninstall App | Regular | 12, 16, 28, 32, 48 | +| Uninstall App | Filled | 12, 16, 28, 32, 48 | +| Usb Stick | Regular | 12, 16, 28, 32, 48 | +| Usb Stick | Filled | 12, 16, 28, 32, 48 | +| Vault | Regular | 12, 28, 32, 48 | +| Vault | Filled | 12, 28, 32, 48 | +| Vehicle Bicycle | Regular | 12, 28, 32, 48 | +| Vehicle Bicycle | Filled | 12, 28, 32, 48 | +| Vehicle Bus | Regular | 12, 28, 32, 48 | +| Vehicle Bus | Filled | 12, 28, 32, 48 | +| Vehicle Cab | Regular | 12, 32, 48 | +| Vehicle Cab | Filled | 12, 32, 48 | +| Vehicle Cable Car | Regular | 12, 16, 32, 48 | +| Vehicle Cable Car | Filled | 12, 16, 32, 48 | +| Vehicle Car | Regular | 12 | +| Vehicle Car | Filled | 12 | +| Vehicle Car Collision | Regular | 12 | +| Vehicle Car Collision | Filled | 12 | +| Vehicle Car Parking | Regular | 12, 28 | +| Vehicle Car Parking | Filled | 12, 28 | +| Vehicle Car Profile | Regular | 12, 28, 32, 48 | +| Vehicle Car Profile | Filled | 12, 28, 32, 48 | +| Vehicle Car Profile LTR | Regular | 12, 28, 32, 48 | +| Vehicle Car Profile LTR | Filled | 12, 28, 32, 48 | +| Vehicle Car Profile LTR Clock | Regular | 12, 28, 32, 48 | +| Vehicle Car Profile LTR Clock | Filled | 12, 28, 32, 48 | +| Vehicle Car Profile RTL | Regular | 12, 28, 32, 48 | +| Vehicle Car Profile RTL | Filled | 12, 28, 32, 48 | +| Vehicle Ship | Regular | 12, 28, 32, 48 | +| Vehicle Ship | Filled | 12, 28, 32, 48 | +| Vehicle Subway | Regular | 12, 28, 32, 48 | +| Vehicle Subway | Filled | 12, 28, 32, 48 | +| Vehicle Subway Clock | Regular | 12, 28, 32, 48 | +| Vehicle Subway Clock | Filled | 12, 28, 32, 48 | +| Vehicle Truck | Regular | 12, 28, 32, 48 | +| Vehicle Truck | Filled | 12, 28, 32, 48 | +| Vehicle Truck Bag | Regular | 12, 16, 28, 32, 48 | +| Vehicle Truck Bag | Filled | 12, 16, 28, 32, 48 | +| Vehicle Truck Cube | Regular | 12, 16, 28, 32, 48 | +| Vehicle Truck Cube | Filled | 12, 16, 28, 32, 48 | +| Vehicle Truck Profile | Regular | 12, 28, 32, 48 | +| Vehicle Truck Profile | Filled | 12, 28, 32, 48 | +| Video | Regular | 12 | +| Video | Filled | 12 | +| Video 360 | Regular | 12, 16, 28, 32, 48 | +| Video 360 | Filled | 12, 16, 28, 32, 48 | +| Video 360 Off | Regular | 12, 16, 24, 28, 32, 48 | +| Video 360 Off | Filled | 12, 16, 24, 28, 32, 48 | +| Video Add | Regular | 12, 16, 28, 32, 48 | +| Video Add | Filled | 12, 16, 28, 32, 48 | +| Video Background Effect | Regular | 12 | +| Video Background Effect | Filled | 12 | +| Video Background Effect Horizontal | Regular | 12 | +| Video Background Effect Horizontal | Filled | 12 | +| Video Chat | Regular | 12 | +| Video Chat | Filled | 12 | +| Video Clip | Regular | 12 | +| Video Clip | Filled | 12 | +| Video Clip Multiple | Regular | 12, 28, 32, 48 | +| Video Clip Multiple | Filled | 12, 28, 32, 48 | +| Video Clip Off | Regular | 12, 28, 32, 48 | +| Video Clip Off | Filled | 12, 28, 32, 48 | +| Video Clip Optimize | Regular | 12, 32, 48 | +| Video Clip Optimize | Filled | 12, 32, 48 | +| Video Link | Regular | 12, 16, 20, 32, 48 | +| Video Link | Filled | 12, 16, 20, 32, 48 | +| Video Off | Regular | 12 | +| Video Off | Filled | 12 | +| Video People | Regular | 12, 16, 20, 24, 28, 48 | +| Video People | Filled | 12, 16, 20, 24, 28, 48 | +| Video Person Call | Regular | 12, 28, 48 | +| Video Person Call | Filled | 12, 28, 48 | +| Video Person Clock | Regular | 12 | +| Video Person Clock | Filled | 12 | +| Video Person Off | Regular | 12, 16, 28, 32, 48 | +| Video Person Off | Filled | 12, 16, 28, 32, 48 | +| Video Person Pulse | Regular | 12, 32, 48 | +| Video Person Pulse | Filled | 12, 32, 48 | +| Video Person Sparkle | Regular | 12, 32 | +| Video Person Sparkle | Filled | 12, 32 | +| Video Person Sparkle Off | Regular | 12, 16, 28, 32, 48 | +| Video Person Sparkle Off | Filled | 12, 16, 28, 32, 48 | +| Video Person Star | Regular | 12, 16, 28, 32, 48 | +| Video Person Star | Filled | 12, 16, 28, 32, 48 | +| Video Person Star Off | Regular | 12, 16, 28, 32, 48 | +| Video Person Star Off | Filled | 12, 16, 28, 32, 48 | +| Video Play Pause | Regular | 12, 16, 28, 32, 48 | +| Video Play Pause | Filled | 12, 16, 28, 32, 48 | +| Video Prohibited | Regular | 12, 32, 48 | +| Video Prohibited | Filled | 12, 32, 48 | +| Video Recording | Regular | 12, 16, 24, 28, 32, 48 | +| Video Recording | Filled | 12, 16, 24, 28, 32, 48 | +| Video Security | Regular | 12, 16, 28, 32, 48 | +| Video Security | Filled | 12, 16, 28, 32, 48 | +| Video Switch | Regular | 12, 16, 28, 32, 48 | +| Video Switch | Filled | 12, 16, 28, 32, 48 | +| Video Sync | Regular | 12, 16, 24, 28, 32, 48 | +| Video Sync | Filled | 12, 16, 24, 28, 32, 48 | +| View Desktop | Regular | 12, 16, 28, 32, 48 | +| View Desktop | Filled | 12, 16, 28, 32, 48 | +| View Desktop Mobile | Regular | 12, 16, 28, 32, 48 | +| View Desktop Mobile | Filled | 12, 16, 28, 32, 48 | +| Virtual Network | Regular | 12, 16, 24, 28, 32, 48 | +| Virtual Network | Filled | 12, 16, 24, 28, 32, 48 | +| Virtual Network Toolbox | Regular | 12, 16, 24, 28, 32, 48 | +| Virtual Network Toolbox | Filled | 12, 16, 24, 28, 32, 48 | +| Voicemail | Regular | 12 | +| Voicemail | Filled | 12 | +| Voicemail Arrow Back | Regular | 12, 24, 28, 32, 48 | +| Voicemail Arrow Back | Filled | 12, 24, 28, 32, 48 | +| Voicemail Arrow Forward | Regular | 12, 24, 28, 32, 48 | +| Voicemail Arrow Forward | Filled | 12, 24, 28, 32, 48 | +| Voicemail Arrow Subtract | Regular | 12, 16, 24, 28, 32, 48 | +| Voicemail Arrow Subtract | Filled | 12, 16, 24, 28, 32, 48 | +| Voicemail Shield | Regular | 12, 28, 48 | +| Voicemail Shield | Filled | 12, 28, 48 | +| Voicemail Subtract | Regular | 12, 24, 28, 32, 48 | +| Voicemail Subtract | Filled | 12, 24, 28, 32, 48 | +| Vote | Regular | 12, 16, 28, 32, 48 | +| Vote | Filled | 12, 16, 28, 32, 48 | +| Walkie Talkie | Regular | 12, 16, 32, 48 | +| Walkie Talkie | Filled | 12, 16, 32, 48 | +| Wallet | Regular | 12 | +| Wallet | Filled | 12 | +| Wallet Credit Card | Regular | 12, 28, 48 | +| Wallet Credit Card | Filled | 12, 28, 48 | +| Wallpaper | Regular | 12, 16, 28, 32, 48 | +| Wallpaper | Filled | 12, 16, 28, 32, 48 | +| Wand | Regular | 12, 32 | +| Wand | Filled | 12, 32 | +| Warning Shield | Regular | 12, 16, 24, 28, 32, 48 | +| Warning Shield | Filled | 12, 16, 24, 28, 32, 48 | +| Washer | Regular | 12, 16, 28 | +| Washer | Filled | 12, 16, 28 | +| Water | Regular | 12, 28 | +| Water | Filled | 12, 28 | +| Weather Blowing Snow | Regular | 12, 16, 28, 32 | +| Weather Blowing Snow | Filled | 12, 16, 28, 32 | +| Weather Cloudy | Regular | 12, 16, 28, 32 | +| Weather Cloudy | Filled | 12, 16, 28, 32 | +| Weather Drizzle | Regular | 12, 16, 28, 32 | +| Weather Drizzle | Filled | 12, 16, 28, 32 | +| Weather Duststorm | Regular | 12, 16, 28, 32 | +| Weather Duststorm | Filled | 12, 16, 28, 32 | +| Weather Fog | Regular | 12, 16, 28, 32 | +| Weather Fog | Filled | 12, 16, 28, 32 | +| Weather Hail Day | Regular | 12, 16, 28, 32 | +| Weather Hail Day | Filled | 12, 16, 28, 32 | +| Weather Hail Night | Regular | 12, 16, 28, 32 | +| Weather Hail Night | Filled | 12, 16, 28, 32 | +| Weather Haze | Regular | 12, 16, 28, 32 | +| Weather Haze | Filled | 12, 16, 28, 32 | +| Weather Moon | Regular | 12, 32 | +| Weather Moon | Filled | 12, 32 | +| Weather Moon Off | Regular | 12, 32 | +| Weather Moon Off | Filled | 12, 32 | +| Weather Partly Cloudy Day | Regular | 12, 28, 32 | +| Weather Partly Cloudy Day | Filled | 12, 28, 32 | +| Weather Partly Cloudy Night | Regular | 12, 16, 28, 32 | +| Weather Partly Cloudy Night | Filled | 12, 16, 28, 32 | +| Weather Rain | Regular | 12, 16, 28, 32 | +| Weather Rain | Filled | 12, 16, 28, 32 | +| Weather Rain Showers Day | Regular | 12, 16, 28, 32 | +| Weather Rain Showers Day | Filled | 12, 16, 28, 32 | +| Weather Rain Showers Night | Regular | 12, 16, 28, 32 | +| Weather Rain Showers Night | Filled | 12, 16, 28, 32 | +| Weather Rain Snow | Regular | 12, 16, 28, 32 | +| Weather Rain Snow | Filled | 12, 16, 28, 32 | +| Weather Snow | Regular | 12, 16, 28, 32 | +| Weather Snow | Filled | 12, 16, 28, 32 | +| Weather Snow Shower Day | Regular | 12, 16, 28, 32 | +| Weather Snow Shower Day | Filled | 12, 16, 28, 32 | +| Weather Snow Shower Night | Regular | 12, 16, 28, 32 | +| Weather Snow Shower Night | Filled | 12, 16, 28, 32 | +| Weather Snowflake | Regular | 12, 16, 28 | +| Weather Snowflake | Filled | 12, 16, 28 | +| Weather Squalls | Regular | 12, 16, 28, 32 | +| Weather Squalls | Filled | 12, 16, 28, 32 | +| Weather Sunny | Regular | 12 | +| Weather Sunny | Filled | 12 | +| Weather Sunny High | Regular | 12, 16, 28, 32 | +| Weather Sunny High | Filled | 12, 16, 28, 32 | +| Weather Sunny Low | Regular | 12, 16, 28, 32 | +| Weather Sunny Low | Filled | 12, 16, 28, 32 | +| Weather Thunderstorm | Regular | 12, 16, 28, 32 | +| Weather Thunderstorm | Filled | 12, 16, 28, 32 | +| Web Asset | Regular | 12, 28, 32, 48 | +| Web Asset | Filled | 12, 28, 32, 48 | +| Whiteboard | Regular | 12, 28, 32 | +| Whiteboard | Filled | 12, 28, 32 | +| Whiteboard Off | Regular | 12, 28, 32, 48 | +| Whiteboard Off | Filled | 12, 28, 32, 48 | +| WiFi 1 | Regular | 12, 16, 28, 32, 48 | +| WiFi 1 | Filled | 12, 16, 28, 32, 48 | +| WiFi 2 | Regular | 12, 16, 28, 32, 48 | +| WiFi 2 | Filled | 12, 16, 28, 32, 48 | +| WiFi 3 | Regular | 12, 16, 28, 32, 48 | +| WiFi 3 | Filled | 12, 16, 28, 32, 48 | +| WiFi 4 | Regular | 12, 16, 28, 32, 48 | +| WiFi 4 | Filled | 12, 16, 28, 32, 48 | +| WiFi Lock | Regular | 12, 16, 28, 32, 48 | +| WiFi Lock | Filled | 12, 16, 28, 32, 48 | +| WiFi Off | Regular | 12, 16, 28, 32, 48 | +| WiFi Off | Filled | 12, 16, 28, 32, 48 | +| WiFi Settings | Regular | 12, 16, 24, 28, 32, 48 | +| WiFi Settings | Filled | 12, 16, 24, 28, 32, 48 | +| WiFi Warning | Regular | 12, 16, 28, 32, 48 | +| WiFi Warning | Filled | 12, 16, 28, 32, 48 | +| Window | Regular | 12 | +| Window | Filled | 12 | +| Window Ad | Regular | 12, 16, 28, 32, 48 | +| Window Ad | Filled | 12, 16, 28, 32, 48 | +| Window Ad Off | Regular | 12, 16, 24, 28, 32, 48 | +| Window Ad Off | Filled | 12, 16, 24, 28, 32, 48 | +| Window Ad Person | Regular | 12, 16, 24, 28, 32, 48 | +| Window Ad Person | Filled | 12, 16, 24, 28, 32, 48 | +| Window Apps | Regular | 12 | +| Window Apps | Filled | 12 | +| Window Arrow Up | Regular | 12, 28, 32, 48 | +| Window Arrow Up | Filled | 12, 28, 32, 48 | +| Window Bullet List | Regular | 12, 16, 24, 28, 32, 48 | +| Window Bullet List | Filled | 12, 16, 24, 28, 32, 48 | +| Window Bullet List Add | Regular | 12, 16, 24, 28, 32, 48 | +| Window Bullet List Add | Filled | 12, 16, 24, 28, 32, 48 | +| Window Console | Regular | 12, 16, 24, 28, 32, 48 | +| Window Console | Filled | 12, 16, 24, 28, 32, 48 | +| Window Database | Regular | 12, 16, 28, 48 | +| Window Database | Filled | 12, 16, 28, 48 | +| Window Dev Edit | Regular | 12, 24, 28, 32, 48 | +| Window Dev Edit | Filled | 12, 24, 28, 32, 48 | +| Window Dev Tools | Regular | 12, 28, 32, 48 | +| Window Dev Tools | Filled | 12, 28, 32, 48 | +| Window Edit | Regular | 12, 24, 28, 32, 48 | +| Window Edit | Filled | 12, 24, 28, 32, 48 | +| Window Header Horizontal | Regular | 12, 16, 24, 28, 32, 48 | +| Window Header Horizontal | Filled | 12, 16, 24, 28, 32, 48 | +| Window Header Horizontal Off | Regular | 12, 16, 24, 28, 32, 48 | +| Window Header Horizontal Off | Filled | 12, 16, 24, 28, 32, 48 | +| Window Header Vertical | Regular | 12, 16, 24, 28, 32, 48 | +| Window Header Vertical | Filled | 12, 16, 24, 28, 32, 48 | +| Window InPrivate | Regular | 12, 16, 24, 28, 32, 48 | +| Window InPrivate | Filled | 12, 16, 24, 28, 32, 48 | +| Window InPrivate Account | Regular | 12, 16, 24, 28, 32, 48 | +| Window InPrivate Account | Filled | 12, 16, 24, 28, 32, 48 | +| Window Location Target | Regular | 12, 16, 24, 28, 32, 48 | +| Window Location Target | Filled | 12, 16, 24, 28, 32, 48 | +| Window Multiple | Regular | 12, 24, 28, 32, 48 | +| Window Multiple | Filled | 12, 24, 28, 32, 48 | +| Window Multiple Swap | Regular | 12, 16, 24, 28, 32, 48 | +| Window Multiple Swap | Filled | 12, 16, 24, 28, 32, 48 | +| Window New | Regular | 12, 28, 32, 48 | +| Window New | Filled | 12, 28, 32, 48 | +| Window Play | Regular | 12, 16, 24, 28, 32, 48 | +| Window Play | Filled | 12, 16, 24, 28, 32, 48 | +| Window Settings | Regular | 12, 16, 24, 28, 32, 48 | +| Window Settings | Filled | 12, 16, 24, 28, 32, 48 | +| Window Shield | Regular | 12, 28, 32, 48 | +| Window Shield | Filled | 12, 28, 32, 48 | +| Window Text | Regular | 12, 16, 24, 28, 32, 48 | +| Window Text | Filled | 12, 16, 24, 28, 32, 48 | +| Window Wrench | Regular | 12 | +| Window Wrench | Filled | 12 | +| Wrench | Regular | 12, 28, 32, 48 | +| Wrench | Filled | 12, 28, 32, 48 | +| Wrench Screwdriver | Regular | 12, 16, 28, 48 | +| Wrench Screwdriver | Filled | 12, 16, 28, 48 | +| Wrench Settings | Regular | 12, 16, 28, 32, 48 | +| Wrench Settings | Filled | 12, 16, 28, 32, 48 | +| Xbox Console | Regular | 12, 16, 28, 32, 48 | +| Xbox Console | Filled | 12, 16, 28, 32, 48 | +| Xbox Controller | Regular | 12 | +| Xbox Controller | Filled | 12 | +| Xbox Controller Error | Regular | 12, 16, 28 | +| Xbox Controller Error | Filled | 12, 16, 28 | +| Xray | Regular | 12, 16, 28, 32, 48 | +| Xray | Filled | 12, 16, 28, 32, 48 | +| Zoom Fit | Regular | 12, 28, 32, 48 | +| Zoom Fit | Filled | 12, 28, 32, 48 | +| Zoom In | Regular | 12, 28, 32, 48 | +| Zoom In | Filled | 12, 28, 32, 48 | +| Zoom Out | Regular | 12, 28, 32, 48 | +| Zoom Out | Filled | 12, 28, 32, 48 | +| iOS Arrow | Regular | 12, 16, 20, 28, 32, 48 | +| iOS Arrow | Filled | 12, 16, 20, 28, 32, 48 | +| iOS Arrow LTR | Regular | 12, 16, 20, 28, 32, 48 | +| iOS Arrow LTR | Filled | 12, 16, 20, 28, 32, 48 | +| iOS Arrow RTL | Regular | 12, 16, 20, 28, 32, 48 | +| iOS Arrow RTL | Filled | 12, 16, 20, 28, 32, 48 | +| iOS Chevron Right | Regular | 12, 16, 24, 28, 32, 48 | +| iOS Chevron Right | Filled | 12, 16, 24, 28, 32, 48 | From 9f85b2193b761b3b862d1a0a88cf320095606471 Mon Sep 17 00:00:00 2001 From: Will Chavez Date: Tue, 13 Feb 2024 15:06:11 -0800 Subject: [PATCH 2/3] removed other file. --- generate_missing_icons_md.py | 50 ------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 generate_missing_icons_md.py diff --git a/generate_missing_icons_md.py b/generate_missing_icons_md.py deleted file mode 100644 index 800000f57c..0000000000 --- a/generate_missing_icons_md.py +++ /dev/null @@ -1,50 +0,0 @@ -import os -import re - -# Define the icon sizes and styles -icon_sizes = ["12", "16", "20", "24", "28", "32", "48"] -icon_styles = ["regular", "filled"] - -def check_missing_icons(): - missing_icons_dict = {} - for folder in os.listdir("assets"): - svg_dir = os.path.join("assets", folder, "SVG") - if os.path.exists(svg_dir): - icon_name = folder.lower().replace(" ", "_") - for style in icon_styles: - missing_sizes = [] - for size in icon_sizes: - filename = f"ic_fluent_{icon_name}_{size}_{style}.svg" - if not os.path.exists(os.path.join(svg_dir, filename)): - missing_sizes.append(size) - if missing_sizes: - missing_icons_dict.setdefault((folder, style), []).extend(missing_sizes) - - # Convert the dictionary into a list of tuples - missing_icons = [(icon_name, style, ", ".join(sizes)) for (icon_name, style), sizes in missing_icons_dict.items()] - return missing_icons - - -# Function to generate Markdown file listing missing icons -def generate_missing_icons_md(missing_icons): - # Sort the missing icons alphabetically by icon name - missing_icons.sort(key=lambda x: x[0]) - - with open("missing_icons.md", "w") as md_file: - md_file.write("\n") - md_file.write("# Missing Sizes and Styles\n\n") - md_file.write("| Icon Name | Style | Size |\n") - md_file.write("|-----------|-------|------|\n") - for item in missing_icons: - if len(item) == 3: - md_file.write(f"| {item[0]} | {item[1].title()} | {item[2]} |\n") - - - -# Main function -def main(): - missing_icons = check_missing_icons() - generate_missing_icons_md(missing_icons) - -if __name__ == "__main__": - main() From 103abf9b3db10df96618a6ba4b099a4af22cc920 Mon Sep 17 00:00:00 2001 From: Will Chavez Date: Wed, 14 Feb 2024 10:07:25 -0800 Subject: [PATCH 3/3] Cleaned it up a bit. --- generate_icons_md.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/generate_icons_md.py b/generate_icons_md.py index 500af89dc7..789f8fa50d 100644 --- a/generate_icons_md.py +++ b/generate_icons_md.py @@ -2,7 +2,6 @@ # Licensed under the MIT license. import os - from collections import defaultdict # Define the icon sizes and styles @@ -74,7 +73,8 @@ def check_missing_icons(): return missing_icons # Function to generate Markdown file listing missing icons -def write_missing_icons_file(md_file, missing_icons): +def write_missing_icons_file(md_file): + missing_icons = check_missing_icons() # Sort the missing icons alphabetically by icon name missing_icons.sort(key=lambda x: x[0]) @@ -86,13 +86,11 @@ def write_missing_icons_file(md_file, missing_icons): if len(item) == 3: md_file.write(f"| {item[0]} | {item[1].title()} | {item[2]} |\n") - with open("icons_filled.md", "w") as icons_filled_md: write_icon_file(icons_filled_md, "filled") with open("icons_regular.md", "w") as icons_regular_md: write_icon_file(icons_regular_md, "regular") -missing_icons = check_missing_icons() with open("missing_icons.md", "w") as missing_icons_md: - write_missing_icons_file(missing_icons_md, missing_icons) + write_missing_icons_file(missing_icons_md)