diff --git a/src/.editorconfig b/.editorconfig similarity index 99% rename from src/.editorconfig rename to .editorconfig index ea1e3c700..b10408cc1 100644 --- a/src/.editorconfig +++ b/.editorconfig @@ -27,7 +27,7 @@ dotnet_style_collection_initializer = true:suggestion dotnet_style_prefer_simplified_boolean_expressions = true:suggestion dotnet_style_prefer_conditional_expression_over_assignment = true:silent dotnet_style_prefer_conditional_expression_over_return = true:silent -dotnet_style_explicit_tuple_names = false:silent +dotnet_style_explicit_tuple_names = true:suggestion dotnet_style_prefer_inferred_tuple_names = true:suggestion dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion dotnet_style_prefer_compound_assignment = true:suggestion diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 0d19c8d08..000000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: DotNet Main - -on: - push: - branches: [main] - - workflow_dispatch: - -jobs: - build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - - uses: microsoft/setup-msbuild@v1.3 - with: - msbuild-architecture: x64 - - uses: nuget/setup-nuget@v1 - with: - nuget-api-key: ${{ secrets.NUGET_API_KEY }} - - - name: Restore dependencies - run: nuget restore src\Wpf.Ui.sln - - - name: Build the solution - run: msbuild src\Wpf.Ui.sln -p:Configuration=Release -p:Platform="Any CPU" -p:GITHUB_ACTIONS=True -p:ContinuousIntegrationBuild=true -m -graph -isolate - - - name: Publish the package to NuGet.org - run: nuget push src\Wpf.Ui\bin\Release\*.nupkg -NonInteractive -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' - - - name: Publish the symbols to NuGet.org - run: nuget push src\Wpf.Ui\bin\Release\*.snupkg -NonInteractive -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' diff --git a/.github/workflows/DV.yml b/.github/workflows/DV.yml deleted file mode 100644 index 235ba09ed..000000000 --- a/.github/workflows/DV.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: DotNet Development - -on: - pull_request: - branches: [development] - push: - branches: [development] - - workflow_dispatch: - -jobs: - build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - - uses: microsoft/setup-msbuild@v1.3 - with: - msbuild-architecture: x64 - - uses: nuget/setup-nuget@v1 - - - name: Restore dependencies - run: nuget restore src\Wpf.Ui.Gallery.sln - - - name: Build the solution - run: msbuild src\Wpf.Ui.Gallery.sln -p:Configuration=Release -m -graph -isolate - - - name: Publish .NET 7 WPF UI Gallery - uses: actions/upload-artifact@v3 - id: publish_gallery - with: - name: WPF UI Gallery - path: | - src\Wpf.Ui.Gallery\bin\Release\net7.0-windows10.0.22621.0 diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index e4239b946..e630c64da 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -1,30 +1,28 @@ -name: DotNet Docs +name: wpfui-docs on: - pull_request: - branches: [development] - push: - branches: [development] + push: + branches: [main] - workflow_dispatch: + workflow_dispatch: jobs: - publish-docs: - runs-on: ubuntu-latest - steps: - - name: Chekout - uses: actions/checkout@v3 - - name: Dotnet Setup - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 7.x + publish_docs: + runs-on: ubuntu-latest + steps: + - name: Chekout + uses: actions/checkout@v3 + - name: Dotnet Setup + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 7.x - - run: dotnet tool update -g docfx - - run: docfx docs/docfx.json + - run: dotnet tool update -g docfx + - run: docfx docs/docfx.json - - name: Deploy + - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/_site + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs/_site diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 356bbb911..b20f7280c 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,14 +1,15 @@ -name: "Pull Request Labeler" +name: wpfui-labeler + on: - - pull_request_target + - pull_request_target jobs: - triage: - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - - uses: actions/labeler@v4 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" + triage: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index ef5c5a684..57d5db8e6 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -1,20 +1,20 @@ -name: "Lock" +name: wpfui-lock on: - schedule: - - cron: "0 0 * * *" + schedule: + - cron: "0 0 * * *" jobs: - lock: - runs-on: ubuntu-latest - steps: - - uses: dessant/lock-threads@v4 - with: - # https://github.com/dessant/lock-threads - github-token: ${{ github.token }} - issue-inactive-days: "90" - exclude-issue-created-before: "" - exclude-any-issue-labels: "keep-unlocked, status:awaiting response" - add-issue-labels: "locked-due-to-inactivity" - issue-comment: "" - issue-lock-reason: "resolved" + lock: + runs-on: ubuntu-latest + steps: + - uses: dessant/lock-threads@v4 + with: + # https://github.com/dessant/lock-threads + github-token: ${{ github.token }} + issue-inactive-days: "90" + exclude-issue-created-before: "" + exclude-any-issue-labels: "keep-unlocked, status:awaiting response" + add-issue-labels: "locked-due-to-inactivity" + issue-comment: "" + issue-lock-reason: "resolved" diff --git a/.github/workflows/wpf-ui-pr-deploy.yaml b/.github/workflows/wpf-ui-pr-deploy.yaml new file mode 100644 index 000000000..a3a7bd7b1 --- /dev/null +++ b/.github/workflows/wpf-ui-pr-deploy.yaml @@ -0,0 +1,31 @@ +name: wpfui-pr-deploy + +on: + push: + branches: [main] + + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - uses: microsoft/setup-msbuild@v1.3 + with: + msbuild-architecture: x64 + - uses: nuget/setup-nuget@v1 + with: + nuget-api-key: ${{ secrets.NUGET_API_KEY }} + + - name: Restore dependencies + run: nuget restore Wpf.Ui.sln + + - name: Build the solution + run: msbuild src\Wpf.Ui\Wpf.Ui.csproj -p:Configuration=Release -p:Platform="Any CPU" -p:GITHUB_ACTIONS=True -p:ContinuousIntegrationBuild=true -m -graph -isolate + + - name: Publish the package to NuGet.org + run: nuget push src\Wpf.Ui\bin\Release\*.nupkg -NonInteractive -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' + + - name: Publish the symbols to NuGet.org + run: nuget push src\Wpf.Ui\bin\Release\*.snupkg -NonInteractive -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' diff --git a/.github/workflows/wpf-ui-pr-validator.yaml b/.github/workflows/wpf-ui-pr-validator.yaml new file mode 100644 index 000000000..435e444ef --- /dev/null +++ b/.github/workflows/wpf-ui-pr-validator.yaml @@ -0,0 +1,27 @@ +name: wpfui-pr-validator + +on: + pull_request: + branches: [development] + push: + branches: [development] + + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - uses: microsoft/setup-msbuild@v1.3 + with: + msbuild-architecture: x64 + - uses: nuget/setup-nuget@v1 + with: + nuget-api-key: ${{ secrets.NUGET_API_KEY }} + + - name: Restore dependencies + run: nuget restore Wpf.Ui.sln + + - name: Build the solution + run: msbuild src\Wpf.Ui.Gallery\Wpf.Ui.Gallery.csproj -p:Configuration=Release -p:Platform="Any CPU" -p:GITHUB_ACTIONS=True -p:ContinuousIntegrationBuild=true -m -graph -isolate diff --git a/src/.vsconfig b/.vsconfig similarity index 100% rename from src/.vsconfig rename to .vsconfig diff --git a/src/Directory.Build.props b/Directory.Build.props similarity index 87% rename from src/Directory.Build.props rename to Directory.Build.props index f173106e6..35d117344 100644 --- a/src/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 3.0.0-preview.2 + 3.0.0-preview.3 11.0 true @@ -35,4 +35,10 @@ + + + <_Parameter1>$(MSBuildProjectName).UnitTests + + + diff --git a/src/Directory.Build.targets b/Directory.Build.targets similarity index 100% rename from src/Directory.Build.targets rename to Directory.Build.targets diff --git a/src/Directory.Packages.props b/Directory.Packages.props similarity index 76% rename from src/Directory.Packages.props rename to Directory.Packages.props index b3a77689d..d0fa0ef84 100644 --- a/src/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,17 +1,22 @@ + + + + + \ No newline at end of file diff --git a/src/Settings.XamlStyler b/Settings.XamlStyler similarity index 100% rename from src/Settings.XamlStyler rename to Settings.XamlStyler diff --git a/Wpf.Ui.Gallery.slnf b/Wpf.Ui.Gallery.slnf new file mode 100644 index 000000000..c54c7c968 --- /dev/null +++ b/Wpf.Ui.Gallery.slnf @@ -0,0 +1,10 @@ +{ + "solution": { + "path": "Wpf.Ui.sln", + "projects": [ + "src\\Wpf.Ui.Gallery.Package\\Wpf.Ui.Gallery.Package.wapproj", + "src\\Wpf.Ui.Gallery\\Wpf.Ui.Gallery.csproj", + "src\\Wpf.Ui\\Wpf.Ui.csproj" + ] + } +} \ No newline at end of file diff --git a/Wpf.Ui.Library.slnf b/Wpf.Ui.Library.slnf new file mode 100644 index 000000000..d98bb204d --- /dev/null +++ b/Wpf.Ui.Library.slnf @@ -0,0 +1,8 @@ +{ + "solution": { + "path": "Wpf.Ui.sln", + "projects": [ + "src\\Wpf.Ui\\Wpf.Ui.csproj" + ] + } +} \ No newline at end of file diff --git a/Wpf.Ui.sln b/Wpf.Ui.sln new file mode 100644 index 000000000..eaa8337d6 --- /dev/null +++ b/Wpf.Ui.sln @@ -0,0 +1,154 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.1.32407.343 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{21DB16AA-40BB-428B-AFE8-DEF4E3F0DC49}" + ProjectSection(SolutionItems) = preProject + .editorconfig = .editorconfig + Directory.Build.props = Directory.Build.props + Directory.Build.targets = Directory.Build.targets + Directory.Packages.props = Directory.Packages.props + nuget.config = nuget.config + README.md = README.md + Settings.XamlStyler = Settings.XamlStyler + EndProjectSection +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Gallery", "src\Wpf.Ui.Gallery\Wpf.Ui.Gallery.csproj", "{E55BFB14-9DA6-434A-8153-BFE124D71818}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui", "src\Wpf.Ui\Wpf.Ui.csproj", "{1ADC87D1-8963-4100-845A-18477824718E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.FontMapper", "src\Wpf.Ui.FontMapper\Wpf.Ui.FontMapper.csproj", "{50BAB8DE-6558-4E77-87E5-CD533CBBB72F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Demo.Mvvm", "src\Wpf.Ui.Demo.Mvvm\Wpf.Ui.Demo.Mvvm.csproj", "{DA4D97CC-4817-41D5-B517-DE53A2CDE113}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Demo.Simple", "src\Wpf.Ui.Demo.Simple\Wpf.Ui.Demo.Simple.csproj", "{3FB5104C-C6F5-452C-9713-F17E15D34271}" +EndProject +Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "Wpf.Ui.Gallery.Package", "src\Wpf.Ui.Gallery.Package\Wpf.Ui.Gallery.Package.wapproj", "{50C713C3-555E-491F-87EE-C806BEC0579F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.UnitTests", "tests\Wpf.Ui.UnitTests\Wpf.Ui.UnitTests.csproj", "{AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{35AC6218-CBEA-4FDA-8CE1-D1EBD6FD8D4A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Extension", "src\Wpf.Ui.Extension\Wpf.Ui.Extension.csproj", "{1298D974-9D81-4A93-9374-EA6A0E723DEB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Mvvm.CompactNavigation.Template", "src\Wpf.Ui.Extension.Templates\Wpf.Ui.Mvvm.CompactNavigation\Wpf.Ui.Mvvm.CompactNavigation.Template.csproj", "{14D7431C-6CFF-4191-BB88-2B8D5F323A30}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Mvvm.FluentNavigation.Template", "src\Wpf.Ui.Extension.Templates\Wpf.Ui.Mvvm.FluentNavigation\Wpf.Ui.Mvvm.FluentNavigation.Template.csproj", "{08BE0726-8E3D-4624-AC9E-07816A14E906}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Mvvm.StoreNavigation.Template", "src\Wpf.Ui.Extension.Templates\Wpf.Ui.Mvvm.StoreNavigation\Wpf.Ui.Mvvm.StoreNavigation.Template.csproj", "{5F5E2630-513E-4A8D-BB64-0F6F574DD739}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Gallery.UnitTests", "tests\Wpf.Ui.Gallery.UnitTests\Wpf.Ui.Gallery.UnitTests.csproj", "{4059EB00-22B3-4EF9-A509-469CE8B0096D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Debug|x64.ActiveCfg = Debug|x64 + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Debug|x64.Build.0 = Debug|x64 + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Release|Any CPU.Build.0 = Release|Any CPU + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Release|x64.ActiveCfg = Release|x64 + {E55BFB14-9DA6-434A-8153-BFE124D71818}.Release|x64.Build.0 = Release|x64 + {1ADC87D1-8963-4100-845A-18477824718E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1ADC87D1-8963-4100-845A-18477824718E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x64.ActiveCfg = Debug|x64 + {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x64.Build.0 = Debug|x64 + {1ADC87D1-8963-4100-845A-18477824718E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1ADC87D1-8963-4100-845A-18477824718E}.Release|Any CPU.Build.0 = Release|Any CPU + {1ADC87D1-8963-4100-845A-18477824718E}.Release|x64.ActiveCfg = Release|x64 + {1ADC87D1-8963-4100-845A-18477824718E}.Release|x64.Build.0 = Release|x64 + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Debug|x64.ActiveCfg = Debug|x64 + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Debug|x64.Build.0 = Debug|x64 + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Release|Any CPU.Build.0 = Release|Any CPU + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Release|x64.ActiveCfg = Release|x64 + {50BAB8DE-6558-4E77-87E5-CD533CBBB72F}.Release|x64.Build.0 = Release|x64 + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Debug|x64.ActiveCfg = Debug|x64 + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Debug|x64.Build.0 = Debug|x64 + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Release|Any CPU.Build.0 = Release|Any CPU + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Release|x64.ActiveCfg = Release|x64 + {DA4D97CC-4817-41D5-B517-DE53A2CDE113}.Release|x64.Build.0 = Release|x64 + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Debug|x64.ActiveCfg = Debug|x64 + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Debug|x64.Build.0 = Debug|x64 + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Release|Any CPU.Build.0 = Release|Any CPU + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Release|x64.ActiveCfg = Release|x64 + {3FB5104C-C6F5-452C-9713-F17E15D34271}.Release|x64.Build.0 = Release|x64 + {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x64.ActiveCfg = Debug|x64 + {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x64.ActiveCfg = Release|x64 + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Debug|x64.ActiveCfg = Debug|x64 + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Debug|x64.Build.0 = Debug|x64 + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Release|Any CPU.Build.0 = Release|Any CPU + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Release|x64.ActiveCfg = Release|x64 + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C}.Release|x64.Build.0 = Release|x64 + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|x64.ActiveCfg = Debug|x64 + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|x64.Build.0 = Debug|x64 + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|Any CPU.Build.0 = Release|Any CPU + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|x64.ActiveCfg = Release|x64 + {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|x64.Build.0 = Release|x64 + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|Any CPU.Build.0 = Debug|Any CPU + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|x64.ActiveCfg = Debug|x64 + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|x64.Build.0 = Debug|x64 + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|Any CPU.ActiveCfg = Release|Any CPU + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|Any CPU.Build.0 = Release|Any CPU + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|x64.ActiveCfg = Release|x64 + {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|x64.Build.0 = Release|x64 + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|x64.ActiveCfg = Debug|x64 + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|x64.Build.0 = Debug|x64 + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|Any CPU.Build.0 = Release|Any CPU + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|x64.ActiveCfg = Release|x64 + {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|x64.Build.0 = Release|x64 + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|x64.ActiveCfg = Debug|x64 + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|x64.Build.0 = Debug|x64 + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|Any CPU.Build.0 = Release|Any CPU + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|x64.ActiveCfg = Release|x64 + {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|x64.Build.0 = Release|x64 + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Debug|x64.ActiveCfg = Debug|x64 + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Debug|x64.Build.0 = Debug|x64 + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Release|Any CPU.Build.0 = Release|Any CPU + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Release|x64.ActiveCfg = Release|x64 + {4059EB00-22B3-4EF9-A509-469CE8B0096D}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {AE87BE68-DFDC-46D8-BC55-DC9D1DD47F4C} = {35AC6218-CBEA-4FDA-8CE1-D1EBD6FD8D4A} + {4059EB00-22B3-4EF9-A509-469CE8B0096D} = {35AC6218-CBEA-4FDA-8CE1-D1EBD6FD8D4A} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {234CB3F9-5ADC-433F-BDBD-CB8EA59EB518} + EndGlobalSection +EndGlobal diff --git a/branding/package.json b/branding/package.json index 7a98358fd..e859ae115 100644 --- a/branding/package.json +++ b/branding/package.json @@ -3,6 +3,6 @@ "name": "wpf-ui", "version": "1.1.0", "dependencies": { - "@fluentui/react-icons": "2.0.190" + "@fluentui/react-icons": "2.0.203" } } \ No newline at end of file diff --git a/scripts/build_demo.ps1 b/etc/build_demo.ps1 similarity index 100% rename from scripts/build_demo.ps1 rename to etc/build_demo.ps1 diff --git a/scripts/build_extension.ps1 b/etc/build_extension.ps1 similarity index 100% rename from scripts/build_extension.ps1 rename to etc/build_extension.ps1 diff --git a/scripts/build_library.ps1 b/etc/build_library.ps1 similarity index 100% rename from scripts/build_library.ps1 rename to etc/build_library.ps1 diff --git a/scripts/dotnet_build.ps1 b/etc/dotnet_build.ps1 similarity index 100% rename from scripts/dotnet_build.ps1 rename to etc/dotnet_build.ps1 diff --git a/scripts/msbuild_build.ps1 b/etc/msbuild_build.ps1 similarity index 100% rename from scripts/msbuild_build.ps1 rename to etc/msbuild_build.ps1 diff --git a/src/nuget.config b/nuget.config similarity index 100% rename from src/nuget.config rename to nuget.config diff --git a/src/Wpf.Ui.Demo.Mvvm/ViewModels/MainWindowViewModel.cs b/src/Wpf.Ui.Demo.Mvvm/ViewModels/MainWindowViewModel.cs index 75f9e68bc..045f6d4cc 100644 --- a/src/Wpf.Ui.Demo.Mvvm/ViewModels/MainWindowViewModel.cs +++ b/src/Wpf.Ui.Demo.Mvvm/ViewModels/MainWindowViewModel.cs @@ -6,6 +6,7 @@ using System.Collections.ObjectModel; using Wpf.Ui.Common; using Wpf.Ui.Controls; +using Wpf.Ui.Controls.IconElements; using Wpf.Ui.Controls.Navigation; namespace Wpf.Ui.Demo.Mvvm.ViewModels; diff --git a/src/Wpf.Ui.Demo.Mvvm/Views/MainWindow.xaml b/src/Wpf.Ui.Demo.Mvvm/Views/MainWindow.xaml index 38968932f..547950d64 100644 --- a/src/Wpf.Ui.Demo.Mvvm/Views/MainWindow.xaml +++ b/src/Wpf.Ui.Demo.Mvvm/Views/MainWindow.xaml @@ -21,6 +21,14 @@ WindowCornerPreference="Round" WindowStartupLocation="CenterScreen" mc:Ignorable="d"> + + + + + @@ -33,11 +41,13 @@ FooterMenuItemsSource="{Binding ViewModel.NavigationFooter, Mode=OneWay}" MenuItemsSource="{Binding ViewModel.NavigationItems, Mode=OneWay}"> - + + + + + + + app.manifest applicationIcon.ico 7.0 + AnyCPU;x64 diff --git a/src/Wpf.Ui.Demo.Simple/MainWindow.xaml b/src/Wpf.Ui.Demo.Simple/MainWindow.xaml index 5b6ab2e76..eba23dd4b 100644 --- a/src/Wpf.Ui.Demo.Simple/MainWindow.xaml +++ b/src/Wpf.Ui.Demo.Simple/MainWindow.xaml @@ -20,6 +20,14 @@ WindowCornerPreference="Round" WindowStartupLocation="CenterScreen" mc:Ignorable="d"> + + + + + @@ -28,11 +36,13 @@ - + + + + + + + app.manifest applicationIcon.ico 7.0 + AnyCPU;x64 diff --git a/src/Wpf.Ui.Demo.sln b/src/Wpf.Ui.Demo.sln deleted file mode 100644 index 9b78ba314..000000000 --- a/src/Wpf.Ui.Demo.sln +++ /dev/null @@ -1,64 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.1.32407.343 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui", "Wpf.Ui\Wpf.Ui.csproj", "{1ADC87D1-8963-4100-845A-18477824718E}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{21DB16AA-40BB-428B-AFE8-DEF4E3F0DC49}" - ProjectSection(SolutionItems) = preProject - Directory.Build.props = Directory.Build.props - Directory.Packages.props = Directory.Packages.props - ..\LICENSE = ..\LICENSE - ..\README.md = ..\README.md - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Library", "Library", "{BA330FCF-7C4C-4B06-A124-C33BB701B174}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Demo.Mvvm", "Wpf.Ui.Demo.Mvvm\Wpf.Ui.Demo.Mvvm.csproj", "{E886F37B-2446-4633-A835-A14F810F2519}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Demo.Simple", "Wpf.Ui.Demo.Simple\Wpf.Ui.Demo.Simple.csproj", "{BEB6F886-8E4B-432B-B08A-A24DB99AB530}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x86.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x86.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|Any CPU.Build.0 = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|x86.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|x86.Build.0 = Release|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Debug|x86.ActiveCfg = Debug|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Debug|x86.Build.0 = Debug|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Release|Any CPU.Build.0 = Release|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Release|x86.ActiveCfg = Release|Any CPU - {E886F37B-2446-4633-A835-A14F810F2519}.Release|x86.Build.0 = Release|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Debug|x86.ActiveCfg = Debug|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Debug|x86.Build.0 = Debug|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Release|Any CPU.Build.0 = Release|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Release|x86.ActiveCfg = Release|Any CPU - {BEB6F886-8E4B-432B-B08A-A24DB99AB530}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {1ADC87D1-8963-4100-845A-18477824718E} = {BA330FCF-7C4C-4B06-A124-C33BB701B174} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {234CB3F9-5ADC-433F-BDBD-CB8EA59EB518} - EndGlobalSection -EndGlobal diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/App.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/App.xaml new file mode 100644 index 000000000..ed1ed0c52 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/App.xaml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/App.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/App.xaml.cs new file mode 100644 index 000000000..e06498e98 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/App.xaml.cs @@ -0,0 +1,98 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using System.IO; +using System.Reflection; +using System.Windows; +using System.Windows.Threading; +using Wpf.Ui.Mvvm.Contracts; +using Wpf.Ui.Mvvm.Services; +using $safeprojectname$.Models; +using $safeprojectname$.Services; + +namespace $safeprojectname$ +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App + { + // The.NET Generic Host provides dependency injection, configuration, logging, and other services. + // https://docs.microsoft.com/dotnet/core/extensions/generic-host + // https://docs.microsoft.com/dotnet/core/extensions/dependency-injection + // https://docs.microsoft.com/dotnet/core/extensions/configuration + // https://docs.microsoft.com/dotnet/core/extensions/logging + private static readonly IHost _host = Host + .CreateDefaultBuilder() + .ConfigureAppConfiguration(c => { c.SetBasePath(Path.GetDirectoryName(Assembly.GetEntryAssembly()!.Location)); }) + .ConfigureServices((context, services) => + { + // App Host + services.AddHostedService(); + + // Page resolver service + services.AddSingleton(); + + // Theme manipulation + services.AddSingleton(); + + // TaskBar manipulation + services.AddSingleton(); + + // Service containing navigation, same as INavigationWindow... but without window + services.AddSingleton(); + + // Main window with navigation + services.AddScoped(); + services.AddScoped(); + + // Views and ViewModels + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + + // Configuration + services.Configure(context.Configuration.GetSection(nameof(AppConfig))); + }).Build(); + + /// + /// Gets registered service. + /// + /// Type of the service to get. + /// Instance of the service or . + public static T GetService() + where T : class + { + return _host.Services.GetService(typeof(T)) as T; + } + + /// + /// Occurs when the application is loading. + /// + private async void OnStartup(object sender, StartupEventArgs e) + { + await _host.StartAsync(); + } + + /// + /// Occurs when the application is closing. + /// + private async void OnExit(object sender, ExitEventArgs e) + { + await _host.StopAsync(); + + _host.Dispose(); + } + + /// + /// Occurs when an exception is thrown by an application but not handled. + /// + private void OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) + { + // For more info see https://docs.microsoft.com/en-us/dotnet/api/system.windows.application.dispatcherunhandledexception?view=windowsdesktop-6.0 + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/AssemblyInfo.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/AssemblyInfo.cs new file mode 100644 index 000000000..8b5504ecf --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/src/Wpf.Ui.Extension/Wpf.Ui.Extension/wpfui.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Assets/applicationIcon-1024.png similarity index 100% rename from src/Wpf.Ui.Extension/Wpf.Ui.Extension/wpfui.png rename to src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Assets/applicationIcon-1024.png diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Assets/applicationIcon-256.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Assets/applicationIcon-256.png new file mode 100644 index 000000000..6b5cf5d5a Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Assets/applicationIcon-256.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Helpers/EnumToBooleanConverter.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Helpers/EnumToBooleanConverter.cs new file mode 100644 index 000000000..0c5c4d56b --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Helpers/EnumToBooleanConverter.cs @@ -0,0 +1,34 @@ +using System; +using System.Globalization; +using System.Windows.Data; + +namespace $safeprojectname$.Helpers +{ + internal class EnumToBooleanConverter : IValueConverter + { + public EnumToBooleanConverter() + { + } + + public object Convert(object value, Type targetType, object parameter, CultureInfo culture) + { + if (parameter is not String enumString) + throw new ArgumentException("ExceptionEnumToBooleanConverterParameterMustBeAnEnumName"); + + if (!Enum.IsDefined(typeof(Wpf.Ui.Appearance.ThemeType), value)) + throw new ArgumentException("ExceptionEnumToBooleanConverterValueMustBeAnEnum"); + + var enumValue = Enum.Parse(typeof(Wpf.Ui.Appearance.ThemeType), enumString); + + return enumValue.Equals(value); + } + + public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) + { + if (parameter is not String enumString) + throw new ArgumentException("ExceptionEnumToBooleanConverterParameterMustBeAnEnumName"); + + return Enum.Parse(typeof(Wpf.Ui.Appearance.ThemeType), enumString); + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Models/AppConfig.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Models/AppConfig.cs new file mode 100644 index 000000000..de05a5c07 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Models/AppConfig.cs @@ -0,0 +1,9 @@ +namespace $safeprojectname$.Models +{ + public class AppConfig + { + public string ConfigurationsFolder { get; set; } + + public string AppPropertiesFileName { get; set; } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Models/DataColor.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Models/DataColor.cs new file mode 100644 index 000000000..37d424944 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Models/DataColor.cs @@ -0,0 +1,9 @@ +using System.Windows.Media; + +namespace $safeprojectname$.Models +{ + public struct DataColor + { + public Brush Color { get; set; } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Services/ApplicationHostService.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Services/ApplicationHostService.cs new file mode 100644 index 000000000..e9ac2c81e --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Services/ApplicationHostService.cs @@ -0,0 +1,60 @@ +using Microsoft.Extensions.Hosting; +using System; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using System.Windows; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Services +{ + /// + /// Managed host of the application. + /// + public class ApplicationHostService : IHostedService + { + private readonly IServiceProvider _serviceProvider; + private INavigationWindow _navigationWindow; + + public ApplicationHostService(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + + /// + /// Triggered when the application host is ready to start the service. + /// + /// Indicates that the start process has been aborted. + public async Task StartAsync(CancellationToken cancellationToken) + { + await HandleActivationAsync(); + } + + /// + /// Triggered when the application host is performing a graceful shutdown. + /// + /// Indicates that the shutdown process should no longer be graceful. + public async Task StopAsync(CancellationToken cancellationToken) + { + await Task.CompletedTask; + } + + /// + /// Creates main window during activation. + /// + private async Task HandleActivationAsync() + { + await Task.CompletedTask; + + if (!Application.Current.Windows.OfType().Any()) + { + _navigationWindow = (_serviceProvider.GetService(typeof(INavigationWindow)) as INavigationWindow)!; + _navigationWindow!.ShowWindow(); + + _navigationWindow.Navigate(typeof(Views.Pages.DashboardPage)); + } + + await Task.CompletedTask; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Services/PageService.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Services/PageService.cs new file mode 100644 index 000000000..0e5761d80 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Services/PageService.cs @@ -0,0 +1,43 @@ +using System; +using System.Windows; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Services +{ + /// + /// Service that provides pages for navigation. + /// + public class PageService : IPageService + { + /// + /// Service which provides the instances of pages. + /// + private readonly IServiceProvider _serviceProvider; + + /// + /// Creates new instance and attaches the . + /// + public PageService(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + + /// + public T? GetPage() where T : class + { + if (!typeof(FrameworkElement).IsAssignableFrom(typeof(T))) + throw new InvalidOperationException("The page should be a WPF control."); + + return (T?)_serviceProvider.GetService(typeof(T)); + } + + /// + public FrameworkElement? GetPage(Type pageType) + { + if (!typeof(FrameworkElement).IsAssignableFrom(pageType)) + throw new InvalidOperationException("The page should be a WPF control."); + + return _serviceProvider.GetService(pageType) as FrameworkElement; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/DashboardViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/DashboardViewModel.cs new file mode 100644 index 000000000..624d7a325 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/DashboardViewModel.cs @@ -0,0 +1,26 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.ViewModels +{ + public partial class DashboardViewModel : ObservableObject, INavigationAware + { + [ObservableProperty] + private int _counter = 0; + + public void OnNavigatedTo() + { + } + + public void OnNavigatedFrom() + { + } + + [RelayCommand] + private void OnCounterIncrement() + { + Counter++; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/DataViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/DataViewModel.cs new file mode 100644 index 000000000..6ec2854ae --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/DataViewModel.cs @@ -0,0 +1,47 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using System; +using System.Collections.Generic; +using System.Windows.Media; +using Wpf.Ui.Common.Interfaces; +using $safeprojectname$.Models; + +namespace $safeprojectname$.ViewModels +{ + public partial class DataViewModel : ObservableObject, INavigationAware + { + private bool _isInitialized = false; + + [ObservableProperty] + private IEnumerable _colors; + + public void OnNavigatedTo() + { + if (!_isInitialized) + InitializeViewModel(); + } + + public void OnNavigatedFrom() + { + } + + private void InitializeViewModel() + { + var random = new Random(); + var colorCollection = new List(); + + for (int i = 0; i < 8192; i++) + colorCollection.Add(new DataColor + { + Color = new SolidColorBrush(Color.FromArgb( + (byte)200, + (byte)random.Next(0, 250), + (byte)random.Next(0, 250), + (byte)random.Next(0, 250))) + }); + + Colors = colorCollection; + + _isInitialized = true; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/MainWindowViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/MainWindowViewModel.cs new file mode 100644 index 000000000..fe5a60fb0 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/MainWindowViewModel.cs @@ -0,0 +1,78 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using System; +using System.Collections.ObjectModel; +using Wpf.Ui.Common; +using Wpf.Ui.Controls; +using Wpf.Ui.Controls.Interfaces; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.ViewModels +{ + public partial class MainWindowViewModel : ObservableObject + { + private bool _isInitialized = false; + + [ObservableProperty] + private string _applicationTitle = String.Empty; + + [ObservableProperty] + private ObservableCollection _navigationItems = new(); + + [ObservableProperty] + private ObservableCollection _navigationFooter = new(); + + [ObservableProperty] + private ObservableCollection _trayMenuItems = new(); + + public MainWindowViewModel(INavigationService navigationService) + { + if (!_isInitialized) + InitializeViewModel(); + } + + private void InitializeViewModel() + { + ApplicationTitle = "WPF UI - $safeprojectname$"; + + NavigationItems = new ObservableCollection + { + new NavigationItem() + { + Content = "Home", + PageTag = "dashboard", + Icon = SymbolRegular.Home24, + PageType = typeof(Views.Pages.DashboardPage) + }, + new NavigationItem() + { + Content = "Data", + PageTag = "data", + Icon = SymbolRegular.DataHistogram24, + PageType = typeof(Views.Pages.DataPage) + } + }; + + NavigationFooter = new ObservableCollection + { + new NavigationItem() + { + Content = "Settings", + PageTag = "settings", + Icon = SymbolRegular.Settings24, + PageType = typeof(Views.Pages.SettingsPage) + } + }; + + TrayMenuItems = new ObservableCollection + { + new MenuItem + { + Header = "Home", + Tag = "tray_home" + } + }; + + _isInitialized = true; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/SettingsViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/SettingsViewModel.cs new file mode 100644 index 000000000..c316392e4 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/ViewModels/SettingsViewModel.cs @@ -0,0 +1,67 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; +using System; +using System.Windows.Input; +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.ViewModels +{ + public partial class SettingsViewModel : ObservableObject, INavigationAware + { + private bool _isInitialized = false; + + [ObservableProperty] + private string _appVersion = String.Empty; + + [ObservableProperty] + private Wpf.Ui.Appearance.ThemeType _currentTheme = Wpf.Ui.Appearance.ThemeType.Unknown; + + public void OnNavigatedTo() + { + if (!_isInitialized) + InitializeViewModel(); + } + + public void OnNavigatedFrom() + { + } + + private void InitializeViewModel() + { + CurrentTheme = Wpf.Ui.Appearance.Theme.GetAppTheme(); + AppVersion = $"$safeprojectname$ - {GetAssemblyVersion()}"; + + _isInitialized = true; + } + + private string GetAssemblyVersion() + { + return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? String.Empty; + } + + [RelayCommand] + private void OnChangeTheme(string parameter) + { + switch (parameter) + { + case "theme_light": + if (CurrentTheme == Wpf.Ui.Appearance.ThemeType.Light) + break; + + Wpf.Ui.Appearance.Theme.Apply(Wpf.Ui.Appearance.ThemeType.Light); + CurrentTheme = Wpf.Ui.Appearance.ThemeType.Light; + + break; + + default: + if (CurrentTheme == Wpf.Ui.Appearance.ThemeType.Dark) + break; + + Wpf.Ui.Appearance.Theme.Apply(Wpf.Ui.Appearance.ThemeType.Dark); + CurrentTheme = Wpf.Ui.Appearance.ThemeType.Dark; + + break; + } + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DashboardPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DashboardPage.xaml new file mode 100644 index 000000000..7e67c5c99 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DashboardPage.xaml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DashboardPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DashboardPage.xaml.cs new file mode 100644 index 000000000..b4163fce2 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DashboardPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for DashboardPage.xaml + /// + public partial class DashboardPage : INavigableView + { + public ViewModels.DashboardViewModel ViewModel + { + get; + } + + public DashboardPage(ViewModels.DashboardViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DataPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DataPage.xaml new file mode 100644 index 000000000..b2c6ddef2 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DataPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DataPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DataPage.xaml.cs new file mode 100644 index 000000000..07d60a737 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/DataPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for DataView.xaml + /// + public partial class DataPage : INavigableView + { + public ViewModels.DataViewModel ViewModel + { + get; + } + + public DataPage(ViewModels.DataViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/SettingsPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/SettingsPage.xaml new file mode 100644 index 000000000..7fa595ea0 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/SettingsPage.xaml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/SettingsPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/SettingsPage.xaml.cs new file mode 100644 index 000000000..54c312f4e --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Pages/SettingsPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for SettingsPage.xaml + /// + public partial class SettingsPage : INavigableView + { + public ViewModels.SettingsViewModel ViewModel + { + get; + } + + public SettingsPage(ViewModels.SettingsViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Windows/MainWindow.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Windows/MainWindow.xaml new file mode 100644 index 000000000..a5b826d24 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Windows/MainWindow.xaml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Windows/MainWindow.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Windows/MainWindow.xaml.cs new file mode 100644 index 000000000..5a1999b23 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Views/Windows/MainWindow.xaml.cs @@ -0,0 +1,63 @@ +using System; +using System.Windows; +using System.Windows.Controls; +using Wpf.Ui.Controls.Interfaces; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Views.Windows +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : INavigationWindow + { + public ViewModels.MainWindowViewModel ViewModel + { + get; + } + + public MainWindow(ViewModels.MainWindowViewModel viewModel, IPageService pageService, INavigationService navigationService) + { + ViewModel = viewModel; + DataContext = this; + + InitializeComponent(); + SetPageService(pageService); + + navigationService.SetNavigationControl(RootNavigation); + } + + #region INavigationWindow methods + + public Frame GetFrame() + => RootFrame; + + public INavigation GetNavigation() + => RootNavigation; + + public bool Navigate(Type pageType) + => RootNavigation.Navigate(pageType); + + public void SetPageService(IPageService pageService) + => RootNavigation.PageService = pageService; + + public void ShowWindow() + => Show(); + + public void CloseWindow() + => Close(); + + #endregion INavigationWindow methods + + /// + /// Raises the closed event. + /// + protected override void OnClosed(EventArgs e) + { + base.OnClosed(e); + + // Make sure that closing this window will begin the process of closing the application. + Application.Current.Shutdown(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.Template.csproj b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.Template.csproj new file mode 100644 index 000000000..bb5dd595c --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.Template.csproj @@ -0,0 +1,87 @@ + + + + 17.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 15.0 + + + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + 11.0 + prompt + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 11.0 + prompt + + + + Debug + AnyCPU + {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {14D7431C-6CFF-4191-BB88-2B8D5F323A30} + Library + Properties + Wpf.Ui.Mvvm.CompactNavigation + Wpf.Ui.Mvvm.CompactNavigation + v4.8 + false + false + false + false + false + false + false + false + false + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + Wpf.Ui.Mvvm.CompactNavigation + + + + + + \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.csproj b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.csproj new file mode 100644 index 000000000..a616a3afe --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.csproj @@ -0,0 +1,33 @@ + + + + WinExe + net6.0-windows + enable + 10.0 + true + app.manifest + applicationIcon.ico + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.vstemplate b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.vstemplate new file mode 100644 index 000000000..1a7e7091d --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/Wpf.Ui.Mvvm.CompactNavigation.vstemplate @@ -0,0 +1,68 @@ + + + WPF UI - Compact Navigation (MVVM | DI) + Template for creating WPF UI project with MVVM pattern, Dependency Injection, Compact navigation and Mica background. + CSharp + + 1000 + true + UiDesktopApp + true + Enabled + true + true + __TemplateIcon.png + csharp + XAML + Windows + Desktop + WPF UI + MVVM + __PreviewImage.png + + + + + applicationIcon-256.png + applicationIcon-1024.png + + + EnumToBooleanConverter.cs + + + AppConfig.cs + DataColor.cs + + + ApplicationHostService.cs + PageService.cs + + + MainWindowViewModel.cs + DashboardViewModel.cs + DataViewModel.cs + SettingsViewModel.cs + + + + DashboardPage.xaml + DashboardPage.xaml.cs + DataPage.xaml + DataPage.xaml.cs + SettingsPage.xaml + SettingsPage.xaml.cs + + + MainWindow.xaml + MainWindow.xaml.cs + + + app.manifest + applicationIcon.ico + App.xaml + App.xaml.cs + AssemblyInfo.cs + + + \ No newline at end of file diff --git a/src/Wpf.Ui.Extension/Wpf.Ui.Extension/preview.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/__PreviewImage.png similarity index 100% rename from src/Wpf.Ui.Extension/Wpf.Ui.Extension/preview.png rename to src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/__PreviewImage.png diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/__TemplateIcon.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/__TemplateIcon.png new file mode 100644 index 000000000..b70c4ed59 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/__TemplateIcon.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/app.manifest b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/app.manifest new file mode 100644 index 000000000..10f7ad534 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/app.manifest @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PerMonitor + true/PM + true + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/applicationIcon.ico b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/applicationIcon.ico new file mode 100644 index 000000000..cc128fda3 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.CompactNavigation/applicationIcon.ico differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/App.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/App.xaml new file mode 100644 index 000000000..ed1ed0c52 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/App.xaml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/App.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/App.xaml.cs new file mode 100644 index 000000000..e06498e98 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/App.xaml.cs @@ -0,0 +1,98 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using System.IO; +using System.Reflection; +using System.Windows; +using System.Windows.Threading; +using Wpf.Ui.Mvvm.Contracts; +using Wpf.Ui.Mvvm.Services; +using $safeprojectname$.Models; +using $safeprojectname$.Services; + +namespace $safeprojectname$ +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App + { + // The.NET Generic Host provides dependency injection, configuration, logging, and other services. + // https://docs.microsoft.com/dotnet/core/extensions/generic-host + // https://docs.microsoft.com/dotnet/core/extensions/dependency-injection + // https://docs.microsoft.com/dotnet/core/extensions/configuration + // https://docs.microsoft.com/dotnet/core/extensions/logging + private static readonly IHost _host = Host + .CreateDefaultBuilder() + .ConfigureAppConfiguration(c => { c.SetBasePath(Path.GetDirectoryName(Assembly.GetEntryAssembly()!.Location)); }) + .ConfigureServices((context, services) => + { + // App Host + services.AddHostedService(); + + // Page resolver service + services.AddSingleton(); + + // Theme manipulation + services.AddSingleton(); + + // TaskBar manipulation + services.AddSingleton(); + + // Service containing navigation, same as INavigationWindow... but without window + services.AddSingleton(); + + // Main window with navigation + services.AddScoped(); + services.AddScoped(); + + // Views and ViewModels + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + + // Configuration + services.Configure(context.Configuration.GetSection(nameof(AppConfig))); + }).Build(); + + /// + /// Gets registered service. + /// + /// Type of the service to get. + /// Instance of the service or . + public static T GetService() + where T : class + { + return _host.Services.GetService(typeof(T)) as T; + } + + /// + /// Occurs when the application is loading. + /// + private async void OnStartup(object sender, StartupEventArgs e) + { + await _host.StartAsync(); + } + + /// + /// Occurs when the application is closing. + /// + private async void OnExit(object sender, ExitEventArgs e) + { + await _host.StopAsync(); + + _host.Dispose(); + } + + /// + /// Occurs when an exception is thrown by an application but not handled. + /// + private void OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) + { + // For more info see https://docs.microsoft.com/en-us/dotnet/api/system.windows.application.dispatcherunhandledexception?view=windowsdesktop-6.0 + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/AssemblyInfo.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/AssemblyInfo.cs new file mode 100644 index 000000000..8b5504ecf --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Assets/applicationIcon-1024.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Assets/applicationIcon-1024.png new file mode 100644 index 000000000..b70c4ed59 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Assets/applicationIcon-1024.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Assets/applicationIcon-256.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Assets/applicationIcon-256.png new file mode 100644 index 000000000..6b5cf5d5a Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Assets/applicationIcon-256.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Helpers/EnumToBooleanConverter.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Helpers/EnumToBooleanConverter.cs new file mode 100644 index 000000000..0c5c4d56b --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Helpers/EnumToBooleanConverter.cs @@ -0,0 +1,34 @@ +using System; +using System.Globalization; +using System.Windows.Data; + +namespace $safeprojectname$.Helpers +{ + internal class EnumToBooleanConverter : IValueConverter + { + public EnumToBooleanConverter() + { + } + + public object Convert(object value, Type targetType, object parameter, CultureInfo culture) + { + if (parameter is not String enumString) + throw new ArgumentException("ExceptionEnumToBooleanConverterParameterMustBeAnEnumName"); + + if (!Enum.IsDefined(typeof(Wpf.Ui.Appearance.ThemeType), value)) + throw new ArgumentException("ExceptionEnumToBooleanConverterValueMustBeAnEnum"); + + var enumValue = Enum.Parse(typeof(Wpf.Ui.Appearance.ThemeType), enumString); + + return enumValue.Equals(value); + } + + public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) + { + if (parameter is not String enumString) + throw new ArgumentException("ExceptionEnumToBooleanConverterParameterMustBeAnEnumName"); + + return Enum.Parse(typeof(Wpf.Ui.Appearance.ThemeType), enumString); + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Models/AppConfig.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Models/AppConfig.cs new file mode 100644 index 000000000..de05a5c07 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Models/AppConfig.cs @@ -0,0 +1,9 @@ +namespace $safeprojectname$.Models +{ + public class AppConfig + { + public string ConfigurationsFolder { get; set; } + + public string AppPropertiesFileName { get; set; } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Models/DataColor.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Models/DataColor.cs new file mode 100644 index 000000000..37d424944 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Models/DataColor.cs @@ -0,0 +1,9 @@ +using System.Windows.Media; + +namespace $safeprojectname$.Models +{ + public struct DataColor + { + public Brush Color { get; set; } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Services/ApplicationHostService.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Services/ApplicationHostService.cs new file mode 100644 index 000000000..e9ac2c81e --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Services/ApplicationHostService.cs @@ -0,0 +1,60 @@ +using Microsoft.Extensions.Hosting; +using System; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using System.Windows; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Services +{ + /// + /// Managed host of the application. + /// + public class ApplicationHostService : IHostedService + { + private readonly IServiceProvider _serviceProvider; + private INavigationWindow _navigationWindow; + + public ApplicationHostService(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + + /// + /// Triggered when the application host is ready to start the service. + /// + /// Indicates that the start process has been aborted. + public async Task StartAsync(CancellationToken cancellationToken) + { + await HandleActivationAsync(); + } + + /// + /// Triggered when the application host is performing a graceful shutdown. + /// + /// Indicates that the shutdown process should no longer be graceful. + public async Task StopAsync(CancellationToken cancellationToken) + { + await Task.CompletedTask; + } + + /// + /// Creates main window during activation. + /// + private async Task HandleActivationAsync() + { + await Task.CompletedTask; + + if (!Application.Current.Windows.OfType().Any()) + { + _navigationWindow = (_serviceProvider.GetService(typeof(INavigationWindow)) as INavigationWindow)!; + _navigationWindow!.ShowWindow(); + + _navigationWindow.Navigate(typeof(Views.Pages.DashboardPage)); + } + + await Task.CompletedTask; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Services/PageService.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Services/PageService.cs new file mode 100644 index 000000000..0e5761d80 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Services/PageService.cs @@ -0,0 +1,43 @@ +using System; +using System.Windows; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Services +{ + /// + /// Service that provides pages for navigation. + /// + public class PageService : IPageService + { + /// + /// Service which provides the instances of pages. + /// + private readonly IServiceProvider _serviceProvider; + + /// + /// Creates new instance and attaches the . + /// + public PageService(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + + /// + public T? GetPage() where T : class + { + if (!typeof(FrameworkElement).IsAssignableFrom(typeof(T))) + throw new InvalidOperationException("The page should be a WPF control."); + + return (T?)_serviceProvider.GetService(typeof(T)); + } + + /// + public FrameworkElement? GetPage(Type pageType) + { + if (!typeof(FrameworkElement).IsAssignableFrom(pageType)) + throw new InvalidOperationException("The page should be a WPF control."); + + return _serviceProvider.GetService(pageType) as FrameworkElement; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/DashboardViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/DashboardViewModel.cs new file mode 100644 index 000000000..624d7a325 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/DashboardViewModel.cs @@ -0,0 +1,26 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.ViewModels +{ + public partial class DashboardViewModel : ObservableObject, INavigationAware + { + [ObservableProperty] + private int _counter = 0; + + public void OnNavigatedTo() + { + } + + public void OnNavigatedFrom() + { + } + + [RelayCommand] + private void OnCounterIncrement() + { + Counter++; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/DataViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/DataViewModel.cs new file mode 100644 index 000000000..6ec2854ae --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/DataViewModel.cs @@ -0,0 +1,47 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using System; +using System.Collections.Generic; +using System.Windows.Media; +using Wpf.Ui.Common.Interfaces; +using $safeprojectname$.Models; + +namespace $safeprojectname$.ViewModels +{ + public partial class DataViewModel : ObservableObject, INavigationAware + { + private bool _isInitialized = false; + + [ObservableProperty] + private IEnumerable _colors; + + public void OnNavigatedTo() + { + if (!_isInitialized) + InitializeViewModel(); + } + + public void OnNavigatedFrom() + { + } + + private void InitializeViewModel() + { + var random = new Random(); + var colorCollection = new List(); + + for (int i = 0; i < 8192; i++) + colorCollection.Add(new DataColor + { + Color = new SolidColorBrush(Color.FromArgb( + (byte)200, + (byte)random.Next(0, 250), + (byte)random.Next(0, 250), + (byte)random.Next(0, 250))) + }); + + Colors = colorCollection; + + _isInitialized = true; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/MainWindowViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/MainWindowViewModel.cs new file mode 100644 index 000000000..fe5a60fb0 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/MainWindowViewModel.cs @@ -0,0 +1,78 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using System; +using System.Collections.ObjectModel; +using Wpf.Ui.Common; +using Wpf.Ui.Controls; +using Wpf.Ui.Controls.Interfaces; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.ViewModels +{ + public partial class MainWindowViewModel : ObservableObject + { + private bool _isInitialized = false; + + [ObservableProperty] + private string _applicationTitle = String.Empty; + + [ObservableProperty] + private ObservableCollection _navigationItems = new(); + + [ObservableProperty] + private ObservableCollection _navigationFooter = new(); + + [ObservableProperty] + private ObservableCollection _trayMenuItems = new(); + + public MainWindowViewModel(INavigationService navigationService) + { + if (!_isInitialized) + InitializeViewModel(); + } + + private void InitializeViewModel() + { + ApplicationTitle = "WPF UI - $safeprojectname$"; + + NavigationItems = new ObservableCollection + { + new NavigationItem() + { + Content = "Home", + PageTag = "dashboard", + Icon = SymbolRegular.Home24, + PageType = typeof(Views.Pages.DashboardPage) + }, + new NavigationItem() + { + Content = "Data", + PageTag = "data", + Icon = SymbolRegular.DataHistogram24, + PageType = typeof(Views.Pages.DataPage) + } + }; + + NavigationFooter = new ObservableCollection + { + new NavigationItem() + { + Content = "Settings", + PageTag = "settings", + Icon = SymbolRegular.Settings24, + PageType = typeof(Views.Pages.SettingsPage) + } + }; + + TrayMenuItems = new ObservableCollection + { + new MenuItem + { + Header = "Home", + Tag = "tray_home" + } + }; + + _isInitialized = true; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/SettingsViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/SettingsViewModel.cs new file mode 100644 index 000000000..c316392e4 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/ViewModels/SettingsViewModel.cs @@ -0,0 +1,67 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; +using System; +using System.Windows.Input; +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.ViewModels +{ + public partial class SettingsViewModel : ObservableObject, INavigationAware + { + private bool _isInitialized = false; + + [ObservableProperty] + private string _appVersion = String.Empty; + + [ObservableProperty] + private Wpf.Ui.Appearance.ThemeType _currentTheme = Wpf.Ui.Appearance.ThemeType.Unknown; + + public void OnNavigatedTo() + { + if (!_isInitialized) + InitializeViewModel(); + } + + public void OnNavigatedFrom() + { + } + + private void InitializeViewModel() + { + CurrentTheme = Wpf.Ui.Appearance.Theme.GetAppTheme(); + AppVersion = $"$safeprojectname$ - {GetAssemblyVersion()}"; + + _isInitialized = true; + } + + private string GetAssemblyVersion() + { + return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? String.Empty; + } + + [RelayCommand] + private void OnChangeTheme(string parameter) + { + switch (parameter) + { + case "theme_light": + if (CurrentTheme == Wpf.Ui.Appearance.ThemeType.Light) + break; + + Wpf.Ui.Appearance.Theme.Apply(Wpf.Ui.Appearance.ThemeType.Light); + CurrentTheme = Wpf.Ui.Appearance.ThemeType.Light; + + break; + + default: + if (CurrentTheme == Wpf.Ui.Appearance.ThemeType.Dark) + break; + + Wpf.Ui.Appearance.Theme.Apply(Wpf.Ui.Appearance.ThemeType.Dark); + CurrentTheme = Wpf.Ui.Appearance.ThemeType.Dark; + + break; + } + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DashboardPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DashboardPage.xaml new file mode 100644 index 000000000..2a791a9b4 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DashboardPage.xaml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DashboardPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DashboardPage.xaml.cs new file mode 100644 index 000000000..b4163fce2 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DashboardPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for DashboardPage.xaml + /// + public partial class DashboardPage : INavigableView + { + public ViewModels.DashboardViewModel ViewModel + { + get; + } + + public DashboardPage(ViewModels.DashboardViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DataPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DataPage.xaml new file mode 100644 index 000000000..7530175ae --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DataPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DataPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DataPage.xaml.cs new file mode 100644 index 000000000..07d60a737 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/DataPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for DataView.xaml + /// + public partial class DataPage : INavigableView + { + public ViewModels.DataViewModel ViewModel + { + get; + } + + public DataPage(ViewModels.DataViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/SettingsPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/SettingsPage.xaml new file mode 100644 index 000000000..299e1c61a --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/SettingsPage.xaml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/SettingsPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/SettingsPage.xaml.cs new file mode 100644 index 000000000..54c312f4e --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Pages/SettingsPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for SettingsPage.xaml + /// + public partial class SettingsPage : INavigableView + { + public ViewModels.SettingsViewModel ViewModel + { + get; + } + + public SettingsPage(ViewModels.SettingsViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Windows/MainWindow.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Windows/MainWindow.xaml new file mode 100644 index 000000000..55b17ae68 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Windows/MainWindow.xaml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Windows/MainWindow.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Windows/MainWindow.xaml.cs new file mode 100644 index 000000000..5a1999b23 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Views/Windows/MainWindow.xaml.cs @@ -0,0 +1,63 @@ +using System; +using System.Windows; +using System.Windows.Controls; +using Wpf.Ui.Controls.Interfaces; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Views.Windows +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : INavigationWindow + { + public ViewModels.MainWindowViewModel ViewModel + { + get; + } + + public MainWindow(ViewModels.MainWindowViewModel viewModel, IPageService pageService, INavigationService navigationService) + { + ViewModel = viewModel; + DataContext = this; + + InitializeComponent(); + SetPageService(pageService); + + navigationService.SetNavigationControl(RootNavigation); + } + + #region INavigationWindow methods + + public Frame GetFrame() + => RootFrame; + + public INavigation GetNavigation() + => RootNavigation; + + public bool Navigate(Type pageType) + => RootNavigation.Navigate(pageType); + + public void SetPageService(IPageService pageService) + => RootNavigation.PageService = pageService; + + public void ShowWindow() + => Show(); + + public void CloseWindow() + => Close(); + + #endregion INavigationWindow methods + + /// + /// Raises the closed event. + /// + protected override void OnClosed(EventArgs e) + { + base.OnClosed(e); + + // Make sure that closing this window will begin the process of closing the application. + Application.Current.Shutdown(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.Template.csproj b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.Template.csproj new file mode 100644 index 000000000..64820d7dd --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.Template.csproj @@ -0,0 +1,87 @@ + + + + 17.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 15.0 + + + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + 11.0 + prompt + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 11.0 + prompt + + + + Debug + AnyCPU + {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {08BE0726-8E3D-4624-AC9E-07816A14E906} + Library + Properties + Wpf.Ui.Mvvm.FluentNavigation + Wpf.Ui.Mvvm.FluentNavigation + v4.8 + false + false + false + false + false + false + false + false + false + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + Wpf.Ui.Mvvm.FluentNavigation + + + + + + \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.csproj b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.csproj new file mode 100644 index 000000000..a616a3afe --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.csproj @@ -0,0 +1,33 @@ + + + + WinExe + net6.0-windows + enable + 10.0 + true + app.manifest + applicationIcon.ico + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.vstemplate b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.vstemplate new file mode 100644 index 000000000..ef38887b6 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/Wpf.Ui.Mvvm.FluentNavigation.vstemplate @@ -0,0 +1,68 @@ + + + WPF UI - Fluent Navigation (MVVM | DI) + Template for creating WPF UI project with MVVM pattern, Dependency Injection, Fluent navigation and Mica background. + CSharp + + 1000 + true + UiDesktopApp + true + Enabled + true + true + __TemplateIcon.png + csharp + XAML + Windows + Desktop + WPF UI + MVVM + __PreviewImage.png + + + + + applicationIcon-256.png + applicationIcon-1024.png + + + EnumToBooleanConverter.cs + + + AppConfig.cs + DataColor.cs + + + ApplicationHostService.cs + PageService.cs + + + MainWindowViewModel.cs + DashboardViewModel.cs + DataViewModel.cs + SettingsViewModel.cs + + + + DashboardPage.xaml + DashboardPage.xaml.cs + DataPage.xaml + DataPage.xaml.cs + SettingsPage.xaml + SettingsPage.xaml.cs + + + MainWindow.xaml + MainWindow.xaml.cs + + + app.manifest + applicationIcon.ico + App.xaml + App.xaml.cs + AssemblyInfo.cs + + + \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/__PreviewImage.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/__PreviewImage.png new file mode 100644 index 000000000..df0280fd7 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/__PreviewImage.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/__TemplateIcon.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/__TemplateIcon.png new file mode 100644 index 000000000..b70c4ed59 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/__TemplateIcon.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/app.manifest b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/app.manifest new file mode 100644 index 000000000..10f7ad534 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/app.manifest @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PerMonitor + true/PM + true + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/applicationIcon.ico b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/applicationIcon.ico new file mode 100644 index 000000000..cc128fda3 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.FluentNavigation/applicationIcon.ico differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/App.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/App.xaml new file mode 100644 index 000000000..ed1ed0c52 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/App.xaml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/App.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/App.xaml.cs new file mode 100644 index 000000000..e06498e98 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/App.xaml.cs @@ -0,0 +1,98 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using System.IO; +using System.Reflection; +using System.Windows; +using System.Windows.Threading; +using Wpf.Ui.Mvvm.Contracts; +using Wpf.Ui.Mvvm.Services; +using $safeprojectname$.Models; +using $safeprojectname$.Services; + +namespace $safeprojectname$ +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App + { + // The.NET Generic Host provides dependency injection, configuration, logging, and other services. + // https://docs.microsoft.com/dotnet/core/extensions/generic-host + // https://docs.microsoft.com/dotnet/core/extensions/dependency-injection + // https://docs.microsoft.com/dotnet/core/extensions/configuration + // https://docs.microsoft.com/dotnet/core/extensions/logging + private static readonly IHost _host = Host + .CreateDefaultBuilder() + .ConfigureAppConfiguration(c => { c.SetBasePath(Path.GetDirectoryName(Assembly.GetEntryAssembly()!.Location)); }) + .ConfigureServices((context, services) => + { + // App Host + services.AddHostedService(); + + // Page resolver service + services.AddSingleton(); + + // Theme manipulation + services.AddSingleton(); + + // TaskBar manipulation + services.AddSingleton(); + + // Service containing navigation, same as INavigationWindow... but without window + services.AddSingleton(); + + // Main window with navigation + services.AddScoped(); + services.AddScoped(); + + // Views and ViewModels + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + + // Configuration + services.Configure(context.Configuration.GetSection(nameof(AppConfig))); + }).Build(); + + /// + /// Gets registered service. + /// + /// Type of the service to get. + /// Instance of the service or . + public static T GetService() + where T : class + { + return _host.Services.GetService(typeof(T)) as T; + } + + /// + /// Occurs when the application is loading. + /// + private async void OnStartup(object sender, StartupEventArgs e) + { + await _host.StartAsync(); + } + + /// + /// Occurs when the application is closing. + /// + private async void OnExit(object sender, ExitEventArgs e) + { + await _host.StopAsync(); + + _host.Dispose(); + } + + /// + /// Occurs when an exception is thrown by an application but not handled. + /// + private void OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) + { + // For more info see https://docs.microsoft.com/en-us/dotnet/api/system.windows.application.dispatcherunhandledexception?view=windowsdesktop-6.0 + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/AssemblyInfo.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/AssemblyInfo.cs new file mode 100644 index 000000000..8b5504ecf --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Assets/applicationIcon-1024.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Assets/applicationIcon-1024.png new file mode 100644 index 000000000..b70c4ed59 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Assets/applicationIcon-1024.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Assets/applicationIcon-256.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Assets/applicationIcon-256.png new file mode 100644 index 000000000..6b5cf5d5a Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Assets/applicationIcon-256.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Helpers/EnumToBooleanConverter.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Helpers/EnumToBooleanConverter.cs new file mode 100644 index 000000000..0c5c4d56b --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Helpers/EnumToBooleanConverter.cs @@ -0,0 +1,34 @@ +using System; +using System.Globalization; +using System.Windows.Data; + +namespace $safeprojectname$.Helpers +{ + internal class EnumToBooleanConverter : IValueConverter + { + public EnumToBooleanConverter() + { + } + + public object Convert(object value, Type targetType, object parameter, CultureInfo culture) + { + if (parameter is not String enumString) + throw new ArgumentException("ExceptionEnumToBooleanConverterParameterMustBeAnEnumName"); + + if (!Enum.IsDefined(typeof(Wpf.Ui.Appearance.ThemeType), value)) + throw new ArgumentException("ExceptionEnumToBooleanConverterValueMustBeAnEnum"); + + var enumValue = Enum.Parse(typeof(Wpf.Ui.Appearance.ThemeType), enumString); + + return enumValue.Equals(value); + } + + public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) + { + if (parameter is not String enumString) + throw new ArgumentException("ExceptionEnumToBooleanConverterParameterMustBeAnEnumName"); + + return Enum.Parse(typeof(Wpf.Ui.Appearance.ThemeType), enumString); + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Models/AppConfig.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Models/AppConfig.cs new file mode 100644 index 000000000..de05a5c07 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Models/AppConfig.cs @@ -0,0 +1,9 @@ +namespace $safeprojectname$.Models +{ + public class AppConfig + { + public string ConfigurationsFolder { get; set; } + + public string AppPropertiesFileName { get; set; } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Models/DataColor.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Models/DataColor.cs new file mode 100644 index 000000000..37d424944 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Models/DataColor.cs @@ -0,0 +1,9 @@ +using System.Windows.Media; + +namespace $safeprojectname$.Models +{ + public struct DataColor + { + public Brush Color { get; set; } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Services/ApplicationHostService.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Services/ApplicationHostService.cs new file mode 100644 index 000000000..e9ac2c81e --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Services/ApplicationHostService.cs @@ -0,0 +1,60 @@ +using Microsoft.Extensions.Hosting; +using System; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using System.Windows; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Services +{ + /// + /// Managed host of the application. + /// + public class ApplicationHostService : IHostedService + { + private readonly IServiceProvider _serviceProvider; + private INavigationWindow _navigationWindow; + + public ApplicationHostService(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + + /// + /// Triggered when the application host is ready to start the service. + /// + /// Indicates that the start process has been aborted. + public async Task StartAsync(CancellationToken cancellationToken) + { + await HandleActivationAsync(); + } + + /// + /// Triggered when the application host is performing a graceful shutdown. + /// + /// Indicates that the shutdown process should no longer be graceful. + public async Task StopAsync(CancellationToken cancellationToken) + { + await Task.CompletedTask; + } + + /// + /// Creates main window during activation. + /// + private async Task HandleActivationAsync() + { + await Task.CompletedTask; + + if (!Application.Current.Windows.OfType().Any()) + { + _navigationWindow = (_serviceProvider.GetService(typeof(INavigationWindow)) as INavigationWindow)!; + _navigationWindow!.ShowWindow(); + + _navigationWindow.Navigate(typeof(Views.Pages.DashboardPage)); + } + + await Task.CompletedTask; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Services/PageService.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Services/PageService.cs new file mode 100644 index 000000000..0e5761d80 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Services/PageService.cs @@ -0,0 +1,43 @@ +using System; +using System.Windows; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Services +{ + /// + /// Service that provides pages for navigation. + /// + public class PageService : IPageService + { + /// + /// Service which provides the instances of pages. + /// + private readonly IServiceProvider _serviceProvider; + + /// + /// Creates new instance and attaches the . + /// + public PageService(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + + /// + public T? GetPage() where T : class + { + if (!typeof(FrameworkElement).IsAssignableFrom(typeof(T))) + throw new InvalidOperationException("The page should be a WPF control."); + + return (T?)_serviceProvider.GetService(typeof(T)); + } + + /// + public FrameworkElement? GetPage(Type pageType) + { + if (!typeof(FrameworkElement).IsAssignableFrom(pageType)) + throw new InvalidOperationException("The page should be a WPF control."); + + return _serviceProvider.GetService(pageType) as FrameworkElement; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/DashboardViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/DashboardViewModel.cs new file mode 100644 index 000000000..624d7a325 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/DashboardViewModel.cs @@ -0,0 +1,26 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.ViewModels +{ + public partial class DashboardViewModel : ObservableObject, INavigationAware + { + [ObservableProperty] + private int _counter = 0; + + public void OnNavigatedTo() + { + } + + public void OnNavigatedFrom() + { + } + + [RelayCommand] + private void OnCounterIncrement() + { + Counter++; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/DataViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/DataViewModel.cs new file mode 100644 index 000000000..6ec2854ae --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/DataViewModel.cs @@ -0,0 +1,47 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using System; +using System.Collections.Generic; +using System.Windows.Media; +using Wpf.Ui.Common.Interfaces; +using $safeprojectname$.Models; + +namespace $safeprojectname$.ViewModels +{ + public partial class DataViewModel : ObservableObject, INavigationAware + { + private bool _isInitialized = false; + + [ObservableProperty] + private IEnumerable _colors; + + public void OnNavigatedTo() + { + if (!_isInitialized) + InitializeViewModel(); + } + + public void OnNavigatedFrom() + { + } + + private void InitializeViewModel() + { + var random = new Random(); + var colorCollection = new List(); + + for (int i = 0; i < 8192; i++) + colorCollection.Add(new DataColor + { + Color = new SolidColorBrush(Color.FromArgb( + (byte)200, + (byte)random.Next(0, 250), + (byte)random.Next(0, 250), + (byte)random.Next(0, 250))) + }); + + Colors = colorCollection; + + _isInitialized = true; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/MainWindowViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/MainWindowViewModel.cs new file mode 100644 index 000000000..fe5a60fb0 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/MainWindowViewModel.cs @@ -0,0 +1,78 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using System; +using System.Collections.ObjectModel; +using Wpf.Ui.Common; +using Wpf.Ui.Controls; +using Wpf.Ui.Controls.Interfaces; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.ViewModels +{ + public partial class MainWindowViewModel : ObservableObject + { + private bool _isInitialized = false; + + [ObservableProperty] + private string _applicationTitle = String.Empty; + + [ObservableProperty] + private ObservableCollection _navigationItems = new(); + + [ObservableProperty] + private ObservableCollection _navigationFooter = new(); + + [ObservableProperty] + private ObservableCollection _trayMenuItems = new(); + + public MainWindowViewModel(INavigationService navigationService) + { + if (!_isInitialized) + InitializeViewModel(); + } + + private void InitializeViewModel() + { + ApplicationTitle = "WPF UI - $safeprojectname$"; + + NavigationItems = new ObservableCollection + { + new NavigationItem() + { + Content = "Home", + PageTag = "dashboard", + Icon = SymbolRegular.Home24, + PageType = typeof(Views.Pages.DashboardPage) + }, + new NavigationItem() + { + Content = "Data", + PageTag = "data", + Icon = SymbolRegular.DataHistogram24, + PageType = typeof(Views.Pages.DataPage) + } + }; + + NavigationFooter = new ObservableCollection + { + new NavigationItem() + { + Content = "Settings", + PageTag = "settings", + Icon = SymbolRegular.Settings24, + PageType = typeof(Views.Pages.SettingsPage) + } + }; + + TrayMenuItems = new ObservableCollection + { + new MenuItem + { + Header = "Home", + Tag = "tray_home" + } + }; + + _isInitialized = true; + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/SettingsViewModel.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/SettingsViewModel.cs new file mode 100644 index 000000000..c316392e4 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/ViewModels/SettingsViewModel.cs @@ -0,0 +1,67 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; +using System; +using System.Windows.Input; +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.ViewModels +{ + public partial class SettingsViewModel : ObservableObject, INavigationAware + { + private bool _isInitialized = false; + + [ObservableProperty] + private string _appVersion = String.Empty; + + [ObservableProperty] + private Wpf.Ui.Appearance.ThemeType _currentTheme = Wpf.Ui.Appearance.ThemeType.Unknown; + + public void OnNavigatedTo() + { + if (!_isInitialized) + InitializeViewModel(); + } + + public void OnNavigatedFrom() + { + } + + private void InitializeViewModel() + { + CurrentTheme = Wpf.Ui.Appearance.Theme.GetAppTheme(); + AppVersion = $"$safeprojectname$ - {GetAssemblyVersion()}"; + + _isInitialized = true; + } + + private string GetAssemblyVersion() + { + return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? String.Empty; + } + + [RelayCommand] + private void OnChangeTheme(string parameter) + { + switch (parameter) + { + case "theme_light": + if (CurrentTheme == Wpf.Ui.Appearance.ThemeType.Light) + break; + + Wpf.Ui.Appearance.Theme.Apply(Wpf.Ui.Appearance.ThemeType.Light); + CurrentTheme = Wpf.Ui.Appearance.ThemeType.Light; + + break; + + default: + if (CurrentTheme == Wpf.Ui.Appearance.ThemeType.Dark) + break; + + Wpf.Ui.Appearance.Theme.Apply(Wpf.Ui.Appearance.ThemeType.Dark); + CurrentTheme = Wpf.Ui.Appearance.ThemeType.Dark; + + break; + } + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DashboardPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DashboardPage.xaml new file mode 100644 index 000000000..7e67c5c99 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DashboardPage.xaml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DashboardPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DashboardPage.xaml.cs new file mode 100644 index 000000000..b4163fce2 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DashboardPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for DashboardPage.xaml + /// + public partial class DashboardPage : INavigableView + { + public ViewModels.DashboardViewModel ViewModel + { + get; + } + + public DashboardPage(ViewModels.DashboardViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DataPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DataPage.xaml new file mode 100644 index 000000000..b2c6ddef2 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DataPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DataPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DataPage.xaml.cs new file mode 100644 index 000000000..07d60a737 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/DataPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for DataView.xaml + /// + public partial class DataPage : INavigableView + { + public ViewModels.DataViewModel ViewModel + { + get; + } + + public DataPage(ViewModels.DataViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/SettingsPage.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/SettingsPage.xaml new file mode 100644 index 000000000..7fa595ea0 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/SettingsPage.xaml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/SettingsPage.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/SettingsPage.xaml.cs new file mode 100644 index 000000000..54c312f4e --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Pages/SettingsPage.xaml.cs @@ -0,0 +1,22 @@ +using Wpf.Ui.Common.Interfaces; + +namespace $safeprojectname$.Views.Pages +{ + /// + /// Interaction logic for SettingsPage.xaml + /// + public partial class SettingsPage : INavigableView + { + public ViewModels.SettingsViewModel ViewModel + { + get; + } + + public SettingsPage(ViewModels.SettingsViewModel viewModel) + { + ViewModel = viewModel; + + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Windows/MainWindow.xaml b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Windows/MainWindow.xaml new file mode 100644 index 000000000..c8d003701 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Windows/MainWindow.xaml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Windows/MainWindow.xaml.cs b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Windows/MainWindow.xaml.cs new file mode 100644 index 000000000..5a1999b23 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Views/Windows/MainWindow.xaml.cs @@ -0,0 +1,63 @@ +using System; +using System.Windows; +using System.Windows.Controls; +using Wpf.Ui.Controls.Interfaces; +using Wpf.Ui.Mvvm.Contracts; + +namespace $safeprojectname$.Views.Windows +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : INavigationWindow + { + public ViewModels.MainWindowViewModel ViewModel + { + get; + } + + public MainWindow(ViewModels.MainWindowViewModel viewModel, IPageService pageService, INavigationService navigationService) + { + ViewModel = viewModel; + DataContext = this; + + InitializeComponent(); + SetPageService(pageService); + + navigationService.SetNavigationControl(RootNavigation); + } + + #region INavigationWindow methods + + public Frame GetFrame() + => RootFrame; + + public INavigation GetNavigation() + => RootNavigation; + + public bool Navigate(Type pageType) + => RootNavigation.Navigate(pageType); + + public void SetPageService(IPageService pageService) + => RootNavigation.PageService = pageService; + + public void ShowWindow() + => Show(); + + public void CloseWindow() + => Close(); + + #endregion INavigationWindow methods + + /// + /// Raises the closed event. + /// + protected override void OnClosed(EventArgs e) + { + base.OnClosed(e); + + // Make sure that closing this window will begin the process of closing the application. + Application.Current.Shutdown(); + } + } +} \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.Template.csproj b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.Template.csproj new file mode 100644 index 000000000..b17d3a61b --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.Template.csproj @@ -0,0 +1,87 @@ + + + + 17.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 15.0 + + + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + 11.0 + prompt + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 11.0 + prompt + + + + Debug + AnyCPU + {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {5F5E2630-513E-4A8D-BB64-0F6F574DD739} + Library + Properties + Wpf.Ui.Mvvm.StoreNavigation + Wpf.Ui.Mvvm.StoreNavigation + v4.8 + false + false + false + false + false + false + false + false + false + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + Wpf.Ui.Mvvm.StoreNavigation + + + + + + \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.csproj b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.csproj new file mode 100644 index 000000000..a616a3afe --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.csproj @@ -0,0 +1,33 @@ + + + + WinExe + net6.0-windows + enable + 10.0 + true + app.manifest + applicationIcon.ico + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.vstemplate b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.vstemplate new file mode 100644 index 000000000..50b41e433 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/Wpf.Ui.Mvvm.StoreNavigation.vstemplate @@ -0,0 +1,68 @@ + + + WPF UI - MS Store Navigation (MVVM | DI) + Template for creating WPF UI project with MVVM pattern, Dependency Injection, MS Store navigation and Mica background. + CSharp + + 1000 + true + UiDesktopApp + true + Enabled + true + true + __TemplateIcon.png + csharp + XAML + Windows + Desktop + WPF UI + MVVM + __PreviewImage.png + + + + + applicationIcon-256.png + applicationIcon-1024.png + + + EnumToBooleanConverter.cs + + + AppConfig.cs + DataColor.cs + + + ApplicationHostService.cs + PageService.cs + + + MainWindowViewModel.cs + DashboardViewModel.cs + DataViewModel.cs + SettingsViewModel.cs + + + + DashboardPage.xaml + DashboardPage.xaml.cs + DataPage.xaml + DataPage.xaml.cs + SettingsPage.xaml + SettingsPage.xaml.cs + + + MainWindow.xaml + MainWindow.xaml.cs + + + app.manifest + applicationIcon.ico + App.xaml + App.xaml.cs + AssemblyInfo.cs + + + \ No newline at end of file diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/__PreviewImage.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/__PreviewImage.png new file mode 100644 index 000000000..df0280fd7 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/__PreviewImage.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/__TemplateIcon.png b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/__TemplateIcon.png new file mode 100644 index 000000000..b70c4ed59 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/__TemplateIcon.png differ diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/app.manifest b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/app.manifest new file mode 100644 index 000000000..10f7ad534 --- /dev/null +++ b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/app.manifest @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PerMonitor + true/PM + true + + + + + + + + + + diff --git a/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/applicationIcon.ico b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/applicationIcon.ico new file mode 100644 index 000000000..cc128fda3 Binary files /dev/null and b/src/Wpf.Ui.Extension.Templates/Wpf.Ui.Mvvm.StoreNavigation/applicationIcon.ico differ diff --git a/src/Wpf.Ui.Extension.sln b/src/Wpf.Ui.Extension.sln deleted file mode 100644 index b179930ed..000000000 --- a/src/Wpf.Ui.Extension.sln +++ /dev/null @@ -1,68 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.2.32505.173 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Extension", "Wpf.Ui.Extension\Wpf.Ui.Extension\Wpf.Ui.Extension.csproj", "{1298D974-9D81-4A93-9374-EA6A0E723DEB}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Mvvm.CompactNavigation.Template", "Wpf.Ui.Extension\Templates\Wpf.Ui.Mvvm.CompactNavigation\Wpf.Ui.Mvvm.CompactNavigation.Template.csproj", "{14D7431C-6CFF-4191-BB88-2B8D5F323A30}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Mvvm.FluentNavigation.Template", "Wpf.Ui.Extension\Templates\Wpf.Ui.Mvvm.FluentNavigation\Wpf.Ui.Mvvm.FluentNavigation.Template.csproj", "{08BE0726-8E3D-4624-AC9E-07816A14E906}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf.Ui.Mvvm.StoreNavigation.Template", "Wpf.Ui.Extension\Templates\Wpf.Ui.Mvvm.StoreNavigation\Wpf.Ui.Mvvm.StoreNavigation.Template.csproj", "{5F5E2630-513E-4A8D-BB64-0F6F574DD739}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Templates", "Templates", "{EE91A195-315B-4172-AA08-BBBD596EDEBF}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|x86.ActiveCfg = Debug|x86 - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Debug|x86.Build.0 = Debug|x86 - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|Any CPU.Build.0 = Release|Any CPU - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|x86.ActiveCfg = Release|x86 - {1298D974-9D81-4A93-9374-EA6A0E723DEB}.Release|x86.Build.0 = Release|x86 - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|Any CPU.Build.0 = Debug|Any CPU - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|x86.ActiveCfg = Debug|x86 - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Debug|x86.Build.0 = Debug|x86 - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|Any CPU.ActiveCfg = Release|Any CPU - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|Any CPU.Build.0 = Release|Any CPU - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|x86.ActiveCfg = Release|x86 - {14D7431C-6CFF-4191-BB88-2B8D5F323A30}.Release|x86.Build.0 = Release|x86 - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|Any CPU.Build.0 = Debug|Any CPU - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|x86.ActiveCfg = Debug|x86 - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Debug|x86.Build.0 = Debug|x86 - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|Any CPU.ActiveCfg = Release|Any CPU - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|Any CPU.Build.0 = Release|Any CPU - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|x86.ActiveCfg = Release|x86 - {08BE0726-8E3D-4624-AC9E-07816A14E906}.Release|x86.Build.0 = Release|x86 - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|x86.ActiveCfg = Debug|x86 - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Debug|x86.Build.0 = Debug|x86 - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|Any CPU.Build.0 = Release|Any CPU - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|x86.ActiveCfg = Release|x86 - {5F5E2630-513E-4A8D-BB64-0F6F574DD739}.Release|x86.Build.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {14D7431C-6CFF-4191-BB88-2B8D5F323A30} = {EE91A195-315B-4172-AA08-BBBD596EDEBF} - {08BE0726-8E3D-4624-AC9E-07816A14E906} = {EE91A195-315B-4172-AA08-BBBD596EDEBF} - {5F5E2630-513E-4A8D-BB64-0F6F574DD739} = {EE91A195-315B-4172-AA08-BBBD596EDEBF} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {8F55C6F2-1DAD-420E-868C-9B0140D01E7F} - EndGlobalSection -EndGlobal diff --git a/src/Wpf.Ui.Extension/Properties/AssemblyInfo.cs b/src/Wpf.Ui.Extension/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..5fde970c9 --- /dev/null +++ b/src/Wpf.Ui.Extension/Properties/AssemblyInfo.cs @@ -0,0 +1,32 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("WPF UI")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WPF UI")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/Wpf.Ui.Extension/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj b/src/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj similarity index 78% rename from src/Wpf.Ui.Extension/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj rename to src/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj index ae3807ded..a97a72b77 100644 --- a/src/Wpf.Ui.Extension/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj +++ b/src/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj @@ -1,14 +1,29 @@  - + 17.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + 11.0 + prompt + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 11.0 + prompt + - Debug AnyCPU @@ -30,7 +45,6 @@ $(DevEnvDir)devenv.exe /rootsuffix Exp - true full @@ -40,7 +54,6 @@ prompt 4 - pdbonly true @@ -49,22 +62,18 @@ prompt 4 - - Designer - - Always @@ -79,23 +88,22 @@ true - - + {14D7431C-6CFF-4191-BB88-2B8D5F323A30} Wpf.Ui.Mvvm.CompactNavigation.Template ProjectTemplates false TemplateProjectOutputGroup%3b - + {08BE0726-8E3D-4624-AC9E-07816A14E906} Wpf.Ui.Mvvm.FluentNavigation.Template ProjectTemplates false TemplateProjectOutputGroup%3b - + {5F5E2630-513E-4A8D-BB64-0F6F574DD739} Wpf.Ui.Mvvm.StoreNavigation.Template ProjectTemplates @@ -103,8 +111,6 @@ TemplateProjectOutputGroup%3b - - \ No newline at end of file diff --git a/src/Wpf.Ui.Extension/Wpf.Ui.Extension/license.txt b/src/Wpf.Ui.Extension/license.txt similarity index 100% rename from src/Wpf.Ui.Extension/Wpf.Ui.Extension/license.txt rename to src/Wpf.Ui.Extension/license.txt diff --git a/src/Wpf.Ui.Extension/preview.png b/src/Wpf.Ui.Extension/preview.png new file mode 100644 index 000000000..df0280fd7 Binary files /dev/null and b/src/Wpf.Ui.Extension/preview.png differ diff --git a/src/Wpf.Ui.Extension/Wpf.Ui.Extension/source.extension.vsixmanifest b/src/Wpf.Ui.Extension/source.extension.vsixmanifest similarity index 100% rename from src/Wpf.Ui.Extension/Wpf.Ui.Extension/source.extension.vsixmanifest rename to src/Wpf.Ui.Extension/source.extension.vsixmanifest diff --git a/src/Wpf.Ui.Extension/wpfui.png b/src/Wpf.Ui.Extension/wpfui.png new file mode 100644 index 000000000..b70c4ed59 Binary files /dev/null and b/src/Wpf.Ui.Extension/wpfui.png differ diff --git a/src/Wpf.Ui.FontMapper/FluentSystemIcons-Filled.json b/src/Wpf.Ui.FontMapper/FluentSystemIcons-Filled.json deleted file mode 100644 index e34a7588c..000000000 --- a/src/Wpf.Ui.FontMapper/FluentSystemIcons-Filled.json +++ /dev/null @@ -1,6355 +0,0 @@ -{ - "ic_fluent_access_time_24_filled": 61697, - "ic_fluent_accessibility_16_filled": 61698, - "ic_fluent_accessibility_20_filled": 61699, - "ic_fluent_accessibility_24_filled": 61700, - "ic_fluent_accessibility_28_filled": 61701, - "ic_fluent_add_12_filled": 61703, - "ic_fluent_add_16_filled": 61704, - "ic_fluent_add_20_filled": 61705, - "ic_fluent_add_24_filled": 61706, - "ic_fluent_add_28_filled": 61707, - "ic_fluent_add_circle_20_filled": 61708, - "ic_fluent_add_circle_24_filled": 61709, - "ic_fluent_add_circle_28_filled": 61710, - "ic_fluent_airplane_20_filled": 61711, - "ic_fluent_airplane_24_filled": 61712, - "ic_fluent_airplane_take_off_16_filled": 61713, - "ic_fluent_airplane_take_off_20_filled": 61714, - "ic_fluent_airplane_take_off_24_filled": 61715, - "ic_fluent_alert_20_filled": 61716, - "ic_fluent_alert_24_filled": 61717, - "ic_fluent_alert_28_filled": 61718, - "ic_fluent_alert_off_16_filled": 61719, - "ic_fluent_alert_off_20_filled": 61720, - "ic_fluent_alert_off_24_filled": 61721, - "ic_fluent_alert_off_28_filled": 61722, - "ic_fluent_alert_on_24_filled": 61723, - "ic_fluent_alert_snooze_20_filled": 61724, - "ic_fluent_alert_snooze_24_filled": 61725, - "ic_fluent_alert_urgent_20_filled": 61726, - "ic_fluent_alert_urgent_24_filled": 61727, - "ic_fluent_animal_dog_20_filled": 61728, - "ic_fluent_animal_dog_24_filled": 61729, - "ic_fluent_app_folder_20_filled": 61730, - "ic_fluent_app_folder_24_filled": 61731, - "ic_fluent_app_generic_24_filled": 61732, - "ic_fluent_app_recent_24_filled": 61733, - "ic_fluent_app_store_24_filled": 61738, - "ic_fluent_app_title_24_filled": 61739, - "ic_fluent_approvals_app_24_filled": 61744, - "ic_fluent_approvals_app_28_filled": 61745, - "ic_fluent_apps_16_filled": 61746, - "ic_fluent_apps_20_filled": 61747, - "ic_fluent_apps_24_filled": 61748, - "ic_fluent_apps_28_filled": 61749, - "ic_fluent_apps_add_in_20_filled": 61750, - "ic_fluent_apps_add_in_24_filled": 61751, - "ic_fluent_apps_list_24_filled": 61752, - "ic_fluent_archive_20_filled": 61753, - "ic_fluent_archive_24_filled": 61754, - "ic_fluent_archive_28_filled": 61755, - "ic_fluent_archive_48_filled": 61756, - "ic_fluent_arrow_clockwise_20_filled": 61757, - "ic_fluent_arrow_clockwise_24_filled": 61758, - "ic_fluent_arrow_counterclockwise_20_filled": 61759, - "ic_fluent_arrow_counterclockwise_24_filled": 61760, - "ic_fluent_arrow_curve_down_left_20_filled": 61761, - "ic_fluent_arrow_curve_down_right_20_filled": 61762, - "ic_fluent_arrow_curve_up_left_20_filled": 61765, - "ic_fluent_arrow_curve_up_right_20_filled": 61766, - "ic_fluent_arrow_down_16_filled": 61767, - "ic_fluent_arrow_down_20_filled": 61768, - "ic_fluent_arrow_down_24_filled": 61769, - "ic_fluent_arrow_down_28_filled": 61770, - "ic_fluent_arrow_down_left_24_filled": 61771, - "ic_fluent_arrow_download_16_filled": 61775, - "ic_fluent_arrow_download_20_filled": 61776, - "ic_fluent_arrow_download_24_filled": 61777, - "ic_fluent_arrow_download_48_filled": 61778, - "ic_fluent_arrow_expand_24_filled": 61780, - "ic_fluent_arrow_forward_16_filled": 61782, - "ic_fluent_arrow_forward_20_filled": 61783, - "ic_fluent_arrow_forward_24_filled": 61784, - "ic_fluent_arrow_import_20_filled": 61785, - "ic_fluent_arrow_import_24_filled": 61786, - "ic_fluent_arrow_left_20_filled": 61787, - "ic_fluent_arrow_left_24_filled": 61788, - "ic_fluent_arrow_left_28_filled": 61789, - "ic_fluent_arrow_maximize_16_filled": 61790, - "ic_fluent_arrow_maximize_20_filled": 61791, - "ic_fluent_arrow_maximize_24_filled": 61792, - "ic_fluent_arrow_maximize_28_filled": 61793, - "ic_fluent_arrow_maximize_vertical_20_filled": 61794, - "ic_fluent_arrow_maximize_vertical_24_filled": 61795, - "ic_fluent_arrow_minimize_16_filled": 61796, - "ic_fluent_arrow_minimize_20_filled": 61797, - "ic_fluent_arrow_minimize_24_filled": 61798, - "ic_fluent_arrow_minimize_28_filled": 61799, - "ic_fluent_arrow_minimize_vertical_24_filled": 61800, - "ic_fluent_arrow_move_24_filled": 61801, - "ic_fluent_arrow_next_20_filled": 61802, - "ic_fluent_arrow_next_24_filled": 61803, - "ic_fluent_arrow_previous_20_filled": 61804, - "ic_fluent_arrow_previous_24_filled": 61805, - "ic_fluent_arrow_redo_20_filled": 61806, - "ic_fluent_arrow_redo_24_filled": 61807, - "ic_fluent_arrow_repeat_all_16_filled": 61808, - "ic_fluent_arrow_repeat_all_20_filled": 61809, - "ic_fluent_arrow_repeat_all_24_filled": 61810, - "ic_fluent_arrow_repeat_all_off_16_filled": 61811, - "ic_fluent_arrow_repeat_all_off_20_filled": 61812, - "ic_fluent_arrow_repeat_all_off_24_filled": 61813, - "ic_fluent_arrow_reply_16_filled": 61814, - "ic_fluent_arrow_reply_20_filled": 61815, - "ic_fluent_arrow_reply_24_filled": 61816, - "ic_fluent_arrow_reply_48_filled": 61817, - "ic_fluent_arrow_reply_all_16_filled": 61818, - "ic_fluent_arrow_reply_all_20_filled": 61819, - "ic_fluent_arrow_reply_all_24_filled": 61820, - "ic_fluent_arrow_reply_all_48_filled": 61821, - "ic_fluent_arrow_reply_down_16_filled": 61822, - "ic_fluent_arrow_reply_down_20_filled": 61823, - "ic_fluent_arrow_reply_down_24_filled": 61824, - "ic_fluent_arrow_right_20_filled": 61825, - "ic_fluent_arrow_right_24_filled": 61826, - "ic_fluent_arrow_right_28_filled": 61827, - "ic_fluent_arrow_rotate_clockwise_20_filled": 61829, - "ic_fluent_arrow_rotate_clockwise_24_filled": 61830, - "ic_fluent_arrow_rotate_counterclockwise_20_filled": 61831, - "ic_fluent_arrow_rotate_counterclockwise_24_filled": 61832, - "ic_fluent_arrow_sort_20_filled": 61834, - "ic_fluent_arrow_sort_24_filled": 61835, - "ic_fluent_arrow_sort_28_filled": 61836, - "ic_fluent_arrow_swap_20_filled": 61837, - "ic_fluent_arrow_swap_24_filled": 61838, - "ic_fluent_arrow_sync_12_filled": 61839, - "ic_fluent_arrow_sync_20_filled": 61840, - "ic_fluent_arrow_sync_24_filled": 61841, - "ic_fluent_arrow_sync_circle_16_filled": 61842, - "ic_fluent_arrow_sync_circle_20_filled": 61843, - "ic_fluent_arrow_sync_circle_24_filled": 61844, - "ic_fluent_arrow_sync_off_12_filled": 61845, - "ic_fluent_arrow_trending_16_filled": 61846, - "ic_fluent_arrow_trending_20_filled": 61847, - "ic_fluent_arrow_trending_24_filled": 61848, - "ic_fluent_arrow_undo_20_filled": 61849, - "ic_fluent_arrow_undo_24_filled": 61850, - "ic_fluent_arrow_up_20_filled": 61851, - "ic_fluent_arrow_up_24_filled": 61852, - "ic_fluent_arrow_up_28_filled": 61853, - "ic_fluent_arrow_up_left_24_filled": 61857, - "ic_fluent_arrow_up_right_24_filled": 61859, - "ic_fluent_arrow_upload_20_filled": 61860, - "ic_fluent_arrow_upload_24_filled": 61861, - "ic_fluent_arrows_bidirectional_24_filled": 61862, - "ic_fluent_attach_16_filled": 61864, - "ic_fluent_attach_20_filled": 61865, - "ic_fluent_attach_24_filled": 61866, - "ic_fluent_autocorrect_24_filled": 61870, - "ic_fluent_autosum_20_filled": 61871, - "ic_fluent_autosum_24_filled": 61872, - "ic_fluent_backspace_20_filled": 61873, - "ic_fluent_backspace_24_filled": 61874, - "ic_fluent_badge_24_filled": 61877, - "ic_fluent_balloon_20_filled": 61878, - "ic_fluent_balloon_24_filled": 61879, - "ic_fluent_battery_0_20_filled": 61883, - "ic_fluent_battery_0_24_filled": 61884, - "ic_fluent_battery_1_20_filled": 61885, - "ic_fluent_battery_1_24_filled": 61886, - "ic_fluent_battery_2_20_filled": 61887, - "ic_fluent_battery_2_24_filled": 61888, - "ic_fluent_battery_3_20_filled": 61889, - "ic_fluent_battery_3_24_filled": 61890, - "ic_fluent_battery_4_20_filled": 61891, - "ic_fluent_battery_4_24_filled": 61892, - "ic_fluent_battery_5_20_filled": 61893, - "ic_fluent_battery_5_24_filled": 61894, - "ic_fluent_battery_6_20_filled": 61895, - "ic_fluent_battery_6_24_filled": 61896, - "ic_fluent_battery_7_20_filled": 61897, - "ic_fluent_battery_7_24_filled": 61898, - "ic_fluent_battery_8_20_filled": 61899, - "ic_fluent_battery_8_24_filled": 61900, - "ic_fluent_battery_9_20_filled": 61901, - "ic_fluent_battery_9_24_filled": 61902, - "ic_fluent_battery_charge_20_filled": 61903, - "ic_fluent_battery_charge_24_filled": 61904, - "ic_fluent_battery_saver_20_filled": 61907, - "ic_fluent_battery_saver_24_filled": 61908, - "ic_fluent_battery_warning_24_filled": 61909, - "ic_fluent_beaker_16_filled": 61910, - "ic_fluent_beaker_20_filled": 61911, - "ic_fluent_beaker_24_filled": 61912, - "ic_fluent_bed_20_filled": 61913, - "ic_fluent_bed_24_filled": 61914, - "ic_fluent_bluetooth_20_filled": 61918, - "ic_fluent_bluetooth_24_filled": 61919, - "ic_fluent_bluetooth_connected_24_filled": 61920, - "ic_fluent_bluetooth_disabled_24_filled": 61921, - "ic_fluent_bluetooth_searching_24_filled": 61922, - "ic_fluent_board_24_filled": 61923, - "ic_fluent_book_globe_24_filled": 61936, - "ic_fluent_book_number_16_filled": 61937, - "ic_fluent_book_number_20_filled": 61938, - "ic_fluent_book_number_24_filled": 61939, - "ic_fluent_bookmark_16_filled": 61940, - "ic_fluent_bookmark_20_filled": 61941, - "ic_fluent_bookmark_24_filled": 61942, - "ic_fluent_bookmark_28_filled": 61943, - "ic_fluent_bookmark_off_24_filled": 61944, - "ic_fluent_bot_24_filled": 61945, - "ic_fluent_bot_add_24_filled": 61946, - "ic_fluent_branch_24_filled": 61947, - "ic_fluent_briefcase_20_filled": 61948, - "ic_fluent_briefcase_24_filled": 61949, - "ic_fluent_broad_activity_feed_24_filled": 61952, - "ic_fluent_broom_20_filled": 61953, - "ic_fluent_broom_24_filled": 61954, - "ic_fluent_building_24_filled": 61957, - "ic_fluent_building_retail_24_filled": 61961, - "ic_fluent_calculator_20_filled": 61962, - "ic_fluent_calendar_3_day_20_filled": 61966, - "ic_fluent_calendar_3_day_24_filled": 61967, - "ic_fluent_calendar_3_day_28_filled": 61968, - "ic_fluent_calendar_add_20_filled": 61969, - "ic_fluent_calendar_add_24_filled": 61970, - "ic_fluent_calendar_agenda_20_filled": 61971, - "ic_fluent_calendar_agenda_24_filled": 61972, - "ic_fluent_calendar_agenda_28_filled": 61973, - "ic_fluent_calendar_arrow_right_20_filled": 61974, - "ic_fluent_calendar_assistant_20_filled": 61975, - "ic_fluent_calendar_assistant_24_filled": 61976, - "ic_fluent_calendar_cancel_20_filled": 61977, - "ic_fluent_calendar_cancel_24_filled": 61978, - "ic_fluent_calendar_checkmark_16_filled": 61979, - "ic_fluent_calendar_checkmark_20_filled": 61980, - "ic_fluent_calendar_clock_20_filled": 61981, - "ic_fluent_calendar_clock_24_filled": 61982, - "ic_fluent_calendar_day_20_filled": 61986, - "ic_fluent_calendar_day_24_filled": 61987, - "ic_fluent_calendar_day_28_filled": 61988, - "ic_fluent_calendar_empty_16_filled": 61989, - "ic_fluent_calendar_empty_20_filled": 61990, - "ic_fluent_calendar_empty_24_filled": 61991, - "ic_fluent_calendar_empty_28_filled": 61992, - "ic_fluent_calendar_month_20_filled": 61994, - "ic_fluent_calendar_month_24_filled": 61995, - "ic_fluent_calendar_month_28_filled": 61996, - "ic_fluent_calendar_multiple_20_filled": 61997, - "ic_fluent_calendar_multiple_24_filled": 61998, - "ic_fluent_calendar_person_20_filled": 62000, - "ic_fluent_calendar_reply_16_filled": 62001, - "ic_fluent_calendar_reply_20_filled": 62002, - "ic_fluent_calendar_reply_24_filled": 62003, - "ic_fluent_calendar_reply_28_filled": 62004, - "ic_fluent_calendar_settings_20_filled": 62005, - "ic_fluent_calendar_star_20_filled": 62006, - "ic_fluent_calendar_star_24_filled": 62007, - "ic_fluent_calendar_sync_16_filled": 62008, - "ic_fluent_calendar_sync_20_filled": 62009, - "ic_fluent_calendar_sync_24_filled": 62010, - "ic_fluent_calendar_today_16_filled": 62011, - "ic_fluent_calendar_today_20_filled": 62012, - "ic_fluent_calendar_today_24_filled": 62013, - "ic_fluent_calendar_today_28_filled": 62014, - "ic_fluent_calendar_week_numbers_24_filled": 62015, - "ic_fluent_calendar_week_start_20_filled": 62016, - "ic_fluent_calendar_week_start_24_filled": 62017, - "ic_fluent_calendar_week_start_28_filled": 62018, - "ic_fluent_calendar_work_week_16_filled": 62019, - "ic_fluent_calendar_work_week_20_filled": 62020, - "ic_fluent_calendar_work_week_24_filled": 62021, - "ic_fluent_call_add_24_filled": 62022, - "ic_fluent_call_end_20_filled": 62023, - "ic_fluent_call_end_24_filled": 62024, - "ic_fluent_call_end_28_filled": 62025, - "ic_fluent_call_forward_24_filled": 62026, - "ic_fluent_call_inbound_16_filled": 62027, - "ic_fluent_call_inbound_24_filled": 62028, - "ic_fluent_call_missed_16_filled": 62029, - "ic_fluent_call_missed_24_filled": 62030, - "ic_fluent_call_outbound_16_filled": 62031, - "ic_fluent_call_outbound_24_filled": 62032, - "ic_fluent_call_park_24_filled": 62033, - "ic_fluent_calligraphy_pen_20_filled": 62034, - "ic_fluent_calligraphy_pen_24_filled": 62035, - "ic_fluent_camera_20_filled": 62036, - "ic_fluent_camera_24_filled": 62037, - "ic_fluent_camera_28_filled": 62038, - "ic_fluent_camera_add_20_filled": 62039, - "ic_fluent_camera_add_24_filled": 62040, - "ic_fluent_camera_add_48_filled": 62041, - "ic_fluent_camera_switch_24_filled": 62042, - "ic_fluent_caret_down_12_filled": 62047, - "ic_fluent_caret_down_16_filled": 62048, - "ic_fluent_caret_down_20_filled": 62049, - "ic_fluent_caret_down_24_filled": 62050, - "ic_fluent_caret_left_12_filled": 62051, - "ic_fluent_caret_left_16_filled": 62052, - "ic_fluent_caret_left_20_filled": 62053, - "ic_fluent_caret_left_24_filled": 62054, - "ic_fluent_caret_right_12_filled": 62055, - "ic_fluent_caret_right_16_filled": 62056, - "ic_fluent_caret_right_20_filled": 62057, - "ic_fluent_caret_right_24_filled": 62058, - "ic_fluent_cart_24_filled": 62059, - "ic_fluent_cast_20_filled": 62060, - "ic_fluent_cast_24_filled": 62061, - "ic_fluent_cast_28_filled": 62062, - "ic_fluent_cellular_3g_24_filled": 62063, - "ic_fluent_cellular_4g_24_filled": 62064, - "ic_fluent_cellular_data_1_20_filled": 62065, - "ic_fluent_cellular_data_1_24_filled": 62066, - "ic_fluent_cellular_data_2_20_filled": 62067, - "ic_fluent_cellular_data_2_24_filled": 62068, - "ic_fluent_cellular_data_3_20_filled": 62069, - "ic_fluent_cellular_data_3_24_filled": 62070, - "ic_fluent_cellular_data_4_20_filled": 62071, - "ic_fluent_cellular_data_4_24_filled": 62072, - "ic_fluent_cellular_data_5_20_filled": 62073, - "ic_fluent_cellular_data_5_24_filled": 62074, - "ic_fluent_certificate_20_filled": 62078, - "ic_fluent_certificate_24_filled": 62079, - "ic_fluent_channel_16_filled": 62080, - "ic_fluent_channel_20_filled": 62081, - "ic_fluent_channel_24_filled": 62082, - "ic_fluent_chat_20_filled": 62086, - "ic_fluent_chat_24_filled": 62087, - "ic_fluent_chat_28_filled": 62088, - "ic_fluent_chat_bubbles_question_24_filled": 62089, - "ic_fluent_chat_help_24_filled": 62090, - "ic_fluent_chat_off_24_filled": 62091, - "ic_fluent_chat_warning_24_filled": 62092, - "ic_fluent_checkbox_checked_20_filled": 62093, - "ic_fluent_checkbox_checked_24_filled": 62094, - "ic_fluent_checkbox_unchecked_12_filled": 62095, - "ic_fluent_checkbox_unchecked_16_filled": 62096, - "ic_fluent_checkbox_unchecked_20_filled": 62097, - "ic_fluent_checkbox_unchecked_24_filled": 62098, - "ic_fluent_checkmark_12_filled": 62099, - "ic_fluent_checkmark_20_filled": 62100, - "ic_fluent_checkmark_24_filled": 62101, - "ic_fluent_checkmark_28_filled": 62102, - "ic_fluent_checkmark_circle_16_filled": 62103, - "ic_fluent_checkmark_circle_20_filled": 62104, - "ic_fluent_checkmark_circle_24_filled": 62105, - "ic_fluent_checkmark_circle_48_filled": 62106, - "ic_fluent_checkmark_lock_16_filled": 62107, - "ic_fluent_checkmark_lock_20_filled": 62108, - "ic_fluent_checkmark_lock_24_filled": 62109, - "ic_fluent_checkmark_square_24_filled": 62110, - "ic_fluent_checkmark_underline_circle_16_filled": 62111, - "ic_fluent_checkmark_underline_circle_20_filled": 62112, - "ic_fluent_chevron_down_12_filled": 62113, - "ic_fluent_chevron_down_16_filled": 62114, - "ic_fluent_chevron_down_20_filled": 62115, - "ic_fluent_chevron_down_24_filled": 62116, - "ic_fluent_chevron_down_28_filled": 62117, - "ic_fluent_chevron_down_48_filled": 62118, - "ic_fluent_chevron_left_12_filled": 62120, - "ic_fluent_chevron_left_16_filled": 62121, - "ic_fluent_chevron_left_20_filled": 62122, - "ic_fluent_chevron_left_24_filled": 62123, - "ic_fluent_chevron_left_28_filled": 62124, - "ic_fluent_chevron_left_48_filled": 62125, - "ic_fluent_chevron_right_12_filled": 62126, - "ic_fluent_chevron_right_16_filled": 62127, - "ic_fluent_chevron_right_20_filled": 62128, - "ic_fluent_chevron_right_24_filled": 62129, - "ic_fluent_chevron_right_28_filled": 62130, - "ic_fluent_chevron_right_48_filled": 62131, - "ic_fluent_chevron_up_12_filled": 62132, - "ic_fluent_chevron_up_16_filled": 62133, - "ic_fluent_chevron_up_20_filled": 62134, - "ic_fluent_chevron_up_24_filled": 62135, - "ic_fluent_chevron_up_28_filled": 62136, - "ic_fluent_chevron_up_48_filled": 62137, - "ic_fluent_circle_16_filled": 62138, - "ic_fluent_circle_20_filled": 62139, - "ic_fluent_circle_24_filled": 62140, - "ic_fluent_circle_half_fill_20_filled": 62141, - "ic_fluent_circle_half_fill_24_filled": 62142, - "ic_fluent_circle_line_24_filled": 62143, - "ic_fluent_circle_small_24_filled": 62144, - "ic_fluent_city_16_filled": 62145, - "ic_fluent_city_20_filled": 62146, - "ic_fluent_city_24_filled": 62147, - "ic_fluent_class_24_filled": 62148, - "ic_fluent_classification_16_filled": 62149, - "ic_fluent_classification_20_filled": 62150, - "ic_fluent_classification_24_filled": 62151, - "ic_fluent_clear_formatting_24_filled": 62152, - "ic_fluent_clipboard_20_filled": 62153, - "ic_fluent_clipboard_24_filled": 62154, - "ic_fluent_clipboard_code_16_filled": 62155, - "ic_fluent_clipboard_code_20_filled": 62156, - "ic_fluent_clipboard_code_24_filled": 62157, - "ic_fluent_clipboard_letter_16_filled": 62158, - "ic_fluent_clipboard_letter_20_filled": 62159, - "ic_fluent_clipboard_letter_24_filled": 62160, - "ic_fluent_clipboard_link_16_filled": 62161, - "ic_fluent_clipboard_link_20_filled": 62162, - "ic_fluent_clipboard_link_24_filled": 62163, - "ic_fluent_clipboard_more_24_filled": 62164, - "ic_fluent_clipboard_paste_20_filled": 62165, - "ic_fluent_clipboard_paste_24_filled": 62166, - "ic_fluent_clipboard_search_20_filled": 62167, - "ic_fluent_clipboard_search_24_filled": 62168, - "ic_fluent_clock_12_filled": 62171, - "ic_fluent_clock_16_filled": 62172, - "ic_fluent_clock_20_filled": 62173, - "ic_fluent_clock_24_filled": 62174, - "ic_fluent_clock_28_filled": 62175, - "ic_fluent_clock_48_filled": 62176, - "ic_fluent_clock_alarm_20_filled": 62177, - "ic_fluent_clock_alarm_24_filled": 62178, - "ic_fluent_closed_caption_24_filled": 62179, - "ic_fluent_cloud_20_filled": 62180, - "ic_fluent_cloud_24_filled": 62181, - "ic_fluent_cloud_48_filled": 62182, - "ic_fluent_cloud_off_24_filled": 62186, - "ic_fluent_cloud_off_48_filled": 62187, - "ic_fluent_code_20_filled": 62191, - "ic_fluent_code_24_filled": 62192, - "ic_fluent_collections_20_filled": 62193, - "ic_fluent_collections_24_filled": 62194, - "ic_fluent_collections_add_20_filled": 62195, - "ic_fluent_collections_add_24_filled": 62196, - "ic_fluent_color_20_filled": 62197, - "ic_fluent_color_24_filled": 62198, - "ic_fluent_color_background_20_filled": 62199, - "ic_fluent_color_background_24_filled": 62200, - "ic_fluent_color_fill_20_filled": 62201, - "ic_fluent_color_fill_24_filled": 62202, - "ic_fluent_color_line_20_filled": 62203, - "ic_fluent_color_line_24_filled": 62204, - "ic_fluent_column_triple_24_filled": 62205, - "ic_fluent_comment_16_filled": 62206, - "ic_fluent_comment_20_filled": 62207, - "ic_fluent_comment_24_filled": 62208, - "ic_fluent_comment_add_24_filled": 62209, - "ic_fluent_comment_mention_16_filled": 62211, - "ic_fluent_comment_mention_20_filled": 62212, - "ic_fluent_comment_mention_24_filled": 62213, - "ic_fluent_comment_multiple_16_filled": 62214, - "ic_fluent_comment_multiple_20_filled": 62215, - "ic_fluent_comment_multiple_24_filled": 62216, - "ic_fluent_communication_16_filled": 62220, - "ic_fluent_communication_20_filled": 62221, - "ic_fluent_communication_24_filled": 62222, - "ic_fluent_compass_northwest_16_filled": 62223, - "ic_fluent_compass_northwest_20_filled": 62224, - "ic_fluent_compass_northwest_24_filled": 62225, - "ic_fluent_compass_northwest_28_filled": 62226, - "ic_fluent_compose_16_filled": 62227, - "ic_fluent_compose_20_filled": 62228, - "ic_fluent_compose_24_filled": 62229, - "ic_fluent_compose_28_filled": 62230, - "ic_fluent_conference_room_16_filled": 62231, - "ic_fluent_conference_room_20_filled": 62232, - "ic_fluent_conference_room_24_filled": 62233, - "ic_fluent_conference_room_28_filled": 62234, - "ic_fluent_conference_room_48_filled": 62235, - "ic_fluent_connector_16_filled": 62236, - "ic_fluent_connector_20_filled": 62237, - "ic_fluent_connector_24_filled": 62238, - "ic_fluent_contact_card_20_filled": 62239, - "ic_fluent_contact_card_24_filled": 62240, - "ic_fluent_contact_card_group_24_filled": 62241, - "ic_fluent_content_settings_16_filled": 62243, - "ic_fluent_content_settings_20_filled": 62244, - "ic_fluent_content_settings_24_filled": 62245, - "ic_fluent_cookies_20_filled": 62248, - "ic_fluent_cookies_24_filled": 62249, - "ic_fluent_copy_16_filled": 62250, - "ic_fluent_copy_20_filled": 62251, - "ic_fluent_copy_24_filled": 62252, - "ic_fluent_crop_24_filled": 62257, - "ic_fluent_crop_interim_24_filled": 62258, - "ic_fluent_crop_interim_off_24_filled": 62259, - "ic_fluent_cube_16_filled": 62260, - "ic_fluent_cube_20_filled": 62261, - "ic_fluent_cube_24_filled": 62262, - "ic_fluent_cut_20_filled": 62266, - "ic_fluent_cut_24_filled": 62267, - "ic_fluent_dark_theme_24_filled": 62268, - "ic_fluent_data_area_24_filled": 62269, - "ic_fluent_data_bar_horizontal_24_filled": 62270, - "ic_fluent_data_bar_vertical_20_filled": 62271, - "ic_fluent_data_bar_vertical_24_filled": 62272, - "ic_fluent_data_funnel_24_filled": 62273, - "ic_fluent_data_histogram_24_filled": 62274, - "ic_fluent_data_line_24_filled": 62275, - "ic_fluent_data_pie_20_filled": 62276, - "ic_fluent_data_pie_24_filled": 62277, - "ic_fluent_data_scatter_24_filled": 62278, - "ic_fluent_data_sunburst_24_filled": 62279, - "ic_fluent_data_treemap_24_filled": 62280, - "ic_fluent_data_usage_24_filled": 62281, - "ic_fluent_data_waterfall_24_filled": 62282, - "ic_fluent_data_whisker_24_filled": 62283, - "ic_fluent_delete_20_filled": 62284, - "ic_fluent_delete_24_filled": 62285, - "ic_fluent_delete_28_filled": 62286, - "ic_fluent_delete_48_filled": 62287, - "ic_fluent_delete_off_20_filled": 62290, - "ic_fluent_delete_off_24_filled": 62291, - "ic_fluent_dentist_24_filled": 62292, - "ic_fluent_design_ideas_16_filled": 62293, - "ic_fluent_design_ideas_20_filled": 62294, - "ic_fluent_design_ideas_24_filled": 62295, - "ic_fluent_desktop_16_filled": 62296, - "ic_fluent_desktop_20_filled": 62297, - "ic_fluent_desktop_24_filled": 62298, - "ic_fluent_desktop_28_filled": 62299, - "ic_fluent_developer_board_24_filled": 62300, - "ic_fluent_device_eq_24_filled": 62301, - "ic_fluent_dialpad_20_filled": 62302, - "ic_fluent_dialpad_24_filled": 62303, - "ic_fluent_dialpad_off_24_filled": 62304, - "ic_fluent_directions_20_filled": 62309, - "ic_fluent_directions_24_filled": 62310, - "ic_fluent_dismiss_12_filled": 62311, - "ic_fluent_dismiss_16_filled": 62312, - "ic_fluent_dismiss_20_filled": 62313, - "ic_fluent_dismiss_24_filled": 62314, - "ic_fluent_dismiss_28_filled": 62315, - "ic_fluent_dismiss_circle_16_filled": 62316, - "ic_fluent_dismiss_circle_20_filled": 62317, - "ic_fluent_dismiss_circle_24_filled": 62318, - "ic_fluent_dismiss_circle_48_filled": 62319, - "ic_fluent_divider_short_24_filled": 62320, - "ic_fluent_divider_tall_24_filled": 62321, - "ic_fluent_dock_24_filled": 62322, - "ic_fluent_dock_row_24_filled": 62326, - "ic_fluent_doctor_24_filled": 62327, - "ic_fluent_document_20_filled": 62328, - "ic_fluent_document_24_filled": 62329, - "ic_fluent_document_28_filled": 62330, - "ic_fluent_document_briefcase_20_filled": 62332, - "ic_fluent_document_briefcase_24_filled": 62333, - "ic_fluent_document_catch_up_24_filled": 62334, - "ic_fluent_document_copy_16_filled": 62335, - "ic_fluent_document_copy_20_filled": 62336, - "ic_fluent_document_copy_24_filled": 62337, - "ic_fluent_document_copy_48_filled": 62338, - "ic_fluent_document_dismiss_20_filled": 62339, - "ic_fluent_document_dismiss_24_filled": 62340, - "ic_fluent_document_edit_16_filled": 62341, - "ic_fluent_document_edit_20_filled": 62342, - "ic_fluent_document_edit_24_filled": 62343, - "ic_fluent_document_endnote_20_filled": 62344, - "ic_fluent_document_endnote_24_filled": 62345, - "ic_fluent_document_error_16_filled": 62346, - "ic_fluent_document_error_20_filled": 62347, - "ic_fluent_document_error_24_filled": 62348, - "ic_fluent_document_footer_24_filled": 62349, - "ic_fluent_document_header_24_filled": 62351, - "ic_fluent_document_header_footer_20_filled": 62352, - "ic_fluent_document_header_footer_24_filled": 62353, - "ic_fluent_document_landscape_20_filled": 62355, - "ic_fluent_document_landscape_24_filled": 62356, - "ic_fluent_document_margins_20_filled": 62357, - "ic_fluent_document_margins_24_filled": 62358, - "ic_fluent_document_one_page_20_filled": 62361, - "ic_fluent_document_one_page_24_filled": 62362, - "ic_fluent_document_page_bottom_center_20_filled": 62364, - "ic_fluent_document_page_bottom_center_24_filled": 62365, - "ic_fluent_document_page_bottom_left_20_filled": 62366, - "ic_fluent_document_page_bottom_left_24_filled": 62367, - "ic_fluent_document_page_bottom_right_20_filled": 62368, - "ic_fluent_document_page_bottom_right_24_filled": 62369, - "ic_fluent_document_page_break_24_filled": 62370, - "ic_fluent_document_page_number_20_filled": 62371, - "ic_fluent_document_page_number_24_filled": 62372, - "ic_fluent_document_page_top_center_20_filled": 62373, - "ic_fluent_document_page_top_center_24_filled": 62374, - "ic_fluent_document_page_top_left_20_filled": 62375, - "ic_fluent_document_page_top_left_24_filled": 62376, - "ic_fluent_document_page_top_right_20_filled": 62377, - "ic_fluent_document_page_top_right_24_filled": 62378, - "ic_fluent_document_pdf_16_filled": 62379, - "ic_fluent_document_pdf_20_filled": 62380, - "ic_fluent_document_pdf_24_filled": 62381, - "ic_fluent_document_search_20_filled": 62382, - "ic_fluent_document_search_24_filled": 62383, - "ic_fluent_document_toolbox_20_filled": 62384, - "ic_fluent_document_toolbox_24_filled": 62385, - "ic_fluent_document_width_20_filled": 62392, - "ic_fluent_document_width_24_filled": 62393, - "ic_fluent_double_swipe_down_24_filled": 62394, - "ic_fluent_double_swipe_up_24_filled": 62395, - "ic_fluent_drafts_16_filled": 62398, - "ic_fluent_drafts_20_filled": 62399, - "ic_fluent_drafts_24_filled": 62400, - "ic_fluent_drag_24_filled": 62401, - "ic_fluent_drink_beer_24_filled": 62403, - "ic_fluent_drink_coffee_20_filled": 62404, - "ic_fluent_drink_coffee_24_filled": 62405, - "ic_fluent_drink_margarita_24_filled": 62406, - "ic_fluent_drink_wine_24_filled": 62407, - "ic_fluent_dual_screen_24_filled": 62408, - "ic_fluent_dual_screen_add_24_filled": 62409, - "ic_fluent_dual_screen_arrow_right_24_filled": 62410, - "ic_fluent_dual_screen_clock_24_filled": 62411, - "ic_fluent_dual_screen_desktop_24_filled": 62412, - "ic_fluent_dual_screen_group_24_filled": 62414, - "ic_fluent_dual_screen_lock_24_filled": 62415, - "ic_fluent_dual_screen_mirror_24_filled": 62416, - "ic_fluent_dual_screen_pagination_24_filled": 62417, - "ic_fluent_dual_screen_settings_24_filled": 62418, - "ic_fluent_dual_screen_status_bar_24_filled": 62419, - "ic_fluent_dual_screen_tablet_24_filled": 62420, - "ic_fluent_dual_screen_update_24_filled": 62421, - "ic_fluent_dual_screen_vertical_scroll_24_filled": 62422, - "ic_fluent_dual_screen_vibrate_24_filled": 62423, - "ic_fluent_earth_16_filled": 62424, - "ic_fluent_earth_20_filled": 62425, - "ic_fluent_earth_24_filled": 62426, - "ic_fluent_edit_16_filled": 62427, - "ic_fluent_edit_20_filled": 62428, - "ic_fluent_edit_24_filled": 62429, - "ic_fluent_emoji_16_filled": 62430, - "ic_fluent_emoji_20_filled": 62431, - "ic_fluent_emoji_24_filled": 62432, - "ic_fluent_emoji_add_24_filled": 62433, - "ic_fluent_emoji_angry_20_filled": 62434, - "ic_fluent_emoji_angry_24_filled": 62435, - "ic_fluent_emoji_laugh_20_filled": 62436, - "ic_fluent_emoji_laugh_24_filled": 62437, - "ic_fluent_emoji_meh_20_filled": 62438, - "ic_fluent_emoji_meh_24_filled": 62439, - "ic_fluent_emoji_sad_20_filled": 62440, - "ic_fluent_emoji_sad_24_filled": 62441, - "ic_fluent_emoji_surprise_20_filled": 62442, - "ic_fluent_emoji_surprise_24_filled": 62443, - "ic_fluent_eraser_tool_24_filled": 62446, - "ic_fluent_error_circle_16_filled": 62447, - "ic_fluent_error_circle_20_filled": 62448, - "ic_fluent_error_circle_24_filled": 62449, - "ic_fluent_extended_dock_24_filled": 62451, - "ic_fluent_fast_acceleration_24_filled": 62460, - "ic_fluent_fast_forward_20_filled": 62461, - "ic_fluent_fast_forward_24_filled": 62462, - "ic_fluent_filter_20_filled": 62469, - "ic_fluent_filter_24_filled": 62470, - "ic_fluent_filter_28_filled": 62471, - "ic_fluent_fingerprint_24_filled": 62472, - "ic_fluent_flag_16_filled": 62473, - "ic_fluent_flag_20_filled": 62474, - "ic_fluent_flag_24_filled": 62475, - "ic_fluent_flag_28_filled": 62476, - "ic_fluent_flag_48_filled": 62477, - "ic_fluent_flag_off_24_filled": 62478, - "ic_fluent_flag_off_28_filled": 62479, - "ic_fluent_flag_off_48_filled": 62480, - "ic_fluent_flag_pride_16_filled": 62481, - "ic_fluent_flag_pride_20_filled": 62482, - "ic_fluent_flag_pride_24_filled": 62483, - "ic_fluent_flag_pride_28_filled": 62484, - "ic_fluent_flag_pride_48_filled": 62485, - "ic_fluent_flash_auto_24_filled": 62486, - "ic_fluent_flash_off_24_filled": 62487, - "ic_fluent_flashlight_24_filled": 62490, - "ic_fluent_flashlight_off_24_filled": 62491, - "ic_fluent_folder_20_filled": 62492, - "ic_fluent_folder_24_filled": 62493, - "ic_fluent_folder_28_filled": 62494, - "ic_fluent_folder_48_filled": 62495, - "ic_fluent_folder_add_20_filled": 62496, - "ic_fluent_folder_add_24_filled": 62497, - "ic_fluent_folder_add_28_filled": 62498, - "ic_fluent_folder_add_48_filled": 62499, - "ic_fluent_folder_briefcase_20_filled": 62500, - "ic_fluent_folder_link_20_filled": 62505, - "ic_fluent_folder_link_24_filled": 62506, - "ic_fluent_folder_link_28_filled": 62507, - "ic_fluent_folder_link_48_filled": 62508, - "ic_fluent_folder_open_16_filled": 62513, - "ic_fluent_folder_open_20_filled": 62514, - "ic_fluent_folder_open_24_filled": 62515, - "ic_fluent_folder_open_vertical_20_filled": 62516, - "ic_fluent_folder_zip_16_filled": 62520, - "ic_fluent_folder_zip_20_filled": 62521, - "ic_fluent_folder_zip_24_filled": 62522, - "ic_fluent_font_decrease_20_filled": 62523, - "ic_fluent_font_decrease_24_filled": 62524, - "ic_fluent_font_increase_20_filled": 62525, - "ic_fluent_font_increase_24_filled": 62526, - "ic_fluent_font_space_tracking_in_16_filled": 62527, - "ic_fluent_font_space_tracking_in_20_filled": 62528, - "ic_fluent_font_space_tracking_in_24_filled": 62529, - "ic_fluent_font_space_tracking_in_28_filled": 62530, - "ic_fluent_font_space_tracking_out_16_filled": 62531, - "ic_fluent_font_space_tracking_out_20_filled": 62532, - "ic_fluent_font_space_tracking_out_24_filled": 62533, - "ic_fluent_font_space_tracking_out_28_filled": 62534, - "ic_fluent_food_20_filled": 62535, - "ic_fluent_food_24_filled": 62536, - "ic_fluent_food_cake_24_filled": 62537, - "ic_fluent_food_egg_24_filled": 62538, - "ic_fluent_food_toast_24_filled": 62539, - "ic_fluent_form_new_24_filled": 62540, - "ic_fluent_form_new_28_filled": 62541, - "ic_fluent_form_new_48_filled": 62542, - "ic_fluent_fps_240_24_filled": 62545, - "ic_fluent_fps_960_24_filled": 62546, - "ic_fluent_games_24_filled": 62549, - "ic_fluent_gesture_24_filled": 62550, - "ic_fluent_gif_20_filled": 62551, - "ic_fluent_gif_24_filled": 62552, - "ic_fluent_gift_20_filled": 62553, - "ic_fluent_gift_24_filled": 62554, - "ic_fluent_glance_24_filled": 62555, - "ic_fluent_glasses_24_filled": 62556, - "ic_fluent_glasses_off_24_filled": 62557, - "ic_fluent_globe_20_filled": 62558, - "ic_fluent_globe_24_filled": 62559, - "ic_fluent_globe_add_24_filled": 62560, - "ic_fluent_globe_clock_24_filled": 62561, - "ic_fluent_globe_desktop_24_filled": 62562, - "ic_fluent_globe_location_24_filled": 62563, - "ic_fluent_globe_search_24_filled": 62564, - "ic_fluent_globe_video_24_filled": 62565, - "ic_fluent_grid_20_filled": 62566, - "ic_fluent_grid_24_filled": 62567, - "ic_fluent_grid_28_filled": 62568, - "ic_fluent_group_20_filled": 62569, - "ic_fluent_group_24_filled": 62570, - "ic_fluent_group_list_24_filled": 62571, - "ic_fluent_guest_16_filled": 62572, - "ic_fluent_guest_20_filled": 62573, - "ic_fluent_guest_24_filled": 62574, - "ic_fluent_guest_28_filled": 62575, - "ic_fluent_guest_add_24_filled": 62576, - "ic_fluent_handshake_16_filled": 62578, - "ic_fluent_handshake_20_filled": 62579, - "ic_fluent_handshake_24_filled": 62580, - "ic_fluent_hdr_24_filled": 62581, - "ic_fluent_headphones_24_filled": 62582, - "ic_fluent_headphones_28_filled": 62583, - "ic_fluent_headset_24_filled": 62584, - "ic_fluent_headset_28_filled": 62585, - "ic_fluent_headset_vr_20_filled": 62586, - "ic_fluent_headset_vr_24_filled": 62587, - "ic_fluent_heart_16_filled": 62588, - "ic_fluent_heart_20_filled": 62589, - "ic_fluent_heart_24_filled": 62590, - "ic_fluent_highlight_16_filled": 62591, - "ic_fluent_highlight_20_filled": 62592, - "ic_fluent_highlight_24_filled": 62593, - "ic_fluent_highlight_accent_16_filled": 62594, - "ic_fluent_highlight_accent_20_filled": 62595, - "ic_fluent_highlight_accent_24_filled": 62596, - "ic_fluent_history_20_filled": 62597, - "ic_fluent_history_24_filled": 62598, - "ic_fluent_home_20_filled": 62599, - "ic_fluent_home_24_filled": 62600, - "ic_fluent_home_28_filled": 62601, - "ic_fluent_home_add_24_filled": 62602, - "ic_fluent_home_checkmark_24_filled": 62603, - "ic_fluent_icons_20_filled": 62604, - "ic_fluent_icons_24_filled": 62605, - "ic_fluent_image_16_filled": 62606, - "ic_fluent_image_20_filled": 62607, - "ic_fluent_image_24_filled": 62608, - "ic_fluent_image_28_filled": 62609, - "ic_fluent_image_48_filled": 62610, - "ic_fluent_image_add_24_filled": 62611, - "ic_fluent_image_alt_text_20_filled": 62612, - "ic_fluent_image_alt_text_24_filled": 62613, - "ic_fluent_image_copy_20_filled": 62614, - "ic_fluent_image_copy_24_filled": 62615, - "ic_fluent_image_copy_28_filled": 62616, - "ic_fluent_image_edit_16_filled": 62617, - "ic_fluent_image_edit_20_filled": 62618, - "ic_fluent_image_edit_24_filled": 62619, - "ic_fluent_image_off_24_filled": 62623, - "ic_fluent_image_search_20_filled": 62624, - "ic_fluent_image_search_24_filled": 62625, - "ic_fluent_immersive_reader_20_filled": 62626, - "ic_fluent_immersive_reader_24_filled": 62627, - "ic_fluent_important_12_filled": 62628, - "ic_fluent_important_16_filled": 62629, - "ic_fluent_important_20_filled": 62630, - "ic_fluent_important_24_filled": 62631, - "ic_fluent_incognito_24_filled": 62632, - "ic_fluent_info_16_filled": 62633, - "ic_fluent_info_20_filled": 62634, - "ic_fluent_info_24_filled": 62635, - "ic_fluent_info_28_filled": 62636, - "ic_fluent_inking_tool_16_filled": 62637, - "ic_fluent_inking_tool_20_filled": 62638, - "ic_fluent_inking_tool_24_filled": 62639, - "ic_fluent_inking_tool_accent_16_filled": 62640, - "ic_fluent_inking_tool_accent_20_filled": 62641, - "ic_fluent_inking_tool_accent_24_filled": 62642, - "ic_fluent_inprivate_account_16_filled": 62643, - "ic_fluent_inprivate_account_20_filled": 62644, - "ic_fluent_inprivate_account_24_filled": 62645, - "ic_fluent_inprivate_account_28_filled": 62646, - "ic_fluent_insert_20_filled": 62647, - "ic_fluent_ios_chevron_right_20_filled": 62652, - "ic_fluent_javascript_16_filled": 62653, - "ic_fluent_javascript_20_filled": 62654, - "ic_fluent_javascript_24_filled": 62655, - "ic_fluent_key_20_filled": 62656, - "ic_fluent_key_24_filled": 62657, - "ic_fluent_keyboard_20_filled": 62658, - "ic_fluent_keyboard_24_filled": 62659, - "ic_fluent_keyboard_dock_24_filled": 62660, - "ic_fluent_keyboard_layout_float_24_filled": 62661, - "ic_fluent_keyboard_layout_one_handed_left_24_filled": 62662, - "ic_fluent_keyboard_layout_resize_24_filled": 62663, - "ic_fluent_keyboard_layout_split_24_filled": 62664, - "ic_fluent_keyboard_shift_24_filled": 62665, - "ic_fluent_keyboard_shift_uppercase_24_filled": 62666, - "ic_fluent_keyboard_tab_24_filled": 62667, - "ic_fluent_laptop_16_filled": 62668, - "ic_fluent_laptop_20_filled": 62669, - "ic_fluent_laptop_24_filled": 62670, - "ic_fluent_laptop_28_filled": 62671, - "ic_fluent_lasso_24_filled": 62675, - "ic_fluent_launcher_settings_24_filled": 62676, - "ic_fluent_layer_20_filled": 62677, - "ic_fluent_layer_24_filled": 62678, - "ic_fluent_leaf_two_16_filled": 62682, - "ic_fluent_leaf_two_20_filled": 62683, - "ic_fluent_leaf_two_24_filled": 62684, - "ic_fluent_library_24_filled": 62685, - "ic_fluent_library_28_filled": 62686, - "ic_fluent_lightbulb_16_filled": 62687, - "ic_fluent_lightbulb_20_filled": 62688, - "ic_fluent_lightbulb_24_filled": 62689, - "ic_fluent_lightbulb_circle_24_filled": 62690, - "ic_fluent_lightbulb_filament_16_filled": 62691, - "ic_fluent_lightbulb_filament_20_filled": 62692, - "ic_fluent_lightbulb_filament_24_filled": 62693, - "ic_fluent_likert_16_filled": 62695, - "ic_fluent_likert_20_filled": 62696, - "ic_fluent_likert_24_filled": 62697, - "ic_fluent_line_horizontal_1_20_filled": 62698, - "ic_fluent_line_horizontal_3_20_filled": 62699, - "ic_fluent_line_horizontal_5_20_filled": 62700, - "ic_fluent_link_16_filled": 62701, - "ic_fluent_link_20_filled": 62702, - "ic_fluent_link_24_filled": 62703, - "ic_fluent_link_28_filled": 62704, - "ic_fluent_link_48_filled": 62705, - "ic_fluent_link_edit_16_filled": 62706, - "ic_fluent_link_edit_20_filled": 62707, - "ic_fluent_link_edit_24_filled": 62708, - "ic_fluent_link_square_24_filled": 62710, - "ic_fluent_list_20_filled": 62711, - "ic_fluent_list_24_filled": 62712, - "ic_fluent_list_28_filled": 62713, - "ic_fluent_live_20_filled": 62714, - "ic_fluent_live_24_filled": 62715, - "ic_fluent_local_language_16_filled": 62716, - "ic_fluent_local_language_20_filled": 62717, - "ic_fluent_local_language_24_filled": 62718, - "ic_fluent_local_language_28_filled": 62719, - "ic_fluent_location_12_filled": 62720, - "ic_fluent_location_16_filled": 62721, - "ic_fluent_location_20_filled": 62722, - "ic_fluent_location_24_filled": 62723, - "ic_fluent_location_28_filled": 62724, - "ic_fluent_location_live_20_filled": 62725, - "ic_fluent_location_live_24_filled": 62726, - "ic_fluent_lock_shield_20_filled": 62732, - "ic_fluent_lock_shield_24_filled": 62733, - "ic_fluent_lock_shield_48_filled": 62734, - "ic_fluent_mail_20_filled": 62736, - "ic_fluent_mail_24_filled": 62737, - "ic_fluent_mail_28_filled": 62738, - "ic_fluent_mail_48_filled": 62739, - "ic_fluent_mail_add_24_filled": 62740, - "ic_fluent_mail_all_read_20_filled": 62744, - "ic_fluent_mail_all_unread_20_filled": 62745, - "ic_fluent_mail_clock_20_filled": 62746, - "ic_fluent_mail_copy_20_filled": 62747, - "ic_fluent_mail_copy_24_filled": 62748, - "ic_fluent_mail_inbox_16_filled": 62749, - "ic_fluent_mail_inbox_20_filled": 62750, - "ic_fluent_mail_inbox_24_filled": 62751, - "ic_fluent_mail_inbox_28_filled": 62752, - "ic_fluent_mail_inbox_add_16_filled": 62753, - "ic_fluent_mail_inbox_add_20_filled": 62754, - "ic_fluent_mail_inbox_add_24_filled": 62755, - "ic_fluent_mail_inbox_add_28_filled": 62756, - "ic_fluent_mail_inbox_dismiss_16_filled": 62757, - "ic_fluent_mail_inbox_dismiss_20_filled": 62758, - "ic_fluent_mail_inbox_dismiss_24_filled": 62759, - "ic_fluent_mail_inbox_dismiss_28_filled": 62760, - "ic_fluent_mail_read_20_filled": 62763, - "ic_fluent_mail_read_24_filled": 62764, - "ic_fluent_mail_read_28_filled": 62765, - "ic_fluent_mail_read_48_filled": 62766, - "ic_fluent_mail_unread_16_filled": 62767, - "ic_fluent_mail_unread_20_filled": 62768, - "ic_fluent_mail_unread_24_filled": 62769, - "ic_fluent_mail_unread_28_filled": 62770, - "ic_fluent_mail_unread_48_filled": 62771, - "ic_fluent_map_24_filled": 62776, - "ic_fluent_map_drive_16_filled": 62777, - "ic_fluent_map_drive_20_filled": 62778, - "ic_fluent_map_drive_24_filled": 62779, - "ic_fluent_match_app_layout_24_filled": 62780, - "ic_fluent_maximize_16_filled": 62781, - "ic_fluent_meet_now_20_filled": 62782, - "ic_fluent_meet_now_24_filled": 62783, - "ic_fluent_megaphone_16_filled": 62784, - "ic_fluent_megaphone_20_filled": 62785, - "ic_fluent_megaphone_24_filled": 62786, - "ic_fluent_megaphone_28_filled": 62787, - "ic_fluent_megaphone_off_24_filled": 62788, - "ic_fluent_mention_16_filled": 62789, - "ic_fluent_mention_20_filled": 62790, - "ic_fluent_mention_24_filled": 62791, - "ic_fluent_merge_24_filled": 62792, - "ic_fluent_mic_off_12_filled": 62793, - "ic_fluent_mic_off_16_filled": 62794, - "ic_fluent_mic_off_24_filled": 62795, - "ic_fluent_mic_off_28_filled": 62796, - "ic_fluent_mic_settings_24_filled": 62802, - "ic_fluent_midi_20_filled": 62803, - "ic_fluent_midi_24_filled": 62804, - "ic_fluent_mobile_optimized_24_filled": 62807, - "ic_fluent_money_16_filled": 62808, - "ic_fluent_money_20_filled": 62809, - "ic_fluent_money_24_filled": 62810, - "ic_fluent_more_vertical_20_filled": 62816, - "ic_fluent_more_vertical_24_filled": 62817, - "ic_fluent_more_vertical_28_filled": 62818, - "ic_fluent_more_vertical_48_filled": 62819, - "ic_fluent_movies_and_tv_24_filled": 62820, - "ic_fluent_my_location_24_filled": 62825, - "ic_fluent_navigation_20_filled": 62826, - "ic_fluent_navigation_24_filled": 62827, - "ic_fluent_network_check_24_filled": 62828, - "ic_fluent_new_16_filled": 62829, - "ic_fluent_new_24_filled": 62830, - "ic_fluent_news_20_filled": 62831, - "ic_fluent_news_24_filled": 62832, - "ic_fluent_news_28_filled": 62833, - "ic_fluent_next_16_filled": 62834, - "ic_fluent_next_20_filled": 62835, - "ic_fluent_next_24_filled": 62836, - "ic_fluent_note_20_filled": 62837, - "ic_fluent_note_24_filled": 62838, - "ic_fluent_note_add_16_filled": 62839, - "ic_fluent_note_add_20_filled": 62840, - "ic_fluent_note_add_24_filled": 62841, - "ic_fluent_notebook_24_filled": 62842, - "ic_fluent_notebook_error_24_filled": 62843, - "ic_fluent_notebook_lightning_24_filled": 62844, - "ic_fluent_notebook_question_mark_24_filled": 62845, - "ic_fluent_notebook_section_24_filled": 62846, - "ic_fluent_notebook_sync_24_filled": 62847, - "ic_fluent_notepad_20_filled": 62848, - "ic_fluent_notepad_24_filled": 62849, - "ic_fluent_notepad_28_filled": 62850, - "ic_fluent_number_row_16_filled": 62851, - "ic_fluent_number_row_20_filled": 62852, - "ic_fluent_number_row_24_filled": 62853, - "ic_fluent_number_symbol_16_filled": 62854, - "ic_fluent_number_symbol_20_filled": 62855, - "ic_fluent_number_symbol_24_filled": 62856, - "ic_fluent_open_16_filled": 62859, - "ic_fluent_open_20_filled": 62860, - "ic_fluent_open_24_filled": 62861, - "ic_fluent_open_folder_24_filled": 62862, - "ic_fluent_options_16_filled": 62864, - "ic_fluent_options_20_filled": 62865, - "ic_fluent_options_24_filled": 62866, - "ic_fluent_organization_20_filled": 62867, - "ic_fluent_organization_24_filled": 62868, - "ic_fluent_organization_28_filled": 62869, - "ic_fluent_page_fit_16_filled": 62872, - "ic_fluent_page_fit_20_filled": 62873, - "ic_fluent_page_fit_24_filled": 62874, - "ic_fluent_paint_brush_16_filled": 62875, - "ic_fluent_paint_brush_20_filled": 62876, - "ic_fluent_paint_brush_24_filled": 62877, - "ic_fluent_paint_bucket_16_filled": 62878, - "ic_fluent_paint_bucket_20_filled": 62879, - "ic_fluent_paint_bucket_24_filled": 62880, - "ic_fluent_pair_24_filled": 62881, - "ic_fluent_password_24_filled": 62888, - "ic_fluent_patient_24_filled": 62889, - "ic_fluent_pause_16_filled": 62890, - "ic_fluent_pause_20_filled": 62891, - "ic_fluent_pause_24_filled": 62892, - "ic_fluent_pause_48_filled": 62893, - "ic_fluent_payment_20_filled": 62894, - "ic_fluent_payment_24_filled": 62895, - "ic_fluent_people_16_filled": 62897, - "ic_fluent_people_20_filled": 62898, - "ic_fluent_people_24_filled": 62899, - "ic_fluent_people_28_filled": 62900, - "ic_fluent_people_add_16_filled": 62901, - "ic_fluent_people_add_20_filled": 62902, - "ic_fluent_people_add_24_filled": 62903, - "ic_fluent_people_audience_24_filled": 62904, - "ic_fluent_people_community_16_filled": 62905, - "ic_fluent_people_community_20_filled": 62906, - "ic_fluent_people_community_24_filled": 62907, - "ic_fluent_people_community_28_filled": 62908, - "ic_fluent_people_community_add_24_filled": 62909, - "ic_fluent_people_prohibited_20_filled": 62910, - "ic_fluent_people_search_24_filled": 62911, - "ic_fluent_people_settings_20_filled": 62912, - "ic_fluent_people_team_16_filled": 62913, - "ic_fluent_people_team_20_filled": 62914, - "ic_fluent_people_team_24_filled": 62915, - "ic_fluent_people_team_28_filled": 62916, - "ic_fluent_person_12_filled": 62917, - "ic_fluent_person_16_filled": 62918, - "ic_fluent_person_20_filled": 62919, - "ic_fluent_person_24_filled": 62920, - "ic_fluent_person_28_filled": 62921, - "ic_fluent_person_48_filled": 62922, - "ic_fluent_person_accounts_24_filled": 62923, - "ic_fluent_person_add_20_filled": 62924, - "ic_fluent_person_add_24_filled": 62925, - "ic_fluent_person_arrow_left_20_filled": 62926, - "ic_fluent_person_arrow_left_24_filled": 62927, - "ic_fluent_person_arrow_right_16_filled": 62928, - "ic_fluent_person_arrow_right_20_filled": 62929, - "ic_fluent_person_arrow_right_24_filled": 62930, - "ic_fluent_person_available_16_filled": 62931, - "ic_fluent_person_available_24_filled": 62932, - "ic_fluent_person_board_16_filled": 62934, - "ic_fluent_person_board_20_filled": 62935, - "ic_fluent_person_board_24_filled": 62936, - "ic_fluent_person_call_24_filled": 62937, - "ic_fluent_person_delete_16_filled": 62938, - "ic_fluent_person_delete_24_filled": 62939, - "ic_fluent_person_feedback_20_filled": 62940, - "ic_fluent_person_feedback_24_filled": 62941, - "ic_fluent_person_prohibited_20_filled": 62942, - "ic_fluent_person_question_mark_16_filled": 62943, - "ic_fluent_person_question_mark_20_filled": 62944, - "ic_fluent_person_question_mark_24_filled": 62945, - "ic_fluent_person_support_16_filled": 62946, - "ic_fluent_person_support_20_filled": 62947, - "ic_fluent_person_support_24_filled": 62948, - "ic_fluent_person_swap_16_filled": 62949, - "ic_fluent_person_swap_20_filled": 62950, - "ic_fluent_person_swap_24_filled": 62951, - "ic_fluent_person_voice_20_filled": 62952, - "ic_fluent_person_voice_24_filled": 62953, - "ic_fluent_phone_20_filled": 62954, - "ic_fluent_phone_24_filled": 62955, - "ic_fluent_phone_desktop_16_filled": 62958, - "ic_fluent_phone_desktop_20_filled": 62959, - "ic_fluent_phone_desktop_24_filled": 62960, - "ic_fluent_phone_desktop_28_filled": 62961, - "ic_fluent_phone_laptop_20_filled": 62964, - "ic_fluent_phone_laptop_24_filled": 62965, - "ic_fluent_phone_link_setup_24_filled": 62966, - "ic_fluent_phone_page_header_24_filled": 62969, - "ic_fluent_phone_pagination_24_filled": 62970, - "ic_fluent_phone_screen_time_24_filled": 62971, - "ic_fluent_phone_shake_24_filled": 62972, - "ic_fluent_phone_status_bar_24_filled": 62973, - "ic_fluent_phone_tablet_20_filled": 62974, - "ic_fluent_phone_tablet_24_filled": 62975, - "ic_fluent_phone_update_24_filled": 62978, - "ic_fluent_phone_vertical_scroll_24_filled": 62979, - "ic_fluent_phone_vibrate_24_filled": 62980, - "ic_fluent_photo_filter_24_filled": 62981, - "ic_fluent_picture_in_picture_16_filled": 62982, - "ic_fluent_picture_in_picture_20_filled": 62983, - "ic_fluent_picture_in_picture_24_filled": 62984, - "ic_fluent_pin_12_filled": 62985, - "ic_fluent_pin_16_filled": 62986, - "ic_fluent_pin_20_filled": 62987, - "ic_fluent_pin_24_filled": 62988, - "ic_fluent_pin_off_20_filled": 62989, - "ic_fluent_pin_off_24_filled": 62990, - "ic_fluent_play_20_filled": 62991, - "ic_fluent_play_24_filled": 62992, - "ic_fluent_play_48_filled": 62993, - "ic_fluent_play_circle_24_filled": 62994, - "ic_fluent_plug_disconnected_20_filled": 62995, - "ic_fluent_plug_disconnected_24_filled": 62996, - "ic_fluent_plug_disconnected_28_filled": 62997, - "ic_fluent_point_scan_24_filled": 62998, - "ic_fluent_poll_24_filled": 62999, - "ic_fluent_power_20_filled": 63000, - "ic_fluent_power_24_filled": 63001, - "ic_fluent_power_28_filled": 63002, - "ic_fluent_predictions_24_filled": 63003, - "ic_fluent_premium_16_filled": 63004, - "ic_fluent_premium_20_filled": 63005, - "ic_fluent_premium_24_filled": 63006, - "ic_fluent_premium_28_filled": 63007, - "ic_fluent_presence_available_10_filled": 63008, - "ic_fluent_presence_available_12_filled": 63009, - "ic_fluent_presence_available_16_filled": 63010, - "ic_fluent_presence_away_10_filled": 63011, - "ic_fluent_presence_away_12_filled": 63012, - "ic_fluent_presence_away_16_filled": 63013, - "ic_fluent_presence_busy_10_filled": 63014, - "ic_fluent_presence_busy_12_filled": 63015, - "ic_fluent_presence_busy_16_filled": 63016, - "ic_fluent_presence_dnd_10_filled": 63017, - "ic_fluent_presence_dnd_12_filled": 63018, - "ic_fluent_presence_dnd_16_filled": 63019, - "ic_fluent_presenter_24_filled": 63020, - "ic_fluent_presenter_off_24_filled": 63021, - "ic_fluent_preview_link_16_filled": 63022, - "ic_fluent_preview_link_20_filled": 63023, - "ic_fluent_preview_link_24_filled": 63024, - "ic_fluent_previous_16_filled": 63025, - "ic_fluent_previous_20_filled": 63026, - "ic_fluent_previous_24_filled": 63027, - "ic_fluent_print_20_filled": 63028, - "ic_fluent_print_24_filled": 63029, - "ic_fluent_print_48_filled": 63030, - "ic_fluent_prohibited_20_filled": 63031, - "ic_fluent_prohibited_24_filled": 63032, - "ic_fluent_prohibited_28_filled": 63033, - "ic_fluent_prohibited_48_filled": 63034, - "ic_fluent_protocol_handler_16_filled": 63036, - "ic_fluent_protocol_handler_20_filled": 63037, - "ic_fluent_protocol_handler_24_filled": 63038, - "ic_fluent_qr_code_24_filled": 63039, - "ic_fluent_qr_code_28_filled": 63040, - "ic_fluent_question_16_filled": 63041, - "ic_fluent_question_20_filled": 63042, - "ic_fluent_question_24_filled": 63043, - "ic_fluent_question_28_filled": 63044, - "ic_fluent_question_48_filled": 63045, - "ic_fluent_question_circle_16_filled": 63046, - "ic_fluent_question_circle_20_filled": 63047, - "ic_fluent_question_circle_24_filled": 63048, - "ic_fluent_question_circle_28_filled": 63049, - "ic_fluent_question_circle_48_filled": 63050, - "ic_fluent_quiz_new_24_filled": 63051, - "ic_fluent_quiz_new_28_filled": 63052, - "ic_fluent_quiz_new_48_filled": 63053, - "ic_fluent_radio_button_20_filled": 63054, - "ic_fluent_radio_button_24_filled": 63055, - "ic_fluent_rating_mature_16_filled": 63056, - "ic_fluent_rating_mature_20_filled": 63057, - "ic_fluent_rating_mature_24_filled": 63058, - "ic_fluent_re_order_16_filled": 63059, - "ic_fluent_re_order_24_filled": 63060, - "ic_fluent_read_aloud_20_filled": 63063, - "ic_fluent_read_aloud_24_filled": 63064, - "ic_fluent_reading_list_16_filled": 63067, - "ic_fluent_reading_list_20_filled": 63068, - "ic_fluent_reading_list_24_filled": 63069, - "ic_fluent_reading_list_28_filled": 63070, - "ic_fluent_reading_list_add_16_filled": 63071, - "ic_fluent_reading_list_add_20_filled": 63072, - "ic_fluent_reading_list_add_24_filled": 63073, - "ic_fluent_reading_list_add_28_filled": 63074, - "ic_fluent_reading_mode_mobile_20_filled": 63077, - "ic_fluent_reading_mode_mobile_24_filled": 63078, - "ic_fluent_record_16_filled": 63082, - "ic_fluent_record_20_filled": 63083, - "ic_fluent_record_24_filled": 63084, - "ic_fluent_rename_16_filled": 63090, - "ic_fluent_rename_20_filled": 63091, - "ic_fluent_rename_24_filled": 63092, - "ic_fluent_rename_28_filled": 63093, - "ic_fluent_resize_20_filled": 63094, - "ic_fluent_resize_image_24_filled": 63095, - "ic_fluent_resize_table_24_filled": 63096, - "ic_fluent_resize_video_24_filled": 63097, - "ic_fluent_reward_16_filled": 63099, - "ic_fluent_reward_20_filled": 63100, - "ic_fluent_reward_24_filled": 63101, - "ic_fluent_rewind_20_filled": 63102, - "ic_fluent_rewind_24_filled": 63103, - "ic_fluent_rocket_16_filled": 63104, - "ic_fluent_rocket_20_filled": 63105, - "ic_fluent_rocket_24_filled": 63106, - "ic_fluent_router_24_filled": 63107, - "ic_fluent_row_triple_24_filled": 63108, - "ic_fluent_ruler_16_filled": 63109, - "ic_fluent_ruler_20_filled": 63110, - "ic_fluent_ruler_24_filled": 63111, - "ic_fluent_run_24_filled": 63112, - "ic_fluent_save_20_filled": 63113, - "ic_fluent_save_24_filled": 63114, - "ic_fluent_save_copy_24_filled": 63117, - "ic_fluent_savings_16_filled": 63118, - "ic_fluent_savings_20_filled": 63119, - "ic_fluent_savings_24_filled": 63120, - "ic_fluent_scale_fill_24_filled": 63121, - "ic_fluent_scale_fit_16_filled": 63122, - "ic_fluent_scale_fit_20_filled": 63123, - "ic_fluent_scale_fit_24_filled": 63124, - "ic_fluent_scan_24_filled": 63125, - "ic_fluent_scratchpad_24_filled": 63126, - "ic_fluent_screenshot_20_filled": 63127, - "ic_fluent_screenshot_24_filled": 63128, - "ic_fluent_search_20_filled": 63129, - "ic_fluent_search_24_filled": 63130, - "ic_fluent_search_28_filled": 63131, - "ic_fluent_search_info_24_filled": 63132, - "ic_fluent_search_square_24_filled": 63133, - "ic_fluent_select_all_off_24_filled": 63135, - "ic_fluent_select_object_20_filled": 63136, - "ic_fluent_select_object_24_filled": 63137, - "ic_fluent_send_20_filled": 63138, - "ic_fluent_send_24_filled": 63139, - "ic_fluent_send_28_filled": 63140, - "ic_fluent_send_clock_20_filled": 63141, - "ic_fluent_send_copy_24_filled": 63142, - "ic_fluent_serial_port_16_filled": 63146, - "ic_fluent_serial_port_20_filled": 63147, - "ic_fluent_serial_port_24_filled": 63148, - "ic_fluent_service_bell_24_filled": 63149, - "ic_fluent_settings_16_filled": 63153, - "ic_fluent_settings_20_filled": 63154, - "ic_fluent_settings_24_filled": 63155, - "ic_fluent_settings_28_filled": 63156, - "ic_fluent_shapes_16_filled": 63157, - "ic_fluent_shapes_20_filled": 63158, - "ic_fluent_shapes_24_filled": 63159, - "ic_fluent_share_20_filled": 63160, - "ic_fluent_share_24_filled": 63161, - "ic_fluent_share_android_20_filled": 63162, - "ic_fluent_share_android_24_filled": 63163, - "ic_fluent_share_close_tray_24_filled": 63164, - "ic_fluent_share_ios_20_filled": 63166, - "ic_fluent_share_ios_24_filled": 63167, - "ic_fluent_share_ios_28_filled": 63168, - "ic_fluent_share_ios_48_filled": 63169, - "ic_fluent_shield_20_filled": 63175, - "ic_fluent_shield_24_filled": 63176, - "ic_fluent_shield_dismiss_20_filled": 63177, - "ic_fluent_shield_dismiss_24_filled": 63178, - "ic_fluent_shield_error_20_filled": 63179, - "ic_fluent_shield_error_24_filled": 63180, - "ic_fluent_shield_keyhole_16_filled": 63181, - "ic_fluent_shield_keyhole_20_filled": 63182, - "ic_fluent_shield_keyhole_24_filled": 63183, - "ic_fluent_shield_prohibited_20_filled": 63184, - "ic_fluent_shield_prohibited_24_filled": 63185, - "ic_fluent_shifts_24_filled": 63186, - "ic_fluent_shifts_28_filled": 63189, - "ic_fluent_shifts_30_minutes_24_filled": 63190, - "ic_fluent_shifts_activity_20_filled": 63191, - "ic_fluent_shifts_activity_24_filled": 63192, - "ic_fluent_shifts_add_24_filled": 63193, - "ic_fluent_shifts_availability_24_filled": 63195, - "ic_fluent_shifts_open_20_filled": 63197, - "ic_fluent_shifts_open_24_filled": 63198, - "ic_fluent_shifts_team_24_filled": 63200, - "ic_fluent_sign_out_24_filled": 63203, - "ic_fluent_signature_16_filled": 63204, - "ic_fluent_signature_20_filled": 63205, - "ic_fluent_signature_24_filled": 63206, - "ic_fluent_signature_28_filled": 63207, - "ic_fluent_sim_16_filled": 63211, - "ic_fluent_sim_20_filled": 63212, - "ic_fluent_sim_24_filled": 63213, - "ic_fluent_sleep_24_filled": 63214, - "ic_fluent_slide_add_24_filled": 63215, - "ic_fluent_slide_hide_24_filled": 63217, - "ic_fluent_slide_layout_20_filled": 63218, - "ic_fluent_slide_layout_24_filled": 63219, - "ic_fluent_slide_microphone_24_filled": 63220, - "ic_fluent_slide_text_24_filled": 63221, - "ic_fluent_snooze_16_filled": 63229, - "ic_fluent_snooze_24_filled": 63230, - "ic_fluent_sound_source_24_filled": 63231, - "ic_fluent_sound_source_28_filled": 63232, - "ic_fluent_spacebar_24_filled": 63233, - "ic_fluent_speaker_0_24_filled": 63234, - "ic_fluent_speaker_1_24_filled": 63236, - "ic_fluent_speaker_bluetooth_24_filled": 63240, - "ic_fluent_speaker_edit_16_filled": 63241, - "ic_fluent_speaker_edit_20_filled": 63242, - "ic_fluent_speaker_edit_24_filled": 63243, - "ic_fluent_speaker_off_24_filled": 63247, - "ic_fluent_speaker_off_28_filled": 63248, - "ic_fluent_speaker_settings_24_filled": 63249, - "ic_fluent_spinner_ios_20_filled": 63250, - "ic_fluent_star_12_filled": 63254, - "ic_fluent_star_16_filled": 63255, - "ic_fluent_star_20_filled": 63256, - "ic_fluent_star_24_filled": 63257, - "ic_fluent_star_28_filled": 63258, - "ic_fluent_star_add_16_filled": 63259, - "ic_fluent_star_add_20_filled": 63260, - "ic_fluent_star_add_24_filled": 63261, - "ic_fluent_star_arrow_right_start_24_filled": 63263, - "ic_fluent_star_emphasis_24_filled": 63264, - "ic_fluent_star_half_12_filled": 63265, - "ic_fluent_star_half_16_filled": 63266, - "ic_fluent_star_half_20_filled": 63267, - "ic_fluent_star_half_24_filled": 63268, - "ic_fluent_star_half_28_filled": 63269, - "ic_fluent_star_off_12_filled": 63270, - "ic_fluent_star_off_16_filled": 63271, - "ic_fluent_star_off_20_filled": 63272, - "ic_fluent_star_off_24_filled": 63273, - "ic_fluent_star_off_28_filled": 63274, - "ic_fluent_star_one_quarter_12_filled": 63275, - "ic_fluent_star_one_quarter_16_filled": 63276, - "ic_fluent_star_one_quarter_20_filled": 63277, - "ic_fluent_star_one_quarter_24_filled": 63278, - "ic_fluent_star_one_quarter_28_filled": 63279, - "ic_fluent_star_prohibited_16_filled": 63280, - "ic_fluent_star_prohibited_20_filled": 63281, - "ic_fluent_star_prohibited_24_filled": 63282, - "ic_fluent_star_settings_24_filled": 63283, - "ic_fluent_star_three_quarter_12_filled": 63284, - "ic_fluent_star_three_quarter_16_filled": 63285, - "ic_fluent_star_three_quarter_20_filled": 63286, - "ic_fluent_star_three_quarter_24_filled": 63287, - "ic_fluent_star_three_quarter_28_filled": 63288, - "ic_fluent_status_16_filled": 63289, - "ic_fluent_status_20_filled": 63290, - "ic_fluent_status_24_filled": 63291, - "ic_fluent_stethoscope_20_filled": 63292, - "ic_fluent_stethoscope_24_filled": 63293, - "ic_fluent_sticker_20_filled": 63294, - "ic_fluent_sticker_24_filled": 63295, - "ic_fluent_sticker_add_24_filled": 63296, - "ic_fluent_stop_16_filled": 63297, - "ic_fluent_stop_20_filled": 63298, - "ic_fluent_stop_24_filled": 63299, - "ic_fluent_storage_24_filled": 63300, - "ic_fluent_store_microsoft_16_filled": 63304, - "ic_fluent_store_microsoft_20_filled": 63305, - "ic_fluent_store_microsoft_24_filled": 63306, - "ic_fluent_style_guide_24_filled": 63307, - "ic_fluent_sub_grid_24_filled": 63308, - "ic_fluent_surface_earbuds_20_filled": 63312, - "ic_fluent_surface_earbuds_24_filled": 63313, - "ic_fluent_surface_hub_20_filled": 63314, - "ic_fluent_surface_hub_24_filled": 63315, - "ic_fluent_swipe_down_24_filled": 63316, - "ic_fluent_swipe_right_24_filled": 63317, - "ic_fluent_swipe_up_24_filled": 63318, - "ic_fluent_symbols_24_filled": 63319, - "ic_fluent_sync_off_16_filled": 63320, - "ic_fluent_sync_off_20_filled": 63321, - "ic_fluent_system_24_filled": 63322, - "ic_fluent_tab_16_filled": 63323, - "ic_fluent_tab_20_filled": 63324, - "ic_fluent_tab_24_filled": 63325, - "ic_fluent_tab_28_filled": 63326, - "ic_fluent_tab_desktop_20_filled": 63327, - "ic_fluent_tab_desktop_arrow_clockwise_16_filled": 63328, - "ic_fluent_tab_desktop_arrow_clockwise_20_filled": 63329, - "ic_fluent_tab_desktop_arrow_clockwise_24_filled": 63330, - "ic_fluent_tab_desktop_clock_20_filled": 63331, - "ic_fluent_tab_desktop_copy_20_filled": 63332, - "ic_fluent_tab_desktop_image_16_filled": 63333, - "ic_fluent_tab_desktop_image_20_filled": 63334, - "ic_fluent_tab_desktop_image_24_filled": 63335, - "ic_fluent_tab_desktop_multiple_20_filled": 63336, - "ic_fluent_tab_desktop_new_page_20_filled": 63337, - "ic_fluent_tab_in_private_16_filled": 63338, - "ic_fluent_tab_in_private_20_filled": 63339, - "ic_fluent_tab_in_private_24_filled": 63340, - "ic_fluent_tab_in_private_28_filled": 63341, - "ic_fluent_tab_inprivate_account_20_filled": 63342, - "ic_fluent_tab_inprivate_account_24_filled": 63343, - "ic_fluent_table_20_filled": 63349, - "ic_fluent_table_24_filled": 63350, - "ic_fluent_table_add_24_filled": 63351, - "ic_fluent_table_cells_merge_20_filled": 63352, - "ic_fluent_table_cells_merge_24_filled": 63353, - "ic_fluent_table_cells_split_20_filled": 63354, - "ic_fluent_table_cells_split_24_filled": 63355, - "ic_fluent_table_edit_24_filled": 63360, - "ic_fluent_table_freeze_column_24_filled": 63362, - "ic_fluent_table_freeze_row_24_filled": 63363, - "ic_fluent_table_move_left_24_filled": 63369, - "ic_fluent_table_move_right_24_filled": 63370, - "ic_fluent_table_settings_24_filled": 63375, - "ic_fluent_table_switch_24_filled": 63376, - "ic_fluent_tablet_20_filled": 63377, - "ic_fluent_tablet_24_filled": 63378, - "ic_fluent_tabs_24_filled": 63379, - "ic_fluent_tag_20_filled": 63380, - "ic_fluent_tag_24_filled": 63381, - "ic_fluent_tap_double_24_filled": 63382, - "ic_fluent_tap_single_24_filled": 63383, - "ic_fluent_target_16_filled": 63384, - "ic_fluent_target_20_filled": 63385, - "ic_fluent_target_24_filled": 63386, - "ic_fluent_target_edit_16_filled": 63387, - "ic_fluent_target_edit_20_filled": 63388, - "ic_fluent_target_edit_24_filled": 63389, - "ic_fluent_task_list_add_20_filled": 63392, - "ic_fluent_task_list_add_24_filled": 63393, - "ic_fluent_tasks_app_24_filled": 63394, - "ic_fluent_tasks_app_28_filled": 63395, - "ic_fluent_teddy_24_filled": 63398, - "ic_fluent_temperature_20_filled": 63399, - "ic_fluent_temperature_24_filled": 63400, - "ic_fluent_tent_24_filled": 63401, - "ic_fluent_text_add_space_after_20_filled": 63405, - "ic_fluent_text_add_space_after_24_filled": 63406, - "ic_fluent_text_add_space_before_20_filled": 63407, - "ic_fluent_text_add_space_before_24_filled": 63408, - "ic_fluent_text_align_center_20_filled": 63409, - "ic_fluent_text_align_center_24_filled": 63410, - "ic_fluent_text_align_distributed_20_filled": 63411, - "ic_fluent_text_align_distributed_24_filled": 63412, - "ic_fluent_text_align_justify_20_filled": 63413, - "ic_fluent_text_align_justify_24_filled": 63414, - "ic_fluent_text_align_left_20_filled": 63415, - "ic_fluent_text_align_left_24_filled": 63416, - "ic_fluent_text_align_right_20_filled": 63417, - "ic_fluent_text_align_right_24_filled": 63418, - "ic_fluent_text_asterisk_20_filled": 63419, - "ic_fluent_text_bold_20_filled": 63420, - "ic_fluent_text_bold_24_filled": 63421, - "ic_fluent_text_bullet_list_add_24_filled": 63424, - "ic_fluent_text_bullet_list_square_24_filled": 63425, - "ic_fluent_text_bullet_list_square_warning_16_filled": 63426, - "ic_fluent_text_bullet_list_square_warning_20_filled": 63427, - "ic_fluent_text_bullet_list_square_warning_24_filled": 63428, - "ic_fluent_text_bullet_list_tree_16_filled": 63429, - "ic_fluent_text_bullet_list_tree_20_filled": 63430, - "ic_fluent_text_bullet_list_tree_24_filled": 63431, - "ic_fluent_text_change_case_20_filled": 63434, - "ic_fluent_text_change_case_24_filled": 63435, - "ic_fluent_text_clear_formatting_20_filled": 63444, - "ic_fluent_text_clear_formatting_24_filled": 63445, - "ic_fluent_text_collapse_24_filled": 63446, - "ic_fluent_text_color_20_filled": 63447, - "ic_fluent_text_color_24_filled": 63448, - "ic_fluent_text_column_one_20_filled": 63449, - "ic_fluent_text_column_one_24_filled": 63450, - "ic_fluent_text_column_three_20_filled": 63451, - "ic_fluent_text_column_three_24_filled": 63452, - "ic_fluent_text_column_two_20_filled": 63453, - "ic_fluent_text_column_two_24_filled": 63454, - "ic_fluent_text_column_two_left_20_filled": 63455, - "ic_fluent_text_column_two_left_24_filled": 63456, - "ic_fluent_text_column_two_right_20_filled": 63457, - "ic_fluent_text_column_two_right_24_filled": 63458, - "ic_fluent_text_description_20_filled": 63459, - "ic_fluent_text_description_24_filled": 63460, - "ic_fluent_text_direction_vertical_20_filled": 63471, - "ic_fluent_text_direction_vertical_24_filled": 63472, - "ic_fluent_text_edit_style_20_filled": 63473, - "ic_fluent_text_edit_style_24_filled": 63474, - "ic_fluent_text_effects_20_filled": 63475, - "ic_fluent_text_effects_24_filled": 63476, - "ic_fluent_text_expand_24_filled": 63477, - "ic_fluent_text_field_16_filled": 63478, - "ic_fluent_text_field_20_filled": 63479, - "ic_fluent_text_field_24_filled": 63480, - "ic_fluent_text_first_line_20_filled": 63481, - "ic_fluent_text_first_line_24_filled": 63482, - "ic_fluent_text_font_16_filled": 63483, - "ic_fluent_text_font_20_filled": 63484, - "ic_fluent_text_font_24_filled": 63485, - "ic_fluent_text_font_size_20_filled": 63486, - "ic_fluent_text_font_size_24_filled": 63487, - "ic_fluent_text_footnote_20_filled": 63488, - "ic_fluent_text_footnote_24_filled": 63489, - "ic_fluent_text_hanging_20_filled": 63493, - "ic_fluent_text_hanging_24_filled": 63494, - "ic_fluent_text_header_1_20_filled": 63495, - "ic_fluent_text_header_2_20_filled": 63496, - "ic_fluent_text_header_3_20_filled": 63497, - "ic_fluent_text_italic_20_filled": 63500, - "ic_fluent_text_italic_24_filled": 63501, - "ic_fluent_text_line_spacing_20_filled": 63502, - "ic_fluent_text_line_spacing_24_filled": 63503, - "ic_fluent_text_number_format_20_filled": 63504, - "ic_fluent_text_number_format_24_filled": 63505, - "ic_fluent_text_number_list_ltr_20_filled": 63506, - "ic_fluent_text_number_list_ltr_24_filled": 63507, - "ic_fluent_text_number_list_rtl_24_filled": 63508, - "ic_fluent_text_proofing_tools_20_filled": 63511, - "ic_fluent_text_proofing_tools_24_filled": 63512, - "ic_fluent_text_quote_20_filled": 63513, - "ic_fluent_text_quote_24_filled": 63514, - "ic_fluent_text_sort_ascending_20_filled": 63515, - "ic_fluent_text_sort_descending_20_filled": 63516, - "ic_fluent_text_subscript_20_filled": 63519, - "ic_fluent_text_subscript_24_filled": 63520, - "ic_fluent_text_superscript_20_filled": 63521, - "ic_fluent_text_superscript_24_filled": 63522, - "ic_fluent_text_underline_20_filled": 63523, - "ic_fluent_text_underline_24_filled": 63524, - "ic_fluent_text_word_count_20_filled": 63525, - "ic_fluent_text_word_count_24_filled": 63526, - "ic_fluent_text_wrap_24_filled": 63527, - "ic_fluent_textbox_20_filled": 63528, - "ic_fluent_textbox_24_filled": 63529, - "ic_fluent_textbox_align_bottom_20_filled": 63532, - "ic_fluent_textbox_align_bottom_24_filled": 63533, - "ic_fluent_textbox_align_middle_20_filled": 63534, - "ic_fluent_textbox_align_middle_24_filled": 63535, - "ic_fluent_textbox_align_top_20_filled": 63536, - "ic_fluent_textbox_align_top_24_filled": 63537, - "ic_fluent_thinking_20_filled": 63540, - "ic_fluent_thinking_24_filled": 63541, - "ic_fluent_thumb_dislike_20_filled": 63542, - "ic_fluent_thumb_dislike_24_filled": 63543, - "ic_fluent_thumb_like_20_filled": 63544, - "ic_fluent_thumb_like_24_filled": 63545, - "ic_fluent_time_and_weather_24_filled": 63548, - "ic_fluent_time_picker_24_filled": 63549, - "ic_fluent_timeline_24_filled": 63550, - "ic_fluent_timer_10_24_filled": 63551, - "ic_fluent_timer_24_filled": 63552, - "ic_fluent_timer_2_24_filled": 63553, - "ic_fluent_timer_off_24_filled": 63554, - "ic_fluent_toggle_right_16_filled": 63555, - "ic_fluent_toggle_right_20_filled": 63556, - "ic_fluent_toggle_right_24_filled": 63557, - "ic_fluent_toolbox_16_filled": 63558, - "ic_fluent_toolbox_20_filled": 63559, - "ic_fluent_toolbox_24_filled": 63560, - "ic_fluent_toolbox_28_filled": 63561, - "ic_fluent_top_speed_24_filled": 63562, - "ic_fluent_translate_20_filled": 63563, - "ic_fluent_translate_24_filled": 63564, - "ic_fluent_trophy_16_filled": 63565, - "ic_fluent_trophy_20_filled": 63566, - "ic_fluent_trophy_24_filled": 63567, - "ic_fluent_uninstall_app_24_filled": 63568, - "ic_fluent_usb_stick_20_filled": 63575, - "ic_fluent_usb_stick_24_filled": 63576, - "ic_fluent_vault_16_filled": 63577, - "ic_fluent_vault_20_filled": 63578, - "ic_fluent_vault_24_filled": 63579, - "ic_fluent_vehicle_bicycle_24_filled": 63580, - "ic_fluent_vehicle_bus_24_filled": 63581, - "ic_fluent_vehicle_cab_24_filled": 63582, - "ic_fluent_vehicle_car_16_filled": 63583, - "ic_fluent_vehicle_car_20_filled": 63584, - "ic_fluent_vehicle_car_24_filled": 63585, - "ic_fluent_vehicle_truck_24_filled": 63586, - "ic_fluent_video_16_filled": 63587, - "ic_fluent_video_20_filled": 63588, - "ic_fluent_video_24_filled": 63589, - "ic_fluent_video_28_filled": 63590, - "ic_fluent_video_background_effect_24_filled": 63591, - "ic_fluent_video_clip_24_filled": 63592, - "ic_fluent_video_off_20_filled": 63593, - "ic_fluent_video_off_24_filled": 63594, - "ic_fluent_video_off_28_filled": 63595, - "ic_fluent_video_person_24_filled": 63596, - "ic_fluent_video_person_off_24_filled": 63597, - "ic_fluent_video_person_star_24_filled": 63598, - "ic_fluent_video_play_pause_24_filled": 63599, - "ic_fluent_video_security_20_filled": 63600, - "ic_fluent_video_security_24_filled": 63601, - "ic_fluent_video_switch_24_filled": 63602, - "ic_fluent_view_desktop_20_filled": 63603, - "ic_fluent_view_desktop_24_filled": 63604, - "ic_fluent_view_desktop_mobile_20_filled": 63605, - "ic_fluent_view_desktop_mobile_24_filled": 63606, - "ic_fluent_voicemail_16_filled": 63610, - "ic_fluent_voicemail_20_filled": 63611, - "ic_fluent_voicemail_24_filled": 63612, - "ic_fluent_walkie_talkie_24_filled": 63613, - "ic_fluent_walkie_talkie_28_filled": 63614, - "ic_fluent_wallpaper_24_filled": 63615, - "ic_fluent_warning_16_filled": 63616, - "ic_fluent_warning_20_filled": 63617, - "ic_fluent_warning_24_filled": 63618, - "ic_fluent_weather_blowing_snow_20_filled": 63619, - "ic_fluent_weather_blowing_snow_24_filled": 63620, - "ic_fluent_weather_blowing_snow_48_filled": 63621, - "ic_fluent_weather_cloudy_20_filled": 63622, - "ic_fluent_weather_cloudy_24_filled": 63623, - "ic_fluent_weather_cloudy_48_filled": 63624, - "ic_fluent_weather_duststorm_20_filled": 63625, - "ic_fluent_weather_duststorm_24_filled": 63626, - "ic_fluent_weather_duststorm_48_filled": 63627, - "ic_fluent_weather_fog_20_filled": 63628, - "ic_fluent_weather_fog_24_filled": 63629, - "ic_fluent_weather_fog_48_filled": 63630, - "ic_fluent_weather_hail_day_20_filled": 63631, - "ic_fluent_weather_hail_day_24_filled": 63632, - "ic_fluent_weather_hail_day_48_filled": 63633, - "ic_fluent_weather_hail_night_20_filled": 63634, - "ic_fluent_weather_hail_night_24_filled": 63635, - "ic_fluent_weather_hail_night_48_filled": 63636, - "ic_fluent_weather_moon_20_filled": 63637, - "ic_fluent_weather_moon_24_filled": 63638, - "ic_fluent_weather_moon_48_filled": 63639, - "ic_fluent_weather_partly_cloudy_day_20_filled": 63640, - "ic_fluent_weather_partly_cloudy_day_24_filled": 63641, - "ic_fluent_weather_partly_cloudy_day_48_filled": 63642, - "ic_fluent_weather_partly_cloudy_night_20_filled": 63643, - "ic_fluent_weather_partly_cloudy_night_24_filled": 63644, - "ic_fluent_weather_partly_cloudy_night_48_filled": 63645, - "ic_fluent_weather_rain_20_filled": 63646, - "ic_fluent_weather_rain_24_filled": 63647, - "ic_fluent_weather_rain_48_filled": 63648, - "ic_fluent_weather_rain_showers_day_20_filled": 63649, - "ic_fluent_weather_rain_showers_day_24_filled": 63650, - "ic_fluent_weather_rain_showers_day_48_filled": 63651, - "ic_fluent_weather_rain_showers_night_20_filled": 63652, - "ic_fluent_weather_rain_showers_night_24_filled": 63653, - "ic_fluent_weather_rain_showers_night_48_filled": 63654, - "ic_fluent_weather_rain_snow_20_filled": 63655, - "ic_fluent_weather_rain_snow_24_filled": 63656, - "ic_fluent_weather_rain_snow_48_filled": 63657, - "ic_fluent_weather_snow_20_filled": 63658, - "ic_fluent_weather_snow_24_filled": 63659, - "ic_fluent_weather_snow_48_filled": 63660, - "ic_fluent_weather_snow_shower_day_20_filled": 63661, - "ic_fluent_weather_snow_shower_day_24_filled": 63662, - "ic_fluent_weather_snow_shower_day_48_filled": 63663, - "ic_fluent_weather_snow_shower_night_20_filled": 63664, - "ic_fluent_weather_snow_shower_night_24_filled": 63665, - "ic_fluent_weather_snow_shower_night_48_filled": 63666, - "ic_fluent_weather_snowflake_20_filled": 63667, - "ic_fluent_weather_snowflake_24_filled": 63668, - "ic_fluent_weather_snowflake_48_filled": 63669, - "ic_fluent_weather_squalls_20_filled": 63670, - "ic_fluent_weather_squalls_24_filled": 63671, - "ic_fluent_weather_squalls_48_filled": 63672, - "ic_fluent_weather_sunny_20_filled": 63673, - "ic_fluent_weather_sunny_24_filled": 63674, - "ic_fluent_weather_sunny_48_filled": 63675, - "ic_fluent_weather_thunderstorm_20_filled": 63676, - "ic_fluent_weather_thunderstorm_24_filled": 63677, - "ic_fluent_weather_thunderstorm_48_filled": 63678, - "ic_fluent_web_asset_24_filled": 63679, - "ic_fluent_whiteboard_20_filled": 63682, - "ic_fluent_whiteboard_24_filled": 63683, - "ic_fluent_wifi_1_20_filled": 63684, - "ic_fluent_wifi_1_24_filled": 63685, - "ic_fluent_wifi_2_20_filled": 63686, - "ic_fluent_wifi_2_24_filled": 63687, - "ic_fluent_wifi_3_20_filled": 63688, - "ic_fluent_wifi_3_24_filled": 63689, - "ic_fluent_wifi_4_20_filled": 63690, - "ic_fluent_wifi_4_24_filled": 63691, - "ic_fluent_window_20_filled": 63693, - "ic_fluent_window_ad_20_filled": 63694, - "ic_fluent_window_dev_tools_16_filled": 63695, - "ic_fluent_window_dev_tools_20_filled": 63696, - "ic_fluent_window_dev_tools_24_filled": 63697, - "ic_fluent_window_inprivate_20_filled": 63698, - "ic_fluent_window_inprivate_account_20_filled": 63699, - "ic_fluent_window_multiple_20_filled": 63700, - "ic_fluent_window_new_20_filled": 63701, - "ic_fluent_window_shield_16_filled": 63702, - "ic_fluent_window_shield_20_filled": 63703, - "ic_fluent_window_shield_24_filled": 63704, - "ic_fluent_wrench_24_filled": 63705, - "ic_fluent_xbox_console_20_filled": 63706, - "ic_fluent_xbox_console_24_filled": 63707, - "ic_fluent_zoom_in_20_filled": 63708, - "ic_fluent_zoom_in_24_filled": 63709, - "ic_fluent_zoom_out_20_filled": 63710, - "ic_fluent_zoom_out_24_filled": 63711, - "ic_fluent_calendar_checkmark_24_filled": 63713, - "ic_fluent_add_square_24_filled": 63714, - "ic_fluent_apps_list_20_filled": 63715, - "ic_fluent_archive_16_filled": 63716, - "ic_fluent_arrow_autofit_height_24_filled": 63717, - "ic_fluent_arrow_autofit_width_24_filled": 63718, - "ic_fluent_arrow_counterclockwise_28_filled": 63719, - "ic_fluent_arrow_down_12_filled": 63720, - "ic_fluent_arrow_down_left_16_filled": 63721, - "ic_fluent_arrow_export_rtl_20_filled": 63722, - "ic_fluent_arrow_hook_down_left_16_filled": 63725, - "ic_fluent_arrow_hook_down_left_20_filled": 63726, - "ic_fluent_arrow_hook_down_left_24_filled": 63727, - "ic_fluent_arrow_hook_down_left_28_filled": 63728, - "ic_fluent_arrow_hook_down_right_16_filled": 63729, - "ic_fluent_arrow_hook_down_right_20_filled": 63730, - "ic_fluent_arrow_hook_down_right_24_filled": 63731, - "ic_fluent_arrow_hook_down_right_28_filled": 63732, - "ic_fluent_arrow_hook_up_left_16_filled": 63733, - "ic_fluent_arrow_hook_up_left_20_filled": 63734, - "ic_fluent_arrow_hook_up_left_24_filled": 63735, - "ic_fluent_arrow_hook_up_left_28_filled": 63736, - "ic_fluent_arrow_hook_up_right_16_filled": 63737, - "ic_fluent_arrow_hook_up_right_20_filled": 63738, - "ic_fluent_arrow_hook_up_right_24_filled": 63739, - "ic_fluent_arrow_hook_up_right_28_filled": 63740, - "ic_fluent_arrow_move_20_filled": 63741, - "ic_fluent_arrow_redo_32_filled": 63742, - "ic_fluent_arrow_redo_48_filled": 63743, - "ic_fluent_arrow_up_right_16_filled": 57646, - "ic_fluent_attach_arrow_right_20_filled": 57655, - "ic_fluent_attach_arrow_right_24_filled": 57656, - "ic_fluent_attach_text_24_filled": 57658, - "ic_fluent_backpack_12_filled": 57664, - "ic_fluent_backpack_16_filled": 57665, - "ic_fluent_backpack_20_filled": 57666, - "ic_fluent_backpack_24_filled": 57667, - "ic_fluent_backpack_28_filled": 57668, - "ic_fluent_backpack_48_filled": 57670, - "ic_fluent_balloon_16_filled": 57677, - "ic_fluent_bed_16_filled": 57689, - "ic_fluent_bluetooth_28_filled": 57694, - "ic_fluent_blur_16_filled": 57698, - "ic_fluent_blur_20_filled": 57699, - "ic_fluent_blur_24_filled": 57700, - "ic_fluent_blur_28_filled": 57701, - "ic_fluent_book_20_filled": 57714, - "ic_fluent_book_24_filled": 57715, - "ic_fluent_book_add_20_filled": 57716, - "ic_fluent_book_add_24_filled": 57717, - "ic_fluent_book_clock_24_filled": 57721, - "ic_fluent_book_coins_24_filled": 57723, - "ic_fluent_book_compass_24_filled": 57725, - "ic_fluent_book_database_24_filled": 57731, - "ic_fluent_book_exclamation_mark_24_filled": 57733, - "ic_fluent_book_information_24_filled": 57736, - "ic_fluent_book_letter_24_filled": 57738, - "ic_fluent_book_open_20_filled": 57740, - "ic_fluent_book_open_24_filled": 57741, - "ic_fluent_book_open_globe_24_filled": 57746, - "ic_fluent_book_pulse_24_filled": 57753, - "ic_fluent_book_question_mark_24_filled": 57755, - "ic_fluent_book_search_24_filled": 57758, - "ic_fluent_book_star_24_filled": 57760, - "ic_fluent_book_theta_24_filled": 57763, - "ic_fluent_border_all_24_filled": 57777, - "ic_fluent_border_bottom_24_filled": 57779, - "ic_fluent_border_bottom_double_24_filled": 57781, - "ic_fluent_border_bottom_thick_24_filled": 57783, - "ic_fluent_border_left_24_filled": 57785, - "ic_fluent_border_outside_24_filled": 57791, - "ic_fluent_border_outside_thick_24_filled": 57793, - "ic_fluent_border_right_24_filled": 57795, - "ic_fluent_border_top_24_filled": 57797, - "ic_fluent_border_top_bottom_24_filled": 57799, - "ic_fluent_border_top_bottom_double_24_filled": 57801, - "ic_fluent_border_top_bottom_thick_24_filled": 57803, - "ic_fluent_briefcase_12_filled": 57852, - "ic_fluent_briefcase_32_filled": 57855, - "ic_fluent_bug_16_filled": 57881, - "ic_fluent_bug_20_filled": 57882, - "ic_fluent_bug_24_filled": 57883, - "ic_fluent_building_bank_16_filled": 57888, - "ic_fluent_building_bank_20_filled": 57889, - "ic_fluent_building_bank_24_filled": 57890, - "ic_fluent_building_government_24_filled": 57905, - "ic_fluent_building_government_32_filled": 57906, - "ic_fluent_building_multiple_24_filled": 57912, - "ic_fluent_building_shop_16_filled": 57921, - "ic_fluent_building_shop_20_filled": 57922, - "ic_fluent_building_shop_24_filled": 57923, - "ic_fluent_building_skyscraper_16_filled": 57924, - "ic_fluent_building_skyscraper_20_filled": 57925, - "ic_fluent_building_skyscraper_24_filled": 57926, - "ic_fluent_calendar_cancel_16_filled": 57940, - "ic_fluent_calendar_clock_16_filled": 57943, - "ic_fluent_calendar_mention_20_filled": 57961, - "ic_fluent_calendar_person_24_filled": 57967, - "ic_fluent_calendar_question_mark_16_filled": 57970, - "ic_fluent_calendar_question_mark_20_filled": 57971, - "ic_fluent_calendar_question_mark_24_filled": 57972, - "ic_fluent_call_forward_16_filled": 58000, - "ic_fluent_call_forward_20_filled": 58001, - "ic_fluent_call_forward_28_filled": 58002, - "ic_fluent_call_forward_48_filled": 58003, - "ic_fluent_call_inbound_20_filled": 58004, - "ic_fluent_call_inbound_28_filled": 58005, - "ic_fluent_call_inbound_48_filled": 58006, - "ic_fluent_call_missed_28_filled": 58008, - "ic_fluent_call_missed_48_filled": 58009, - "ic_fluent_call_outbound_20_filled": 58010, - "ic_fluent_call_outbound_28_filled": 58011, - "ic_fluent_call_outbound_48_filled": 58012, - "ic_fluent_call_park_16_filled": 58013, - "ic_fluent_call_park_20_filled": 58014, - "ic_fluent_call_park_28_filled": 58015, - "ic_fluent_call_park_48_filled": 58016, - "ic_fluent_camera_edit_20_filled": 58035, - "ic_fluent_caret_up_12_filled": 58043, - "ic_fluent_caret_up_16_filled": 58044, - "ic_fluent_caret_up_20_filled": 58045, - "ic_fluent_caret_up_24_filled": 58046, - "ic_fluent_cart_16_filled": 58047, - "ic_fluent_cart_20_filled": 58048, - "ic_fluent_channel_28_filled": 58064, - "ic_fluent_channel_48_filled": 58065, - "ic_fluent_channel_add_16_filled": 58066, - "ic_fluent_channel_add_20_filled": 58067, - "ic_fluent_channel_add_24_filled": 58068, - "ic_fluent_channel_add_28_filled": 58069, - "ic_fluent_channel_add_48_filled": 58070, - "ic_fluent_channel_alert_16_filled": 58071, - "ic_fluent_channel_alert_20_filled": 58072, - "ic_fluent_channel_alert_24_filled": 58073, - "ic_fluent_channel_alert_28_filled": 58074, - "ic_fluent_channel_alert_48_filled": 58075, - "ic_fluent_channel_arrow_left_16_filled": 58076, - "ic_fluent_channel_arrow_left_20_filled": 58077, - "ic_fluent_channel_arrow_left_24_filled": 58078, - "ic_fluent_channel_arrow_left_28_filled": 58079, - "ic_fluent_channel_arrow_left_48_filled": 58080, - "ic_fluent_channel_dismiss_16_filled": 58081, - "ic_fluent_channel_dismiss_20_filled": 58082, - "ic_fluent_channel_dismiss_24_filled": 58083, - "ic_fluent_channel_dismiss_28_filled": 58084, - "ic_fluent_channel_dismiss_48_filled": 58085, - "ic_fluent_chat_16_filled": 58104, - "ic_fluent_checkmark_16_filled": 58137, - "ic_fluent_clipboard_paste_16_filled": 58223, - "ic_fluent_clock_dismiss_24_filled": 58248, - "ic_fluent_closed_caption_16_filled": 58253, - "ic_fluent_closed_caption_20_filled": 58254, - "ic_fluent_closed_caption_28_filled": 58255, - "ic_fluent_closed_caption_48_filled": 58257, - "ic_fluent_color_line_16_filled": 58324, - "ic_fluent_comment_12_filled": 58335, - "ic_fluent_comment_28_filled": 58336, - "ic_fluent_comment_48_filled": 58337, - "ic_fluent_comment_add_12_filled": 58338, - "ic_fluent_comment_add_16_filled": 58339, - "ic_fluent_comment_add_20_filled": 58340, - "ic_fluent_comment_add_28_filled": 58341, - "ic_fluent_comment_add_48_filled": 58342, - "ic_fluent_comment_arrow_left_12_filled": 58343, - "ic_fluent_comment_arrow_left_16_filled": 58344, - "ic_fluent_comment_arrow_left_20_filled": 58345, - "ic_fluent_comment_arrow_left_28_filled": 58347, - "ic_fluent_comment_arrow_left_48_filled": 58348, - "ic_fluent_comment_arrow_right_12_filled": 58349, - "ic_fluent_comment_arrow_right_16_filled": 58350, - "ic_fluent_comment_arrow_right_20_filled": 58351, - "ic_fluent_comment_arrow_right_28_filled": 58353, - "ic_fluent_comment_arrow_right_48_filled": 58354, - "ic_fluent_comment_checkmark_12_filled": 58355, - "ic_fluent_comment_checkmark_16_filled": 58356, - "ic_fluent_comment_checkmark_20_filled": 58357, - "ic_fluent_comment_checkmark_24_filled": 58358, - "ic_fluent_comment_checkmark_28_filled": 58359, - "ic_fluent_comment_checkmark_48_filled": 58360, - "ic_fluent_comment_edit_20_filled": 58363, - "ic_fluent_comment_edit_24_filled": 58364, - "ic_fluent_comment_off_16_filled": 58380, - "ic_fluent_comment_off_20_filled": 58381, - "ic_fluent_comment_off_24_filled": 58382, - "ic_fluent_comment_off_28_filled": 58383, - "ic_fluent_comment_off_48_filled": 58384, - "ic_fluent_contact_card_group_16_filled": 58392, - "ic_fluent_contact_card_group_20_filled": 58393, - "ic_fluent_contact_card_group_28_filled": 58394, - "ic_fluent_contact_card_group_48_filled": 58395, - "ic_fluent_convert_range_24_filled": 58410, - "ic_fluent_copy_add_24_filled": 58412, - "ic_fluent_copy_select_20_filled": 58416, - "ic_fluent_couch_12_filled": 58417, - "ic_fluent_couch_24_filled": 58419, - "ic_fluent_crop_20_filled": 58423, - "ic_fluent_currency_dollar_rupee_16_filled": 58444, - "ic_fluent_currency_dollar_rupee_20_filled": 58445, - "ic_fluent_currency_dollar_rupee_24_filled": 58446, - "ic_fluent_cursor_20_filled": 58447, - "ic_fluent_cursor_24_filled": 58448, - "ic_fluent_cursor_hover_16_filled": 58451, - "ic_fluent_cursor_hover_20_filled": 58452, - "ic_fluent_cursor_hover_24_filled": 58453, - "ic_fluent_cursor_hover_28_filled": 58454, - "ic_fluent_cursor_hover_32_filled": 58455, - "ic_fluent_cursor_hover_48_filled": 58456, - "ic_fluent_cursor_hover_off_16_filled": 58457, - "ic_fluent_cursor_hover_off_20_filled": 58458, - "ic_fluent_cursor_hover_off_24_filled": 58459, - "ic_fluent_cursor_hover_off_28_filled": 58460, - "ic_fluent_cursor_hover_off_48_filled": 58461, - "ic_fluent_data_bar_vertical_add_24_filled": 58465, - "ic_fluent_data_usage_20_filled": 58475, - "ic_fluent_decimal_arrow_left_24_filled": 58500, - "ic_fluent_decimal_arrow_right_24_filled": 58502, - "ic_fluent_delete_16_filled": 58503, - "ic_fluent_dentist_12_filled": 58510, - "ic_fluent_dentist_16_filled": 58511, - "ic_fluent_dentist_20_filled": 58512, - "ic_fluent_dentist_28_filled": 58513, - "ic_fluent_dentist_48_filled": 58514, - "ic_fluent_dismiss_circle_28_filled": 58574, - "ic_fluent_doctor_12_filled": 58590, - "ic_fluent_doctor_16_filled": 58591, - "ic_fluent_doctor_20_filled": 58592, - "ic_fluent_doctor_28_filled": 58593, - "ic_fluent_doctor_48_filled": 58594, - "ic_fluent_document_16_filled": 58595, - "ic_fluent_document_48_filled": 58597, - "ic_fluent_document_add_16_filled": 58598, - "ic_fluent_document_add_20_filled": 58599, - "ic_fluent_document_add_24_filled": 58600, - "ic_fluent_document_add_28_filled": 58601, - "ic_fluent_document_add_48_filled": 58602, - "ic_fluent_document_arrow_left_16_filled": 58605, - "ic_fluent_document_arrow_left_20_filled": 58606, - "ic_fluent_document_arrow_left_24_filled": 58607, - "ic_fluent_document_arrow_left_28_filled": 58608, - "ic_fluent_document_arrow_left_48_filled": 58609, - "ic_fluent_document_catch_up_16_filled": 58619, - "ic_fluent_document_catch_up_20_filled": 58620, - "ic_fluent_document_landscape_data_24_filled": 58651, - "ic_fluent_document_landscape_split_20_filled": 58652, - "ic_fluent_document_landscape_split_hint_20_filled": 58654, - "ic_fluent_document_page_break_20_filled": 58675, - "ic_fluent_drink_beer_16_filled": 58767, - "ic_fluent_drink_beer_20_filled": 58768, - "ic_fluent_drink_coffee_16_filled": 58769, - "ic_fluent_drink_margarita_16_filled": 58770, - "ic_fluent_drink_margarita_20_filled": 58771, - "ic_fluent_drink_wine_16_filled": 58774, - "ic_fluent_drink_wine_20_filled": 58775, - "ic_fluent_dual_screen_span_24_filled": 58803, - "ic_fluent_edit_32_filled": 58816, - "ic_fluent_edit_off_16_filled": 58819, - "ic_fluent_edit_off_24_filled": 58821, - "ic_fluent_edit_settings_24_filled": 58832, - "ic_fluent_emoji_add_16_filled": 58836, - "ic_fluent_emoji_hand_24_filled": 58844, - "ic_fluent_emoji_hand_28_filled": 58845, - "ic_fluent_eraser_20_filled": 58865, - "ic_fluent_eraser_24_filled": 58866, - "ic_fluent_eraser_medium_24_filled": 58868, - "ic_fluent_eraser_segment_24_filled": 58870, - "ic_fluent_eraser_small_24_filled": 58872, - "ic_fluent_error_circle_12_filled": 58874, - "ic_fluent_eye_tracking_off_16_filled": 58887, - "ic_fluent_eye_tracking_off_20_filled": 58888, - "ic_fluent_eye_tracking_off_24_filled": 58889, - "ic_fluent_f_stop_16_filled": 58894, - "ic_fluent_f_stop_20_filled": 58895, - "ic_fluent_f_stop_24_filled": 58896, - "ic_fluent_f_stop_28_filled": 58897, - "ic_fluent_fingerprint_48_filled": 58911, - "ic_fluent_fixed_width_24_filled": 58913, - "ic_fluent_flip_horizontal_24_filled": 58938, - "ic_fluent_flip_vertical_24_filled": 58944, - "ic_fluent_fluent_32_filled": 58955, - "ic_fluent_fluent_48_filled": 58956, - "ic_fluent_fluid_20_filled": 58958, - "ic_fluent_fluid_24_filled": 58959, - "ic_fluent_food_egg_16_filled": 59001, - "ic_fluent_food_egg_20_filled": 59002, - "ic_fluent_food_toast_16_filled": 59007, - "ic_fluent_food_toast_20_filled": 59008, - "ic_fluent_gavel_24_filled": 59044, - "ic_fluent_gavel_32_filled": 59045, - "ic_fluent_glasses_16_filled": 59062, - "ic_fluent_glasses_20_filled": 59063, - "ic_fluent_glasses_28_filled": 59064, - "ic_fluent_glasses_48_filled": 59065, - "ic_fluent_glasses_off_16_filled": 59066, - "ic_fluent_glasses_off_20_filled": 59067, - "ic_fluent_glasses_off_28_filled": 59068, - "ic_fluent_glasses_off_48_filled": 59069, - "ic_fluent_globe_16_filled": 59070, - "ic_fluent_hand_left_20_filled": 59112, - "ic_fluent_hand_right_24_filled": 59117, - "ic_fluent_hand_right_28_filled": 59118, - "ic_fluent_hat_graduation_16_filled": 59122, - "ic_fluent_hat_graduation_20_filled": 59123, - "ic_fluent_hat_graduation_24_filled": 59124, - "ic_fluent_hd_16_filled": 59125, - "ic_fluent_hd_20_filled": 59126, - "ic_fluent_hd_24_filled": 59127, - "ic_fluent_headset_16_filled": 59139, - "ic_fluent_headset_20_filled": 59140, - "ic_fluent_headset_48_filled": 59142, - "ic_fluent_heart_pulse_24_filled": 59151, - "ic_fluent_heart_pulse_32_filled": 59152, - "ic_fluent_home_16_filled": 59164, - "ic_fluent_home_32_filled": 59165, - "ic_fluent_home_48_filled": 59166, - "ic_fluent_image_arrow_counterclockwise_24_filled": 59180, - "ic_fluent_info_shield_20_filled": 59204, - "ic_fluent_key_multiple_20_filled": 59219, - "ic_fluent_line_horizontal_5_error_20_filled": 59259, - "ic_fluent_link_square_12_filled": 59267, - "ic_fluent_link_square_16_filled": 59268, - "ic_fluent_location_48_filled": 59274, - "ic_fluent_location_off_16_filled": 59286, - "ic_fluent_location_off_20_filled": 59287, - "ic_fluent_location_off_24_filled": 59288, - "ic_fluent_location_off_28_filled": 59289, - "ic_fluent_location_off_48_filled": 59290, - "ic_fluent_lock_multiple_24_filled": 59297, - "ic_fluent_lottery_24_filled": 59303, - "ic_fluent_mail_16_filled": 59311, - "ic_fluent_mail_read_16_filled": 59359, - "ic_fluent_math_format_linear_24_filled": 59372, - "ic_fluent_math_format_professional_24_filled": 59374, - "ic_fluent_math_formula_24_filled": 59377, - "ic_fluent_maximize_20_filled": 59385, - "ic_fluent_maximize_24_filled": 59386, - "ic_fluent_maximize_28_filled": 59387, - "ic_fluent_maximize_48_filled": 59388, - "ic_fluent_meet_now_16_filled": 59389, - "ic_fluent_mic_off_20_filled": 59404, - "ic_fluent_mic_off_48_filled": 59406, - "ic_fluent_mic_prohibited_24_filled": 59409, - "ic_fluent_more_circle_20_filled": 59439, - "ic_fluent_movies_and_tv_16_filled": 59449, - "ic_fluent_movies_and_tv_20_filled": 59450, - "ic_fluent_navigation_unread_24_filled": 59505, - "ic_fluent_number_symbol_dismiss_24_filled": 59545, - "ic_fluent_open_28_filled": 59548, - "ic_fluent_open_48_filled": 59549, - "ic_fluent_open_folder_16_filled": 59550, - "ic_fluent_open_folder_20_filled": 59551, - "ic_fluent_open_folder_28_filled": 59552, - "ic_fluent_open_folder_48_filled": 59553, - "ic_fluent_open_off_16_filled": 59554, - "ic_fluent_open_off_20_filled": 59555, - "ic_fluent_open_off_24_filled": 59556, - "ic_fluent_open_off_28_filled": 59557, - "ic_fluent_open_off_48_filled": 59558, - "ic_fluent_paint_brush_arrow_down_24_filled": 59574, - "ic_fluent_paint_brush_arrow_up_24_filled": 59576, - "ic_fluent_pause_12_filled": 59614, - "ic_fluent_payment_16_filled": 59622, - "ic_fluent_payment_28_filled": 59623, - "ic_fluent_people_prohibited_16_filled": 59669, - "ic_fluent_people_swap_16_filled": 59676, - "ic_fluent_people_swap_20_filled": 59677, - "ic_fluent_people_swap_24_filled": 59678, - "ic_fluent_people_swap_28_filled": 59679, - "ic_fluent_people_team_add_20_filled": 59683, - "ic_fluent_people_team_add_24_filled": 59684, - "ic_fluent_person_available_20_filled": 59702, - "ic_fluent_person_clock_16_filled": 59708, - "ic_fluent_person_clock_20_filled": 59709, - "ic_fluent_person_clock_24_filled": 59710, - "ic_fluent_person_delete_20_filled": 59711, - "ic_fluent_person_mail_16_filled": 59721, - "ic_fluent_person_mail_20_filled": 59722, - "ic_fluent_person_mail_24_filled": 59723, - "ic_fluent_person_mail_28_filled": 59724, - "ic_fluent_person_mail_48_filled": 59725, - "ic_fluent_person_prohibited_24_filled": 59733, - "ic_fluent_poll_20_filled": 59825, - "ic_fluent_pulse_24_filled": 59877, - "ic_fluent_qr_code_20_filled": 59892, - "ic_fluent_real_estate_24_filled": 59909, - "ic_fluent_ribbon_24_filled": 59952, - "ic_fluent_ribbon_star_20_filled": 59959, - "ic_fluent_ribbon_star_24_filled": 59960, - "ic_fluent_run_16_filled": 59975, - "ic_fluent_run_20_filled": 59976, - "ic_fluent_scales_24_filled": 59993, - "ic_fluent_scales_32_filled": 59994, - "ic_fluent_search_shield_20_filled": 60041, - "ic_fluent_shield_dismiss_shield_20_filled": 60118, - "ic_fluent_shifts_day_20_filled": 60140, - "ic_fluent_shifts_day_24_filled": 60141, - "ic_fluent_sidebar_search_ltr_20_filled": 60161, - "ic_fluent_sidebar_search_rtl_20_filled": 60162, - "ic_fluent_sign_out_20_filled": 60163, - "ic_fluent_slide_multiple_arrow_right_24_filled": 60200, - "ic_fluent_slide_search_24_filled": 60202, - "ic_fluent_slide_search_28_filled": 60203, - "ic_fluent_slide_size_24_filled": 60207, - "ic_fluent_slide_text_16_filled": 60208, - "ic_fluent_slide_text_20_filled": 60209, - "ic_fluent_slide_text_28_filled": 60210, - "ic_fluent_slide_text_48_filled": 60211, - "ic_fluent_speaker_0_16_filled": 60224, - "ic_fluent_speaker_0_20_filled": 60225, - "ic_fluent_speaker_0_28_filled": 60226, - "ic_fluent_speaker_0_48_filled": 60228, - "ic_fluent_speaker_1_16_filled": 60229, - "ic_fluent_speaker_1_20_filled": 60230, - "ic_fluent_speaker_1_28_filled": 60231, - "ic_fluent_speaker_1_48_filled": 60233, - "ic_fluent_speaker_bluetooth_28_filled": 60241, - "ic_fluent_speaker_off_16_filled": 60247, - "ic_fluent_speaker_off_20_filled": 60248, - "ic_fluent_speaker_off_48_filled": 60249, - "ic_fluent_speaker_usb_24_filled": 60253, - "ic_fluent_speaker_usb_28_filled": 60254, - "ic_fluent_sport_16_filled": 60270, - "ic_fluent_sport_20_filled": 60271, - "ic_fluent_sport_24_filled": 60272, - "ic_fluent_sport_american_football_24_filled": 60274, - "ic_fluent_sport_baseball_24_filled": 60276, - "ic_fluent_sport_basketball_24_filled": 60278, - "ic_fluent_sport_hockey_24_filled": 60280, - "ic_fluent_star_edit_24_filled": 60338, - "ic_fluent_tab_desktop_arrow_left_20_filled": 60389, - "ic_fluent_tab_prohibited_24_filled": 60395, - "ic_fluent_table_16_filled": 60398, - "ic_fluent_table_28_filled": 60399, - "ic_fluent_table_48_filled": 60401, - "ic_fluent_table_simple_16_filled": 60490, - "ic_fluent_table_simple_20_filled": 60491, - "ic_fluent_table_simple_24_filled": 60492, - "ic_fluent_table_simple_28_filled": 60493, - "ic_fluent_table_simple_48_filled": 60494, - "ic_fluent_tag_16_filled": 60522, - "ic_fluent_tasks_app_20_filled": 60573, - "ic_fluent_tent_12_filled": 60576, - "ic_fluent_tent_16_filled": 60577, - "ic_fluent_tent_20_filled": 60578, - "ic_fluent_tent_28_filled": 60579, - "ic_fluent_tent_48_filled": 60580, - "ic_fluent_text_bold_16_filled": 60624, - "ic_fluent_text_color_16_filled": 60659, - "ic_fluent_text_column_one_narrow_20_filled": 60663, - "ic_fluent_text_column_one_narrow_24_filled": 60664, - "ic_fluent_text_column_one_wide_20_filled": 60665, - "ic_fluent_text_column_one_wide_24_filled": 60666, - "ic_fluent_text_continuous_24_filled": 60670, - "ic_fluent_text_italic_16_filled": 60727, - "ic_fluent_text_underline_16_filled": 60775, - "ic_fluent_ticket_diagonal_16_filled": 60795, - "ic_fluent_ticket_diagonal_20_filled": 60796, - "ic_fluent_ticket_diagonal_24_filled": 60797, - "ic_fluent_ticket_diagonal_28_filled": 60798, - "ic_fluent_timer_16_filled": 60806, - "ic_fluent_timer_20_filled": 60808, - "ic_fluent_toggle_left_16_filled": 60815, - "ic_fluent_toggle_left_20_filled": 60816, - "ic_fluent_toggle_left_24_filled": 60817, - "ic_fluent_toggle_left_28_filled": 60818, - "ic_fluent_toggle_left_48_filled": 60819, - "ic_fluent_toggle_right_28_filled": 60823, - "ic_fluent_toggle_right_48_filled": 60824, - "ic_fluent_tv_16_filled": 60865, - "ic_fluent_tv_20_filled": 60866, - "ic_fluent_tv_24_filled": 60867, - "ic_fluent_tv_28_filled": 60868, - "ic_fluent_tv_48_filled": 60869, - "ic_fluent_vehicle_bicycle_16_filled": 60881, - "ic_fluent_vehicle_bicycle_20_filled": 60882, - "ic_fluent_vehicle_bus_16_filled": 60883, - "ic_fluent_vehicle_bus_20_filled": 60884, - "ic_fluent_vehicle_car_28_filled": 60888, - "ic_fluent_vehicle_car_48_filled": 60889, - "ic_fluent_vehicle_ship_16_filled": 60898, - "ic_fluent_vehicle_ship_20_filled": 60899, - "ic_fluent_vehicle_ship_24_filled": 60900, - "ic_fluent_vehicle_subway_16_filled": 60901, - "ic_fluent_vehicle_subway_20_filled": 60902, - "ic_fluent_vehicle_subway_24_filled": 60903, - "ic_fluent_vehicle_truck_16_filled": 60904, - "ic_fluent_vehicle_truck_20_filled": 60905, - "ic_fluent_video_clip_20_filled": 60927, - "ic_fluent_vote_20_filled": 60968, - "ic_fluent_vote_24_filled": 60969, - "ic_fluent_weather_drizzle_20_filled": 60990, - "ic_fluent_weather_drizzle_24_filled": 60991, - "ic_fluent_weather_drizzle_48_filled": 60992, - "ic_fluent_weather_haze_20_filled": 60993, - "ic_fluent_weather_haze_24_filled": 60994, - "ic_fluent_weather_haze_48_filled": 60995, - "ic_fluent_weather_moon_16_filled": 60996, - "ic_fluent_weather_moon_28_filled": 60997, - "ic_fluent_weather_moon_off_16_filled": 60998, - "ic_fluent_weather_moon_off_20_filled": 60999, - "ic_fluent_weather_moon_off_24_filled": 61000, - "ic_fluent_weather_moon_off_28_filled": 61001, - "ic_fluent_weather_moon_off_48_filled": 61002, - "ic_fluent_weather_sunny_high_20_filled": 61007, - "ic_fluent_weather_sunny_high_24_filled": 61008, - "ic_fluent_weather_sunny_high_48_filled": 61009, - "ic_fluent_weather_sunny_low_20_filled": 61010, - "ic_fluent_weather_sunny_low_24_filled": 61011, - "ic_fluent_weather_sunny_low_48_filled": 61012, - "ic_fluent_window_new_16_filled": 61050, - "ic_fluent_window_new_24_filled": 61051, - "ic_fluent_wrench_16_filled": 61061, - "ic_fluent_wrench_20_filled": 61062, - "ic_fluent_video_background_effect_20_filled": 60919, - "ic_fluent_alert_16_filled": 57364, - "ic_fluent_approvals_app_16_filled": 57439, - "ic_fluent_approvals_app_20_filled": 57440, - "ic_fluent_arrow_bounce_16_filled": 57478, - "ic_fluent_arrow_bounce_24_filled": 57480, - "ic_fluent_arrow_enter_up_20_filled": 57538, - "ic_fluent_arrow_enter_up_24_filled": 57539, - "ic_fluent_bookmark_multiple_20_filled": 57767, - "ic_fluent_briefcase_28_filled": 57854, - "ic_fluent_briefcase_48_filled": 57856, - "ic_fluent_building_20_filled": 57887, - "ic_fluent_chat_48_filled": 58106, - "ic_fluent_desktop_arrow_right_16_filled": 58516, - "ic_fluent_desktop_arrow_right_20_filled": 58517, - "ic_fluent_desktop_arrow_right_24_filled": 58518, - "ic_fluent_desktop_speaker_20_filled": 58544, - "ic_fluent_desktop_speaker_24_filled": 58545, - "ic_fluent_desktop_speaker_off_20_filled": 58546, - "ic_fluent_desktop_speaker_off_24_filled": 58547, - "ic_fluent_emoji_add_20_filled": 58837, - "ic_fluent_food_cake_20_filled": 59000, - "ic_fluent_grid_kanban_20_filled": 59092, - "ic_fluent_hand_right_20_filled": 59116, - "ic_fluent_hand_right_off_20_filled": 59119, - "ic_fluent_learning_app_20_filled": 59245, - "ic_fluent_learning_app_24_filled": 59246, - "ic_fluent_live_off_20_filled": 59272, - "ic_fluent_live_off_24_filled": 59273, - "ic_fluent_mic_prohibited_20_filled": 59408, - "ic_fluent_notebook_section_20_filled": 59527, - "ic_fluent_people_audience_20_filled": 59649, - "ic_fluent_people_call_16_filled": 59650, - "ic_fluent_people_call_20_filled": 59651, - "ic_fluent_person_call_16_filled": 59703, - "ic_fluent_person_call_20_filled": 59704, - "ic_fluent_phone_desktop_add_20_filled": 59755, - "ic_fluent_presenter_20_filled": 59855, - "ic_fluent_presenter_off_20_filled": 59856, - "ic_fluent_rectangle_landscape_20_filled": 59921, - "ic_fluent_ribbon_20_filled": 59951, - "ic_fluent_save_sync_20_filled": 59990, - "ic_fluent_shifts_20_filled": 60133, - "ic_fluent_shifts_checkmark_20_filled": 60138, - "ic_fluent_shifts_checkmark_24_filled": 60139, - "ic_fluent_slide_multiple_24_filled": 60198, - "ic_fluent_star_line_horizontal_3_20_filled": 60342, - "ic_fluent_star_line_horizontal_3_24_filled": 60343, - "ic_fluent_table_add_20_filled": 60403, - "ic_fluent_table_dismiss_20_filled": 60430, - "ic_fluent_table_dismiss_24_filled": 60431, - "ic_fluent_tap_double_20_filled": 60552, - "ic_fluent_tap_single_20_filled": 60555, - "ic_fluent_text_bullet_list_add_20_filled": 60627, - "ic_fluent_text_bullet_list_square_20_filled": 60640, - "ic_fluent_text_grammar_error_20_filled": 60698, - "ic_fluent_text_number_list_rtl_20_filled": 60736, - "ic_fluent_video_360_20_filled": 60913, - "ic_fluent_video_360_24_filled": 60914, - "ic_fluent_video_person_12_filled": 60936, - "ic_fluent_video_person_16_filled": 60937, - "ic_fluent_video_person_20_filled": 60938, - "ic_fluent_video_person_28_filled": 60939, - "ic_fluent_video_person_48_filled": 60940, - "ic_fluent_video_person_call_16_filled": 60941, - "ic_fluent_video_person_call_20_filled": 60942, - "ic_fluent_video_person_call_24_filled": 60943, - "ic_fluent_video_person_star_20_filled": 60951, - "ic_fluent_video_prohibited_20_filled": 60956, - "ic_fluent_video_switch_20_filled": 60960, - "ic_fluent_wifi_warning_20_filled": 61020, - "ic_fluent_album_24_filled": 57360, - "ic_fluent_album_add_24_filled": 57362, - "ic_fluent_alert_urgent_16_filled": 57373, - "ic_fluent_arrow_right_16_filled": 57579, - "ic_fluent_arrow_undo_16_filled": 57638, - "ic_fluent_arrow_up_left_16_filled": 57643, - "ic_fluent_arrow_up_left_20_filled": 57644, - "ic_fluent_backpack_add_20_filled": 57671, - "ic_fluent_backpack_add_24_filled": 57672, - "ic_fluent_backpack_add_28_filled": 57673, - "ic_fluent_backpack_add_48_filled": 57674, - "ic_fluent_bot_20_filled": 57804, - "ic_fluent_call_connecting_20_filled": 57996, - "ic_fluent_call_exclamation_20_filled": 57999, - "ic_fluent_call_transfer_20_filled": 58023, - "ic_fluent_camera_off_24_filled": 58037, - "ic_fluent_chat_bubbles_question_20_filled": 58111, - "ic_fluent_chat_mail_20_filled": 58115, - "ic_fluent_chat_off_20_filled": 58116, - "ic_fluent_checkmark_48_filled": 58138, - "ic_fluent_cloud_sync_20_filled": 58307, - "ic_fluent_content_view_20_filled": 58404, - "ic_fluent_cube_rotate_20_filled": 58436, - "ic_fluent_data_line_20_filled": 58468, - "ic_fluent_device_meeting_room_20_filled": 58558, - "ic_fluent_device_meeting_room_remote_20_filled": 58559, - "ic_fluent_draw_shape_24_filled": 58754, - "ic_fluent_draw_text_24_filled": 58756, - "ic_fluent_folder_arrow_up_16_filled": 58973, - "ic_fluent_folder_arrow_up_20_filled": 58974, - "ic_fluent_folder_arrow_up_24_filled": 58975, - "ic_fluent_folder_arrow_up_28_filled": 58976, - "ic_fluent_fps_30_16_filled": 59013, - "ic_fluent_fps_30_20_filled": 59014, - "ic_fluent_fps_30_24_filled": 59015, - "ic_fluent_fps_30_28_filled": 59016, - "ic_fluent_fps_30_48_filled": 59017, - "ic_fluent_fps_60_16_filled": 59018, - "ic_fluent_fps_60_20_filled": 59019, - "ic_fluent_fps_60_24_filled": 59020, - "ic_fluent_fps_60_28_filled": 59021, - "ic_fluent_fps_60_48_filled": 59022, - "ic_fluent_home_person_20_filled": 59172, - "ic_fluent_image_off_20_filled": 59193, - "ic_fluent_lasso_20_filled": 59236, - "ic_fluent_leaf_three_16_filled": 59242, - "ic_fluent_leaf_three_20_filled": 59243, - "ic_fluent_leaf_three_24_filled": 59244, - "ic_fluent_mic_sync_20_filled": 59428, - "ic_fluent_notebook_subsection_20_filled": 59529, - "ic_fluent_person_circle_20_filled": 59706, - "ic_fluent_pulse_20_filled": 59876, - "ic_fluent_pulse_square_24_filled": 59881, - "ic_fluent_ribbon_16_filled": 59950, - "ic_fluent_rotate_left_24_filled": 59968, - "ic_fluent_rotate_right_20_filled": 59969, - "ic_fluent_rotate_right_24_filled": 59970, - "ic_fluent_share_close_tray_20_filled": 60082, - "ic_fluent_square_multiple_20_filled": 60319, - "ic_fluent_star_emphasis_20_filled": 60339, - "ic_fluent_tv_arrow_right_20_filled": 60870, - "ic_fluent_video_person_star_off_20_filled": 60952, - "ic_fluent_video_recording_20_filled": 60959, - "ic_fluent_video_sync_20_filled": 60961, - "ic_fluent_breakout_room_20_filled": 57849, - "ic_fluent_content_view_gallery_20_filled": 58406, - "ic_fluent_door_tag_24_filled": 58743, - "ic_fluent_luggage_24_filled": 59306, - "ic_fluent_people_edit_20_filled": 59657, - "ic_fluent_channel_share_12_filled": 58086, - "ic_fluent_channel_share_16_filled": 58087, - "ic_fluent_channel_share_20_filled": 58088, - "ic_fluent_channel_share_24_filled": 58089, - "ic_fluent_channel_share_28_filled": 58090, - "ic_fluent_channel_share_48_filled": 58091, - "ic_fluent_people_error_16_filled": 59658, - "ic_fluent_people_error_20_filled": 59659, - "ic_fluent_people_error_24_filled": 59660, - "ic_fluent_puzzle_cube_16_filled": 59882, - "ic_fluent_puzzle_cube_20_filled": 59883, - "ic_fluent_puzzle_cube_24_filled": 59884, - "ic_fluent_puzzle_cube_28_filled": 59885, - "ic_fluent_puzzle_cube_48_filled": 59886, - "ic_fluent_arrow_circle_down_right_16_filled": 57486, - "ic_fluent_arrow_circle_down_right_24_filled": 57488, - "ic_fluent_arrow_circle_right_24_filled": 57500, - "ic_fluent_arrow_circle_up_16_filled": 57505, - "ic_fluent_arrow_circle_up_20_filled": 57506, - "ic_fluent_arrow_circle_up_24_filled": 57507, - "ic_fluent_arrow_circle_up_left_24_filled": 57512, - "ic_fluent_arrow_enter_left_20_filled": 57536, - "ic_fluent_arrow_enter_left_24_filled": 57537, - "ic_fluent_arrow_export_ltr_20_filled": 57543, - "ic_fluent_arrow_export_ltr_24_filled": 57544, - "ic_fluent_arrow_square_down_24_filled": 57591, - "ic_fluent_arrow_undo_32_filled": 57640, - "ic_fluent_arrow_undo_48_filled": 57641, - "ic_fluent_auto_fit_height_24_filled": 57660, - "ic_fluent_auto_fit_width_24_filled": 57662, - "ic_fluent_briefcase_medical_24_filled": 57858, - "ic_fluent_briefcase_medical_32_filled": 57859, - "ic_fluent_building_factory_24_filled": 57900, - "ic_fluent_calendar_arrow_down_24_filled": 57936, - "ic_fluent_call_16_filled": 57987, - "ic_fluent_call_20_filled": 57988, - "ic_fluent_call_24_filled": 57989, - "ic_fluent_call_28_filled": 57990, - "ic_fluent_call_missed_20_filled": 58007, - "ic_fluent_call_prohibited_16_filled": 58017, - "ic_fluent_call_prohibited_20_filled": 58018, - "ic_fluent_call_prohibited_24_filled": 58019, - "ic_fluent_call_prohibited_28_filled": 58020, - "ic_fluent_call_prohibited_48_filled": 58021, - "ic_fluent_center_horizontal_24_filled": 58061, - "ic_fluent_center_vertical_24_filled": 58063, - "ic_fluent_chevron_circle_down_24_filled": 58149, - "ic_fluent_chevron_circle_right_24_filled": 58163, - "ic_fluent_clipboard_image_24_filled": 58220, - "ic_fluent_comment_arrow_left_24_filled": 58346, - "ic_fluent_comment_arrow_right_24_filled": 58352, - "ic_fluent_comment_dismiss_24_filled": 58362, - "ic_fluent_component_2_double_tap_swipe_down_24_filled": 58387, - "ic_fluent_component_2_double_tap_swipe_up_24_filled": 58388, - "ic_fluent_copy_arrow_right_16_filled": 58413, - "ic_fluent_copy_arrow_right_24_filled": 58415, - "ic_fluent_currency_dollar_euro_16_filled": 58441, - "ic_fluent_currency_dollar_euro_20_filled": 58442, - "ic_fluent_currency_dollar_euro_24_filled": 58443, - "ic_fluent_delete_dismiss_24_filled": 58507, - "ic_fluent_delete_dismiss_28_filled": 58508, - "ic_fluent_document_prohibited_20_filled": 58682, - "ic_fluent_document_prohibited_24_filled": 58683, - "ic_fluent_document_sync_24_filled": 58709, - "ic_fluent_drink_to_go_24_filled": 58773, - "ic_fluent_dual_screen_header_24_filled": 58797, - "ic_fluent_fluent_24_filled": 58954, - "ic_fluent_folder_arrow_right_16_filled": 58968, - "ic_fluent_folder_arrow_right_20_filled": 58969, - "ic_fluent_folder_arrow_right_24_filled": 58970, - "ic_fluent_folder_arrow_right_28_filled": 58971, - "ic_fluent_folder_arrow_right_48_filled": 58972, - "ic_fluent_folder_arrow_up_48_filled": 58977, - "ic_fluent_folder_prohibited_20_filled": 58985, - "ic_fluent_folder_prohibited_24_filled": 58986, - "ic_fluent_folder_prohibited_28_filled": 58987, - "ic_fluent_folder_prohibited_48_filled": 58988, - "ic_fluent_folder_swap_16_filled": 58989, - "ic_fluent_folder_swap_20_filled": 58990, - "ic_fluent_folder_swap_24_filled": 58991, - "ic_fluent_full_screen_maximize_24_filled": 59026, - "ic_fluent_full_screen_minimize_24_filled": 59029, - "ic_fluent_image_multiple_20_filled": 59186, - "ic_fluent_image_multiple_24_filled": 59187, - "ic_fluent_image_multiple_28_filled": 59188, - "ic_fluent_leaf_one_16_filled": 59239, - "ic_fluent_leaf_one_20_filled": 59240, - "ic_fluent_leaf_one_24_filled": 59241, - "ic_fluent_link_dismiss_20_filled": 59265, - "ic_fluent_location_dismiss_24_filled": 59285, - "ic_fluent_lock_closed_12_filled": 59291, - "ic_fluent_lock_closed_16_filled": 59292, - "ic_fluent_lock_closed_20_filled": 59293, - "ic_fluent_lock_closed_24_filled": 59294, - "ic_fluent_lock_open_20_filled": 59299, - "ic_fluent_lock_open_24_filled": 59300, - "ic_fluent_lock_open_28_filled": 59301, - "ic_fluent_mail_inbox_all_24_filled": 59333, - "ic_fluent_mail_inbox_arrow_right_24_filled": 59336, - "ic_fluent_mail_inbox_arrow_up_20_filled": 59337, - "ic_fluent_mail_inbox_arrow_up_24_filled": 59338, - "ic_fluent_mail_off_24_filled": 59352, - "ic_fluent_more_horizontal_16_filled": 59441, - "ic_fluent_more_horizontal_20_filled": 59442, - "ic_fluent_more_horizontal_24_filled": 59443, - "ic_fluent_more_horizontal_28_filled": 59444, - "ic_fluent_more_horizontal_48_filled": 59446, - "ic_fluent_music_note_1_20_filled": 59487, - "ic_fluent_music_note_1_24_filled": 59488, - "ic_fluent_music_note_2_16_filled": 59489, - "ic_fluent_music_note_2_24_filled": 59491, - "ic_fluent_people_team_delete_24_filled": 59687, - "ic_fluent_phone_add_24_filled": 59751, - "ic_fluent_phone_arrow_right_20_filled": 59752, - "ic_fluent_phone_arrow_right_24_filled": 59753, - "ic_fluent_phone_dismiss_24_filled": 59757, - "ic_fluent_phone_lock_24_filled": 59766, - "ic_fluent_phone_span_in_16_filled": 59771, - "ic_fluent_phone_span_in_20_filled": 59772, - "ic_fluent_phone_span_in_24_filled": 59773, - "ic_fluent_phone_span_in_28_filled": 59774, - "ic_fluent_phone_span_out_16_filled": 59775, - "ic_fluent_phone_span_out_20_filled": 59776, - "ic_fluent_phone_span_out_24_filled": 59777, - "ic_fluent_phone_span_out_28_filled": 59778, - "ic_fluent_position_backward_20_filled": 59834, - "ic_fluent_position_backward_24_filled": 59835, - "ic_fluent_position_forward_20_filled": 59836, - "ic_fluent_position_forward_24_filled": 59837, - "ic_fluent_position_to_back_20_filled": 59838, - "ic_fluent_position_to_back_24_filled": 59839, - "ic_fluent_position_to_front_20_filled": 59840, - "ic_fluent_position_to_front_24_filled": 59841, - "ic_fluent_resize_large_16_filled": 59933, - "ic_fluent_resize_large_20_filled": 59934, - "ic_fluent_resize_large_24_filled": 59935, - "ic_fluent_resize_small_16_filled": 59936, - "ic_fluent_resize_small_20_filled": 59937, - "ic_fluent_resize_small_24_filled": 59938, - "ic_fluent_save_edit_20_filled": 59984, - "ic_fluent_save_edit_24_filled": 59985, - "ic_fluent_search_info_20_filled": 60039, - "ic_fluent_search_visual_16_filled": 60043, - "ic_fluent_search_visual_20_filled": 60044, - "ic_fluent_search_visual_24_filled": 60045, - "ic_fluent_select_all_on_24_filled": 60048, - "ic_fluent_share_screen_start_20_filled": 60099, - "ic_fluent_share_screen_start_24_filled": 60100, - "ic_fluent_share_screen_start_28_filled": 60101, - "ic_fluent_share_screen_stop_16_filled": 60103, - "ic_fluent_share_screen_stop_20_filled": 60104, - "ic_fluent_share_screen_stop_24_filled": 60105, - "ic_fluent_share_screen_stop_28_filled": 60106, - "ic_fluent_share_screen_stop_48_filled": 60107, - "ic_fluent_shield_dismiss_16_filled": 60117, - "ic_fluent_shifts_prohibited_24_filled": 60143, - "ic_fluent_shifts_question_mark_24_filled": 60145, - "ic_fluent_speaker_2_16_filled": 60234, - "ic_fluent_speaker_2_20_filled": 60235, - "ic_fluent_speaker_2_24_filled": 60236, - "ic_fluent_speaker_2_28_filled": 60237, - "ic_fluent_speaker_2_48_filled": 60239, - "ic_fluent_speaker_mute_16_filled": 60242, - "ic_fluent_speaker_mute_20_filled": 60243, - "ic_fluent_speaker_mute_24_filled": 60244, - "ic_fluent_speaker_mute_28_filled": 60245, - "ic_fluent_speaker_mute_48_filled": 60246, - "ic_fluent_star_arrow_right_end_24_filled": 60331, - "ic_fluent_subtract_12_filled": 60360, - "ic_fluent_subtract_16_filled": 60361, - "ic_fluent_subtract_20_filled": 60362, - "ic_fluent_subtract_24_filled": 60363, - "ic_fluent_subtract_28_filled": 60364, - "ic_fluent_subtract_48_filled": 60365, - "ic_fluent_tab_add_20_filled": 60383, - "ic_fluent_tab_add_24_filled": 60384, - "ic_fluent_tab_arrow_left_24_filled": 60386, - "ic_fluent_tab_shield_dismiss_20_filled": 60396, - "ic_fluent_tab_shield_dismiss_24_filled": 60397, - "ic_fluent_table_delete_column_24_filled": 60423, - "ic_fluent_table_delete_row_24_filled": 60427, - "ic_fluent_table_freeze_column_and_row_24_filled": 60441, - "ic_fluent_table_insert_column_24_filled": 60449, - "ic_fluent_table_insert_row_24_filled": 60453, - "ic_fluent_table_move_above_24_filled": 60465, - "ic_fluent_table_move_below_24_filled": 60469, - "ic_fluent_table_resize_column_24_filled": 60480, - "ic_fluent_table_resize_row_24_filled": 60484, - "ic_fluent_table_stack_above_24_filled": 60498, - "ic_fluent_table_stack_below_24_filled": 60502, - "ic_fluent_table_stack_left_24_filled": 60506, - "ic_fluent_table_stack_right_24_filled": 60510, - "ic_fluent_tag_question_mark_16_filled": 60544, - "ic_fluent_tag_question_mark_24_filled": 60546, - "ic_fluent_text_grammar_arrow_left_20_filled": 60690, - "ic_fluent_text_grammar_arrow_left_24_filled": 60691, - "ic_fluent_text_grammar_arrow_right_20_filled": 60692, - "ic_fluent_text_grammar_arrow_right_24_filled": 60693, - "ic_fluent_text_grammar_checkmark_20_filled": 60694, - "ic_fluent_text_grammar_checkmark_24_filled": 60695, - "ic_fluent_text_grammar_dismiss_20_filled": 60696, - "ic_fluent_text_grammar_dismiss_24_filled": 60697, - "ic_fluent_text_grammar_settings_20_filled": 60699, - "ic_fluent_text_grammar_settings_24_filled": 60700, - "ic_fluent_text_grammar_wand_16_filled": 60701, - "ic_fluent_text_grammar_wand_20_filled": 60702, - "ic_fluent_text_grammar_wand_24_filled": 60703, - "ic_fluent_text_paragraph_20_filled": 60738, - "ic_fluent_text_paragraph_24_filled": 60739, - "ic_fluent_text_paragraph_direction_20_filled": 60740, - "ic_fluent_text_paragraph_direction_24_filled": 60741, - "ic_fluent_text_position_behind_20_filled": 60747, - "ic_fluent_text_position_behind_24_filled": 60748, - "ic_fluent_text_position_front_20_filled": 60749, - "ic_fluent_text_position_front_24_filled": 60750, - "ic_fluent_text_position_line_20_filled": 60751, - "ic_fluent_text_position_line_24_filled": 60752, - "ic_fluent_text_position_square_20_filled": 60753, - "ic_fluent_text_position_square_24_filled": 60754, - "ic_fluent_text_position_through_20_filled": 60755, - "ic_fluent_text_position_through_24_filled": 60756, - "ic_fluent_text_position_tight_20_filled": 60757, - "ic_fluent_text_position_tight_24_filled": 60758, - "ic_fluent_text_position_top_bottom_20_filled": 60759, - "ic_fluent_text_position_top_bottom_24_filled": 60760, - "ic_fluent_textbox_align_center_20_filled": 60781, - "ic_fluent_textbox_align_center_24_filled": 60782, - "ic_fluent_thumb_like_16_filled": 60792, - "ic_fluent_ticket_horizontal_20_filled": 60799, - "ic_fluent_ticket_horizontal_24_filled": 60800, - "ic_fluent_wand_16_filled": 60982, - "ic_fluent_wand_20_filled": 60983, - "ic_fluent_wand_24_filled": 60984, - "ic_fluent_wand_28_filled": 60985, - "ic_fluent_wand_48_filled": 60986, - "ic_fluent_window_arrow_up_24_filled": 61036, - "ic_fluent_window_header_horizontal_20_filled": 61044, - "ic_fluent_window_header_vertical_20_filled": 61046, - "ic_fluent_accessibility_32_filled": 57345, - "ic_fluent_accessibility_checkmark_24_filled": 57348, - "ic_fluent_add_circle_16_filled": 57349, - "ic_fluent_add_circle_32_filled": 57350, - "ic_fluent_animal_rabbit_16_filled": 57424, - "ic_fluent_animal_rabbit_20_filled": 57425, - "ic_fluent_animal_rabbit_24_filled": 57426, - "ic_fluent_animal_rabbit_28_filled": 57427, - "ic_fluent_animal_turtle_16_filled": 57428, - "ic_fluent_animal_turtle_20_filled": 57429, - "ic_fluent_animal_turtle_24_filled": 57430, - "ic_fluent_animal_turtle_28_filled": 57431, - "ic_fluent_book_contacts_20_filled": 57726, - "ic_fluent_book_contacts_24_filled": 57727, - "ic_fluent_book_contacts_28_filled": 57728, - "ic_fluent_book_open_globe_20_filled": 57745, - "ic_fluent_calligraphy_pen_checkmark_20_filled": 58026, - "ic_fluent_calligraphy_pen_question_mark_20_filled": 58028, - "ic_fluent_cellular_5g_24_filled": 58055, - "ic_fluent_checkbox_1_24_filled": 58123, - "ic_fluent_checkbox_2_24_filled": 58125, - "ic_fluent_checkbox_arrow_right_24_filled": 58127, - "ic_fluent_checkbox_person_24_filled": 58134, - "ic_fluent_checkbox_warning_24_filled": 58136, - "ic_fluent_circle_edit_24_filled": 58186, - "ic_fluent_clock_32_filled": 58243, - "ic_fluent_cloud_16_filled": 58263, - "ic_fluent_cloud_32_filled": 58265, - "ic_fluent_comment_note_24_filled": 58379, - "ic_fluent_content_settings_32_filled": 58403, - "ic_fluent_desktop_mac_16_filled": 58532, - "ic_fluent_desktop_mac_32_filled": 58535, - "ic_fluent_document_arrow_right_24_filled": 58611, - "ic_fluent_document_checkmark_24_filled": 58622, - "ic_fluent_dual_screen_dismiss_24_filled": 58794, - "ic_fluent_dual_screen_speaker_24_filled": 58805, - "ic_fluent_filter_dismiss_24_filled": 58907, - "ic_fluent_filter_sync_24_filled": 58909, - "ic_fluent_folder_16_filled": 58960, - "ic_fluent_folder_32_filled": 58961, - "ic_fluent_globe_person_24_filled": 59077, - "ic_fluent_home_person_24_filled": 59173, - "ic_fluent_image_globe_24_filled": 59184, - "ic_fluent_inking_tool_32_filled": 59207, - "ic_fluent_key_16_filled": 59214, - "ic_fluent_key_32_filled": 59215, - "ic_fluent_line_style_24_filled": 59261, - "ic_fluent_math_formula_16_filled": 59375, - "ic_fluent_math_formula_32_filled": 59378, - "ic_fluent_notebook_add_24_filled": 59521, - "ic_fluent_notebook_section_arrow_right_24_filled": 59528, - "ic_fluent_notebook_subsection_24_filled": 59530, - "ic_fluent_orientation_20_filled": 59565, - "ic_fluent_people_32_filled": 59646, - "ic_fluent_person_note_24_filled": 59729, - "ic_fluent_phone_laptop_16_filled": 59762, - "ic_fluent_phone_laptop_32_filled": 59763, - "ic_fluent_phone_speaker_24_filled": 59780, - "ic_fluent_pi_24_filled": 59789, - "ic_fluent_premium_32_filled": 59843, - "ic_fluent_receipt_20_filled": 59910, - "ic_fluent_receipt_24_filled": 59911, - "ic_fluent_rss_24_filled": 59974, - "ic_fluent_screen_cut_20_filled": 60031, - "ic_fluent_screen_person_20_filled": 60032, - "ic_fluent_shape_exclude_16_filled": 60065, - "ic_fluent_shape_exclude_20_filled": 60066, - "ic_fluent_shape_exclude_24_filled": 60067, - "ic_fluent_shape_intersect_16_filled": 60068, - "ic_fluent_shape_intersect_20_filled": 60069, - "ic_fluent_shape_intersect_24_filled": 60070, - "ic_fluent_shape_subtract_16_filled": 60071, - "ic_fluent_shape_subtract_20_filled": 60072, - "ic_fluent_shape_subtract_24_filled": 60073, - "ic_fluent_shape_union_16_filled": 60074, - "ic_fluent_shape_union_20_filled": 60075, - "ic_fluent_shape_union_24_filled": 60076, - "ic_fluent_shifts_16_filled": 60132, - "ic_fluent_slide_settings_24_filled": 60205, - "ic_fluent_slide_transition_24_filled": 60213, - "ic_fluent_star_emphasis_32_filled": 60340, - "ic_fluent_table_32_filled": 60400, - "ic_fluent_table_cell_edit_24_filled": 60413, - "ic_fluent_tablet_speaker_24_filled": 60520, - "ic_fluent_target_32_filled": 60558, - "ic_fluent_timer_3_24_filled": 60811, - "ic_fluent_voicemail_28_filled": 60964, - "ic_fluent_walkie_talkie_20_filled": 60970, - "ic_fluent_warning_shield_20_filled": 60989, - "ic_fluent_add_subtract_circle_16_filled": 57354, - "ic_fluent_add_subtract_circle_20_filled": 57355, - "ic_fluent_add_subtract_circle_24_filled": 57356, - "ic_fluent_add_subtract_circle_28_filled": 57357, - "ic_fluent_add_subtract_circle_48_filled": 57358, - "ic_fluent_beach_16_filled": 57683, - "ic_fluent_beach_20_filled": 57684, - "ic_fluent_beach_24_filled": 57685, - "ic_fluent_beach_28_filled": 57686, - "ic_fluent_building_16_filled": 57886, - "ic_fluent_calendar_edit_16_filled": 57945, - "ic_fluent_calendar_edit_20_filled": 57946, - "ic_fluent_calendar_edit_24_filled": 57947, - "ic_fluent_calendar_ltr_20_filled": 57954, - "ic_fluent_calendar_ltr_24_filled": 57955, - "ic_fluent_calendar_ltr_28_filled": 57956, - "ic_fluent_calendar_rtl_20_filled": 57975, - "ic_fluent_calendar_rtl_24_filled": 57976, - "ic_fluent_calendar_rtl_28_filled": 57977, - "ic_fluent_circle_small_20_filled": 58195, - "ic_fluent_clipboard_16_filled": 58199, - "ic_fluent_clipboard_arrow_right_16_filled": 58201, - "ic_fluent_clipboard_arrow_right_20_filled": 58202, - "ic_fluent_clipboard_arrow_right_24_filled": 58203, - "ic_fluent_clipboard_text_ltr_20_filled": 58238, - "ic_fluent_clipboard_text_ltr_24_filled": 58239, - "ic_fluent_clipboard_text_rtl_20_filled": 58241, - "ic_fluent_clipboard_text_rtl_24_filled": 58242, - "ic_fluent_cube_sync_24_filled": 58438, - "ic_fluent_document_question_mark_16_filled": 58684, - "ic_fluent_document_question_mark_20_filled": 58685, - "ic_fluent_document_question_mark_24_filled": 58686, - "ic_fluent_door_arrow_left_20_filled": 58737, - "ic_fluent_drop_12_filled": 58778, - "ic_fluent_drop_16_filled": 58779, - "ic_fluent_drop_20_filled": 58780, - "ic_fluent_drop_24_filled": 58781, - "ic_fluent_drop_28_filled": 58782, - "ic_fluent_drop_48_filled": 58783, - "ic_fluent_dumbbell_16_filled": 58811, - "ic_fluent_dumbbell_20_filled": 58812, - "ic_fluent_dumbbell_24_filled": 58813, - "ic_fluent_dumbbell_28_filled": 58814, - "ic_fluent_edit_off_20_filled": 58820, - "ic_fluent_eyedropper_20_filled": 58890, - "ic_fluent_eyedropper_24_filled": 58891, - "ic_fluent_flag_off_16_filled": 58914, - "ic_fluent_flag_off_20_filled": 58915, - "ic_fluent_fps_120_20_filled": 59010, - "ic_fluent_fps_120_24_filled": 59011, - "ic_fluent_fps_240_20_filled": 59012, - "ic_fluent_guitar_16_filled": 59103, - "ic_fluent_guitar_20_filled": 59104, - "ic_fluent_guitar_24_filled": 59105, - "ic_fluent_guitar_28_filled": 59106, - "ic_fluent_key_command_16_filled": 59216, - "ic_fluent_more_vertical_16_filled": 59447, - "ic_fluent_people_checkmark_20_filled": 59653, - "ic_fluent_people_checkmark_24_filled": 59654, - "ic_fluent_play_circle_16_filled": 59813, - "ic_fluent_play_circle_20_filled": 59814, - "ic_fluent_play_circle_28_filled": 59815, - "ic_fluent_re_order_dots_horizontal_16_filled": 59900, - "ic_fluent_re_order_dots_horizontal_20_filled": 59901, - "ic_fluent_re_order_dots_horizontal_24_filled": 59902, - "ic_fluent_re_order_dots_vertical_16_filled": 59903, - "ic_fluent_re_order_dots_vertical_20_filled": 59904, - "ic_fluent_re_order_dots_vertical_24_filled": 59905, - "ic_fluent_scale_fill_20_filled": 59991, - "ic_fluent_skip_back_10_20_filled": 60164, - "ic_fluent_skip_forward_10_20_filled": 60169, - "ic_fluent_skip_forward_30_20_filled": 60174, - "ic_fluent_slide_eraser_24_filled": 60191, - "ic_fluent_split_horizontal_12_filled": 60256, - "ic_fluent_split_horizontal_16_filled": 60257, - "ic_fluent_split_horizontal_20_filled": 60258, - "ic_fluent_split_horizontal_24_filled": 60259, - "ic_fluent_split_horizontal_28_filled": 60260, - "ic_fluent_split_horizontal_32_filled": 60261, - "ic_fluent_split_horizontal_48_filled": 60262, - "ic_fluent_split_vertical_12_filled": 60263, - "ic_fluent_split_vertical_16_filled": 60264, - "ic_fluent_split_vertical_20_filled": 60265, - "ic_fluent_split_vertical_24_filled": 60266, - "ic_fluent_split_vertical_28_filled": 60267, - "ic_fluent_split_vertical_32_filled": 60268, - "ic_fluent_split_vertical_48_filled": 60269, - "ic_fluent_sport_soccer_20_filled": 60282, - "ic_fluent_sport_soccer_24_filled": 60283, - "ic_fluent_symbols_20_filled": 60379, - "ic_fluent_table_delete_column_20_filled": 60422, - "ic_fluent_table_delete_row_20_filled": 60426, - "ic_fluent_table_stack_above_20_filled": 60497, - "ic_fluent_table_stack_left_20_filled": 60505, - "ic_fluent_table_stack_right_20_filled": 60509, - "ic_fluent_task_list_ltr_20_filled": 60560, - "ic_fluent_task_list_ltr_24_filled": 60561, - "ic_fluent_task_list_rtl_20_filled": 60562, - "ic_fluent_task_list_rtl_24_filled": 60563, - "ic_fluent_tetris_app_16_filled": 60581, - "ic_fluent_tetris_app_20_filled": 60582, - "ic_fluent_tetris_app_24_filled": 60583, - "ic_fluent_tetris_app_28_filled": 60584, - "ic_fluent_tetris_app_32_filled": 60585, - "ic_fluent_tetris_app_48_filled": 60586, - "ic_fluent_text_bullet_list_ltr_20_filled": 60631, - "ic_fluent_text_bullet_list_ltr_24_filled": 60632, - "ic_fluent_text_bullet_list_rtl_20_filled": 60638, - "ic_fluent_text_bullet_list_rtl_24_filled": 60639, - "ic_fluent_vehicle_cab_16_filled": 60885, - "ic_fluent_vehicle_cab_20_filled": 60886, - "ic_fluent_vehicle_cab_28_filled": 60887, - "ic_fluent_vehicle_truck_profile_24_filled": 60911, - "ic_fluent_bot_add_20_filled": 57805, - "ic_fluent_chart_person_20_filled": 58099, - "ic_fluent_chart_person_24_filled": 58100, - "ic_fluent_chart_person_28_filled": 58101, - "ic_fluent_chart_person_48_filled": 58102, - "ic_fluent_mic_prohibited_16_filled": 59407, - "ic_fluent_mic_prohibited_28_filled": 59410, - "ic_fluent_mic_prohibited_48_filled": 59411, - "ic_fluent_tv_usb_16_filled": 60871, - "ic_fluent_tv_usb_20_filled": 60872, - "ic_fluent_tv_usb_24_filled": 60873, - "ic_fluent_tv_usb_28_filled": 60874, - "ic_fluent_tv_usb_48_filled": 60875, - "ic_fluent_video_360_off_20_filled": 60915, - "ic_fluent_video_prohibited_16_filled": 60955, - "ic_fluent_video_prohibited_24_filled": 60957, - "ic_fluent_video_prohibited_28_filled": 60958, - "ic_fluent_alert_32_filled": 57365, - "ic_fluent_arrow_down_left_20_filled": 57531, - "ic_fluent_arrow_step_back_16_filled": 57592, - "ic_fluent_arrow_step_in_16_filled": 57595, - "ic_fluent_arrow_step_out_16_filled": 57610, - "ic_fluent_arrow_step_over_16_filled": 57614, - "ic_fluent_arrow_up_right_20_filled": 57647, - "ic_fluent_backpack_32_filled": 57669, - "ic_fluent_book_contacts_32_filled": 57729, - "ic_fluent_bookmark_32_filled": 57765, - "ic_fluent_bookmark_multiple_24_filled": 57768, - "ic_fluent_branch_compare_16_filled": 57838, - "ic_fluent_branch_compare_20_filled": 57839, - "ic_fluent_branch_compare_24_filled": 57840, - "ic_fluent_branch_fork_16_filled": 57841, - "ic_fluent_branch_fork_20_filled": 57842, - "ic_fluent_branch_fork_24_filled": 57843, - "ic_fluent_calendar_ltr_16_filled": 57953, - "ic_fluent_calendar_ltr_32_filled": 57957, - "ic_fluent_calendar_rtl_32_filled": 57978, - "ic_fluent_call_32_filled": 57991, - "ic_fluent_calligraphy_pen_error_20_filled": 58027, - "ic_fluent_chat_32_filled": 58105, - "ic_fluent_clipboard_data_bar_32_filled": 58214, - "ic_fluent_clock_alarm_32_filled": 58245, - "ic_fluent_content_view_32_filled": 58405, - "ic_fluent_desktop_32_filled": 58515, - "ic_fluent_dismiss_square_multiple_16_filled": 58578, - "ic_fluent_document_32_filled": 58596, - "ic_fluent_document_pdf_32_filled": 58676, - "ic_fluent_food_pizza_20_filled": 59005, - "ic_fluent_food_pizza_24_filled": 59006, - "ic_fluent_globe_32_filled": 59071, - "ic_fluent_headset_32_filled": 59141, - "ic_fluent_heart_pulse_20_filled": 59150, - "ic_fluent_multiplier_1_2x_20_filled": 59451, - "ic_fluent_multiplier_1_2x_24_filled": 59452, - "ic_fluent_multiplier_1_2x_28_filled": 59453, - "ic_fluent_multiplier_1_2x_32_filled": 59454, - "ic_fluent_multiplier_1_2x_48_filled": 59455, - "ic_fluent_multiplier_1_5x_20_filled": 59456, - "ic_fluent_multiplier_1_5x_24_filled": 59457, - "ic_fluent_multiplier_1_5x_28_filled": 59458, - "ic_fluent_multiplier_1_5x_32_filled": 59459, - "ic_fluent_multiplier_1_5x_48_filled": 59460, - "ic_fluent_multiplier_1_8x_20_filled": 59461, - "ic_fluent_multiplier_1_8x_24_filled": 59462, - "ic_fluent_multiplier_1_8x_28_filled": 59463, - "ic_fluent_multiplier_1_8x_32_filled": 59464, - "ic_fluent_multiplier_1_8x_48_filled": 59465, - "ic_fluent_multiplier_1x_20_filled": 59466, - "ic_fluent_multiplier_1x_24_filled": 59467, - "ic_fluent_multiplier_1x_28_filled": 59468, - "ic_fluent_multiplier_1x_32_filled": 59469, - "ic_fluent_multiplier_1x_48_filled": 59470, - "ic_fluent_multiplier_2x_20_filled": 59471, - "ic_fluent_multiplier_2x_24_filled": 59472, - "ic_fluent_multiplier_2x_28_filled": 59473, - "ic_fluent_multiplier_2x_32_filled": 59474, - "ic_fluent_multiplier_2x_48_filled": 59475, - "ic_fluent_my_location_16_filled": 59499, - "ic_fluent_my_location_20_filled": 59500, - "ic_fluent_notepad_32_filled": 59533, - "ic_fluent_patient_32_filled": 59613, - "ic_fluent_people_team_32_filled": 59682, - "ic_fluent_pulse_32_filled": 59879, - "ic_fluent_remote_16_filled": 59927, - "ic_fluent_ribbon_32_filled": 59953, - "ic_fluent_shifts_32_filled": 60135, - "ic_fluent_skip_forward_10_24_filled": 60170, - "ic_fluent_skip_forward_10_28_filled": 60171, - "ic_fluent_skip_forward_10_32_filled": 60172, - "ic_fluent_skip_forward_10_48_filled": 60173, - "ic_fluent_skip_forward_30_24_filled": 60175, - "ic_fluent_skip_forward_30_28_filled": 60176, - "ic_fluent_skip_forward_30_32_filled": 60177, - "ic_fluent_skip_forward_30_48_filled": 60178, - "ic_fluent_subtract_square_multiple_16_filled": 60373, - "ic_fluent_text_sort_ascending_16_filled": 60762, - "ic_fluent_text_sort_ascending_24_filled": 60763, - "ic_fluent_text_sort_descending_16_filled": 60764, - "ic_fluent_text_sort_descending_24_filled": 60765, - "ic_fluent_video_person_call_32_filled": 60944, - "ic_fluent_weather_sunny_32_filled": 61006, - "ic_fluent_align_bottom_16_filled": 57374, - "ic_fluent_align_bottom_20_filled": 57375, - "ic_fluent_align_bottom_24_filled": 57376, - "ic_fluent_align_bottom_28_filled": 57377, - "ic_fluent_align_bottom_32_filled": 57378, - "ic_fluent_align_bottom_48_filled": 57379, - "ic_fluent_align_center_horizontal_16_filled": 57380, - "ic_fluent_align_center_horizontal_20_filled": 57381, - "ic_fluent_align_center_horizontal_24_filled": 57382, - "ic_fluent_align_center_horizontal_28_filled": 57383, - "ic_fluent_align_center_horizontal_32_filled": 57384, - "ic_fluent_align_center_horizontal_48_filled": 57385, - "ic_fluent_align_center_vertical_16_filled": 57386, - "ic_fluent_align_center_vertical_20_filled": 57387, - "ic_fluent_align_center_vertical_24_filled": 57388, - "ic_fluent_align_center_vertical_28_filled": 57389, - "ic_fluent_align_center_vertical_32_filled": 57390, - "ic_fluent_align_center_vertical_48_filled": 57391, - "ic_fluent_align_left_16_filled": 57394, - "ic_fluent_align_left_20_filled": 57395, - "ic_fluent_align_left_24_filled": 57396, - "ic_fluent_align_left_28_filled": 57397, - "ic_fluent_align_left_32_filled": 57398, - "ic_fluent_align_left_48_filled": 57399, - "ic_fluent_align_right_16_filled": 57400, - "ic_fluent_align_right_20_filled": 57401, - "ic_fluent_align_right_24_filled": 57402, - "ic_fluent_align_right_28_filled": 57403, - "ic_fluent_align_right_32_filled": 57404, - "ic_fluent_align_right_48_filled": 57405, - "ic_fluent_align_top_16_filled": 57417, - "ic_fluent_align_top_20_filled": 57418, - "ic_fluent_align_top_24_filled": 57419, - "ic_fluent_align_top_28_filled": 57420, - "ic_fluent_align_top_32_filled": 57421, - "ic_fluent_align_top_48_filled": 57422, - "ic_fluent_calculator_24_filled": 57927, - "ic_fluent_camera_16_filled": 58029, - "ic_fluent_group_dismiss_24_filled": 59094, - "ic_fluent_group_return_24_filled": 59097, - "ic_fluent_hand_left_16_filled": 59111, - "ic_fluent_hand_left_24_filled": 59113, - "ic_fluent_hand_left_28_filled": 59114, - "ic_fluent_hand_right_16_filled": 59115, - "ic_fluent_home_12_filled": 59163, - "ic_fluent_keyboard_shift_16_filled": 59230, - "ic_fluent_keyboard_shift_20_filled": 59231, - "ic_fluent_link_square_20_filled": 59269, - "ic_fluent_mail_inbox_checkmark_16_filled": 59339, - "ic_fluent_mail_inbox_checkmark_20_filled": 59340, - "ic_fluent_mail_inbox_checkmark_24_filled": 59341, - "ic_fluent_music_note_2_20_filled": 59490, - "ic_fluent_my_location_12_filled": 59498, - "ic_fluent_number_symbol_square_20_filled": 59546, - "ic_fluent_number_symbol_square_24_filled": 59547, - "ic_fluent_person_32_filled": 59693, - "ic_fluent_person_5_32_filled": 59695, - "ic_fluent_search_16_filled": 60036, - "ic_fluent_send_16_filled": 60055, - "ic_fluent_symbols_16_filled": 60378, - "ic_fluent_teddy_20_filled": 60574, - "ic_fluent_video_person_star_off_24_filled": 60953, - "ic_fluent_apps_add_in_16_filled": 57442, - "ic_fluent_apps_add_in_28_filled": 57443, - "ic_fluent_arrow_curve_down_left_16_filled": 57528, - "ic_fluent_arrow_curve_down_left_24_filled": 57529, - "ic_fluent_arrow_curve_down_left_28_filled": 57530, - "ic_fluent_arrow_upload_16_filled": 57650, - "ic_fluent_attach_12_filled": 57654, - "ic_fluent_board_16_filled": 57702, - "ic_fluent_board_20_filled": 57703, - "ic_fluent_board_28_filled": 57704, - "ic_fluent_board_split_16_filled": 57709, - "ic_fluent_board_split_20_filled": 57710, - "ic_fluent_board_split_24_filled": 57711, - "ic_fluent_board_split_28_filled": 57712, - "ic_fluent_board_split_48_filled": 57713, - "ic_fluent_calendar_empty_32_filled": 57948, - "ic_fluent_calendar_ltr_12_filled": 57952, - "ic_fluent_calendar_multiple_32_filled": 57963, - "ic_fluent_chevron_up_down_20_filled": 58180, - "ic_fluent_chevron_up_down_24_filled": 58181, - "ic_fluent_circle_12_filled": 58182, - "ic_fluent_circle_half_fill_12_filled": 58188, - "ic_fluent_circle_line_12_filled": 58190, - "ic_fluent_closed_caption_off_16_filled": 58258, - "ic_fluent_closed_caption_off_20_filled": 58259, - "ic_fluent_closed_caption_off_24_filled": 58260, - "ic_fluent_closed_caption_off_28_filled": 58261, - "ic_fluent_closed_caption_off_48_filled": 58262, - "ic_fluent_desktop_pulse_16_filled": 58536, - "ic_fluent_desktop_pulse_20_filled": 58537, - "ic_fluent_desktop_pulse_24_filled": 58538, - "ic_fluent_desktop_pulse_28_filled": 58539, - "ic_fluent_desktop_pulse_32_filled": 58540, - "ic_fluent_desktop_pulse_48_filled": 58541, - "ic_fluent_developer_board_20_filled": 58552, - "ic_fluent_dismiss_square_24_filled": 58577, - "ic_fluent_door_arrow_left_24_filled": 58738, - "ic_fluent_emoji_hand_20_filled": 58843, - "ic_fluent_filter_16_filled": 58903, - "ic_fluent_flash_16_filled": 58916, - "ic_fluent_flash_28_filled": 58919, - "ic_fluent_flash_checkmark_16_filled": 58922, - "ic_fluent_flash_checkmark_20_filled": 58923, - "ic_fluent_flash_checkmark_24_filled": 58924, - "ic_fluent_flash_checkmark_28_filled": 58925, - "ic_fluent_folder_prohibited_16_filled": 58984, - "ic_fluent_grid_16_filled": 59088, - "ic_fluent_headphones_20_filled": 59131, - "ic_fluent_headphones_32_filled": 59132, - "ic_fluent_headphones_48_filled": 59133, - "ic_fluent_headphones_sound_wave_20_filled": 59134, - "ic_fluent_headphones_sound_wave_24_filled": 59135, - "ic_fluent_headphones_sound_wave_28_filled": 59136, - "ic_fluent_headphones_sound_wave_32_filled": 59137, - "ic_fluent_headphones_sound_wave_48_filled": 59138, - "ic_fluent_home_checkmark_16_filled": 59168, - "ic_fluent_home_checkmark_20_filled": 59169, - "ic_fluent_ink_stroke_20_filled": 59205, - "ic_fluent_ink_stroke_24_filled": 59206, - "ic_fluent_library_16_filled": 59247, - "ic_fluent_library_20_filled": 59248, - "ic_fluent_list_16_filled": 59271, - "ic_fluent_location_arrow_left_48_filled": 59281, - "ic_fluent_location_arrow_right_48_filled": 59282, - "ic_fluent_location_arrow_up_48_filled": 59283, - "ic_fluent_mail_inbox_checkmark_28_filled": 59342, - "ic_fluent_map_20_filled": 59368, - "ic_fluent_multiplier_5x_20_filled": 59476, - "ic_fluent_multiplier_5x_24_filled": 59477, - "ic_fluent_multiplier_5x_28_filled": 59478, - "ic_fluent_multiplier_5x_32_filled": 59479, - "ic_fluent_multiplier_5x_48_filled": 59480, - "ic_fluent_music_note_2_play_20_filled": 59492, - "ic_fluent_notepad_12_filled": 59532, - "ic_fluent_organization_12_filled": 59560, - "ic_fluent_people_community_add_20_filled": 59655, - "ic_fluent_people_community_add_28_filled": 59656, - "ic_fluent_person_6_32_filled": 59697, - "ic_fluent_person_add_16_filled": 59699, - "ic_fluent_person_add_28_filled": 59700, - "ic_fluent_person_prohibited_16_filled": 59732, - "ic_fluent_person_prohibited_28_filled": 59734, - "ic_fluent_pin_28_filled": 59796, - "ic_fluent_pin_32_filled": 59797, - "ic_fluent_pin_48_filled": 59798, - "ic_fluent_premium_person_20_filled": 59845, - "ic_fluent_premium_person_24_filled": 59846, - "ic_fluent_prohibited_multiple_16_filled": 59864, - "ic_fluent_prohibited_multiple_20_filled": 59865, - "ic_fluent_prohibited_multiple_24_filled": 59866, - "ic_fluent_read_aloud_16_filled": 59906, - "ic_fluent_read_aloud_28_filled": 59907, - "ic_fluent_shield_16_filled": 60108, - "ic_fluent_shield_28_filled": 60109, - "ic_fluent_shield_48_filled": 60110, - "ic_fluent_shield_checkmark_16_filled": 60112, - "ic_fluent_shield_checkmark_20_filled": 60113, - "ic_fluent_shield_checkmark_24_filled": 60114, - "ic_fluent_shield_checkmark_28_filled": 60115, - "ic_fluent_shield_checkmark_48_filled": 60116, - "ic_fluent_top_speed_20_filled": 60827, - "ic_fluent_checkmark_circle_12_filled": 58139, - "ic_fluent_add_square_multiple_16_filled": 57352, - "ic_fluent_add_square_multiple_20_filled": 57353, - "ic_fluent_arrow_forward_48_filled": 57553, - "ic_fluent_arrow_sync_16_filled": 57616, - "ic_fluent_book_open_28_filled": 57742, - "ic_fluent_book_open_32_filled": 57743, - "ic_fluent_book_open_48_filled": 57744, - "ic_fluent_book_open_microphone_20_filled": 57747, - "ic_fluent_book_open_microphone_24_filled": 57748, - "ic_fluent_book_open_microphone_28_filled": 57749, - "ic_fluent_book_open_microphone_32_filled": 57750, - "ic_fluent_book_open_microphone_48_filled": 57751, - "ic_fluent_briefcase_off_16_filled": 57860, - "ic_fluent_briefcase_off_20_filled": 57861, - "ic_fluent_briefcase_off_24_filled": 57862, - "ic_fluent_briefcase_off_28_filled": 57863, - "ic_fluent_briefcase_off_32_filled": 57864, - "ic_fluent_briefcase_off_48_filled": 57865, - "ic_fluent_building_bank_28_filled": 57891, - "ic_fluent_building_bank_48_filled": 57892, - "ic_fluent_building_bank_link_16_filled": 57893, - "ic_fluent_building_bank_link_20_filled": 57894, - "ic_fluent_building_bank_link_24_filled": 57895, - "ic_fluent_building_bank_link_28_filled": 57896, - "ic_fluent_building_bank_link_48_filled": 57897, - "ic_fluent_calendar_mail_16_filled": 57959, - "ic_fluent_calendar_rtl_12_filled": 57973, - "ic_fluent_calendar_rtl_16_filled": 57974, - "ic_fluent_chevron_double_up_16_filled": 58177, - "ic_fluent_chevron_double_up_20_filled": 58178, - "ic_fluent_cloud_28_filled": 58264, - "ic_fluent_cloud_off_16_filled": 58300, - "ic_fluent_cloud_off_20_filled": 58301, - "ic_fluent_cloud_off_28_filled": 58302, - "ic_fluent_cloud_off_32_filled": 58303, - "ic_fluent_cloud_sync_16_filled": 58306, - "ic_fluent_cloud_sync_24_filled": 58308, - "ic_fluent_cloud_sync_28_filled": 58309, - "ic_fluent_cloud_sync_32_filled": 58310, - "ic_fluent_cloud_sync_48_filled": 58311, - "ic_fluent_dismiss_square_20_filled": 58576, - "ic_fluent_document_footer_16_filled": 58632, - "ic_fluent_document_footer_dismiss_24_filled": 58635, - "ic_fluent_document_header_16_filled": 58636, - "ic_fluent_document_header_arrow_down_16_filled": 58638, - "ic_fluent_document_header_dismiss_24_filled": 58642, - "ic_fluent_document_header_footer_16_filled": 58643, - "ic_fluent_document_ribbon_16_filled": 58693, - "ic_fluent_document_ribbon_20_filled": 58694, - "ic_fluent_document_ribbon_24_filled": 58695, - "ic_fluent_document_ribbon_28_filled": 58696, - "ic_fluent_document_ribbon_32_filled": 58697, - "ic_fluent_document_ribbon_48_filled": 58698, - "ic_fluent_door_arrow_left_16_filled": 58736, - "ic_fluent_drive_train_24_filled": 58777, - "ic_fluent_engine_24_filled": 58861, - "ic_fluent_folder_mail_16_filled": 58979, - "ic_fluent_folder_sync_16_filled": 58992, - "ic_fluent_gas_24_filled": 59038, - "ic_fluent_gas_pump_24_filled": 59040, - "ic_fluent_mail_dismiss_16_filled": 59327, - "ic_fluent_mail_prohibited_16_filled": 59357, - "ic_fluent_mic_sparkle_16_filled": 59425, - "ic_fluent_mic_sparkle_20_filled": 59426, - "ic_fluent_mic_sparkle_24_filled": 59427, - "ic_fluent_notepad_person_20_filled": 59536, - "ic_fluent_notepad_person_24_filled": 59537, - "ic_fluent_pin_off_16_filled": 59799, - "ic_fluent_pin_off_48_filled": 59802, - "ic_fluent_skip_forward_tab_24_filled": 60180, - "ic_fluent_square_arrow_forward_16_filled": 60293, - "ic_fluent_square_arrow_forward_20_filled": 60294, - "ic_fluent_square_arrow_forward_24_filled": 60295, - "ic_fluent_square_arrow_forward_28_filled": 60296, - "ic_fluent_square_arrow_forward_32_filled": 60297, - "ic_fluent_square_arrow_forward_48_filled": 60298, - "ic_fluent_subtract_square_multiple_20_filled": 60374, - "ic_fluent_transmission_24_filled": 60829, - "ic_fluent_wifi_off_20_filled": 61017, - "ic_fluent_wifi_off_24_filled": 61018, - "ic_fluent_animal_cat_16_filled": 61702, - "ic_fluent_animal_cat_20_filled": 61734, - "ic_fluent_animal_cat_24_filled": 61735, - "ic_fluent_animal_cat_28_filled": 61736, - "ic_fluent_archive_settings_16_filled": 61737, - "ic_fluent_arrow_circle_down_20_filled": 61740, - "ic_fluent_arrow_circle_down_24_filled": 61741, - "ic_fluent_arrow_circle_down_double_20_filled": 61742, - "ic_fluent_arrow_circle_down_double_24_filled": 61743, - "ic_fluent_arrow_circle_down_split_20_filled": 61763, - "ic_fluent_arrow_circle_down_split_24_filled": 61764, - "ic_fluent_arrow_down_32_filled": 61772, - "ic_fluent_arrow_down_48_filled": 61773, - "ic_fluent_arrow_fit_16_filled": 61774, - "ic_fluent_arrow_left_16_filled": 61828, - "ic_fluent_arrow_left_32_filled": 61833, - "ic_fluent_arrow_left_48_filled": 61854, - "ic_fluent_arrow_reset_20_filled": 61855, - "ic_fluent_arrow_reset_24_filled": 61856, - "ic_fluent_arrow_right_32_filled": 61858, - "ic_fluent_arrow_right_48_filled": 61863, - "ic_fluent_arrow_sort_16_filled": 61867, - "ic_fluent_arrow_sort_down_16_filled": 61868, - "ic_fluent_arrow_sort_down_lines_16_filled": 61869, - "ic_fluent_arrow_sort_up_16_filled": 61875, - "ic_fluent_arrow_up_16_filled": 61876, - "ic_fluent_arrow_up_32_filled": 61880, - "ic_fluent_arrow_up_48_filled": 61881, - "ic_fluent_barcode_scanner_20_filled": 61882, - "ic_fluent_barcode_scanner_24_filled": 61924, - "ic_fluent_beaker_edit_20_filled": 61925, - "ic_fluent_beaker_edit_24_filled": 61926, - "ic_fluent_book_toolbox_20_filled": 61927, - "ic_fluent_bookmark_add_20_filled": 61928, - "ic_fluent_bookmark_add_24_filled": 61929, - "ic_fluent_bowl_chopsticks_16_filled": 61930, - "ic_fluent_bowl_chopsticks_20_filled": 61931, - "ic_fluent_bowl_chopsticks_24_filled": 61932, - "ic_fluent_bowl_chopsticks_28_filled": 61933, - "ic_fluent_brain_circuit_20_filled": 61934, - "ic_fluent_briefcase_medical_20_filled": 61935, - "ic_fluent_broom_16_filled": 61950, - "ic_fluent_building_bank_toolbox_20_filled": 61951, - "ic_fluent_calendar_info_16_filled": 61955, - "ic_fluent_calendar_multiple_16_filled": 61956, - "ic_fluent_call_checkmark_20_filled": 61959, - "ic_fluent_call_dismiss_20_filled": 61960, - "ic_fluent_call_dismiss_24_filled": 61963, - "ic_fluent_call_pause_20_filled": 61964, - "ic_fluent_call_pause_24_filled": 61965, - "ic_fluent_chat_help_20_filled": 61984, - "ic_fluent_chat_settings_20_filled": 61985, - "ic_fluent_chat_settings_24_filled": 61993, - "ic_fluent_check_20_filled": 62075, - "ic_fluent_checkbox_checked_16_filled": 62076, - "ic_fluent_checkbox_checked_sync_16_filled": 62077, - "ic_fluent_checkmark_starburst_16_filled": 62083, - "ic_fluent_chevron_double_down_16_filled": 62084, - "ic_fluent_chevron_double_left_16_filled": 62085, - "ic_fluent_chevron_double_right_16_filled": 62119, - "ic_fluent_circle_half_fill_16_filled": 62218, - "ic_fluent_clipboard_heart_20_filled": 62219, - "ic_fluent_clipboard_pulse_20_filled": 62242, - "ic_fluent_clipboard_settings_20_filled": 62253, - "ic_fluent_clock_arrow_download_20_filled": 62254, - "ic_fluent_cloud_add_16_filled": 62255, - "ic_fluent_cloud_edit_16_filled": 62256, - "ic_fluent_cloud_flow_20_filled": 62263, - "ic_fluent_cloud_link_16_filled": 62264, - "ic_fluent_code_16_filled": 62265, - "ic_fluent_comment_error_16_filled": 62288, - "ic_fluent_comment_lightning_20_filled": 62289, - "ic_fluent_comment_lightning_24_filled": 62305, - "ic_fluent_contact_card_16_filled": 62306, - "ic_fluent_contact_card_link_16_filled": 62307, - "ic_fluent_contract_down_left_16_filled": 62308, - "ic_fluent_contract_down_left_20_filled": 62323, - "ic_fluent_contract_down_left_24_filled": 62324, - "ic_fluent_contract_down_left_28_filled": 62325, - "ic_fluent_contract_down_left_32_filled": 62331, - "ic_fluent_contract_down_left_48_filled": 62359, - "ic_fluent_credit_card_toolbox_20_filled": 62360, - "ic_fluent_data_bar_horizontal_20_filled": 62363, - "ic_fluent_data_usage_edit_20_filled": 62386, - "ic_fluent_desktop_sync_16_filled": 62387, - "ic_fluent_device_meeting_room_16_filled": 62388, - "ic_fluent_device_meeting_room_24_filled": 62389, - "ic_fluent_device_meeting_room_28_filled": 62390, - "ic_fluent_device_meeting_room_32_filled": 62391, - "ic_fluent_device_meeting_room_48_filled": 62396, - "ic_fluent_device_meeting_room_remote_16_filled": 62397, - "ic_fluent_device_meeting_room_remote_24_filled": 62402, - "ic_fluent_device_meeting_room_remote_28_filled": 62413, - "ic_fluent_device_meeting_room_remote_32_filled": 62444, - "ic_fluent_device_meeting_room_remote_48_filled": 62445, - "ic_fluent_dismiss_32_filled": 62450, - "ic_fluent_dismiss_48_filled": 62463, - "ic_fluent_document_arrow_up_16_filled": 62464, - "ic_fluent_document_bullet_list_20_filled": 62465, - "ic_fluent_document_bullet_list_24_filled": 62466, - "ic_fluent_document_link_20_filled": 62467, - "ic_fluent_document_link_24_filled": 62468, - "ic_fluent_document_person_16_filled": 62501, - "ic_fluent_document_settings_16_filled": 62502, - "ic_fluent_document_split_hint_24_filled": 62503, - "ic_fluent_document_split_hint_off_24_filled": 62504, - "ic_fluent_edit_arrow_back_16_filled": 62509, - "ic_fluent_equal_off_20_filled": 62510, - "ic_fluent_error_circle_settings_16_filled": 62511, - "ic_fluent_expand_up_left_16_filled": 62512, - "ic_fluent_expand_up_left_20_filled": 62517, - "ic_fluent_expand_up_left_24_filled": 62518, - "ic_fluent_expand_up_left_28_filled": 62519, - "ic_fluent_expand_up_left_32_filled": 62543, - "ic_fluent_expand_up_left_48_filled": 62544, - "ic_fluent_expand_up_right_16_filled": 62547, - "ic_fluent_expand_up_right_20_filled": 62548, - "ic_fluent_expand_up_right_24_filled": 62577, - "ic_fluent_expand_up_right_28_filled": 62620, - "ic_fluent_expand_up_right_32_filled": 62621, - "ic_fluent_expand_up_right_48_filled": 62622, - "ic_fluent_fax_16_filled": 62648, - "ic_fluent_flow_16_filled": 62649, - "ic_fluent_folder_globe_16_filled": 62651, - "ic_fluent_folder_person_16_filled": 62672, - "ic_fluent_gauge_20_filled": 62673, - "ic_fluent_gauge_24_filled": 62674, - "ic_fluent_gift_card_16_filled": 62679, - "ic_fluent_gift_card_20_filled": 62680, - "ic_fluent_gift_card_add_20_filled": 62681, - "ic_fluent_globe_location_20_filled": 62694, - "ic_fluent_globe_star_16_filled": 62709, - "ic_fluent_globe_video_20_filled": 62727, - "ic_fluent_headset_add_20_filled": 62728, - "ic_fluent_headset_add_24_filled": 62729, - "ic_fluent_heart_28_filled": 62730, - "ic_fluent_heart_broken_16_filled": 62731, - "ic_fluent_laptop_dismiss_16_filled": 62735, - "ic_fluent_mail_add_16_filled": 62743, - "ic_fluent_mail_add_20_filled": 62761, - "ic_fluent_mail_alert_16_filled": 62762, - "ic_fluent_mail_alert_20_filled": 62772, - "ic_fluent_mail_alert_24_filled": 62773, - "ic_fluent_mail_arrow_down_16_filled": 62774, - "ic_fluent_mail_arrow_up_20_filled": 62775, - "ic_fluent_mail_arrow_up_24_filled": 62805, - "ic_fluent_mail_checkmark_16_filled": 62806, - "ic_fluent_mail_clock_16_filled": 62811, - "ic_fluent_mail_clock_24_filled": 62812, - "ic_fluent_mail_dismiss_20_filled": 62813, - "ic_fluent_mail_dismiss_24_filled": 62814, - "ic_fluent_mail_error_20_filled": 62815, - "ic_fluent_mail_error_24_filled": 62823, - "ic_fluent_mail_inbox_arrow_down_16_filled": 62824, - "ic_fluent_mail_link_20_filled": 62863, - "ic_fluent_mail_link_24_filled": 62870, - "ic_fluent_mail_pause_16_filled": 62896, - "ic_fluent_mail_prohibited_20_filled": 62933, - "ic_fluent_mail_prohibited_24_filled": 62956, - "ic_fluent_mail_settings_16_filled": 62957, - "ic_fluent_mail_shield_16_filled": 62962, - "ic_fluent_mail_template_20_filled": 62963, - "ic_fluent_mail_template_24_filled": 62967, - "ic_fluent_mail_warning_16_filled": 62968, - "ic_fluent_meet_now_28_filled": 62976, - "ic_fluent_meet_now_32_filled": 62977, - "ic_fluent_meet_now_48_filled": 63035, - "ic_fluent_megaphone_loud_20_filled": 63061, - "ic_fluent_microscope_20_filled": 63062, - "ic_fluent_microscope_24_filled": 63065, - "ic_fluent_molecule_16_filled": 63066, - "ic_fluent_molecule_20_filled": 63075, - "ic_fluent_molecule_24_filled": 63076, - "ic_fluent_molecule_28_filled": 63079, - "ic_fluent_molecule_32_filled": 63080, - "ic_fluent_molecule_48_filled": 63081, - "ic_fluent_note_16_filled": 63085, - "ic_fluent_note_pin_16_filled": 63086, - "ic_fluent_notepad_16_filled": 63087, - "ic_fluent_notepad_edit_16_filled": 63088, - "ic_fluent_open_32_filled": 63089, - "ic_fluent_padding_down_20_filled": 63115, - "ic_fluent_padding_down_24_filled": 63116, - "ic_fluent_padding_left_20_filled": 63134, - "ic_fluent_padding_left_24_filled": 63143, - "ic_fluent_padding_right_20_filled": 63144, - "ic_fluent_padding_right_24_filled": 63145, - "ic_fluent_padding_top_20_filled": 63165, - "ic_fluent_padding_top_24_filled": 63170, - "ic_fluent_patch_20_filled": 63171, - "ic_fluent_patch_24_filled": 63172, - "ic_fluent_pause_circle_20_filled": 63173, - "ic_fluent_people_sync_16_filled": 63174, - "ic_fluent_people_toolbox_16_filled": 63187, - "ic_fluent_person_chat_16_filled": 63188, - "ic_fluent_person_chat_20_filled": 63194, - "ic_fluent_person_chat_24_filled": 63196, - "ic_fluent_person_info_16_filled": 63199, - "ic_fluent_person_lock_16_filled": 63201, - "ic_fluent_person_lock_20_filled": 63202, - "ic_fluent_person_subtract_16_filled": 63222, - "ic_fluent_phone_16_filled": 63223, - "ic_fluent_phone_checkmark_16_filled": 63224, - "ic_fluent_pill_16_filled": 63225, - "ic_fluent_pill_20_filled": 63226, - "ic_fluent_pill_24_filled": 63227, - "ic_fluent_pill_28_filled": 63228, - "ic_fluent_print_16_filled": 63235, - "ic_fluent_print_add_20_filled": 63237, - "ic_fluent_production_20_filled": 63238, - "ic_fluent_production_24_filled": 63239, - "ic_fluent_production_checkmark_20_filled": 63244, - "ic_fluent_production_checkmark_24_filled": 63245, - "ic_fluent_prohibited_16_filled": 63246, - "ic_fluent_ratio_one_to_one_20_filled": 63251, - "ic_fluent_ratio_one_to_one_24_filled": 63252, - "ic_fluent_receipt_add_20_filled": 63253, - "ic_fluent_receipt_bag_20_filled": 63262, - "ic_fluent_receipt_cube_20_filled": 63301, - "ic_fluent_receipt_money_20_filled": 63302, - "ic_fluent_record_12_filled": 63303, - "ic_fluent_record_28_filled": 63309, - "ic_fluent_record_32_filled": 63310, - "ic_fluent_record_48_filled": 63311, - "ic_fluent_record_stop_12_filled": 63344, - "ic_fluent_record_stop_16_filled": 63345, - "ic_fluent_record_stop_20_filled": 63346, - "ic_fluent_record_stop_24_filled": 63347, - "ic_fluent_record_stop_28_filled": 63348, - "ic_fluent_record_stop_32_filled": 63356, - "ic_fluent_record_stop_48_filled": 63357, - "ic_fluent_ribbon_add_20_filled": 63358, - "ic_fluent_ribbon_add_24_filled": 63359, - "ic_fluent_server_20_filled": 63361, - "ic_fluent_server_24_filled": 63364, - "ic_fluent_shield_badge_20_filled": 63365, - "ic_fluent_shopping_bag_16_filled": 63366, - "ic_fluent_shopping_bag_20_filled": 63367, - "ic_fluent_shopping_bag_24_filled": 63368, - "ic_fluent_slide_multiple_search_20_filled": 63371, - "ic_fluent_slide_multiple_search_24_filled": 63372, - "ic_fluent_smartwatch_20_filled": 63373, - "ic_fluent_smartwatch_24_filled": 63374, - "ic_fluent_smartwatch_dot_20_filled": 63390, - "ic_fluent_smartwatch_dot_24_filled": 63391, - "ic_fluent_square_multiple_24_filled": 63396, - "ic_fluent_stack_16_filled": 63397, - "ic_fluent_stack_20_filled": 63402, - "ic_fluent_stack_24_filled": 63422, - "ic_fluent_subtract_circle_16_filled": 63423, - "ic_fluent_subtract_circle_20_filled": 63432, - "ic_fluent_subtract_circle_24_filled": 63433, - "ic_fluent_subtract_circle_28_filled": 63436, - "ic_fluent_subtract_circle_32_filled": 63437, - "ic_fluent_tag_multiple_16_filled": 63438, - "ic_fluent_target_arrow_16_filled": 63439, - "ic_fluent_target_arrow_20_filled": 63440, - "ic_fluent_text_bullet_list_square_edit_20_filled": 63441, - "ic_fluent_text_bullet_list_square_edit_24_filled": 63442, - "ic_fluent_tooltip_quote_20_filled": 63443, - "ic_fluent_vehicle_car_profile_ltr_16_filled": 63461, - "ic_fluent_vehicle_car_profile_rtl_16_filled": 63462, - "ic_fluent_vehicle_truck_profile_16_filled": 63490, - "ic_fluent_voicemail_arrow_back_16_filled": 63491, - "ic_fluent_voicemail_arrow_forward_16_filled": 63492, - "ic_fluent_voicemail_subtract_16_filled": 63509, - "ic_fluent_wifi_warning_24_filled": 63510, - "ic_fluent_window_edit_16_filled": 63517, - "ic_fluent_arrow_sort_down_20_filled": 63518, - "ic_fluent_arrow_sort_down_24_filled": 63530, - "ic_fluent_arrow_sort_up_20_filled": 63531, - "ic_fluent_arrow_sort_up_24_filled": 63546, - "ic_fluent_arrow_turn_bidirectional_down_right_24_filled": 63547, - "ic_fluent_arrow_turn_right_24_filled": 63569, - "ic_fluent_book_question_mark_rtl_24_filled": 63570, - "ic_fluent_brain_circuit_24_filled": 63571, - "ic_fluent_building_bank_toolbox_24_filled": 63572, - "ic_fluent_calendar_checkmark_28_filled": 63607, - "ic_fluent_calendar_search_16_filled": 63608, - "ic_fluent_call_park_32_filled": 63609, - "ic_fluent_chat_bubbles_question_16_filled": 63680, - "ic_fluent_chat_multiple_16_filled": 63681, - "ic_fluent_chat_multiple_20_filled": 63712, - "ic_fluent_chat_multiple_24_filled": 63723, - "ic_fluent_checkmark_32_filled": 63724, - "ic_fluent_checkmark_circle_32_filled": 58140, - "ic_fluent_clipboard_bullet_list_ltr_16_filled": 58204, - "ic_fluent_clipboard_bullet_list_rtl_16_filled": 58206, - "ic_fluent_column_edit_20_filled": 58328, - "ic_fluent_column_edit_24_filled": 58329, - "ic_fluent_contact_card_28_filled": 58389, - "ic_fluent_contact_card_32_filled": 58390, - "ic_fluent_contact_card_48_filled": 58391, - "ic_fluent_diagram_24_filled": 58561, - "ic_fluent_dismiss_circle_32_filled": 58575, - "ic_fluent_document_arrow_down_16_filled": 58603, - "ic_fluent_document_bullet_list_clock_20_filled": 58613, - "ic_fluent_document_bullet_list_clock_24_filled": 58614, - "ic_fluent_document_bullet_list_off_24_filled": 58618, - "ic_fluent_document_multiple_16_filled": 58667, - "ic_fluent_document_pill_20_filled": 58680, - "ic_fluent_document_pill_24_filled": 58681, - "ic_fluent_document_save_20_filled": 58699, - "ic_fluent_document_save_24_filled": 58700, - "ic_fluent_door_16_filled": 58733, - "ic_fluent_dual_screen_arrow_up_24_filled": 58788, - "ic_fluent_dual_screen_closed_alert_24_filled": 58791, - "ic_fluent_emoji_multiple_20_filled": 58847, - "ic_fluent_emoji_multiple_24_filled": 58848, - "ic_fluent_gantt_chart_20_filled": 59035, - "ic_fluent_gantt_chart_24_filled": 59036, - "ic_fluent_gift_card_add_24_filled": 59050, - "ic_fluent_hand_draw_24_filled": 59109, - "ic_fluent_image_arrow_back_24_filled": 59178, - "ic_fluent_image_arrow_forward_24_filled": 59182, - "ic_fluent_image_multiple_16_filled": 59185, - "ic_fluent_image_reflection_24_filled": 59197, - "ic_fluent_image_shadow_24_filled": 59199, - "ic_fluent_mail_arrow_double_back_16_filled": 59316, - "ic_fluent_mail_arrow_forward_16_filled": 59319, - "ic_fluent_mail_attach_16_filled": 59322, - "ic_fluent_more_horizontal_32_filled": 59445, - "ic_fluent_more_vertical_32_filled": 59448, - "ic_fluent_organization_16_filled": 59561, - "ic_fluent_organization_32_filled": 59562, - "ic_fluent_organization_48_filled": 59563, - "ic_fluent_orientation_24_filled": 59566, - "ic_fluent_people_list_16_filled": 59661, - "ic_fluent_people_money_20_filled": 59667, - "ic_fluent_people_money_24_filled": 59668, - "ic_fluent_person_pill_20_filled": 59730, - "ic_fluent_person_pill_24_filled": 59731, - "ic_fluent_person_settings_16_filled": 59735, - "ic_fluent_pivot_20_filled": 59807, - "ic_fluent_pivot_24_filled": 59808, - "ic_fluent_play_12_filled": 59809, - "ic_fluent_print_add_24_filled": 59862, - "ic_fluent_pulse_28_filled": 59878, - "ic_fluent_receipt_add_24_filled": 59912, - "ic_fluent_receipt_bag_24_filled": 59913, - "ic_fluent_receipt_cube_24_filled": 59914, - "ic_fluent_scan_object_20_filled": 60009, - "ic_fluent_scan_object_24_filled": 60010, - "ic_fluent_search_12_filled": 60035, - "ic_fluent_search_32_filled": 60037, - "ic_fluent_search_48_filled": 60038, - "ic_fluent_share_16_filled": 60079, - "ic_fluent_shield_badge_24_filled": 60111, - "ic_fluent_shield_lock_16_filled": 60120, - "ic_fluent_slide_eraser_16_filled": 60189, - "ic_fluent_slide_eraser_20_filled": 60190, - "ic_fluent_slide_grid_24_filled": 60193, - "ic_fluent_square_16_filled": 60285, - "ic_fluent_square_add_16_filled": 60291, - "ic_fluent_square_hint_arrow_back_16_filled": 60310, - "ic_fluent_steps_20_filled": 60345, - "ic_fluent_steps_24_filled": 60346, - "ic_fluent_tab_desktop_bottom_24_filled": 60391, - "ic_fluent_tab_desktop_multiple_bottom_24_filled": 60393, - "ic_fluent_task_list_square_add_20_filled": 60564, - "ic_fluent_task_list_square_add_24_filled": 60565, - "ic_fluent_task_list_square_ltr_20_filled": 60567, - "ic_fluent_task_list_square_ltr_24_filled": 60568, - "ic_fluent_task_list_square_rtl_20_filled": 60570, - "ic_fluent_task_list_square_rtl_24_filled": 60571, - "ic_fluent_text_align_distributed_evenly_24_filled": 60600, - "ic_fluent_text_align_distributed_vertical_24_filled": 60602, - "ic_fluent_text_align_justify_low_24_filled": 60604, - "ic_fluent_textbox_more_24_filled": 60788, - "ic_fluent_video_32_filled": 60912, - "ic_fluent_video_48_filled": 60916, - "ic_fluent_video_clip_16_filled": 60926, - "ic_fluent_window_ad_person_20_filled": 61027, - "ic_fluent_window_dev_edit_16_filled": 61041, - "ic_fluent_arrow_autofit_height_dotted_24_filled": 57465, - "ic_fluent_arrow_autofit_width_dotted_24_filled": 57470, - "ic_fluent_multiselect_rtl_16_filled": 59484, - "ic_fluent_animal_dog_16_filled": 57423, - "ic_fluent_archive_settings_20_filled": 57456, - "ic_fluent_arrow_clockwise_16_filled": 57514, - "ic_fluent_arrow_clockwise_dashes_20_filled": 57518, - "ic_fluent_arrow_clockwise_dashes_24_filled": 57519, - "ic_fluent_arrow_counterclockwise_dashes_20_filled": 57526, - "ic_fluent_arrow_counterclockwise_dashes_24_filled": 57527, - "ic_fluent_arrow_export_ltr_16_filled": 57542, - "ic_fluent_arrow_export_up_20_filled": 57547, - "ic_fluent_arrow_export_up_24_filled": 57548, - "ic_fluent_arrow_routing_20_filled": 57581, - "ic_fluent_arrow_routing_24_filled": 57582, - "ic_fluent_arrow_routing_rectangle_multiple_20_filled": 57583, - "ic_fluent_arrow_routing_rectangle_multiple_24_filled": 57584, - "ic_fluent_bin_full_20_filled": 57692, - "ic_fluent_bin_full_24_filled": 57693, - "ic_fluent_book_toolbox_24_filled": 57764, - "ic_fluent_box_16_filled": 57806, - "ic_fluent_braces_variable_20_filled": 57835, - "ic_fluent_braces_variable_24_filled": 57836, - "ic_fluent_briefcase_16_filled": 57853, - "ic_fluent_briefcase_medical_16_filled": 57857, - "ic_fluent_building_retail_20_filled": 57913, - "ic_fluent_building_retail_money_20_filled": 57914, - "ic_fluent_building_retail_money_24_filled": 57915, - "ic_fluent_building_retail_shield_20_filled": 57917, - "ic_fluent_building_retail_shield_24_filled": 57918, - "ic_fluent_building_retail_toolbox_20_filled": 57919, - "ic_fluent_building_retail_toolbox_24_filled": 57920, - "ic_fluent_calculator_multiple_20_filled": 57930, - "ic_fluent_calculator_multiple_24_filled": 57931, - "ic_fluent_calendar_3_day_16_filled": 57932, - "ic_fluent_calendar_arrow_right_16_filled": 57937, - "ic_fluent_calendar_day_16_filled": 57944, - "ic_fluent_calendar_info_20_filled": 57951, - "ic_fluent_calendar_settings_16_filled": 57981, - "ic_fluent_call_checkmark_24_filled": 57995, - "ic_fluent_call_end_16_filled": 57998, - "ic_fluent_camera_dome_16_filled": 58030, - "ic_fluent_camera_dome_20_filled": 58031, - "ic_fluent_camera_dome_24_filled": 58032, - "ic_fluent_camera_dome_28_filled": 58033, - "ic_fluent_camera_dome_48_filled": 58034, - "ic_fluent_chat_12_filled": 58103, - "ic_fluent_chevron_double_down_20_filled": 58174, - "ic_fluent_chevron_double_left_20_filled": 58175, - "ic_fluent_chevron_double_right_20_filled": 58176, - "ic_fluent_clipboard_bullet_list_ltr_20_filled": 58205, - "ic_fluent_clipboard_bullet_list_rtl_20_filled": 58207, - "ic_fluent_clipboard_checkmark_20_filled": 58208, - "ic_fluent_clipboard_checkmark_24_filled": 58209, - "ic_fluent_clipboard_error_20_filled": 58216, - "ic_fluent_clipboard_error_24_filled": 58217, - "ic_fluent_clipboard_heart_24_filled": 58218, - "ic_fluent_clipboard_task_20_filled": 58226, - "ic_fluent_clipboard_task_24_filled": 58227, - "ic_fluent_clipboard_task_add_20_filled": 58228, - "ic_fluent_clipboard_task_add_24_filled": 58229, - "ic_fluent_clipboard_task_list_ltr_20_filled": 58230, - "ic_fluent_clipboard_task_list_ltr_24_filled": 58231, - "ic_fluent_clock_alarm_16_filled": 58244, - "ic_fluent_cloud_add_20_filled": 58266, - "ic_fluent_cloud_edit_20_filled": 58297, - "ic_fluent_cloud_link_20_filled": 58299, - "ic_fluent_color_16_filled": 58321, - "ic_fluent_column_triple_20_filled": 58330, - "ic_fluent_column_triple_edit_20_filled": 58331, - "ic_fluent_column_triple_edit_24_filled": 58332, - "ic_fluent_comment_error_20_filled": 58365, - "ic_fluent_communication_person_20_filled": 58385, - "ic_fluent_communication_person_24_filled": 58386, - "ic_fluent_contact_card_link_20_filled": 58396, - "ic_fluent_data_trending_16_filled": 58472, - "ic_fluent_data_trending_20_filled": 58473, - "ic_fluent_data_trending_24_filled": 58474, - "ic_fluent_data_usage_edit_24_filled": 58476, - "ic_fluent_database_20_filled": 58482, - "ic_fluent_database_24_filled": 58483, - "ic_fluent_database_search_20_filled": 58494, - "ic_fluent_database_search_24_filled": 58495, - "ic_fluent_delete_arrow_back_16_filled": 58504, - "ic_fluent_desktop_edit_16_filled": 58523, - "ic_fluent_dismiss_circle_12_filled": 58573, - "ic_fluent_divider_tall_16_filled": 58586, - "ic_fluent_document_arrow_down_20_filled": 58604, - "ic_fluent_document_heart_20_filled": 58644, - "ic_fluent_document_heart_24_filled": 58645, - "ic_fluent_document_heart_pulse_20_filled": 58646, - "ic_fluent_document_heart_pulse_24_filled": 58647, - "ic_fluent_document_multiple_20_filled": 58668, - "ic_fluent_document_multiple_prohibited_20_filled": 58672, - "ic_fluent_document_multiple_prohibited_24_filled": 58673, - "ic_fluent_document_search_16_filled": 58701, - "ic_fluent_door_20_filled": 58734, - "ic_fluent_emoji_laugh_16_filled": 58846, - "ic_fluent_equal_off_24_filled": 58864, - "ic_fluent_error_circle_settings_20_filled": 58875, - "ic_fluent_eye_off_16_filled": 58881, - "ic_fluent_fax_20_filled": 58901, - "ic_fluent_filter_dismiss_16_filled": 58905, - "ic_fluent_filter_dismiss_20_filled": 58906, - "ic_fluent_flashlight_16_filled": 58933, - "ic_fluent_flashlight_20_filled": 58934, - "ic_fluent_flow_20_filled": 58948, - "ic_fluent_fluid_16_filled": 58957, - "ic_fluent_folder_add_16_filled": 58962, - "ic_fluent_folder_globe_20_filled": 58978, - "ic_fluent_folder_mail_20_filled": 58980, - "ic_fluent_folder_person_20_filled": 58983, - "ic_fluent_folder_sync_20_filled": 58993, - "ic_fluent_food_16_filled": 58995, - "ic_fluent_food_cake_16_filled": 58999, - "ic_fluent_full_screen_maximize_16_filled": 59024, - "ic_fluent_full_screen_maximize_20_filled": 59025, - "ic_fluent_gif_16_filled": 59047, - "ic_fluent_gift_16_filled": 59048, - "ic_fluent_globe_star_20_filled": 59082, - "ic_fluent_globe_surface_20_filled": 59083, - "ic_fluent_globe_surface_24_filled": 59084, - "ic_fluent_heart_broken_20_filled": 59146, - "ic_fluent_history_16_filled": 59154, - "ic_fluent_image_prohibited_20_filled": 59194, - "ic_fluent_image_prohibited_24_filled": 59195, - "ic_fluent_info_12_filled": 59203, - "ic_fluent_iot_20_filled": 59211, - "ic_fluent_iot_24_filled": 59212, - "ic_fluent_mail_open_person_16_filled": 59353, - "ic_fluent_mail_template_16_filled": 59365, - "ic_fluent_navigation_16_filled": 59501, - "ic_fluent_news_16_filled": 59508, - "ic_fluent_note_edit_20_filled": 59516, - "ic_fluent_note_edit_24_filled": 59517, - "ic_fluent_notepad_edit_20_filled": 59534, - "ic_fluent_people_list_20_filled": 59662, - "ic_fluent_people_settings_24_filled": 59674, - "ic_fluent_people_team_toolbox_20_filled": 59690, - "ic_fluent_people_team_toolbox_24_filled": 59691, - "ic_fluent_person_feedback_16_filled": 59714, - "ic_fluent_person_money_20_filled": 59726, - "ic_fluent_person_money_24_filled": 59727, - "ic_fluent_phone_eraser_16_filled": 59758, - "ic_fluent_port_hdmi_24_filled": 59827, - "ic_fluent_port_micro_usb_24_filled": 59829, - "ic_fluent_port_usb_a_24_filled": 59831, - "ic_fluent_port_usb_c_24_filled": 59833, - "ic_fluent_prohibited_12_filled": 59863, - "ic_fluent_receipt_play_20_filled": 59916, - "ic_fluent_receipt_play_24_filled": 59917, - "ic_fluent_save_search_20_filled": 59989, - "ic_fluent_search_settings_20_filled": 60040, - "ic_fluent_shield_lock_20_filled": 60121, - "ic_fluent_square_add_20_filled": 60292, - "ic_fluent_star_line_horizontal_3_16_filled": 60341, - "ic_fluent_stream_20_filled": 60350, - "ic_fluent_stream_24_filled": 60351, - "ic_fluent_syringe_20_filled": 60380, - "ic_fluent_syringe_24_filled": 60381, - "ic_fluent_tag_dismiss_20_filled": 60527, - "ic_fluent_tag_dismiss_24_filled": 60528, - "ic_fluent_target_arrow_24_filled": 60559, - "ic_fluent_temperature_16_filled": 60575, - "ic_fluent_thumb_dislike_16_filled": 60791, - "ic_fluent_tooltip_quote_24_filled": 60826, - "ic_fluent_umbrella_20_filled": 60876, - "ic_fluent_umbrella_24_filled": 60877, - "ic_fluent_vehicle_truck_profile_20_filled": 60910, - "ic_fluent_video_add_20_filled": 60917, - "ic_fluent_video_add_24_filled": 60918, - "ic_fluent_warning_12_filled": 60987, - "ic_fluent_window_dev_edit_20_filled": 61042, - "ic_fluent_xray_20_filled": 61065, - "ic_fluent_xray_24_filled": 61066, - "ic_fluent_arrow_autofit_down_24_filled": 57462, - "ic_fluent_arrow_autofit_up_24_filled": 57467, - "ic_fluent_clipboard_task_list_rtl_20_filled": 58232, - "ic_fluent_clipboard_task_list_rtl_24_filled": 58233, - "ic_fluent_comma_24_filled": 58334, - "ic_fluent_text_align_center_rotate_270_24_filled": 60595, - "ic_fluent_text_align_justify_rotate_90_24_filled": 60608, - "ic_fluent_text_align_left_rotate_270_24_filled": 60612, - "ic_fluent_text_align_right_rotate_270_24_filled": 60619, - "ic_fluent_text_strikethrough_16_filled": 60766, - "ic_fluent_text_strikethrough_20_filled": 60767, - "ic_fluent_text_strikethrough_24_filled": 60768, - "ic_fluent_textbox_align_bottom_rotate_90_24_filled": 60780, - "ic_fluent_textbox_align_middle_rotate_90_24_filled": 60784, - "ic_fluent_textbox_align_top_rotate_90_24_filled": 60786, - "ic_fluent_arrow_clockwise_12_filled": 57513, - "ic_fluent_arrow_clockwise_28_filled": 57515, - "ic_fluent_arrow_clockwise_32_filled": 57516, - "ic_fluent_arrow_clockwise_48_filled": 57517, - "ic_fluent_arrow_counterclockwise_12_filled": 57522, - "ic_fluent_arrow_counterclockwise_16_filled": 57523, - "ic_fluent_arrow_counterclockwise_32_filled": 57524, - "ic_fluent_arrow_counterclockwise_48_filled": 57525, - "ic_fluent_arrow_rotate_clockwise_16_filled": 57580, - "ic_fluent_arrow_split_20_filled": 57588, - "ic_fluent_battery_checkmark_24_filled": 57681, - "ic_fluent_book_open_16_filled": 57739, - "ic_fluent_broad_activity_feed_16_filled": 57878, - "ic_fluent_broad_activity_feed_20_filled": 57879, - "ic_fluent_calendar_pattern_20_filled": 57965, - "ic_fluent_calendar_person_16_filled": 57966, - "ic_fluent_calendar_phone_16_filled": 57968, - "ic_fluent_calendar_phone_20_filled": 57969, - "ic_fluent_calendar_search_20_filled": 57980, - "ic_fluent_calendar_star_16_filled": 57982, - "ic_fluent_chat_arrow_back_16_filled": 58107, - "ic_fluent_chat_arrow_back_20_filled": 58108, - "ic_fluent_chat_arrow_double_back_16_filled": 58109, - "ic_fluent_chat_arrow_double_back_20_filled": 58110, - "ic_fluent_check_24_filled": 58121, - "ic_fluent_checkbox_checked_sync_20_filled": 58128, - "ic_fluent_chevron_up_down_16_filled": 58179, - "ic_fluent_cursor_click_20_filled": 58449, - "ic_fluent_cursor_click_24_filled": 58450, - "ic_fluent_directions_16_filled": 58572, - "ic_fluent_divider_tall_20_filled": 58587, - "ic_fluent_document_arrow_up_20_filled": 58612, - "ic_fluent_document_dismiss_16_filled": 58629, - "ic_fluent_document_link_16_filled": 58655, - "ic_fluent_document_person_20_filled": 58679, - "ic_fluent_edit_arrow_back_20_filled": 58818, - "ic_fluent_emoji_sad_16_filled": 58849, - "ic_fluent_globe_clock_16_filled": 59073, - "ic_fluent_globe_clock_20_filled": 59074, - "ic_fluent_immersive_reader_16_filled": 59200, - "ic_fluent_link_dismiss_16_filled": 59264, - "ic_fluent_lock_open_16_filled": 59298, - "ic_fluent_luggage_16_filled": 59304, - "ic_fluent_luggage_20_filled": 59305, - "ic_fluent_mail_arrow_double_back_20_filled": 59317, - "ic_fluent_mail_arrow_down_20_filled": 59318, - "ic_fluent_mail_arrow_forward_20_filled": 59320, - "ic_fluent_mail_attach_20_filled": 59323, - "ic_fluent_mail_checkmark_20_filled": 59326, - "ic_fluent_mail_error_16_filled": 59331, - "ic_fluent_mail_inbox_arrow_down_20_filled": 59334, - "ic_fluent_mail_pause_20_filled": 59356, - "ic_fluent_mail_settings_20_filled": 59363, - "ic_fluent_mail_shield_20_filled": 59364, - "ic_fluent_note_pin_20_filled": 59518, - "ic_fluent_pause_circle_24_filled": 59617, - "ic_fluent_people_checkmark_16_filled": 59652, - "ic_fluent_people_sync_20_filled": 59680, - "ic_fluent_people_toolbox_20_filled": 59692, - "ic_fluent_person_settings_20_filled": 59736, - "ic_fluent_phone_checkmark_20_filled": 59754, - "ic_fluent_play_16_filled": 59810, - "ic_fluent_play_28_filled": 59811, - "ic_fluent_play_32_filled": 59812, - "ic_fluent_receipt_money_24_filled": 59915, - "ic_fluent_save_16_filled": 59979, - "ic_fluent_shield_error_16_filled": 60119, - "ic_fluent_sport_soccer_16_filled": 60281, - "ic_fluent_square_20_filled": 60286, - "ic_fluent_tag_multiple_20_filled": 60540, - "ic_fluent_text_quote_16_filled": 60761, - "ic_fluent_vehicle_car_profile_ltr_20_filled": 60896, - "ic_fluent_vehicle_car_profile_rtl_20_filled": 60897, - "ic_fluent_weather_partly_cloudy_day_16_filled": 61003, - "ic_fluent_weather_sunny_16_filled": 61004, - "ic_fluent_text_direction_horizontal_left_20_filled": 60675, - "ic_fluent_text_direction_horizontal_left_24_filled": 60676, - "ic_fluent_text_direction_horizontal_right_20_filled": 60677, - "ic_fluent_text_direction_horizontal_right_24_filled": 60678, - "ic_fluent_text_direction_rotate_270_right_20_filled": 60679, - "ic_fluent_text_direction_rotate_270_right_24_filled": 60680, - "ic_fluent_text_direction_rotate_90_left_20_filled": 60681, - "ic_fluent_text_direction_rotate_90_left_24_filled": 60682, - "ic_fluent_text_direction_rotate_90_right_20_filled": 60683, - "ic_fluent_text_direction_rotate_90_right_24_filled": 60684, - "ic_fluent_arrow_autofit_content_24_filled": 57460, - "ic_fluent_arrow_trending_lines_20_filled": 57628, - "ic_fluent_arrow_trending_lines_24_filled": 57629, - "ic_fluent_calendar_error_24_filled": 57950, - "ic_fluent_cellular_warning_24_filled": 58059, - "ic_fluent_cloud_arrow_down_16_filled": 58273, - "ic_fluent_cloud_arrow_down_20_filled": 58274, - "ic_fluent_cloud_arrow_down_24_filled": 58275, - "ic_fluent_cloud_arrow_down_28_filled": 58276, - "ic_fluent_cloud_arrow_down_32_filled": 58277, - "ic_fluent_cloud_arrow_down_48_filled": 58278, - "ic_fluent_cloud_arrow_up_16_filled": 58279, - "ic_fluent_cloud_arrow_up_20_filled": 58280, - "ic_fluent_cloud_arrow_up_24_filled": 58281, - "ic_fluent_cloud_arrow_up_28_filled": 58282, - "ic_fluent_cloud_arrow_up_32_filled": 58283, - "ic_fluent_cloud_arrow_up_48_filled": 58284, - "ic_fluent_cloud_checkmark_16_filled": 58285, - "ic_fluent_cloud_checkmark_20_filled": 58286, - "ic_fluent_cloud_checkmark_24_filled": 58287, - "ic_fluent_cloud_checkmark_28_filled": 58288, - "ic_fluent_cloud_checkmark_32_filled": 58289, - "ic_fluent_cloud_checkmark_48_filled": 58290, - "ic_fluent_cloud_dismiss_16_filled": 58291, - "ic_fluent_cloud_dismiss_20_filled": 58292, - "ic_fluent_cloud_dismiss_24_filled": 58293, - "ic_fluent_cloud_dismiss_28_filled": 58294, - "ic_fluent_cloud_dismiss_32_filled": 58295, - "ic_fluent_cloud_dismiss_48_filled": 58296, - "ic_fluent_grid_dots_20_filled": 59089, - "ic_fluent_grid_dots_24_filled": 59090, - "ic_fluent_grid_dots_28_filled": 59091, - "ic_fluent_ios_arrow_ltr_24_filled": 59209, - "ic_fluent_ios_arrow_rtl_24_filled": 59210, - "ic_fluent_mail_multiple_16_filled": 59347, - "ic_fluent_mail_multiple_20_filled": 59348, - "ic_fluent_mail_multiple_24_filled": 59349, - "ic_fluent_panel_bottom_20_filled": 59578, - "ic_fluent_panel_left_16_filled": 59581, - "ic_fluent_panel_left_20_filled": 59582, - "ic_fluent_panel_left_24_filled": 59583, - "ic_fluent_panel_left_28_filled": 59584, - "ic_fluent_panel_left_48_filled": 59585, - "ic_fluent_panel_right_16_filled": 59598, - "ic_fluent_panel_right_20_filled": 59599, - "ic_fluent_panel_right_24_filled": 59600, - "ic_fluent_panel_right_28_filled": 59601, - "ic_fluent_panel_right_48_filled": 59602, - "ic_fluent_panel_right_contract_16_filled": 59603, - "ic_fluent_panel_right_contract_20_filled": 59604, - "ic_fluent_panel_right_contract_24_filled": 59605, - "ic_fluent_panel_right_expand_20_filled": 59606, - "ic_fluent_puzzle_piece_16_filled": 59888, - "ic_fluent_puzzle_piece_20_filled": 59889, - "ic_fluent_puzzle_piece_24_filled": 59890, - "ic_fluent_scan_table_24_filled": 60012, - "ic_fluent_scan_text_24_filled": 60014, - "ic_fluent_scan_type_20_filled": 60025, - "ic_fluent_scan_type_24_filled": 60026, - "ic_fluent_scan_type_off_20_filled": 60029, - "ic_fluent_shield_task_16_filled": 60127, - "ic_fluent_shield_task_20_filled": 60128, - "ic_fluent_shield_task_24_filled": 60129, - "ic_fluent_shield_task_28_filled": 60130, - "ic_fluent_shield_task_48_filled": 60131, - "ic_fluent_square_multiple_16_filled": 60318, - "ic_fluent_stack_star_16_filled": 60325, - "ic_fluent_stack_star_20_filled": 60326, - "ic_fluent_stack_star_24_filled": 60327, - "ic_fluent_subtract_circle_arrow_back_16_filled": 60367, - "ic_fluent_subtract_circle_arrow_back_20_filled": 60368, - "ic_fluent_subtract_circle_arrow_forward_16_filled": 60369, - "ic_fluent_subtract_circle_arrow_forward_20_filled": 60370, - "ic_fluent_text_add_t_24_filled": 60591, - "ic_fluent_text_more_24_filled": 60729, - "ic_fluent_text_t_20_filled": 60771, - "ic_fluent_text_t_24_filled": 60772, - "ic_fluent_usb_plug_20_filled": 60879, - "ic_fluent_usb_plug_24_filled": 60880, - "ic_fluent_wifi_lock_24_filled": 61016, - "ic_fluent_arrow_bidirectional_up_down_12_filled": 57474, - "ic_fluent_arrow_bidirectional_up_down_16_filled": 57475, - "ic_fluent_arrow_bidirectional_up_down_20_filled": 57476, - "ic_fluent_arrow_bidirectional_up_down_24_filled": 57477, - "ic_fluent_arrow_circle_down_up_20_filled": 57489, - "ic_fluent_arrow_circle_left_12_filled": 57490, - "ic_fluent_arrow_circle_left_16_filled": 57491, - "ic_fluent_arrow_circle_right_12_filled": 57497, - "ic_fluent_arrow_circle_right_16_filled": 57498, - "ic_fluent_arrow_eject_20_filled": 57534, - "ic_fluent_arrow_export_rtl_16_filled": 57545, - "ic_fluent_arrow_left_12_filled": 57559, - "ic_fluent_arrow_move_inward_20_filled": 57564, - "ic_fluent_arrow_redo_16_filled": 57572, - "ic_fluent_arrow_right_12_filled": 57578, - "ic_fluent_arrow_step_in_12_filled": 57594, - "ic_fluent_arrow_step_in_left_12_filled": 57599, - "ic_fluent_arrow_step_in_left_16_filled": 57600, - "ic_fluent_arrow_step_in_right_12_filled": 57604, - "ic_fluent_arrow_step_in_right_16_filled": 57605, - "ic_fluent_arrow_step_out_12_filled": 57609, - "ic_fluent_arrow_sync_off_16_filled": 57621, - "ic_fluent_arrow_sync_off_20_filled": 57622, - "ic_fluent_arrow_up_12_filled": 57642, - "ic_fluent_bezier_curve_square_12_filled": 57690, - "ic_fluent_border_all_16_filled": 57775, - "ic_fluent_border_all_20_filled": 57776, - "ic_fluent_braces_20_filled": 57833, - "ic_fluent_building_lighthouse_20_filled": 57910, - "ic_fluent_calendar_assistant_16_filled": 57939, - "ic_fluent_center_vertical_20_filled": 58062, - "ic_fluent_chat_dismiss_16_filled": 58112, - "ic_fluent_chat_warning_16_filled": 58119, - "ic_fluent_checkbox_indeterminate_16_filled": 58129, - "ic_fluent_checkbox_indeterminate_20_filled": 58130, - "ic_fluent_checkbox_indeterminate_24_filled": 58131, - "ic_fluent_chevron_circle_right_12_filled": 58160, - "ic_fluent_circle_off_16_filled": 58193, - "ic_fluent_clipboard_pulse_24_filled": 58224, - "ic_fluent_clock_arrow_download_24_filled": 58246, - "ic_fluent_cloud_flow_24_filled": 58298, - "ic_fluent_cloud_swap_20_filled": 58304, - "ic_fluent_cloud_swap_24_filled": 58305, - "ic_fluent_code_circle_20_filled": 58318, - "ic_fluent_comment_multiple_28_filled": 58367, - "ic_fluent_comment_multiple_checkmark_16_filled": 58369, - "ic_fluent_comment_multiple_checkmark_20_filled": 58370, - "ic_fluent_comment_multiple_checkmark_24_filled": 58371, - "ic_fluent_comment_multiple_checkmark_28_filled": 58372, - "ic_fluent_cube_12_filled": 58426, - "ic_fluent_developer_board_search_20_filled": 58555, - "ic_fluent_document_arrow_right_20_filled": 58610, - "ic_fluent_document_chevron_double_24_filled": 58624, - "ic_fluent_document_css_24_filled": 58626, - "ic_fluent_document_javascript_24_filled": 58649, - "ic_fluent_document_multiple_percent_20_filled": 58670, - "ic_fluent_document_percent_20_filled": 58677, - "ic_fluent_document_percent_24_filled": 58678, - "ic_fluent_document_settings_20_filled": 58702, - "ic_fluent_document_split_hint_16_filled": 58703, - "ic_fluent_document_split_hint_20_filled": 58704, - "ic_fluent_document_sync_16_filled": 58707, - "ic_fluent_document_sync_20_filled": 58708, - "ic_fluent_door_arrow_right_16_filled": 58739, - "ic_fluent_door_arrow_right_20_filled": 58740, - "ic_fluent_dual_screen_20_filled": 58784, - "ic_fluent_glance_20_filled": 59057, - "ic_fluent_glance_horizontal_20_filled": 59060, - "ic_fluent_highlight_link_20_filled": 59153, - "ic_fluent_keyboard_123_24_filled": 59223, - "ic_fluent_laptop_dismiss_20_filled": 59235, - "ic_fluent_link_dismiss_24_filled": 59266, - "ic_fluent_panel_bottom_contract_20_filled": 59579, - "ic_fluent_panel_bottom_expand_20_filled": 59580, - "ic_fluent_panel_left_expand_20_filled": 59591, - "ic_fluent_panel_separate_window_20_filled": 59607, - "ic_fluent_panel_top_contract_20_filled": 59608, - "ic_fluent_panel_top_expand_20_filled": 59609, - "ic_fluent_pause_off_16_filled": 59618, - "ic_fluent_person_circle_12_filled": 59705, - "ic_fluent_person_info_20_filled": 59716, - "ic_fluent_phone_12_filled": 59749, - "ic_fluent_replay_20_filled": 59930, - "ic_fluent_square_12_filled": 60284, - "ic_fluent_square_dismiss_16_filled": 60299, - "ic_fluent_square_dismiss_20_filled": 60300, - "ic_fluent_subtract_circle_12_filled": 60366, - "ic_fluent_tag_circle_20_filled": 60525, - "ic_fluent_text_bullet_list_ltr_16_filled": 60630, - "ic_fluent_text_bullet_list_rtl_16_filled": 60637, - "ic_fluent_text_header_1_24_filled": 60704, - "ic_fluent_text_header_2_24_filled": 60705, - "ic_fluent_text_header_3_24_filled": 60706, - "ic_fluent_text_period_asterisk_20_filled": 60746, - "ic_fluent_timeline_20_filled": 60803, - "ic_fluent_triangle_12_filled": 60836, - "ic_fluent_wifi_settings_20_filled": 61019, - "ic_fluent_window_16_filled": 61021, - "ic_fluent_window_24_filled": 61022, - "ic_fluent_window_ad_off_20_filled": 61026, - "ic_fluent_window_arrow_up_16_filled": 61034, - "ic_fluent_window_arrow_up_20_filled": 61035, - "ic_fluent_window_console_20_filled": 61039, - "ic_fluent_window_header_horizontal_off_20_filled": 61045, - "ic_fluent_window_multiple_16_filled": 61048, - "ic_fluent_zoom_in_16_filled": 61070, - "ic_fluent_zoom_out_16_filled": 61071, - "ic_fluent_align_end_horizontal_20_filled": 57392, - "ic_fluent_align_end_vertical_20_filled": 57393, - "ic_fluent_align_space_around_horizontal_20_filled": 57406, - "ic_fluent_align_space_around_vertical_20_filled": 57407, - "ic_fluent_align_space_between_horizontal_20_filled": 57408, - "ic_fluent_align_space_between_vertical_20_filled": 57409, - "ic_fluent_align_space_evenly_horizontal_20_filled": 57410, - "ic_fluent_align_space_evenly_vertical_20_filled": 57411, - "ic_fluent_align_space_fit_vertical_20_filled": 57412, - "ic_fluent_align_start_horizontal_20_filled": 57413, - "ic_fluent_align_start_vertical_20_filled": 57414, - "ic_fluent_align_stretch_horizontal_20_filled": 57415, - "ic_fluent_align_stretch_vertical_20_filled": 57416, - "ic_fluent_arrow_collapse_all_20_filled": 57520, - "ic_fluent_arrow_collapse_all_24_filled": 57521, - "ic_fluent_arrow_wrap_20_filled": 57651, - "ic_fluent_arrow_wrap_off_20_filled": 57652, - "ic_fluent_center_horizontal_20_filled": 58060, - "ic_fluent_document_multiple_24_filled": 58669, - "ic_fluent_document_multiple_percent_24_filled": 58671, - "ic_fluent_document_table_16_filled": 58710, - "ic_fluent_document_table_20_filled": 58711, - "ic_fluent_document_table_24_filled": 58712, - "ic_fluent_glance_horizontal_12_filled": 59059, - "ic_fluent_panel_left_expand_16_filled": 59590, - "ic_fluent_square_shadow_12_filled": 60320, - "ic_fluent_text_baseline_20_filled": 60623, - "ic_fluent_arrow_circle_down_12_filled": 57481, - "ic_fluent_arrow_circle_down_16_filled": 57482, - "ic_fluent_arrow_circle_down_28_filled": 57483, - "ic_fluent_arrow_circle_down_32_filled": 57484, - "ic_fluent_arrow_circle_down_48_filled": 57485, - "ic_fluent_arrow_circle_left_20_filled": 57492, - "ic_fluent_arrow_circle_left_24_filled": 57493, - "ic_fluent_arrow_circle_left_28_filled": 57494, - "ic_fluent_arrow_circle_left_32_filled": 57495, - "ic_fluent_arrow_circle_left_48_filled": 57496, - "ic_fluent_arrow_circle_right_20_filled": 57499, - "ic_fluent_arrow_circle_right_28_filled": 57501, - "ic_fluent_arrow_circle_right_32_filled": 57502, - "ic_fluent_arrow_circle_right_48_filled": 57503, - "ic_fluent_arrow_circle_up_12_filled": 57504, - "ic_fluent_arrow_circle_up_28_filled": 57508, - "ic_fluent_arrow_circle_up_32_filled": 57509, - "ic_fluent_arrow_circle_up_48_filled": 57510, - "ic_fluent_arrow_trending_checkmark_20_filled": 57623, - "ic_fluent_arrow_trending_checkmark_24_filled": 57624, - "ic_fluent_arrow_trending_settings_20_filled": 57630, - "ic_fluent_arrow_trending_settings_24_filled": 57631, - "ic_fluent_balloon_12_filled": 57676, - "ic_fluent_calendar_work_week_28_filled": 57986, - "ic_fluent_channel_subtract_16_filled": 58092, - "ic_fluent_channel_subtract_20_filled": 58093, - "ic_fluent_channel_subtract_24_filled": 58094, - "ic_fluent_channel_subtract_28_filled": 58095, - "ic_fluent_channel_subtract_48_filled": 58096, - "ic_fluent_clipboard_settings_24_filled": 58225, - "ic_fluent_cloud_archive_16_filled": 58267, - "ic_fluent_cloud_archive_20_filled": 58268, - "ic_fluent_cloud_words_16_filled": 58312, - "ic_fluent_cloud_words_20_filled": 58313, - "ic_fluent_cloud_words_24_filled": 58314, - "ic_fluent_cloud_words_28_filled": 58315, - "ic_fluent_cloud_words_32_filled": 58316, - "ic_fluent_cloud_words_48_filled": 58317, - "ic_fluent_column_arrow_right_20_filled": 58326, - "ic_fluent_control_button_20_filled": 58407, - "ic_fluent_control_button_24_filled": 58408, - "ic_fluent_credit_card_person_20_filled": 58420, - "ic_fluent_credit_card_person_24_filled": 58421, - "ic_fluent_credit_card_toolbox_24_filled": 58422, - "ic_fluent_cube_link_20_filled": 58429, - "ic_fluent_delete_lines_20_filled": 58509, - "ic_fluent_dialpad_28_filled": 58562, - "ic_fluent_dialpad_32_filled": 58563, - "ic_fluent_dialpad_48_filled": 58564, - "ic_fluent_diversity_20_filled": 58580, - "ic_fluent_diversity_24_filled": 58581, - "ic_fluent_diversity_28_filled": 58582, - "ic_fluent_diversity_48_filled": 58583, - "ic_fluent_food_cake_12_filled": 58998, - "ic_fluent_globe_prohibited_20_filled": 59078, - "ic_fluent_globe_search_20_filled": 59079, - "ic_fluent_globe_video_28_filled": 59085, - "ic_fluent_globe_video_32_filled": 59086, - "ic_fluent_globe_video_48_filled": 59087, - "ic_fluent_guardian_20_filled": 59098, - "ic_fluent_guardian_24_filled": 59099, - "ic_fluent_guardian_28_filled": 59100, - "ic_fluent_guardian_48_filled": 59101, - "ic_fluent_hat_graduation_12_filled": 59121, - "ic_fluent_lock_closed_32_filled": 59295, - "ic_fluent_money_calculator_20_filled": 59430, - "ic_fluent_money_calculator_24_filled": 59431, - "ic_fluent_money_settings_20_filled": 59438, - "ic_fluent_options_48_filled": 59559, - "ic_fluent_pause_settings_20_filled": 59621, - "ic_fluent_person_lock_24_filled": 59720, - "ic_fluent_person_note_20_filled": 59728, - "ic_fluent_road_cone_16_filled": 59961, - "ic_fluent_road_cone_20_filled": 59962, - "ic_fluent_road_cone_24_filled": 59963, - "ic_fluent_road_cone_28_filled": 59964, - "ic_fluent_road_cone_32_filled": 59965, - "ic_fluent_road_cone_48_filled": 59966, - "ic_fluent_scan_thumb_up_16_filled": 60015, - "ic_fluent_scan_thumb_up_20_filled": 60016, - "ic_fluent_scan_thumb_up_24_filled": 60017, - "ic_fluent_scan_thumb_up_28_filled": 60018, - "ic_fluent_scan_thumb_up_48_filled": 60019, - "ic_fluent_share_48_filled": 60081, - "ic_fluent_speaker_0_32_filled": 60227, - "ic_fluent_speaker_1_32_filled": 60232, - "ic_fluent_speaker_2_32_filled": 60238, - "ic_fluent_sticker_12_filled": 60347, - "ic_fluent_toolbox_12_filled": 60825, - "ic_fluent_vehicle_car_collision_16_filled": 60890, - "ic_fluent_vehicle_car_collision_20_filled": 60891, - "ic_fluent_vehicle_car_collision_24_filled": 60892, - "ic_fluent_vehicle_car_collision_48_filled": 60895, - "ic_fluent_wallet_20_filled": 60972, - "ic_fluent_wallet_24_filled": 60973, - "ic_fluent_whiteboard_48_filled": 61014, - "ic_fluent_call_48_filled": 57992, - "ic_fluent_closed_caption_32_filled": 58256, - "ic_fluent_desktop_keyboard_16_filled": 58528, - "ic_fluent_desktop_keyboard_20_filled": 58529, - "ic_fluent_desktop_keyboard_24_filled": 58530, - "ic_fluent_desktop_keyboard_28_filled": 58531, - "ic_fluent_heart_12_filled": 59143, - "ic_fluent_image_alt_text_16_filled": 59176, - "ic_fluent_inking_tool_accent_32_filled": 59208, - "ic_fluent_mail_12_filled": 59310, - "ic_fluent_more_circle_32_filled": 59440, - "ic_fluent_number_symbol_32_filled": 59542, - "ic_fluent_poll_16_filled": 59824, - "ic_fluent_rectangle_landscape_12_filled": 59919, - "ic_fluent_rectangle_landscape_16_filled": 59920, - "ic_fluent_rectangle_landscape_24_filled": 59922, - "ic_fluent_rectangle_landscape_28_filled": 59923, - "ic_fluent_rectangle_landscape_32_filled": 59924, - "ic_fluent_rectangle_landscape_48_filled": 59925, - "ic_fluent_scan_thumb_up_off_16_filled": 60020, - "ic_fluent_scan_thumb_up_off_20_filled": 60021, - "ic_fluent_scan_thumb_up_off_24_filled": 60022, - "ic_fluent_scan_thumb_up_off_28_filled": 60023, - "ic_fluent_scan_thumb_up_off_48_filled": 60024, - "ic_fluent_send_clock_24_filled": 60056, - "ic_fluent_share_screen_person_16_filled": 60083, - "ic_fluent_share_screen_person_20_filled": 60084, - "ic_fluent_share_screen_person_24_filled": 60085, - "ic_fluent_share_screen_person_28_filled": 60086, - "ic_fluent_share_screen_person_overlay_16_filled": 60087, - "ic_fluent_share_screen_person_overlay_20_filled": 60088, - "ic_fluent_share_screen_person_overlay_24_filled": 60089, - "ic_fluent_share_screen_person_overlay_28_filled": 60090, - "ic_fluent_share_screen_person_overlay_inside_16_filled": 60091, - "ic_fluent_share_screen_person_overlay_inside_20_filled": 60092, - "ic_fluent_share_screen_person_overlay_inside_24_filled": 60093, - "ic_fluent_share_screen_person_overlay_inside_28_filled": 60094, - "ic_fluent_slide_microphone_32_filled": 60196, - "ic_fluent_snooze_20_filled": 60214, - "ic_fluent_tag_32_filled": 60524, - "ic_fluent_tag_dismiss_16_filled": 60526, - "ic_fluent_tag_lock_16_filled": 60532, - "ic_fluent_tag_lock_20_filled": 60533, - "ic_fluent_tag_lock_24_filled": 60534, - "ic_fluent_tag_lock_32_filled": 60535, - "ic_fluent_tag_lock_accent_16_filled": 60536, - "ic_fluent_tag_lock_accent_20_filled": 60537, - "ic_fluent_tag_lock_accent_24_filled": 60538, - "ic_fluent_tag_lock_accent_32_filled": 60539, - "ic_fluent_text_align_center_16_filled": 60592, - "ic_fluent_text_align_left_16_filled": 60609, - "ic_fluent_text_align_right_16_filled": 60616, - "ic_fluent_text_change_case_16_filled": 60656, - "ic_fluent_text_clear_formatting_16_filled": 60657, - "ic_fluent_text_color_accent_16_filled": 60660, - "ic_fluent_text_color_accent_20_filled": 60661, - "ic_fluent_text_color_accent_24_filled": 60662, - "ic_fluent_text_font_size_16_filled": 60689, - "ic_fluent_text_indent_decrease_ltr_16_filled": 60707, - "ic_fluent_text_indent_decrease_ltr_20_filled": 60708, - "ic_fluent_text_indent_decrease_ltr_24_filled": 60709, - "ic_fluent_text_indent_decrease_rtl_16_filled": 60714, - "ic_fluent_text_indent_decrease_rtl_20_filled": 60715, - "ic_fluent_text_indent_decrease_rtl_24_filled": 60716, - "ic_fluent_text_indent_increase_ltr_16_filled": 60717, - "ic_fluent_text_indent_increase_ltr_20_filled": 60718, - "ic_fluent_text_indent_increase_ltr_24_filled": 60719, - "ic_fluent_text_indent_increase_rtl_16_filled": 60724, - "ic_fluent_text_indent_increase_rtl_20_filled": 60725, - "ic_fluent_text_indent_increase_rtl_24_filled": 60726, - "ic_fluent_text_number_list_ltr_16_filled": 60730, - "ic_fluent_text_number_list_rtl_16_filled": 60735, - "ic_fluent_text_paragraph_direction_left_16_filled": 60742, - "ic_fluent_text_paragraph_direction_left_20_filled": 60743, - "ic_fluent_text_paragraph_direction_right_16_filled": 60744, - "ic_fluent_text_paragraph_direction_right_20_filled": 60745, - "ic_fluent_text_subscript_16_filled": 60769, - "ic_fluent_text_superscript_16_filled": 60770, - "ic_fluent_apps_list_detail_20_filled": 57444, - "ic_fluent_apps_list_detail_24_filled": 57445, - "ic_fluent_arrow_maximize_32_filled": 57560, - "ic_fluent_arrow_outline_up_right_32_filled": 57568, - "ic_fluent_arrow_up_right_32_filled": 57648, - "ic_fluent_box_edit_20_filled": 57817, - "ic_fluent_box_edit_24_filled": 57818, - "ic_fluent_box_toolbox_20_filled": 57831, - "ic_fluent_box_toolbox_24_filled": 57832, - "ic_fluent_chat_video_20_filled": 58117, - "ic_fluent_chat_video_24_filled": 58118, - "ic_fluent_circle_32_filled": 58183, - "ic_fluent_database_link_20_filled": 58488, - "ic_fluent_database_link_24_filled": 58489, - "ic_fluent_diamond_32_filled": 58570, - "ic_fluent_document_text_20_filled": 58723, - "ic_fluent_document_text_24_filled": 58724, - "ic_fluent_document_text_link_20_filled": 58729, - "ic_fluent_document_text_link_24_filled": 58730, - "ic_fluent_globe_shield_20_filled": 59080, - "ic_fluent_globe_shield_24_filled": 59081, - "ic_fluent_line_32_filled": 59253, - "ic_fluent_line_dashes_32_filled": 59257, - "ic_fluent_number_symbol_28_filled": 59541, - "ic_fluent_number_symbol_48_filled": 59543, - "ic_fluent_oval_32_filled": 59571, - "ic_fluent_pentagon_32_filled": 59643, - "ic_fluent_play_circle_48_filled": 59816, - "ic_fluent_projection_screen_16_filled": 59868, - "ic_fluent_projection_screen_20_filled": 59869, - "ic_fluent_projection_screen_24_filled": 59870, - "ic_fluent_projection_screen_28_filled": 59871, - "ic_fluent_projection_screen_dismiss_16_filled": 59872, - "ic_fluent_projection_screen_dismiss_20_filled": 59873, - "ic_fluent_projection_screen_dismiss_24_filled": 59874, - "ic_fluent_projection_screen_dismiss_28_filled": 59875, - "ic_fluent_rhombus_32_filled": 59947, - "ic_fluent_save_arrow_right_20_filled": 59981, - "ic_fluent_save_arrow_right_24_filled": 59982, - "ic_fluent_shortpick_20_filled": 60159, - "ic_fluent_shortpick_24_filled": 60160, - "ic_fluent_sparkle_16_filled": 60219, - "ic_fluent_sparkle_20_filled": 60220, - "ic_fluent_sparkle_24_filled": 60221, - "ic_fluent_sparkle_28_filled": 60222, - "ic_fluent_sparkle_48_filled": 60223, - "ic_fluent_square_32_filled": 60289, - "ic_fluent_subtract_square_24_filled": 60372, - "ic_fluent_text_case_lowercase_16_filled": 60647, - "ic_fluent_text_case_lowercase_20_filled": 60648, - "ic_fluent_text_case_lowercase_24_filled": 60649, - "ic_fluent_text_case_title_16_filled": 60650, - "ic_fluent_text_case_title_20_filled": 60651, - "ic_fluent_text_case_title_24_filled": 60652, - "ic_fluent_text_case_uppercase_16_filled": 60653, - "ic_fluent_text_case_uppercase_20_filled": 60654, - "ic_fluent_text_case_uppercase_24_filled": 60655, - "ic_fluent_triangle_32_filled": 60839, - "ic_fluent_video_person_sparkle_16_filled": 60946, - "ic_fluent_video_person_sparkle_20_filled": 60947, - "ic_fluent_video_person_sparkle_24_filled": 60948, - "ic_fluent_video_person_sparkle_28_filled": 60949, - "ic_fluent_video_person_sparkle_48_filled": 60950, - "ic_fluent_accessibility_48_filled": 57346, - "ic_fluent_archive_multiple_16_filled": 57453, - "ic_fluent_archive_multiple_20_filled": 57454, - "ic_fluent_archive_multiple_24_filled": 57455, - "ic_fluent_arrow_reset_32_filled": 57576, - "ic_fluent_arrow_reset_48_filled": 57577, - "ic_fluent_box_20_filled": 57807, - "ic_fluent_box_24_filled": 57808, - "ic_fluent_box_dismiss_20_filled": 57815, - "ic_fluent_box_dismiss_24_filled": 57816, - "ic_fluent_clear_formatting_16_filled": 58197, - "ic_fluent_clear_formatting_20_filled": 58198, - "ic_fluent_clipboard_clock_20_filled": 58210, - "ic_fluent_clipboard_clock_24_filled": 58211, - "ic_fluent_cloud_archive_24_filled": 58269, - "ic_fluent_cloud_archive_28_filled": 58270, - "ic_fluent_cloud_archive_32_filled": 58271, - "ic_fluent_cloud_archive_48_filled": 58272, - "ic_fluent_document_table_arrow_right_20_filled": 58713, - "ic_fluent_document_table_arrow_right_24_filled": 58714, - "ic_fluent_document_table_checkmark_20_filled": 58715, - "ic_fluent_document_table_checkmark_24_filled": 58716, - "ic_fluent_document_text_clock_20_filled": 58725, - "ic_fluent_document_text_clock_24_filled": 58726, - "ic_fluent_flash_settings_20_filled": 58931, - "ic_fluent_flash_settings_24_filled": 58932, - "ic_fluent_games_16_filled": 59030, - "ic_fluent_games_20_filled": 59031, - "ic_fluent_games_28_filled": 59032, - "ic_fluent_games_32_filled": 59033, - "ic_fluent_games_48_filled": 59034, - "ic_fluent_hand_draw_28_filled": 59110, - "ic_fluent_lasso_28_filled": 59237, - "ic_fluent_money_dismiss_20_filled": 59432, - "ic_fluent_money_dismiss_24_filled": 59433, - "ic_fluent_money_off_20_filled": 59436, - "ic_fluent_money_off_24_filled": 59437, - "ic_fluent_note_28_filled": 59512, - "ic_fluent_note_48_filled": 59513, - "ic_fluent_person_lightbulb_20_filled": 59718, - "ic_fluent_person_lightbulb_24_filled": 59719, - "ic_fluent_picture_in_picture_enter_16_filled": 59790, - "ic_fluent_picture_in_picture_enter_20_filled": 59791, - "ic_fluent_picture_in_picture_enter_24_filled": 59792, - "ic_fluent_picture_in_picture_exit_16_filled": 59793, - "ic_fluent_picture_in_picture_exit_20_filled": 59794, - "ic_fluent_picture_in_picture_exit_24_filled": 59795, - "ic_fluent_plug_connected_20_filled": 59819, - "ic_fluent_sanitize_20_filled": 59977, - "ic_fluent_sanitize_24_filled": 59978, - "ic_fluent_settings_32_filled": 60061, - "ic_fluent_settings_48_filled": 60062, - "ic_fluent_shapes_28_filled": 60077, - "ic_fluent_shapes_48_filled": 60078, - "ic_fluent_shopping_bag_percent_20_filled": 60153, - "ic_fluent_shopping_bag_percent_24_filled": 60154, - "ic_fluent_shopping_bag_tag_20_filled": 60157, - "ic_fluent_shopping_bag_tag_24_filled": 60158, - "ic_fluent_stack_arrow_forward_20_filled": 60323, - "ic_fluent_stack_arrow_forward_24_filled": 60324, - "ic_fluent_table_lightning_20_filled": 60456, - "ic_fluent_table_lightning_24_filled": 60457, - "ic_fluent_table_link_20_filled": 60460, - "ic_fluent_table_link_24_filled": 60461, - "ic_fluent_text_t_28_filled": 60773, - "ic_fluent_text_t_48_filled": 60774, - "ic_fluent_thumb_like_28_filled": 60793, - "ic_fluent_thumb_like_48_filled": 60794, - "ic_fluent_video_off_32_filled": 60934, - "ic_fluent_video_off_48_filled": 60935, - "ic_fluent_bookmark_search_20_filled": 57773, - "ic_fluent_bookmark_search_24_filled": 57774, - "ic_fluent_building_factory_16_filled": 57898, - "ic_fluent_building_factory_20_filled": 57899, - "ic_fluent_building_factory_28_filled": 57901, - "ic_fluent_building_factory_32_filled": 57902, - "ic_fluent_building_factory_48_filled": 57903, - "ic_fluent_calendar_chat_20_filled": 57941, - "ic_fluent_calendar_chat_24_filled": 57942, - "ic_fluent_calendar_toolbox_20_filled": 57983, - "ic_fluent_calendar_toolbox_24_filled": 57984, - "ic_fluent_camera_switch_20_filled": 58038, - "ic_fluent_comment_multiple_32_filled": 58368, - "ic_fluent_comment_multiple_link_16_filled": 58373, - "ic_fluent_comment_multiple_link_20_filled": 58374, - "ic_fluent_comment_multiple_link_24_filled": 58375, - "ic_fluent_comment_multiple_link_28_filled": 58376, - "ic_fluent_comment_multiple_link_32_filled": 58377, - "ic_fluent_contact_card_ribbon_16_filled": 58397, - "ic_fluent_contact_card_ribbon_20_filled": 58398, - "ic_fluent_contact_card_ribbon_24_filled": 58399, - "ic_fluent_contact_card_ribbon_28_filled": 58400, - "ic_fluent_contact_card_ribbon_32_filled": 58401, - "ic_fluent_contact_card_ribbon_48_filled": 58402, - "ic_fluent_database_person_20_filled": 58491, - "ic_fluent_database_person_24_filled": 58492, - "ic_fluent_document_flowchart_20_filled": 58630, - "ic_fluent_document_flowchart_24_filled": 58631, - "ic_fluent_document_table_search_20_filled": 58719, - "ic_fluent_document_table_search_24_filled": 58720, - "ic_fluent_document_text_extract_20_filled": 58727, - "ic_fluent_document_text_extract_24_filled": 58728, - "ic_fluent_fast_forward_16_filled": 58899, - "ic_fluent_fast_forward_28_filled": 58900, - "ic_fluent_flowchart_20_filled": 58949, - "ic_fluent_flowchart_24_filled": 58950, - "ic_fluent_flowchart_circle_20_filled": 58951, - "ic_fluent_flowchart_circle_24_filled": 58952, - "ic_fluent_folder_sync_24_filled": 58994, - "ic_fluent_heart_circle_16_filled": 59147, - "ic_fluent_heart_circle_20_filled": 59148, - "ic_fluent_heart_circle_24_filled": 59149, - "ic_fluent_megaphone_loud_24_filled": 59390, - "ic_fluent_people_lock_20_filled": 59665, - "ic_fluent_people_lock_24_filled": 59666, - "ic_fluent_person_circle_24_filled": 59707, - "ic_fluent_phone_update_checkmark_20_filled": 59783, - "ic_fluent_phone_update_checkmark_24_filled": 59784, - "ic_fluent_plug_connected_24_filled": 59820, - "ic_fluent_rewind_16_filled": 59941, - "ic_fluent_rewind_28_filled": 59942, - "ic_fluent_save_multiple_20_filled": 59987, - "ic_fluent_save_multiple_24_filled": 59988, - "ic_fluent_scan_type_checkmark_20_filled": 60027, - "ic_fluent_scan_type_checkmark_24_filled": 60028, - "ic_fluent_select_object_skew_20_filled": 60049, - "ic_fluent_select_object_skew_24_filled": 60050, - "ic_fluent_select_object_skew_dismiss_20_filled": 60051, - "ic_fluent_select_object_skew_dismiss_24_filled": 60052, - "ic_fluent_select_object_skew_edit_20_filled": 60053, - "ic_fluent_select_object_skew_edit_24_filled": 60054, - "ic_fluent_shopping_bag_dismiss_20_filled": 60149, - "ic_fluent_shopping_bag_dismiss_24_filled": 60150, - "ic_fluent_shopping_bag_pause_20_filled": 60151, - "ic_fluent_shopping_bag_pause_24_filled": 60152, - "ic_fluent_tag_error_16_filled": 60529, - "ic_fluent_tag_error_20_filled": 60530, - "ic_fluent_tag_error_24_filled": 60531, - "ic_fluent_tag_multiple_24_filled": 60541, - "ic_fluent_tag_question_mark_20_filled": 60545, - "ic_fluent_tag_question_mark_32_filled": 60547, - "ic_fluent_text_column_one_wide_lightning_20_filled": 60667, - "ic_fluent_text_column_one_wide_lightning_24_filled": 60668, - "ic_fluent_text_font_info_16_filled": 60686, - "ic_fluent_text_font_info_20_filled": 60687, - "ic_fluent_text_font_info_24_filled": 60688, - "ic_fluent_tray_item_add_20_filled": 60830, - "ic_fluent_tray_item_add_24_filled": 60831, - "ic_fluent_tray_item_remove_20_filled": 60832, - "ic_fluent_tray_item_remove_24_filled": 60833, - "ic_fluent_vehicle_truck_bag_20_filled": 60906, - "ic_fluent_vehicle_truck_bag_24_filled": 60907, - "ic_fluent_checkmark_starburst_20_filled": 58143, - "ic_fluent_checkmark_starburst_24_filled": 58144, - "ic_fluent_access_time_20_filled": 57344, - "ic_fluent_accessibility_checkmark_20_filled": 57347, - "ic_fluent_add_square_20_filled": 57351, - "ic_fluent_album_20_filled": 57359, - "ic_fluent_album_add_20_filled": 57361, - "ic_fluent_alert_on_20_filled": 57370, - "ic_fluent_app_generic_20_filled": 57436, - "ic_fluent_app_recent_20_filled": 57437, - "ic_fluent_app_title_20_filled": 57438, - "ic_fluent_arrow_autofit_down_20_filled": 57461, - "ic_fluent_arrow_autofit_height_20_filled": 57463, - "ic_fluent_arrow_autofit_height_dotted_20_filled": 57464, - "ic_fluent_arrow_autofit_up_20_filled": 57466, - "ic_fluent_arrow_autofit_width_20_filled": 57468, - "ic_fluent_arrow_autofit_width_dotted_20_filled": 57469, - "ic_fluent_arrow_bounce_20_filled": 57479, - "ic_fluent_arrow_circle_down_right_20_filled": 57487, - "ic_fluent_arrow_circle_up_left_20_filled": 57511, - "ic_fluent_arrow_expand_20_filled": 57541, - "ic_fluent_arrow_fit_20_filled": 57549, - "ic_fluent_arrow_minimize_vertical_20_filled": 57563, - "ic_fluent_arrow_sort_down_lines_24_filled": 57586, - "ic_fluent_arrow_square_down_20_filled": 57590, - "ic_fluent_arrow_step_back_20_filled": 57593, - "ic_fluent_arrow_step_in_left_20_filled": 57601, - "ic_fluent_arrow_step_in_right_20_filled": 57606, - "ic_fluent_arrow_step_out_20_filled": 57611, - "ic_fluent_arrow_step_over_20_filled": 57615, - "ic_fluent_arrow_turn_bidirectional_down_right_20_filled": 57636, - "ic_fluent_arrow_turn_right_20_filled": 57637, - "ic_fluent_arrows_bidirectional_20_filled": 57653, - "ic_fluent_attach_text_20_filled": 57657, - "ic_fluent_auto_fit_height_20_filled": 57659, - "ic_fluent_auto_fit_width_20_filled": 57661, - "ic_fluent_autocorrect_20_filled": 57663, - "ic_fluent_badge_20_filled": 57675, - "ic_fluent_battery_checkmark_20_filled": 57680, - "ic_fluent_battery_warning_20_filled": 57682, - "ic_fluent_bluetooth_connected_20_filled": 57695, - "ic_fluent_bluetooth_disabled_20_filled": 57696, - "ic_fluent_bluetooth_searching_20_filled": 57697, - "ic_fluent_bookmark_multiple_16_filled": 57766, - "ic_fluent_bookmark_multiple_28_filled": 57769, - "ic_fluent_bookmark_multiple_32_filled": 57770, - "ic_fluent_bookmark_multiple_48_filled": 57771, - "ic_fluent_branch_fork_hint_20_filled": 57844, - "ic_fluent_branch_fork_hint_24_filled": 57845, - "ic_fluent_branch_fork_link_20_filled": 57846, - "ic_fluent_branch_fork_link_24_filled": 57847, - "ic_fluent_calendar_ltr_48_filled": 57958, - "ic_fluent_calendar_rtl_48_filled": 57979, - "ic_fluent_data_usage_toolbox_20_filled": 58478, - "ic_fluent_data_usage_toolbox_24_filled": 58479, - "ic_fluent_desktop_cursor_16_filled": 58519, - "ic_fluent_desktop_cursor_20_filled": 58520, - "ic_fluent_desktop_cursor_24_filled": 58521, - "ic_fluent_desktop_cursor_28_filled": 58522, - "ic_fluent_desktop_flow_20_filled": 58526, - "ic_fluent_desktop_flow_24_filled": 58527, - "ic_fluent_desktop_signal_20_filled": 58542, - "ic_fluent_desktop_signal_24_filled": 58543, - "ic_fluent_emoji_sad_slight_20_filled": 58850, - "ic_fluent_emoji_sad_slight_24_filled": 58851, - "ic_fluent_emoji_smile_slight_20_filled": 58852, - "ic_fluent_emoji_smile_slight_24_filled": 58853, - "ic_fluent_food_apple_20_filled": 58996, - "ic_fluent_food_apple_24_filled": 58997, - "ic_fluent_mail_edit_20_filled": 59329, - "ic_fluent_mail_edit_24_filled": 59330, - "ic_fluent_person_arrow_left_16_filled": 59701, - "ic_fluent_person_edit_20_filled": 59712, - "ic_fluent_person_edit_24_filled": 59713, - "ic_fluent_scan_dash_12_filled": 60002, - "ic_fluent_scan_dash_16_filled": 60003, - "ic_fluent_scan_dash_20_filled": 60004, - "ic_fluent_scan_dash_24_filled": 60005, - "ic_fluent_scan_dash_28_filled": 60006, - "ic_fluent_scan_dash_32_filled": 60007, - "ic_fluent_scan_dash_48_filled": 60008, - "ic_fluent_square_hint_20_filled": 60303, - "ic_fluent_square_hint_24_filled": 60304, - "ic_fluent_tag_off_20_filled": 60542, - "ic_fluent_tag_off_24_filled": 60543, - "ic_fluent_text_box_settings_20_filled": 60625, - "ic_fluent_text_box_settings_24_filled": 60626, - "ic_fluent_vehicle_truck_cube_20_filled": 60908, - "ic_fluent_vehicle_truck_cube_24_filled": 60909, - "ic_fluent_arrow_forward_down_lightning_20_filled": 57554, - "ic_fluent_arrow_forward_down_lightning_24_filled": 57555, - "ic_fluent_arrow_forward_down_person_20_filled": 57556, - "ic_fluent_arrow_forward_down_person_24_filled": 57557, - "ic_fluent_arrow_step_in_28_filled": 57598, - "ic_fluent_arrow_step_in_left_24_filled": 57602, - "ic_fluent_arrow_step_in_left_28_filled": 57603, - "ic_fluent_arrow_step_in_right_24_filled": 57607, - "ic_fluent_arrow_step_in_right_28_filled": 57608, - "ic_fluent_arrow_step_out_24_filled": 57612, - "ic_fluent_arrow_step_out_28_filled": 57613, - "ic_fluent_arrow_trending_text_20_filled": 57632, - "ic_fluent_arrow_trending_text_24_filled": 57633, - "ic_fluent_arrow_trending_wrench_20_filled": 57634, - "ic_fluent_arrow_trending_wrench_24_filled": 57635, - "ic_fluent_battery_10_20_filled": 57678, - "ic_fluent_beach_32_filled": 57687, - "ic_fluent_beach_48_filled": 57688, - "ic_fluent_book_clock_20_filled": 57720, - "ic_fluent_book_coins_20_filled": 57722, - "ic_fluent_book_compass_20_filled": 57724, - "ic_fluent_book_database_20_filled": 57730, - "ic_fluent_book_exclamation_mark_20_filled": 57732, - "ic_fluent_book_globe_20_filled": 57734, - "ic_fluent_book_information_20_filled": 57735, - "ic_fluent_book_letter_20_filled": 57737, - "ic_fluent_book_pulse_20_filled": 57752, - "ic_fluent_book_question_mark_20_filled": 57754, - "ic_fluent_book_question_mark_rtl_20_filled": 57756, - "ic_fluent_book_search_20_filled": 57757, - "ic_fluent_book_star_20_filled": 57759, - "ic_fluent_book_theta_20_filled": 57762, - "ic_fluent_bookmark_off_20_filled": 57772, - "ic_fluent_border_bottom_20_filled": 57778, - "ic_fluent_border_bottom_double_20_filled": 57780, - "ic_fluent_border_bottom_thick_20_filled": 57782, - "ic_fluent_border_left_20_filled": 57784, - "ic_fluent_border_none_20_filled": 57788, - "ic_fluent_border_outside_20_filled": 57790, - "ic_fluent_border_outside_thick_20_filled": 57792, - "ic_fluent_border_right_20_filled": 57794, - "ic_fluent_border_top_20_filled": 57796, - "ic_fluent_border_top_bottom_20_filled": 57798, - "ic_fluent_border_top_bottom_double_20_filled": 57800, - "ic_fluent_border_top_bottom_thick_20_filled": 57802, - "ic_fluent_branch_20_filled": 57837, - "ic_fluent_brightness_high_16_filled": 57866, - "ic_fluent_brightness_high_20_filled": 57867, - "ic_fluent_brightness_high_24_filled": 57868, - "ic_fluent_brightness_high_28_filled": 57869, - "ic_fluent_brightness_high_32_filled": 57870, - "ic_fluent_brightness_high_48_filled": 57871, - "ic_fluent_brightness_low_16_filled": 57872, - "ic_fluent_brightness_low_20_filled": 57873, - "ic_fluent_brightness_low_24_filled": 57874, - "ic_fluent_brightness_low_28_filled": 57875, - "ic_fluent_brightness_low_32_filled": 57876, - "ic_fluent_brightness_low_48_filled": 57877, - "ic_fluent_building_government_20_filled": 57904, - "ic_fluent_building_multiple_20_filled": 57911, - "ic_fluent_chat_dismiss_20_filled": 58113, - "ic_fluent_chat_dismiss_24_filled": 58114, - "ic_fluent_cube_tree_20_filled": 58439, - "ic_fluent_cube_tree_24_filled": 58440, - "ic_fluent_draw_image_20_filled": 58751, - "ic_fluent_draw_image_24_filled": 58752, - "ic_fluent_draw_shape_20_filled": 58753, - "ic_fluent_draw_text_20_filled": 58755, - "ic_fluent_drawer_add_20_filled": 58757, - "ic_fluent_drawer_add_24_filled": 58758, - "ic_fluent_drawer_arrow_download_20_filled": 58759, - "ic_fluent_drawer_arrow_download_24_filled": 58760, - "ic_fluent_drawer_dismiss_20_filled": 58761, - "ic_fluent_drawer_dismiss_24_filled": 58762, - "ic_fluent_drawer_play_20_filled": 58763, - "ic_fluent_drawer_play_24_filled": 58764, - "ic_fluent_drawer_subtract_20_filled": 58765, - "ic_fluent_drawer_subtract_24_filled": 58766, - "ic_fluent_emoji_28_filled": 58833, - "ic_fluent_emoji_32_filled": 58834, - "ic_fluent_emoji_48_filled": 58835, - "ic_fluent_emoji_sparkle_16_filled": 58854, - "ic_fluent_emoji_sparkle_20_filled": 58855, - "ic_fluent_emoji_sparkle_24_filled": 58856, - "ic_fluent_emoji_sparkle_28_filled": 58857, - "ic_fluent_emoji_sparkle_32_filled": 58858, - "ic_fluent_emoji_sparkle_48_filled": 58859, - "ic_fluent_flip_horizontal_16_filled": 58936, - "ic_fluent_flip_horizontal_20_filled": 58937, - "ic_fluent_flip_horizontal_28_filled": 58939, - "ic_fluent_flip_horizontal_32_filled": 58940, - "ic_fluent_flip_horizontal_48_filled": 58941, - "ic_fluent_flip_vertical_16_filled": 58942, - "ic_fluent_flip_vertical_20_filled": 58943, - "ic_fluent_flip_vertical_28_filled": 58945, - "ic_fluent_flip_vertical_32_filled": 58946, - "ic_fluent_flip_vertical_48_filled": 58947, - "ic_fluent_food_grains_20_filled": 59003, - "ic_fluent_food_grains_24_filled": 59004, - "ic_fluent_gift_card_arrow_right_20_filled": 59051, - "ic_fluent_gift_card_arrow_right_24_filled": 59052, - "ic_fluent_heart_32_filled": 59144, - "ic_fluent_heart_48_filled": 59145, - "ic_fluent_link_12_filled": 59262, - "ic_fluent_link_32_filled": 59263, - "ic_fluent_luggage_28_filled": 59307, - "ic_fluent_luggage_32_filled": 59308, - "ic_fluent_luggage_48_filled": 59309, - "ic_fluent_money_hand_20_filled": 59434, - "ic_fluent_money_hand_24_filled": 59435, - "ic_fluent_next_28_filled": 59509, - "ic_fluent_next_32_filled": 59510, - "ic_fluent_next_48_filled": 59511, - "ic_fluent_people_list_28_filled": 59664, - "ic_fluent_previous_28_filled": 59857, - "ic_fluent_previous_32_filled": 59858, - "ic_fluent_previous_48_filled": 59859, - "ic_fluent_question_circle_32_filled": 59894, - "ic_fluent_text_paragraph_16_filled": 60737, - "ic_fluent_vehicle_car_collision_28_filled": 60893, - "ic_fluent_vehicle_car_collision_32_filled": 60894, - "ic_fluent_video_clip_multiple_16_filled": 60928, - "ic_fluent_video_clip_multiple_20_filled": 60929, - "ic_fluent_video_clip_multiple_24_filled": 60930, - "ic_fluent_wallet_28_filled": 60974, - "ic_fluent_wallet_32_filled": 60975, - "ic_fluent_wallet_48_filled": 60976, - "ic_fluent_weather_sunny_28_filled": 61005, - "ic_fluent_wrench_screwdriver_20_filled": 61063, - "ic_fluent_wrench_screwdriver_24_filled": 61064, - "ic_fluent_arrow_between_down_20_filled": 57471, - "ic_fluent_arrow_between_down_24_filled": 57472, - "ic_fluent_arrow_redo_28_filled": 57573, - "ic_fluent_arrow_sync_checkmark_20_filled": 57617, - "ic_fluent_arrow_sync_checkmark_24_filled": 57618, - "ic_fluent_arrow_sync_dismiss_20_filled": 57619, - "ic_fluent_arrow_sync_dismiss_24_filled": 57620, - "ic_fluent_calculator_arrow_clockwise_20_filled": 57928, - "ic_fluent_calculator_arrow_clockwise_24_filled": 57929, - "ic_fluent_calendar_arrow_down_20_filled": 57935, - "ic_fluent_calendar_arrow_right_24_filled": 57938, - "ic_fluent_calendar_error_20_filled": 57949, - "ic_fluent_calendar_mail_20_filled": 57960, - "ic_fluent_calendar_week_numbers_20_filled": 57985, - "ic_fluent_call_add_20_filled": 57994, - "ic_fluent_camera_off_20_filled": 58036, - "ic_fluent_cellular_off_20_filled": 58056, - "ic_fluent_chevron_circle_down_32_filled": 58151, - "ic_fluent_chevron_circle_up_32_filled": 58172, - "ic_fluent_circle_48_filled": 58184, - "ic_fluent_clock_pause_20_filled": 58249, - "ic_fluent_clock_pause_24_filled": 58250, - "ic_fluent_diamond_16_filled": 58566, - "ic_fluent_diamond_20_filled": 58567, - "ic_fluent_diamond_24_filled": 58568, - "ic_fluent_diamond_28_filled": 58569, - "ic_fluent_diamond_48_filled": 58571, - "ic_fluent_door_28_filled": 58735, - "ic_fluent_door_arrow_right_28_filled": 58741, - "ic_fluent_immersive_reader_28_filled": 59201, - "ic_fluent_key_reset_20_filled": 59220, - "ic_fluent_key_reset_24_filled": 59221, - "ic_fluent_lightbulb_filament_48_filled": 59250, - "ic_fluent_line_20_filled": 59251, - "ic_fluent_line_24_filled": 59252, - "ic_fluent_line_48_filled": 59254, - "ic_fluent_line_dashes_20_filled": 59255, - "ic_fluent_line_dashes_24_filled": 59256, - "ic_fluent_line_dashes_48_filled": 59258, - "ic_fluent_mail_arrow_up_16_filled": 59321, - "ic_fluent_notepad_person_16_filled": 59535, - "ic_fluent_oval_16_filled": 59567, - "ic_fluent_oval_20_filled": 59568, - "ic_fluent_oval_24_filled": 59569, - "ic_fluent_oval_28_filled": 59570, - "ic_fluent_oval_48_filled": 59572, - "ic_fluent_pentagon_48_filled": 59644, - "ic_fluent_people_add_28_filled": 59648, - "ic_fluent_people_list_24_filled": 59663, - "ic_fluent_people_queue_20_filled": 59671, - "ic_fluent_people_queue_24_filled": 59672, - "ic_fluent_people_settings_28_filled": 59675, - "ic_fluent_print_28_filled": 59860, - "ic_fluent_rhombus_16_filled": 59943, - "ic_fluent_rhombus_20_filled": 59944, - "ic_fluent_rhombus_24_filled": 59945, - "ic_fluent_rhombus_28_filled": 59946, - "ic_fluent_rhombus_48_filled": 59948, - "ic_fluent_screen_search_20_filled": 60033, - "ic_fluent_screen_search_24_filled": 60034, - "ic_fluent_settings_chat_20_filled": 60063, - "ic_fluent_settings_chat_24_filled": 60064, - "ic_fluent_share_screen_person_p_16_filled": 60095, - "ic_fluent_share_screen_person_p_20_filled": 60096, - "ic_fluent_share_screen_person_p_24_filled": 60097, - "ic_fluent_share_screen_person_p_28_filled": 60098, - "ic_fluent_slide_add_16_filled": 60182, - "ic_fluent_slide_add_20_filled": 60183, - "ic_fluent_slide_add_28_filled": 60184, - "ic_fluent_slide_add_32_filled": 60185, - "ic_fluent_slide_add_48_filled": 60186, - "ic_fluent_slide_arrow_right_20_filled": 60187, - "ic_fluent_slide_arrow_right_24_filled": 60188, - "ic_fluent_sound_wave_circle_24_filled": 60217, - "ic_fluent_square_48_filled": 60290, - "ic_fluent_star_48_filled": 60328, - "ic_fluent_star_add_28_filled": 60329, - "ic_fluent_star_dismiss_16_filled": 60333, - "ic_fluent_star_dismiss_20_filled": 60334, - "ic_fluent_star_dismiss_24_filled": 60335, - "ic_fluent_star_dismiss_28_filled": 60336, - "ic_fluent_star_edit_20_filled": 60337, - "ic_fluent_star_settings_20_filled": 60344, - "ic_fluent_triangle_48_filled": 60840, - "ic_fluent_trophy_28_filled": 60856, - "ic_fluent_trophy_32_filled": 60857, - "ic_fluent_trophy_48_filled": 60858, - "ic_fluent_trophy_off_16_filled": 60859, - "ic_fluent_trophy_off_20_filled": 60860, - "ic_fluent_trophy_off_24_filled": 60861, - "ic_fluent_trophy_off_28_filled": 60862, - "ic_fluent_trophy_off_32_filled": 60863, - "ic_fluent_trophy_off_48_filled": 60864, - "ic_fluent_window_28_filled": 61023, - "ic_fluent_window_32_filled": 61024, - "ic_fluent_window_48_filled": 61025, - "ic_fluent_window_apps_16_filled": 61028, - "ic_fluent_window_apps_20_filled": 61029, - "ic_fluent_window_apps_24_filled": 61030, - "ic_fluent_window_apps_28_filled": 61031, - "ic_fluent_window_apps_32_filled": 61032, - "ic_fluent_window_apps_48_filled": 61033, - "ic_fluent_window_wrench_16_filled": 61055, - "ic_fluent_window_wrench_20_filled": 61056, - "ic_fluent_window_wrench_24_filled": 61057, - "ic_fluent_window_wrench_28_filled": 61058, - "ic_fluent_window_wrench_32_filled": 61059, - "ic_fluent_window_wrench_48_filled": 61060, - "ic_fluent_arrow_down_left_32_filled": 57532, - "ic_fluent_arrow_down_left_48_filled": 57533, - "ic_fluent_arrow_maximize_48_filled": 57561, - "ic_fluent_arrow_maximize_vertical_48_filled": 57562, - "ic_fluent_arrow_outline_up_right_48_filled": 57569, - "ic_fluent_arrow_up_left_48_filled": 57645, - "ic_fluent_arrow_up_right_48_filled": 57649, - "ic_fluent_book_arrow_clockwise_20_filled": 57718, - "ic_fluent_book_arrow_clockwise_24_filled": 57719, - "ic_fluent_box_arrow_left_20_filled": 57809, - "ic_fluent_box_arrow_left_24_filled": 57810, - "ic_fluent_box_arrow_up_20_filled": 57811, - "ic_fluent_box_arrow_up_24_filled": 57812, - "ic_fluent_box_checkmark_20_filled": 57813, - "ic_fluent_box_checkmark_24_filled": 57814, - "ic_fluent_box_multiple_20_filled": 57819, - "ic_fluent_box_multiple_24_filled": 57820, - "ic_fluent_box_multiple_arrow_left_20_filled": 57821, - "ic_fluent_box_multiple_arrow_left_24_filled": 57822, - "ic_fluent_box_multiple_arrow_right_20_filled": 57823, - "ic_fluent_box_multiple_arrow_right_24_filled": 57824, - "ic_fluent_box_multiple_checkmark_20_filled": 57825, - "ic_fluent_box_multiple_checkmark_24_filled": 57826, - "ic_fluent_box_multiple_search_20_filled": 57827, - "ic_fluent_box_multiple_search_24_filled": 57828, - "ic_fluent_box_search_20_filled": 57829, - "ic_fluent_box_search_24_filled": 57830, - "ic_fluent_cellular_warning_20_filled": 58058, - "ic_fluent_chart_multiple_20_filled": 58097, - "ic_fluent_chart_multiple_24_filled": 58098, - "ic_fluent_checkbox_arrow_right_20_filled": 58126, - "ic_fluent_checkbox_warning_20_filled": 58135, - "ic_fluent_clock_toolbox_20_filled": 58251, - "ic_fluent_clock_toolbox_24_filled": 58252, - "ic_fluent_cube_multiple_20_filled": 58430, - "ic_fluent_cube_multiple_24_filled": 58431, - "ic_fluent_desktop_toolbox_20_filled": 58550, - "ic_fluent_desktop_toolbox_24_filled": 58551, - "ic_fluent_document_bullet_list_multiple_20_filled": 58615, - "ic_fluent_document_bullet_list_multiple_24_filled": 58616, - "ic_fluent_document_queue_20_filled": 58687, - "ic_fluent_document_queue_24_filled": 58688, - "ic_fluent_document_queue_add_20_filled": 58689, - "ic_fluent_document_queue_add_24_filled": 58690, - "ic_fluent_document_queue_multiple_20_filled": 58691, - "ic_fluent_document_queue_multiple_24_filled": 58692, - "ic_fluent_document_table_cube_20_filled": 58717, - "ic_fluent_document_table_cube_24_filled": 58718, - "ic_fluent_document_table_truck_20_filled": 58721, - "ic_fluent_document_table_truck_24_filled": 58722, - "ic_fluent_document_text_toolbox_20_filled": 58731, - "ic_fluent_document_text_toolbox_24_filled": 58732, - "ic_fluent_equal_circle_20_filled": 58862, - "ic_fluent_equal_circle_24_filled": 58863, - "ic_fluent_gift_card_money_20_filled": 59053, - "ic_fluent_gift_card_money_24_filled": 59054, - "ic_fluent_gift_card_multiple_20_filled": 59055, - "ic_fluent_gift_card_multiple_24_filled": 59056, - "ic_fluent_image_multiple_32_filled": 59189, - "ic_fluent_image_multiple_48_filled": 59190, - "ic_fluent_mail_alert_28_filled": 59312, - "ic_fluent_puzzle_piece_shield_20_filled": 59891, - "ic_fluent_ribbon_12_filled": 59949, - "ic_fluent_ribbon_off_12_filled": 59954, - "ic_fluent_ribbon_off_16_filled": 59955, - "ic_fluent_ribbon_off_20_filled": 59956, - "ic_fluent_ribbon_off_24_filled": 59957, - "ic_fluent_ribbon_off_32_filled": 59958, - "ic_fluent_share_28_filled": 60080, - "ic_fluent_shopping_bag_arrow_left_20_filled": 60147, - "ic_fluent_shopping_bag_arrow_left_24_filled": 60148, - "ic_fluent_shopping_bag_play_20_filled": 60155, - "ic_fluent_shopping_bag_play_24_filled": 60156, - "ic_fluent_square_24_filled": 60287, - "ic_fluent_square_28_filled": 60288, - "ic_fluent_square_hint_16_filled": 60302, - "ic_fluent_square_hint_28_filled": 60305, - "ic_fluent_square_hint_32_filled": 60306, - "ic_fluent_square_hint_48_filled": 60307, - "ic_fluent_square_hint_apps_20_filled": 60308, - "ic_fluent_square_hint_apps_24_filled": 60309, - "ic_fluent_square_hint_sparkles_16_filled": 60312, - "ic_fluent_square_hint_sparkles_20_filled": 60313, - "ic_fluent_square_hint_sparkles_24_filled": 60314, - "ic_fluent_square_hint_sparkles_28_filled": 60315, - "ic_fluent_square_hint_sparkles_32_filled": 60316, - "ic_fluent_square_hint_sparkles_48_filled": 60317, - "ic_fluent_tablet_12_filled": 60515, - "ic_fluent_tablet_16_filled": 60516, - "ic_fluent_tablet_32_filled": 60517, - "ic_fluent_tablet_48_filled": 60518, - "ic_fluent_tag_reset_20_filled": 60548, - "ic_fluent_tag_reset_24_filled": 60549, - "ic_fluent_tag_search_20_filled": 60550, - "ic_fluent_tag_search_24_filled": 60551, - "ic_fluent_tap_double_32_filled": 60553, - "ic_fluent_tap_double_48_filled": 60554, - "ic_fluent_tap_single_32_filled": 60556, - "ic_fluent_tap_single_48_filled": 60557, - "ic_fluent_timer_12_filled": 60805, - "ic_fluent_timer_28_filled": 60809, - "ic_fluent_timer_32_filled": 60812, - "ic_fluent_timer_48_filled": 60813, - "ic_fluent_board_heart_16_filled": 57706, - "ic_fluent_board_heart_20_filled": 57707, - "ic_fluent_board_heart_24_filled": 57708, - "ic_fluent_braces_24_filled": 57834, - "ic_fluent_breakout_room_24_filled": 57850, - "ic_fluent_breakout_room_28_filled": 57851, - "ic_fluent_chat_warning_20_filled": 58120, - "ic_fluent_checkbox_person_16_filled": 58132, - "ic_fluent_checkbox_person_20_filled": 58133, - "ic_fluent_chevron_circle_down_12_filled": 58146, - "ic_fluent_chevron_circle_down_16_filled": 58147, - "ic_fluent_chevron_circle_down_20_filled": 58148, - "ic_fluent_chevron_circle_down_28_filled": 58150, - "ic_fluent_chevron_circle_down_48_filled": 58152, - "ic_fluent_chevron_circle_left_12_filled": 58153, - "ic_fluent_chevron_circle_left_16_filled": 58154, - "ic_fluent_chevron_circle_left_20_filled": 58155, - "ic_fluent_chevron_circle_left_24_filled": 58156, - "ic_fluent_chevron_circle_left_28_filled": 58157, - "ic_fluent_chevron_circle_left_32_filled": 58158, - "ic_fluent_chevron_circle_left_48_filled": 58159, - "ic_fluent_chevron_circle_right_16_filled": 58161, - "ic_fluent_chevron_circle_right_20_filled": 58162, - "ic_fluent_chevron_circle_right_28_filled": 58164, - "ic_fluent_chevron_circle_right_32_filled": 58165, - "ic_fluent_chevron_circle_right_48_filled": 58166, - "ic_fluent_chevron_circle_up_12_filled": 58167, - "ic_fluent_chevron_circle_up_16_filled": 58168, - "ic_fluent_chevron_circle_up_20_filled": 58169, - "ic_fluent_chevron_circle_up_24_filled": 58170, - "ic_fluent_chevron_circle_up_28_filled": 58171, - "ic_fluent_chevron_circle_up_48_filled": 58173, - "ic_fluent_circle_edit_20_filled": 58185, - "ic_fluent_circle_line_20_filled": 58191, - "ic_fluent_circle_off_20_filled": 58194, - "ic_fluent_class_20_filled": 58196, - "ic_fluent_clipboard_data_bar_20_filled": 58212, - "ic_fluent_clipboard_data_bar_24_filled": 58213, - "ic_fluent_clipboard_image_20_filled": 58219, - "ic_fluent_clipboard_more_20_filled": 58221, - "ic_fluent_clock_dismiss_20_filled": 58247, - "ic_fluent_comment_dismiss_20_filled": 58361, - "ic_fluent_comment_error_24_filled": 58366, - "ic_fluent_comment_note_20_filled": 58378, - "ic_fluent_convert_range_20_filled": 58409, - "ic_fluent_copy_add_20_filled": 58411, - "ic_fluent_copy_arrow_right_20_filled": 58414, - "ic_fluent_couch_20_filled": 58418, - "ic_fluent_crop_interim_20_filled": 58424, - "ic_fluent_crop_interim_off_20_filled": 58425, - "ic_fluent_cube_sync_20_filled": 58437, - "ic_fluent_dark_theme_20_filled": 58462, - "ic_fluent_data_area_20_filled": 58463, - "ic_fluent_data_bar_vertical_add_20_filled": 58464, - "ic_fluent_data_funnel_20_filled": 58466, - "ic_fluent_data_histogram_20_filled": 58467, - "ic_fluent_data_scatter_20_filled": 58469, - "ic_fluent_data_sunburst_20_filled": 58470, - "ic_fluent_data_treemap_20_filled": 58471, - "ic_fluent_data_waterfall_20_filled": 58480, - "ic_fluent_data_whisker_20_filled": 58481, - "ic_fluent_document_lock_16_filled": 58656, - "ic_fluent_document_lock_20_filled": 58657, - "ic_fluent_document_lock_24_filled": 58658, - "ic_fluent_document_lock_28_filled": 58659, - "ic_fluent_document_lock_32_filled": 58660, - "ic_fluent_document_lock_48_filled": 58661, - "ic_fluent_eyedropper_off_20_filled": 58892, - "ic_fluent_eyedropper_off_24_filled": 58893, - "ic_fluent_globe_person_20_filled": 59076, - "ic_fluent_mail_open_person_20_filled": 59354, - "ic_fluent_mail_open_person_24_filled": 59355, - "ic_fluent_resize_24_filled": 59931, - "ic_fluent_resize_image_20_filled": 59932, - "ic_fluent_scan_camera_16_filled": 59997, - "ic_fluent_scan_camera_20_filled": 59998, - "ic_fluent_scan_camera_24_filled": 59999, - "ic_fluent_scan_camera_28_filled": 60000, - "ic_fluent_scan_camera_48_filled": 60001, - "ic_fluent_style_guide_20_filled": 60355, - "ic_fluent_tab_desktop_16_filled": 60387, - "ic_fluent_tab_desktop_24_filled": 60388, - "ic_fluent_tab_desktop_bottom_20_filled": 60390, - "ic_fluent_approvals_app_32_filled": 57441, - "ic_fluent_arrow_export_rtl_24_filled": 57546, - "ic_fluent_arrow_sort_down_lines_20_filled": 57585, - "ic_fluent_arrow_step_in_20_filled": 57596, - "ic_fluent_arrow_step_in_24_filled": 57597, - "ic_fluent_battery_10_24_filled": 57679, - "ic_fluent_bezier_curve_square_20_filled": 57691, - "ic_fluent_border_none_24_filled": 57789, - "ic_fluent_calendar_pattern_16_filled": 57964, - "ic_fluent_caret_down_right_12_filled": 58039, - "ic_fluent_caret_down_right_16_filled": 58040, - "ic_fluent_caret_down_right_20_filled": 58041, - "ic_fluent_caret_down_right_24_filled": 58042, - "ic_fluent_cellular_off_24_filled": 58057, - "ic_fluent_eye_12_filled": 58877, - "ic_fluent_eye_16_filled": 58878, - "ic_fluent_eye_20_filled": 58879, - "ic_fluent_eye_24_filled": 58880, - "ic_fluent_eye_off_20_filled": 58882, - "ic_fluent_eye_off_24_filled": 58883, - "ic_fluent_eye_tracking_16_filled": 58884, - "ic_fluent_eye_tracking_20_filled": 58885, - "ic_fluent_eye_tracking_24_filled": 58886, - "ic_fluent_flash_20_filled": 58917, - "ic_fluent_flash_24_filled": 58918, - "ic_fluent_hdr_off_24_filled": 59130, - "ic_fluent_mic_16_filled": 59398, - "ic_fluent_mic_20_filled": 59399, - "ic_fluent_mic_24_filled": 59400, - "ic_fluent_mic_28_filled": 59401, - "ic_fluent_mic_32_filled": 59402, - "ic_fluent_mic_48_filled": 59403, - "ic_fluent_multiselect_ltr_16_filled": 59481, - "ic_fluent_multiselect_ltr_20_filled": 59482, - "ic_fluent_multiselect_ltr_24_filled": 59483, - "ic_fluent_multiselect_rtl_20_filled": 59485, - "ic_fluent_multiselect_rtl_24_filled": 59486, - "ic_fluent_panel_left_contract_16_filled": 59586, - "ic_fluent_panel_left_contract_20_filled": 59587, - "ic_fluent_panel_left_contract_24_filled": 59588, - "ic_fluent_person_tag_20_filled": 59744, - "ic_fluent_person_tag_24_filled": 59745, - "ic_fluent_person_tag_28_filled": 59746, - "ic_fluent_person_tag_32_filled": 59747, - "ic_fluent_person_tag_48_filled": 59748, - "ic_fluent_share_screen_start_48_filled": 60102, - "ic_fluent_shield_lock_24_filled": 60122, - "ic_fluent_shield_lock_28_filled": 60123, - "ic_fluent_shield_lock_48_filled": 60124, - "ic_fluent_skip_back_10_24_filled": 60165, - "ic_fluent_skip_back_10_28_filled": 60166, - "ic_fluent_skip_back_10_32_filled": 60167, - "ic_fluent_skip_back_10_48_filled": 60168, - "ic_fluent_table_stack_below_20_filled": 60501, - "ic_fluent_textbox_16_filled": 60778, - "ic_fluent_textbox_rotate_90_20_filled": 60789, - "ic_fluent_textbox_rotate_90_24_filled": 60790, - "ic_fluent_board_games_20_filled": 57705, - "ic_fluent_building_home_16_filled": 57907, - "ic_fluent_building_home_20_filled": 57908, - "ic_fluent_building_home_24_filled": 57909, - "ic_fluent_color_fill_16_filled": 58322, - "ic_fluent_color_fill_28_filled": 58323, - "ic_fluent_decimal_arrow_left_20_filled": 58499, - "ic_fluent_decimal_arrow_right_20_filled": 58501, - "ic_fluent_delete_arrow_back_20_filled": 58505, - "ic_fluent_delete_dismiss_20_filled": 58506, - "ic_fluent_desktop_edit_20_filled": 58524, - "ic_fluent_desktop_edit_24_filled": 58525, - "ic_fluent_desktop_mac_20_filled": 58533, - "ic_fluent_desktop_mac_24_filled": 58534, - "ic_fluent_desktop_sync_20_filled": 58548, - "ic_fluent_desktop_sync_24_filled": 58549, - "ic_fluent_developer_board_search_24_filled": 58556, - "ic_fluent_device_eq_20_filled": 58557, - "ic_fluent_diagram_20_filled": 58560, - "ic_fluent_dialpad_off_20_filled": 58565, - "ic_fluent_dismiss_square_multiple_20_filled": 58579, - "ic_fluent_divider_short_16_filled": 58584, - "ic_fluent_divider_short_20_filled": 58585, - "ic_fluent_dock_20_filled": 58588, - "ic_fluent_dock_row_20_filled": 58589, - "ic_fluent_document_bullet_list_off_20_filled": 58617, - "ic_fluent_document_checkmark_20_filled": 58621, - "ic_fluent_document_chevron_double_20_filled": 58623, - "ic_fluent_document_css_20_filled": 58625, - "ic_fluent_document_footer_20_filled": 58633, - "ic_fluent_document_footer_dismiss_20_filled": 58634, - "ic_fluent_document_header_20_filled": 58637, - "ic_fluent_document_header_arrow_down_20_filled": 58639, - "ic_fluent_document_header_arrow_down_24_filled": 58640, - "ic_fluent_document_header_dismiss_20_filled": 58641, - "ic_fluent_document_javascript_20_filled": 58648, - "ic_fluent_document_landscape_data_20_filled": 58650, - "ic_fluent_document_landscape_split_24_filled": 58653, - "ic_fluent_double_tap_swipe_down_20_filled": 58746, - "ic_fluent_double_tap_swipe_down_24_filled": 58747, - "ic_fluent_double_tap_swipe_up_20_filled": 58748, - "ic_fluent_double_tap_swipe_up_24_filled": 58749, - "ic_fluent_location_add_16_filled": 59275, - "ic_fluent_location_add_20_filled": 59276, - "ic_fluent_location_add_24_filled": 59277, - "ic_fluent_math_symbols_16_filled": 59379, - "ic_fluent_math_symbols_20_filled": 59380, - "ic_fluent_math_symbols_24_filled": 59381, - "ic_fluent_math_symbols_28_filled": 59382, - "ic_fluent_math_symbols_32_filled": 59383, - "ic_fluent_math_symbols_48_filled": 59384, - "ic_fluent_password_16_filled": 59610, - "ic_fluent_password_20_filled": 59611, - "ic_fluent_people_prohibited_24_filled": 59670, - "ic_fluent_sticker_add_20_filled": 60348, - "ic_fluent_subtract_square_20_filled": 60371, - "ic_fluent_system_20_filled": 60382, - "ic_fluent_table_add_16_filled": 60402, - "ic_fluent_table_add_28_filled": 60404, - "ic_fluent_table_cell_edit_16_filled": 60411, - "ic_fluent_table_cell_edit_20_filled": 60412, - "ic_fluent_table_cell_edit_28_filled": 60414, - "ic_fluent_table_cells_merge_16_filled": 60415, - "ic_fluent_table_cells_merge_28_filled": 60416, - "ic_fluent_table_cells_split_16_filled": 60417, - "ic_fluent_table_cells_split_28_filled": 60418, - "ic_fluent_table_delete_column_16_filled": 60421, - "ic_fluent_table_delete_column_28_filled": 60424, - "ic_fluent_table_delete_row_16_filled": 60425, - "ic_fluent_table_delete_row_28_filled": 60428, - "ic_fluent_table_dismiss_16_filled": 60429, - "ic_fluent_table_dismiss_28_filled": 60432, - "ic_fluent_table_edit_16_filled": 60433, - "ic_fluent_table_edit_20_filled": 60434, - "ic_fluent_table_edit_28_filled": 60435, - "ic_fluent_table_freeze_column_16_filled": 60436, - "ic_fluent_table_freeze_column_20_filled": 60437, - "ic_fluent_table_freeze_column_28_filled": 60438, - "ic_fluent_table_freeze_column_and_row_16_filled": 60439, - "ic_fluent_table_freeze_column_and_row_20_filled": 60440, - "ic_fluent_table_freeze_column_and_row_28_filled": 60442, - "ic_fluent_table_freeze_row_16_filled": 60443, - "ic_fluent_table_freeze_row_20_filled": 60444, - "ic_fluent_table_freeze_row_28_filled": 60445, - "ic_fluent_table_insert_column_16_filled": 60447, - "ic_fluent_table_insert_column_20_filled": 60448, - "ic_fluent_table_insert_column_28_filled": 60450, - "ic_fluent_table_insert_row_16_filled": 60451, - "ic_fluent_table_insert_row_20_filled": 60452, - "ic_fluent_table_insert_row_28_filled": 60454, - "ic_fluent_table_lightning_16_filled": 60455, - "ic_fluent_table_lightning_28_filled": 60458, - "ic_fluent_table_link_16_filled": 60459, - "ic_fluent_table_link_28_filled": 60462, - "ic_fluent_table_move_above_16_filled": 60463, - "ic_fluent_table_move_above_20_filled": 60464, - "ic_fluent_table_move_above_28_filled": 60466, - "ic_fluent_table_move_below_16_filled": 60467, - "ic_fluent_table_move_below_20_filled": 60468, - "ic_fluent_table_move_below_28_filled": 60470, - "ic_fluent_table_move_left_16_filled": 60471, - "ic_fluent_table_move_left_20_filled": 60472, - "ic_fluent_table_move_left_28_filled": 60473, - "ic_fluent_table_move_right_16_filled": 60474, - "ic_fluent_table_move_right_20_filled": 60475, - "ic_fluent_table_move_right_28_filled": 60476, - "ic_fluent_table_resize_column_16_filled": 60478, - "ic_fluent_table_resize_column_20_filled": 60479, - "ic_fluent_table_resize_column_28_filled": 60481, - "ic_fluent_table_resize_row_16_filled": 60482, - "ic_fluent_table_resize_row_20_filled": 60483, - "ic_fluent_table_resize_row_28_filled": 60485, - "ic_fluent_table_settings_16_filled": 60487, - "ic_fluent_table_settings_20_filled": 60488, - "ic_fluent_table_settings_28_filled": 60489, - "ic_fluent_table_stack_above_16_filled": 60496, - "ic_fluent_table_stack_above_28_filled": 60499, - "ic_fluent_table_stack_below_16_filled": 60500, - "ic_fluent_table_stack_below_28_filled": 60503, - "ic_fluent_table_stack_left_16_filled": 60504, - "ic_fluent_table_stack_left_28_filled": 60507, - "ic_fluent_table_stack_right_16_filled": 60508, - "ic_fluent_table_stack_right_28_filled": 60511, - "ic_fluent_table_switch_16_filled": 60512, - "ic_fluent_table_switch_20_filled": 60513, - "ic_fluent_table_switch_28_filled": 60514, - "ic_fluent_tablet_speaker_20_filled": 60519, - "ic_fluent_text_align_distributed_evenly_20_filled": 60599, - "ic_fluent_text_align_distributed_vertical_20_filled": 60601, - "ic_fluent_text_align_justify_low_20_filled": 60603, - "ic_fluent_text_continuous_20_filled": 60669, - "ic_fluent_textbox_align_bottom_rotate_90_20_filled": 60779, - "ic_fluent_textbox_align_middle_rotate_90_20_filled": 60783, - "ic_fluent_textbox_align_top_rotate_90_20_filled": 60785, - "ic_fluent_textbox_more_20_filled": 60787, - "ic_fluent_video_chat_16_filled": 60920, - "ic_fluent_video_chat_20_filled": 60921, - "ic_fluent_video_chat_24_filled": 60922, - "ic_fluent_arrow_paragraph_20_filled": 57570, - "ic_fluent_clipboard_edit_20_filled": 58215, - "ic_fluent_clipboard_note_20_filled": 58222, - "ic_fluent_document_mention_16_filled": 58662, - "ic_fluent_document_mention_20_filled": 58663, - "ic_fluent_document_mention_24_filled": 58664, - "ic_fluent_document_mention_28_filled": 58665, - "ic_fluent_document_mention_48_filled": 58666, - "ic_fluent_document_split_hint_off_16_filled": 58705, - "ic_fluent_document_split_hint_off_20_filled": 58706, - "ic_fluent_door_tag_20_filled": 58742, - "ic_fluent_double_swipe_down_20_filled": 58744, - "ic_fluent_double_swipe_up_20_filled": 58745, - "ic_fluent_drag_20_filled": 58750, - "ic_fluent_drink_to_go_20_filled": 58772, - "ic_fluent_drive_train_20_filled": 58776, - "ic_fluent_dual_screen_add_20_filled": 58785, - "ic_fluent_dual_screen_arrow_right_20_filled": 58786, - "ic_fluent_dual_screen_arrow_up_20_filled": 58787, - "ic_fluent_dual_screen_clock_20_filled": 58789, - "ic_fluent_dual_screen_closed_alert_20_filled": 58790, - "ic_fluent_dual_screen_desktop_20_filled": 58792, - "ic_fluent_dual_screen_dismiss_20_filled": 58793, - "ic_fluent_dual_screen_group_20_filled": 58795, - "ic_fluent_dual_screen_header_20_filled": 58796, - "ic_fluent_dual_screen_lock_20_filled": 58798, - "ic_fluent_dual_screen_mirror_20_filled": 58799, - "ic_fluent_dual_screen_pagination_20_filled": 58800, - "ic_fluent_dual_screen_settings_20_filled": 58801, - "ic_fluent_dual_screen_span_20_filled": 58802, - "ic_fluent_dual_screen_speaker_20_filled": 58804, - "ic_fluent_dual_screen_status_bar_20_filled": 58806, - "ic_fluent_dual_screen_tablet_20_filled": 58807, - "ic_fluent_dual_screen_update_20_filled": 58808, - "ic_fluent_dual_screen_vertical_scroll_20_filled": 58809, - "ic_fluent_dual_screen_vibrate_20_filled": 58810, - "ic_fluent_edit_settings_20_filled": 58831, - "ic_fluent_engine_20_filled": 58860, - "ic_fluent_eraser_medium_20_filled": 58867, - "ic_fluent_eraser_segment_20_filled": 58869, - "ic_fluent_eraser_small_20_filled": 58871, - "ic_fluent_eraser_tool_20_filled": 58873, - "ic_fluent_extended_dock_20_filled": 58876, - "ic_fluent_fast_acceleration_20_filled": 58898, - "ic_fluent_filter_sync_20_filled": 58908, - "ic_fluent_fingerprint_20_filled": 58910, - "ic_fluent_fixed_width_20_filled": 58912, - "ic_fluent_flash_auto_20_filled": 58921, - "ic_fluent_flash_off_20_filled": 58929, - "ic_fluent_flashlight_off_20_filled": 58935, - "ic_fluent_fluent_20_filled": 58953, - "ic_fluent_form_new_20_filled": 59009, - "ic_fluent_fps_960_20_filled": 59023, - "ic_fluent_full_screen_minimize_16_filled": 59027, - "ic_fluent_full_screen_minimize_20_filled": 59028, - "ic_fluent_gas_20_filled": 59037, - "ic_fluent_gas_pump_20_filled": 59039, - "ic_fluent_gavel_20_filled": 59043, - "ic_fluent_gesture_20_filled": 59046, - "ic_fluent_gift_card_24_filled": 59049, - "ic_fluent_glance_default_12_filled": 59058, - "ic_fluent_glance_horizontal_24_filled": 59061, - "ic_fluent_globe_add_20_filled": 59072, - "ic_fluent_globe_desktop_20_filled": 59075, - "ic_fluent_group_dismiss_20_filled": 59093, - "ic_fluent_group_list_20_filled": 59095, - "ic_fluent_group_return_20_filled": 59096, - "ic_fluent_guest_add_20_filled": 59102, - "ic_fluent_hand_draw_20_filled": 59108, - "ic_fluent_home_add_20_filled": 59167, - "ic_fluent_mail_dismiss_28_filled": 59328, - "ic_fluent_mail_inbox_all_20_filled": 59332, - "ic_fluent_mail_inbox_arrow_right_20_filled": 59335, - "ic_fluent_mail_list_16_filled": 59343, - "ic_fluent_mail_multiple_28_filled": 59350, - "ic_fluent_mail_off_20_filled": 59351, - "ic_fluent_mic_settings_20_filled": 59424, - "ic_fluent_navigation_unread_20_filled": 59504, - "ic_fluent_new_20_filled": 59507, - "ic_fluent_notebook_20_filled": 59519, - "ic_fluent_notebook_add_20_filled": 59520, - "ic_fluent_notebook_error_20_filled": 59523, - "ic_fluent_notebook_lightning_20_filled": 59525, - "ic_fluent_notebook_question_mark_20_filled": 59526, - "ic_fluent_number_symbol_dismiss_20_filled": 59544, - "ic_fluent_pair_20_filled": 59577, - "ic_fluent_patient_20_filled": 59612, - "ic_fluent_pause_off_20_filled": 59619, - "ic_fluent_pause_settings_16_filled": 59620, - "ic_fluent_people_sync_28_filled": 59681, - "ic_fluent_phone_add_20_filled": 59750, - "ic_fluent_phone_dismiss_20_filled": 59756, - "ic_fluent_phone_lock_20_filled": 59765, - "ic_fluent_phone_page_header_20_filled": 59767, - "ic_fluent_phone_pagination_20_filled": 59768, - "ic_fluent_phone_screen_time_20_filled": 59769, - "ic_fluent_phone_status_bar_20_filled": 59781, - "ic_fluent_phone_update_20_filled": 59782, - "ic_fluent_phone_vertical_scroll_20_filled": 59785, - "ic_fluent_phone_vibrate_20_filled": 59786, - "ic_fluent_photo_filter_20_filled": 59787, - "ic_fluent_pi_20_filled": 59788, - "ic_fluent_port_hdmi_20_filled": 59826, - "ic_fluent_predictions_20_filled": 59842, - "ic_fluent_pulse_square_20_filled": 59880, - "ic_fluent_remote_20_filled": 59928, - "ic_fluent_reorder_20_filled": 59929, - "ic_fluent_resize_video_20_filled": 59940, - "ic_fluent_rotate_left_20_filled": 59967, - "ic_fluent_router_20_filled": 59971, - "ic_fluent_scan_20_filled": 59996, - "ic_fluent_scan_table_20_filled": 60011, - "ic_fluent_scan_text_20_filled": 60013, - "ic_fluent_search_square_20_filled": 60042, - "ic_fluent_service_bell_20_filled": 60060, - "ic_fluent_shifts_add_20_filled": 60136, - "ic_fluent_shifts_prohibited_20_filled": 60142, - "ic_fluent_shifts_question_mark_20_filled": 60144, - "ic_fluent_slide_grid_20_filled": 60192, - "ic_fluent_slide_settings_20_filled": 60204, - "ic_fluent_slide_transition_20_filled": 60212, - "ic_fluent_spacebar_20_filled": 60218, - "ic_fluent_speaker_settings_20_filled": 60250, - "ic_fluent_speaker_settings_28_filled": 60251, - "ic_fluent_star_arrow_right_end_20_filled": 60330, - "ic_fluent_star_arrow_right_start_20_filled": 60332, - "ic_fluent_storage_20_filled": 60349, - "ic_fluent_sub_grid_20_filled": 60356, - "ic_fluent_text_density_16_filled": 60671, - "ic_fluent_text_density_20_filled": 60672, - "ic_fluent_video_person_off_20_filled": 60945, - "ic_fluent_voicemail_arrow_back_20_filled": 60965, - "ic_fluent_voicemail_arrow_forward_20_filled": 60966, - "ic_fluent_voicemail_arrow_subtract_20_filled": 60967, - "ic_fluent_web_asset_20_filled": 61013, - "ic_fluent_archive_32_filled": 57446, - "ic_fluent_archive_settings_24_filled": 57457, - "ic_fluent_arrow_enter_20_filled": 57535, - "ic_fluent_arrow_exit_20_filled": 57540, - "ic_fluent_arrow_join_20_filled": 57558, - "ic_fluent_arrow_trending_down_16_filled": 57625, - "ic_fluent_arrow_trending_down_20_filled": 57626, - "ic_fluent_arrow_trending_down_24_filled": 57627, - "ic_fluent_book_template_20_filled": 57761, - "ic_fluent_border_left_right_20_filled": 57786, - "ic_fluent_border_left_right_24_filled": 57787, - "ic_fluent_building_retail_more_20_filled": 57916, - "ic_fluent_calendar_add_16_filled": 57933, - "ic_fluent_calendar_add_28_filled": 57934, - "ic_fluent_cellular_3g_20_filled": 58052, - "ic_fluent_cellular_4g_20_filled": 58053, - "ic_fluent_cellular_5g_20_filled": 58054, - "ic_fluent_checkbox_1_20_filled": 58122, - "ic_fluent_checkbox_2_20_filled": 58124, - "ic_fluent_checkmark_note_20_filled": 58141, - "ic_fluent_code_text_20_filled": 58319, - "ic_fluent_code_text_edit_20_filled": 58320, - "ic_fluent_column_20_filled": 58325, - "ic_fluent_cube_add_20_filled": 58427, - "ic_fluent_cube_quick_16_filled": 58432, - "ic_fluent_cube_quick_20_filled": 58433, - "ic_fluent_cube_quick_24_filled": 58434, - "ic_fluent_cube_quick_28_filled": 58435, - "ic_fluent_database_arrow_down_20_filled": 58484, - "ic_fluent_database_arrow_right_20_filled": 58485, - "ic_fluent_database_arrow_up_20_filled": 58486, - "ic_fluent_database_lightning_20_filled": 58487, - "ic_fluent_database_plug_connected_20_filled": 58493, - "ic_fluent_database_warning_20_filled": 58497, - "ic_fluent_database_window_20_filled": 58498, - "ic_fluent_developer_board_lightning_20_filled": 58553, - "ic_fluent_developer_board_lightning_toolbox_20_filled": 58554, - "ic_fluent_edit_28_filled": 58815, - "ic_fluent_edit_48_filled": 58817, - "ic_fluent_edit_off_28_filled": 58822, - "ic_fluent_edit_off_32_filled": 58823, - "ic_fluent_edit_off_48_filled": 58824, - "ic_fluent_edit_prohibited_16_filled": 58825, - "ic_fluent_edit_prohibited_20_filled": 58826, - "ic_fluent_edit_prohibited_24_filled": 58827, - "ic_fluent_edit_prohibited_28_filled": 58828, - "ic_fluent_edit_prohibited_32_filled": 58829, - "ic_fluent_edit_prohibited_48_filled": 58830, - "ic_fluent_emoji_edit_16_filled": 58838, - "ic_fluent_emoji_edit_20_filled": 58839, - "ic_fluent_emoji_edit_24_filled": 58840, - "ic_fluent_emoji_edit_28_filled": 58841, - "ic_fluent_emoji_edit_48_filled": 58842, - "ic_fluent_filter_add_20_filled": 58904, - "ic_fluent_flash_add_20_filled": 58920, - "ic_fluent_flash_flow_16_filled": 58926, - "ic_fluent_flash_flow_20_filled": 58927, - "ic_fluent_flash_flow_24_filled": 58928, - "ic_fluent_flash_play_20_filled": 58930, - "ic_fluent_folder_arrow_left_16_filled": 58963, - "ic_fluent_folder_arrow_left_20_filled": 58964, - "ic_fluent_folder_arrow_left_24_filled": 58965, - "ic_fluent_folder_arrow_left_28_filled": 58966, - "ic_fluent_folder_arrow_left_32_filled": 58967, - "ic_fluent_gauge_add_20_filled": 59042, - "ic_fluent_hand_draw_16_filled": 59107, - "ic_fluent_hard_drive_20_filled": 59120, - "ic_fluent_hdr_20_filled": 59128, - "ic_fluent_hdr_off_20_filled": 59129, - "ic_fluent_home_database_20_filled": 59170, - "ic_fluent_image_add_20_filled": 59175, - "ic_fluent_image_arrow_back_20_filled": 59177, - "ic_fluent_image_arrow_counterclockwise_20_filled": 59179, - "ic_fluent_image_arrow_forward_20_filled": 59181, - "ic_fluent_image_globe_20_filled": 59183, - "ic_fluent_image_reflection_20_filled": 59196, - "ic_fluent_image_shadow_20_filled": 59198, - "ic_fluent_incognito_20_filled": 59202, - "ic_fluent_key_command_20_filled": 59217, - "ic_fluent_key_command_24_filled": 59218, - "ic_fluent_keyboard_123_20_filled": 59222, - "ic_fluent_keyboard_dock_20_filled": 59225, - "ic_fluent_keyboard_layout_float_20_filled": 59226, - "ic_fluent_keyboard_layout_one_handed_left_20_filled": 59227, - "ic_fluent_keyboard_layout_resize_20_filled": 59228, - "ic_fluent_keyboard_layout_split_20_filled": 59229, - "ic_fluent_keyboard_shift_uppercase_16_filled": 59232, - "ic_fluent_keyboard_shift_uppercase_20_filled": 59233, - "ic_fluent_keyboard_tab_20_filled": 59234, - "ic_fluent_launcher_settings_20_filled": 59238, - "ic_fluent_lightbulb_circle_20_filled": 59249, - "ic_fluent_line_style_20_filled": 59260, - "ic_fluent_link_toolbox_20_filled": 59270, - "ic_fluent_location_add_left_20_filled": 59278, - "ic_fluent_location_add_right_20_filled": 59279, - "ic_fluent_location_add_up_20_filled": 59280, - "ic_fluent_location_dismiss_20_filled": 59284, - "ic_fluent_mail_all_read_16_filled": 59313, - "ic_fluent_mail_all_read_24_filled": 59314, - "ic_fluent_mail_all_read_28_filled": 59315, - "ic_fluent_mail_list_20_filled": 59344, - "ic_fluent_mail_list_24_filled": 59345, - "ic_fluent_mail_list_28_filled": 59346, - "ic_fluent_mail_read_multiple_16_filled": 59360, - "ic_fluent_mail_read_multiple_24_filled": 59361, - "ic_fluent_mail_read_multiple_28_filled": 59362, - "ic_fluent_math_format_professional_20_filled": 59373, - "ic_fluent_math_formula_20_filled": 59376, - "ic_fluent_mention_arrow_down_20_filled": 59394, - "ic_fluent_mention_brackets_20_filled": 59395, - "ic_fluent_music_note_off_1_20_filled": 59493, - "ic_fluent_music_note_off_1_24_filled": 59494, - "ic_fluent_music_note_off_2_16_filled": 59495, - "ic_fluent_music_note_off_2_20_filled": 59496, - "ic_fluent_music_note_off_2_24_filled": 59497, - "ic_fluent_navigation_location_target_20_filled": 59502, - "ic_fluent_navigation_play_20_filled": 59503, - "ic_fluent_number_circle_1_16_filled": 59538, - "ic_fluent_number_circle_1_20_filled": 59539, - "ic_fluent_number_circle_1_24_filled": 59540, - "ic_fluent_panel_left_contract_28_filled": 59589, - "ic_fluent_panel_left_expand_24_filled": 59592, - "ic_fluent_panel_left_expand_28_filled": 59593, - "ic_fluent_panel_left_focus_right_16_filled": 59594, - "ic_fluent_panel_left_focus_right_20_filled": 59595, - "ic_fluent_panel_left_focus_right_24_filled": 59596, - "ic_fluent_panel_left_focus_right_28_filled": 59597, - "ic_fluent_pen_16_filled": 59624, - "ic_fluent_pen_20_filled": 59625, - "ic_fluent_pen_24_filled": 59626, - "ic_fluent_pen_28_filled": 59627, - "ic_fluent_pen_32_filled": 59628, - "ic_fluent_pen_48_filled": 59629, - "ic_fluent_pen_off_16_filled": 59630, - "ic_fluent_pen_off_20_filled": 59631, - "ic_fluent_pen_off_24_filled": 59632, - "ic_fluent_pen_off_28_filled": 59633, - "ic_fluent_pen_off_32_filled": 59634, - "ic_fluent_pen_off_48_filled": 59635, - "ic_fluent_pen_prohibited_16_filled": 59636, - "ic_fluent_pen_prohibited_20_filled": 59637, - "ic_fluent_pen_prohibited_24_filled": 59638, - "ic_fluent_pen_prohibited_28_filled": 59639, - "ic_fluent_pen_prohibited_32_filled": 59640, - "ic_fluent_pen_prohibited_48_filled": 59641, - "ic_fluent_person_key_20_filled": 59717, - "ic_fluent_phone_link_setup_20_filled": 59764, - "ic_fluent_pipeline_20_filled": 59803, - "ic_fluent_pipeline_add_20_filled": 59804, - "ic_fluent_pipeline_play_20_filled": 59806, - "ic_fluent_play_settings_20_filled": 59817, - "ic_fluent_plug_connected_add_20_filled": 59821, - "ic_fluent_plug_connected_checkmark_20_filled": 59822, - "ic_fluent_presence_available_20_filled": 59847, - "ic_fluent_presence_available_24_filled": 59848, - "ic_fluent_presence_away_20_filled": 59849, - "ic_fluent_presence_away_24_filled": 59850, - "ic_fluent_presence_busy_20_filled": 59851, - "ic_fluent_presence_busy_24_filled": 59852, - "ic_fluent_presence_dnd_20_filled": 59853, - "ic_fluent_presence_dnd_24_filled": 59854, - "ic_fluent_prohibited_note_20_filled": 59867, - "ic_fluent_puzzle_cube_piece_20_filled": 59887, - "ic_fluent_ram_20_filled": 59899, - "ic_fluent_receipt_search_20_filled": 59918, - "ic_fluent_rectangle_portrait_location_target_20_filled": 59926, - "ic_fluent_save_image_20_filled": 59986, - "ic_fluent_scan_16_filled": 59995, - "ic_fluent_server_multiple_20_filled": 60058, - "ic_fluent_server_play_20_filled": 60059, - "ic_fluent_shield_person_20_filled": 60125, - "ic_fluent_shield_person_add_20_filled": 60126, - "ic_fluent_split_hint_20_filled": 60255, - "ic_fluent_squares_nested_20_filled": 60322, - "ic_fluent_stream_input_20_filled": 60352, - "ic_fluent_stream_input_output_20_filled": 60353, - "ic_fluent_stream_output_20_filled": 60354, - "ic_fluent_table_bottom_row_16_filled": 60405, - "ic_fluent_table_bottom_row_20_filled": 60406, - "ic_fluent_table_bottom_row_24_filled": 60407, - "ic_fluent_table_bottom_row_28_filled": 60408, - "ic_fluent_table_bottom_row_32_filled": 60409, - "ic_fluent_table_bottom_row_48_filled": 60410, - "ic_fluent_table_checker_20_filled": 60419, - "ic_fluent_table_copy_20_filled": 60420, - "ic_fluent_table_image_20_filled": 60446, - "ic_fluent_table_multiple_20_filled": 60477, - "ic_fluent_table_search_20_filled": 60486, - "ic_fluent_table_split_20_filled": 60495, - "ic_fluent_task_list_square_database_20_filled": 60566, - "ic_fluent_text_bullet_list_checkmark_20_filled": 60628, - "ic_fluent_text_bullet_list_dismiss_20_filled": 60629, - "ic_fluent_text_bullet_list_square_clock_20_filled": 60641, - "ic_fluent_text_bullet_list_square_person_20_filled": 60642, - "ic_fluent_text_bullet_list_square_search_20_filled": 60643, - "ic_fluent_text_bullet_list_square_settings_20_filled": 60644, - "ic_fluent_text_bullet_list_square_shield_20_filled": 60645, - "ic_fluent_text_bullet_list_square_toolbox_20_filled": 60646, - "ic_fluent_text_density_24_filled": 60673, - "ic_fluent_text_density_28_filled": 60674, - "ic_fluent_text_expand_20_filled": 60685, - "ic_fluent_timer_off_20_filled": 60814, - "ic_fluent_triangle_16_filled": 60837, - "ic_fluent_triangle_20_filled": 60838, - "ic_fluent_triangle_down_12_filled": 60841, - "ic_fluent_triangle_down_16_filled": 60842, - "ic_fluent_triangle_down_20_filled": 60843, - "ic_fluent_triangle_down_32_filled": 60844, - "ic_fluent_triangle_down_48_filled": 60845, - "ic_fluent_triangle_left_12_filled": 60846, - "ic_fluent_triangle_left_16_filled": 60847, - "ic_fluent_triangle_left_20_filled": 60848, - "ic_fluent_triangle_left_32_filled": 60849, - "ic_fluent_triangle_left_48_filled": 60850, - "ic_fluent_triangle_right_12_filled": 60851, - "ic_fluent_triangle_right_16_filled": 60852, - "ic_fluent_triangle_right_20_filled": 60853, - "ic_fluent_triangle_right_32_filled": 60854, - "ic_fluent_triangle_right_48_filled": 60855, - "ic_fluent_video_chat_28_filled": 60923, - "ic_fluent_video_chat_32_filled": 60924, - "ic_fluent_video_chat_48_filled": 60925, - "ic_fluent_virtual_network_20_filled": 60962, - "ic_fluent_virtual_network_toolbox_20_filled": 60963, - "ic_fluent_wallet_16_filled": 60971, - "ic_fluent_wallet_credit_card_16_filled": 60977, - "ic_fluent_wallet_credit_card_20_filled": 60978, - "ic_fluent_wallet_credit_card_24_filled": 60979, - "ic_fluent_wallet_credit_card_32_filled": 60980, - "ic_fluent_window_bullet_list_20_filled": 61037, - "ic_fluent_window_bullet_list_add_20_filled": 61038, - "ic_fluent_window_database_20_filled": 61040, - "ic_fluent_window_location_target_20_filled": 61047, - "ic_fluent_window_multiple_swap_20_filled": 61049, - "ic_fluent_window_play_20_filled": 61052, - "ic_fluent_window_settings_20_filled": 61053, - "ic_fluent_window_text_20_filled": 61054, - "ic_fluent_archive_arrow_back_16_filled": 57447, - "ic_fluent_archive_arrow_back_20_filled": 57448, - "ic_fluent_archive_arrow_back_24_filled": 57449, - "ic_fluent_archive_arrow_back_28_filled": 57450, - "ic_fluent_archive_arrow_back_32_filled": 57451, - "ic_fluent_archive_arrow_back_48_filled": 57452, - "ic_fluent_circle_multiple_subtract_checkmark_20_filled": 58192, - "ic_fluent_database_multiple_20_filled": 58490, - "ic_fluent_image_multiple_off_16_filled": 59191, - "ic_fluent_keyboard_16_filled": 59224, - "ic_fluent_lock_multiple_20_filled": 59296, - "ic_fluent_lottery_20_filled": 59302, - "ic_fluent_mail_warning_20_filled": 59366, - "ic_fluent_mail_warning_24_filled": 59367, - "ic_fluent_match_app_layout_20_filled": 59370, - "ic_fluent_math_format_linear_20_filled": 59371, - "ic_fluent_megaphone_off_16_filled": 59391, - "ic_fluent_megaphone_off_20_filled": 59392, - "ic_fluent_megaphone_off_28_filled": 59393, - "ic_fluent_merge_20_filled": 59397, - "ic_fluent_mic_off_32_filled": 59405, - "ic_fluent_mobile_optimized_20_filled": 59429, - "ic_fluent_network_check_20_filled": 59506, - "ic_fluent_note_add_28_filled": 59514, - "ic_fluent_note_add_48_filled": 59515, - "ic_fluent_notebook_sync_20_filled": 59531, - "ic_fluent_organization_horizontal_20_filled": 59564, - "ic_fluent_paint_brush_arrow_down_20_filled": 59573, - "ic_fluent_paint_brush_arrow_up_20_filled": 59575, - "ic_fluent_pentagon_20_filled": 59642, - "ic_fluent_person_accounts_20_filled": 59698, - "ic_fluent_person_subtract_20_filled": 59737, - "ic_fluent_pin_off_28_filled": 59800, - "ic_fluent_pin_off_32_filled": 59801, - "ic_fluent_point_scan_20_filled": 59823, - "ic_fluent_port_usb_a_20_filled": 59830, - "ic_fluent_question_circle_12_filled": 59893, - "ic_fluent_row_triple_20_filled": 59972, - "ic_fluent_scratchpad_20_filled": 60030, - "ic_fluent_shifts_availability_20_filled": 60137, - "ic_fluent_skip_forward_tab_20_filled": 60179, - "ic_fluent_sleep_20_filled": 60181, - "ic_fluent_slide_multiple_20_filled": 60197, - "ic_fluent_slide_multiple_arrow_right_20_filled": 60199, - "ic_fluent_slide_size_20_filled": 60206, - "ic_fluent_sound_wave_circle_20_filled": 60216, - "ic_fluent_sport_american_football_20_filled": 60273, - "ic_fluent_sport_baseball_20_filled": 60275, - "ic_fluent_sport_hockey_20_filled": 60279, - "ic_fluent_square_hint_arrow_back_20_filled": 60311, - "ic_fluent_square_shadow_20_filled": 60321, - "ic_fluent_tab_arrow_left_20_filled": 60385, - "ic_fluent_tab_prohibited_20_filled": 60394, - "ic_fluent_text_collapse_20_filled": 60658, - "ic_fluent_text_more_20_filled": 60728, - "ic_fluent_time_and_weather_20_filled": 60801, - "ic_fluent_transmission_20_filled": 60828, - "ic_fluent_video_play_pause_20_filled": 60954, - "ic_fluent_arrow_next_12_filled": 57565, - "ic_fluent_arrow_previous_12_filled": 57571, - "ic_fluent_data_usage_settings_20_filled": 58477, - "ic_fluent_document_multiple_sync_20_filled": 58674, - "ic_fluent_filter_12_filled": 58902, - "ic_fluent_history_28_filled": 59155, - "ic_fluent_history_32_filled": 59156, - "ic_fluent_history_48_filled": 59157, - "ic_fluent_history_dismiss_20_filled": 59158, - "ic_fluent_history_dismiss_24_filled": 59159, - "ic_fluent_history_dismiss_28_filled": 59160, - "ic_fluent_history_dismiss_32_filled": 59161, - "ic_fluent_history_dismiss_48_filled": 59162, - "ic_fluent_home_more_20_filled": 59171, - "ic_fluent_people_search_20_filled": 59673, - "ic_fluent_people_team_delete_16_filled": 59685, - "ic_fluent_people_team_delete_20_filled": 59686, - "ic_fluent_people_team_delete_28_filled": 59688, - "ic_fluent_people_team_delete_32_filled": 59689, - "ic_fluent_person_5_20_filled": 59694, - "ic_fluent_person_6_20_filled": 59696, - "ic_fluent_person_sync_24_filled": 59740, - "ic_fluent_phone_eraser_20_filled": 59759, - "ic_fluent_phone_shake_20_filled": 59770, - "ic_fluent_phone_speaker_20_filled": 59779, - "ic_fluent_radar_20_filled": 59896, - "ic_fluent_radar_checkmark_20_filled": 59897, - "ic_fluent_radar_rectangle_multiple_20_filled": 59898, - "ic_fluent_real_estate_20_filled": 59908, - "ic_fluent_resize_table_20_filled": 59939, - "ic_fluent_shifts_30_minutes_20_filled": 60134, - "ic_fluent_sound_source_20_filled": 60215, - "ic_fluent_subtitles_16_filled": 60357, - "ic_fluent_subtitles_20_filled": 60358, - "ic_fluent_subtitles_24_filled": 60359, - "ic_fluent_task_list_square_person_20_filled": 60569, - "ic_fluent_task_list_square_settings_20_filled": 60572, - "ic_fluent_timer_10_20_filled": 60804, - "ic_fluent_timer_2_20_filled": 60807, - "ic_fluent_timer_3_20_filled": 60810, - "ic_fluent_tree_deciduous_20_filled": 60834, - "ic_fluent_tree_evergreen_20_filled": 60835, - "ic_fluent_uninstall_app_20_filled": 60878, - "ic_fluent_alert_badge_16_filled": 57367, - "ic_fluent_alert_badge_20_filled": 57368, - "ic_fluent_alert_badge_24_filled": 57369, - "ic_fluent_archive_settings_28_filled": 57458, - "ic_fluent_arrow_between_up_20_filled": 57473, - "ic_fluent_arrow_fit_in_16_filled": 57550, - "ic_fluent_arrow_fit_in_20_filled": 57551, - "ic_fluent_arrow_forward_28_filled": 57552, - "ic_fluent_arrow_reply_28_filled": 57574, - "ic_fluent_arrow_reply_all_28_filled": 57575, - "ic_fluent_arrow_undo_28_filled": 57639, - "ic_fluent_branch_request_20_filled": 57848, - "ic_fluent_broom_28_filled": 57880, - "ic_fluent_bug_arrow_counterclockwise_20_filled": 57884, - "ic_fluent_bug_prohibited_20_filled": 57885, - "ic_fluent_calendar_multiple_28_filled": 57962, - "ic_fluent_call_add_16_filled": 57993, - "ic_fluent_call_dismiss_16_filled": 57997, - "ic_fluent_call_transfer_16_filled": 58022, - "ic_fluent_call_warning_16_filled": 58024, - "ic_fluent_call_warning_20_filled": 58025, - "ic_fluent_checkmark_square_20_filled": 58142, - "ic_fluent_circle_eraser_20_filled": 58187, - "ic_fluent_column_double_compare_20_filled": 58327, - "ic_fluent_comma_20_filled": 58333, - "ic_fluent_cube_arrow_curve_down_20_filled": 58428, - "ic_fluent_database_switch_20_filled": 58496, - "ic_fluent_document_data_20_filled": 58627, - "ic_fluent_folder_mail_24_filled": 58981, - "ic_fluent_folder_mail_28_filled": 58982, - "ic_fluent_gather_20_filled": 59041, - "ic_fluent_image_32_filled": 59174, - "ic_fluent_mail_attach_24_filled": 59324, - "ic_fluent_mail_attach_28_filled": 59325, - "ic_fluent_mail_prohibited_28_filled": 59358, - "ic_fluent_markdown_20_filled": 59369, - "ic_fluent_merge_16_filled": 59396, - "ic_fluent_notebook_arrow_curve_down_20_filled": 59522, - "ic_fluent_notebook_eye_20_filled": 59524, - "ic_fluent_person_sync_16_filled": 59738, - "ic_fluent_person_sync_20_filled": 59739, - "ic_fluent_person_sync_28_filled": 59741, - "ic_fluent_person_sync_32_filled": 59742, - "ic_fluent_person_sync_48_filled": 59743, - "ic_fluent_phone_key_20_filled": 59760, - "ic_fluent_phone_key_24_filled": 59761, - "ic_fluent_pipeline_arrow_curve_down_20_filled": 59805, - "ic_fluent_print_32_filled": 59861, - "ic_fluent_save_28_filled": 59980, - "ic_fluent_select_all_off_20_filled": 60046, - "ic_fluent_select_all_on_20_filled": 60047, - "ic_fluent_square_eraser_20_filled": 60301, - "ic_fluent_tab_desktop_multiple_bottom_20_filled": 60392, - "ic_fluent_tag_28_filled": 60523, - "ic_fluent_text_bullet_list_rotate_270_24_filled": 60634, - "ic_fluent_text_bullet_list_rotate_90_24_filled": 60636, - "ic_fluent_text_indent_decrease_rotate_270_24_filled": 60711, - "ic_fluent_text_indent_decrease_rotate_90_24_filled": 60713, - "ic_fluent_text_indent_increase_rotate_270_24_filled": 60721, - "ic_fluent_text_indent_increase_rotate_90_24_filled": 60723, - "ic_fluent_text_number_list_rotate_270_24_filled": 60732, - "ic_fluent_text_number_list_rotate_90_24_filled": 60734, - "ic_fluent_text_whole_word_20_filled": 60776, - "ic_fluent_time_picker_20_filled": 60802, - "ic_fluent_video_clip_off_16_filled": 60931, - "ic_fluent_video_clip_off_20_filled": 60932, - "ic_fluent_video_clip_off_24_filled": 60933, - "ic_fluent_wallpaper_20_filled": 60981, - "ic_fluent_warning_28_filled": 60988, - "ic_fluent_wifi_lock_20_filled": 61015, - "ic_fluent_alert_12_filled": 57363, - "ic_fluent_alert_48_filled": 57366, - "ic_fluent_alert_snooze_12_filled": 57371, - "ic_fluent_alert_snooze_16_filled": 57372, - "ic_fluent_arrow_autofit_content_20_filled": 57459, - "ic_fluent_arrow_split_16_filled": 57587, - "ic_fluent_arrow_split_24_filled": 57589, - "ic_fluent_catch_up_16_filled": 58049, - "ic_fluent_catch_up_20_filled": 58050, - "ic_fluent_catch_up_24_filled": 58051, - "ic_fluent_chess_20_filled": 58145, - "ic_fluent_circle_image_20_filled": 58189, - "ic_fluent_image_multiple_off_20_filled": 59192, - "ic_fluent_mic_pulse_16_filled": 59412, - "ic_fluent_mic_pulse_20_filled": 59413, - "ic_fluent_mic_pulse_24_filled": 59414, - "ic_fluent_mic_pulse_28_filled": 59415, - "ic_fluent_mic_pulse_32_filled": 59416, - "ic_fluent_mic_pulse_48_filled": 59417, - "ic_fluent_mic_pulse_off_16_filled": 59418, - "ic_fluent_mic_pulse_off_20_filled": 59419, - "ic_fluent_mic_pulse_off_24_filled": 59420, - "ic_fluent_mic_pulse_off_28_filled": 59421, - "ic_fluent_mic_pulse_off_32_filled": 59422, - "ic_fluent_mic_pulse_off_48_filled": 59423, - "ic_fluent_pause_28_filled": 59615, - "ic_fluent_pause_32_filled": 59616, - "ic_fluent_playing_cards_20_filled": 59818, - "ic_fluent_premium_person_16_filled": 59844, - "ic_fluent_quiz_new_20_filled": 59895, - "ic_fluent_save_copy_20_filled": 59983, - "ic_fluent_send_copy_20_filled": 60057, - "ic_fluent_slide_hide_20_filled": 60194, - "ic_fluent_slide_microphone_20_filled": 60195, - "ic_fluent_slide_search_20_filled": 60201, - "ic_fluent_sport_basketball_20_filled": 60277, - "ic_fluent_swipe_down_20_filled": 60375, - "ic_fluent_swipe_right_20_filled": 60376, - "ic_fluent_swipe_up_20_filled": 60377, - "ic_fluent_tabs_20_filled": 60521, - "ic_fluent_text_12_filled": 60587, - "ic_fluent_text_16_filled": 60588, - "ic_fluent_text_32_filled": 60589, - "ic_fluent_text_add_20_filled": 60590, - "ic_fluent_text_bullet_list_rotate_270_20_filled": 60633, - "ic_fluent_text_bullet_list_rotate_90_20_filled": 60635, - "ic_fluent_text_indent_decrease_rotate_270_20_filled": 60710, - "ic_fluent_text_indent_decrease_rotate_90_20_filled": 60712, - "ic_fluent_text_indent_increase_rotate_270_20_filled": 60720, - "ic_fluent_text_indent_increase_rotate_90_20_filled": 60722, - "ic_fluent_text_number_list_rotate_270_20_filled": 60731, - "ic_fluent_text_number_list_rotate_90_20_filled": 60733, - "ic_fluent_text_wrap_20_filled": 60777, - "ic_fluent_toggle_multiple_16_filled": 60820, - "ic_fluent_toggle_multiple_20_filled": 60821, - "ic_fluent_toggle_multiple_24_filled": 60822, - "ic_fluent_window_edit_20_filled": 61043, - "ic_fluent_zoom_fit_16_filled": 61067, - "ic_fluent_zoom_fit_20_filled": 61068, - "ic_fluent_zoom_fit_24_filled": 61069, - "ic_fluent_app_folder_16_filled": 57432, - "ic_fluent_app_folder_28_filled": 57433, - "ic_fluent_app_folder_32_filled": 57434, - "ic_fluent_app_folder_48_filled": 57435, - "ic_fluent_arrow_outline_up_right_20_filled": 57566, - "ic_fluent_arrow_outline_up_right_24_filled": 57567, - "ic_fluent_clipboard_32_filled": 58200, - "ic_fluent_clipboard_text_32_filled": 58234, - "ic_fluent_clipboard_text_edit_20_filled": 58235, - "ic_fluent_clipboard_text_edit_24_filled": 58236, - "ic_fluent_clipboard_text_edit_32_filled": 58237, - "ic_fluent_document_data_24_filled": 58628, - "ic_fluent_joystick_20_filled": 59213, - "ic_fluent_people_12_filled": 59645, - "ic_fluent_people_48_filled": 59647, - "ic_fluent_person_heart_24_filled": 59715, - "ic_fluent_port_micro_usb_20_filled": 59828, - "ic_fluent_port_usb_c_20_filled": 59832, - "ic_fluent_rss_20_filled": 59973, - "ic_fluent_scales_20_filled": 59992, - "ic_fluent_shifts_team_20_filled": 60146, - "ic_fluent_speaker_bluetooth_20_filled": 60240, - "ic_fluent_speaker_usb_20_filled": 60252, - "ic_fluent_text_align_center_rotate_270_16_filled": 60593, - "ic_fluent_text_align_center_rotate_270_20_filled": 60594, - "ic_fluent_text_align_center_rotate_90_16_filled": 60596, - "ic_fluent_text_align_center_rotate_90_20_filled": 60597, - "ic_fluent_text_align_center_rotate_90_24_filled": 60598, - "ic_fluent_text_align_justify_rotate_270_20_filled": 60605, - "ic_fluent_text_align_justify_rotate_270_24_filled": 60606, - "ic_fluent_text_align_justify_rotate_90_20_filled": 60607, - "ic_fluent_text_align_left_rotate_270_16_filled": 60610, - "ic_fluent_text_align_left_rotate_270_20_filled": 60611, - "ic_fluent_text_align_left_rotate_90_16_filled": 60613, - "ic_fluent_text_align_left_rotate_90_20_filled": 60614, - "ic_fluent_text_align_left_rotate_90_24_filled": 60615, - "ic_fluent_text_align_right_rotate_270_16_filled": 60617, - "ic_fluent_text_align_right_rotate_270_20_filled": 60618, - "ic_fluent_text_align_right_rotate_90_16_filled": 60620, - "ic_fluent_text_align_right_rotate_90_20_filled": 60621, - "ic_fluent_text_align_right_rotate_90_24_filled": 60622, - "ic_fluent_clipboard_text_ltr_32_filled": 58240, - "ic_fluent_braces_16_filled": 61072, - "ic_fluent_braces_28_filled": 61073, - "ic_fluent_braces_32_filled": 61074, - "ic_fluent_braces_48_filled": 61075, - "ic_fluent_branch_fork_32_filled": 61076, - "ic_fluent_calendar_data_bar_16_filled": 61077, - "ic_fluent_calendar_data_bar_20_filled": 61078, - "ic_fluent_calendar_data_bar_24_filled": 61079, - "ic_fluent_calendar_data_bar_28_filled": 61080, - "ic_fluent_clipboard_3_day_16_filled": 61081, - "ic_fluent_clipboard_3_day_20_filled": 61082, - "ic_fluent_clipboard_3_day_24_filled": 61083, - "ic_fluent_clipboard_day_16_filled": 61084, - "ic_fluent_clipboard_day_20_filled": 61085, - "ic_fluent_clipboard_day_24_filled": 61086, - "ic_fluent_clipboard_month_16_filled": 61087, - "ic_fluent_clipboard_month_20_filled": 61088, - "ic_fluent_clipboard_month_24_filled": 61089, - "ic_fluent_content_view_gallery_24_filled": 61090, - "ic_fluent_content_view_gallery_28_filled": 61091, - "ic_fluent_data_bar_vertical_16_filled": 61092, - "ic_fluent_delete_12_filled": 61093, - "ic_fluent_delete_32_filled": 61094, - "ic_fluent_form_20_filled": 61095, - "ic_fluent_form_24_filled": 61096, - "ic_fluent_form_28_filled": 61097, - "ic_fluent_form_48_filled": 61098, - "ic_fluent_mail_read_multiple_20_filled": 61099, - "ic_fluent_mail_read_multiple_32_filled": 61100, - "ic_fluent_megaphone_loud_16_filled": 61101, - "ic_fluent_panel_right_add_20_filled": 61102, - "ic_fluent_person_note_16_filled": 61103, - "ic_fluent_shield_globe_16_filled": 61104, - "ic_fluent_shield_globe_20_filled": 61105, - "ic_fluent_shield_globe_24_filled": 61106, - "ic_fluent_square_multiple_28_filled": 61107, - "ic_fluent_square_multiple_32_filled": 61108, - "ic_fluent_square_multiple_48_filled": 61109, - "ic_fluent_table_calculator_20_filled": 61110, - "ic_fluent_xbox_controller_16_filled": 61111, - "ic_fluent_xbox_controller_20_filled": 61112, - "ic_fluent_xbox_controller_24_filled": 61113, - "ic_fluent_xbox_controller_28_filled": 61114, - "ic_fluent_xbox_controller_32_filled": 61115, - "ic_fluent_xbox_controller_48_filled": 61116, - "ic_fluent_apps_32_filled": 61117, - "ic_fluent_arrow_paragraph_16_filled": 61118, - "ic_fluent_arrow_paragraph_24_filled": 61119, - "ic_fluent_beaker_32_filled": 61120, - "ic_fluent_building_retail_more_32_filled": 61122, - "ic_fluent_calendar_month_32_filled": 61123, - "ic_fluent_content_view_24_filled": 61124, - "ic_fluent_content_view_28_filled": 61125, - "ic_fluent_credit_card_clock_20_filled": 61126, - "ic_fluent_credit_card_clock_24_filled": 61127, - "ic_fluent_credit_card_clock_28_filled": 61128, - "ic_fluent_credit_card_clock_32_filled": 61129, - "ic_fluent_cube_32_filled": 61130, - "ic_fluent_data_bar_vertical_32_filled": 61131, - "ic_fluent_database_32_filled": 61132, - "ic_fluent_document_data_32_filled": 61133, - "ic_fluent_folder_people_20_filled": 61134, - "ic_fluent_folder_people_24_filled": 61135, - "ic_fluent_gauge_32_filled": 61136, - "ic_fluent_hand_left_chat_16_filled": 61137, - "ic_fluent_hand_left_chat_20_filled": 61138, - "ic_fluent_hand_left_chat_24_filled": 61139, - "ic_fluent_hand_left_chat_28_filled": 61140, - "ic_fluent_home_database_24_filled": 61141, - "ic_fluent_home_database_32_filled": 61142, - "ic_fluent_home_more_24_filled": 61143, - "ic_fluent_home_more_32_filled": 61144, - "ic_fluent_notebook_32_filled": 61145, - "ic_fluent_payment_32_filled": 61146, - "ic_fluent_payment_48_filled": 61147, - "ic_fluent_person_running_20_filled": 61148, - "ic_fluent_pipeline_24_filled": 61149, - "ic_fluent_pipeline_32_filled": 61150, - "ic_fluent_stack_32_filled": 61151, - "ic_fluent_text_align_justify_low_rotate_270_20_filled": 61152, - "ic_fluent_text_align_justify_low_rotate_270_24_filled": 61153, - "ic_fluent_text_align_justify_low_rotate_90_20_filled": 61154, - "ic_fluent_text_align_justify_low_rotate_90_24_filled": 61155, - "ic_fluent_animal_rabbit_32_filled": 61121, - "ic_fluent_animal_rabbit_off_20_filled": 61156, - "ic_fluent_animal_rabbit_off_32_filled": 61157, - "ic_fluent_beaker_off_20_filled": 61158, - "ic_fluent_beaker_off_32_filled": 61159, - "ic_fluent_bowl_salad_20_filled": 61160, - "ic_fluent_bowl_salad_24_filled": 61161, - "ic_fluent_building_retail_more_24_filled": 61162, - "ic_fluent_connected_16_filled": 61163, - "ic_fluent_connected_20_filled": 61164, - "ic_fluent_document_text_16_filled": 61165, - "ic_fluent_drink_bottle_20_filled": 61166, - "ic_fluent_drink_bottle_32_filled": 61167, - "ic_fluent_drink_bottle_off_20_filled": 61168, - "ic_fluent_drink_bottle_off_32_filled": 61169, - "ic_fluent_earth_32_filled": 61170, - "ic_fluent_earth_leaf_16_filled": 61171, - "ic_fluent_earth_leaf_20_filled": 61172, - "ic_fluent_earth_leaf_24_filled": 61173, - "ic_fluent_earth_leaf_32_filled": 61174, - "ic_fluent_feed_16_filled": 61175, - "ic_fluent_feed_20_filled": 61176, - "ic_fluent_feed_24_filled": 61177, - "ic_fluent_feed_28_filled": 61178, - "ic_fluent_filmstrip_20_filled": 61179, - "ic_fluent_filmstrip_24_filled": 61180, - "ic_fluent_food_carrot_20_filled": 61181, - "ic_fluent_food_carrot_24_filled": 61182, - "ic_fluent_food_fish_20_filled": 61183, - "ic_fluent_food_fish_24_filled": 61184, - "ic_fluent_hand_open_heart_20_filled": 61185, - "ic_fluent_hand_open_heart_32_filled": 61186, - "ic_fluent_hand_wave_16_filled": 61187, - "ic_fluent_hand_wave_20_filled": 61188, - "ic_fluent_hand_wave_24_filled": 61189, - "ic_fluent_handshake_32_filled": 61190, - "ic_fluent_leaf_one_32_filled": 61191, - "ic_fluent_leaf_two_32_filled": 61192, - "ic_fluent_notebook_16_filled": 61193, - "ic_fluent_person_heart_20_filled": 61194, - "ic_fluent_person_star_16_filled": 61195, - "ic_fluent_person_star_20_filled": 61196, - "ic_fluent_person_star_24_filled": 61197, - "ic_fluent_person_star_28_filled": 61198, - "ic_fluent_person_star_32_filled": 61199, - "ic_fluent_person_star_48_filled": 61200, - "ic_fluent_pipeline_add_32_filled": 61201, - "ic_fluent_recycle_20_filled": 61202, - "ic_fluent_recycle_32_filled": 61203, - "ic_fluent_reward_12_filled": 61204, - "ic_fluent_slide_link_20_filled": 61205, - "ic_fluent_slide_link_24_filled": 61206, - "ic_fluent_food_chicken_leg_16_filled": 61207, - "ic_fluent_food_chicken_leg_20_filled": 61208, - "ic_fluent_food_chicken_leg_24_filled": 61209, - "ic_fluent_food_chicken_leg_32_filled": 61210, - "ic_fluent_form_multiple_20_filled": 61211, - "ic_fluent_form_multiple_24_filled": 61212, - "ic_fluent_form_multiple_28_filled": 61213, - "ic_fluent_form_multiple_48_filled": 61214, - "ic_fluent_laser_tool_20_filled": 61215, - "ic_fluent_shield_32_filled": 61216, - "ic_fluent_shield_question_16_filled": 61217, - "ic_fluent_shield_question_20_filled": 61218, - "ic_fluent_shield_question_24_filled": 61219, - "ic_fluent_shield_question_32_filled": 61220, - "ic_fluent_heart_broken_24_filled": 61221, - "ic_fluent_layer_diagonal_20_filled": 61222, - "ic_fluent_layer_diagonal_person_20_filled": 61223, - "ic_fluent_text_wrap_16_filled": 61224, - "ic_fluent_text_wrap_off_16_filled": 61225, - "ic_fluent_text_wrap_off_20_filled": 61226, - "ic_fluent_text_wrap_off_24_filled": 61227, - "ic_fluent_trophy_lock_16_filled": 61228, - "ic_fluent_trophy_lock_20_filled": 61229, - "ic_fluent_trophy_lock_24_filled": 61230, - "ic_fluent_trophy_lock_28_filled": 61231, - "ic_fluent_trophy_lock_32_filled": 61232, - "ic_fluent_trophy_lock_48_filled": 61233, - "ic_fluent_arrow_repeat_1_16_filled": 61234, - "ic_fluent_arrow_repeat_1_20_filled": 61235, - "ic_fluent_arrow_repeat_1_24_filled": 61236, - "ic_fluent_arrow_shuffle_16_filled": 61237, - "ic_fluent_arrow_shuffle_20_filled": 61238, - "ic_fluent_arrow_shuffle_24_filled": 61239, - "ic_fluent_arrow_shuffle_28_filled": 61240, - "ic_fluent_arrow_shuffle_32_filled": 61241, - "ic_fluent_arrow_shuffle_48_filled": 61242, - "ic_fluent_arrow_shuffle_off_16_filled": 61243, - "ic_fluent_arrow_shuffle_off_20_filled": 61244, - "ic_fluent_arrow_shuffle_off_24_filled": 61245, - "ic_fluent_arrow_shuffle_off_28_filled": 61246, - "ic_fluent_arrow_shuffle_off_32_filled": 61247, - "ic_fluent_arrow_shuffle_off_48_filled": 61248, - "ic_fluent_building_desktop_16_filled": 61249, - "ic_fluent_building_desktop_20_filled": 61250, - "ic_fluent_building_desktop_24_filled": 61251, - "ic_fluent_calendar_empty_48_filled": 61252, - "ic_fluent_calendar_lock_16_filled": 61253, - "ic_fluent_calendar_lock_20_filled": 61254, - "ic_fluent_calendar_lock_24_filled": 61255, - "ic_fluent_calendar_lock_28_filled": 61256, - "ic_fluent_calendar_lock_32_filled": 61257, - "ic_fluent_calendar_lock_48_filled": 61258, - "ic_fluent_calendar_settings_24_filled": 61259, - "ic_fluent_calendar_settings_28_filled": 61260, - "ic_fluent_calendar_settings_32_filled": 61261, - "ic_fluent_calendar_settings_48_filled": 61262, - "ic_fluent_call_12_filled": 61263, - "ic_fluent_call_missed_12_filled": 61264, - "ic_fluent_chat_add_16_filled": 61265, - "ic_fluent_chat_add_20_filled": 61266, - "ic_fluent_chat_add_24_filled": 61267, - "ic_fluent_chat_add_28_filled": 61268, - "ic_fluent_chat_add_32_filled": 61269, - "ic_fluent_chat_add_48_filled": 61270, - "ic_fluent_chat_cursor_16_filled": 61271, - "ic_fluent_chat_cursor_20_filled": 61272, - "ic_fluent_chat_cursor_24_filled": 61273, - "ic_fluent_chat_empty_12_filled": 61274, - "ic_fluent_chat_empty_16_filled": 61275, - "ic_fluent_chat_empty_20_filled": 61276, - "ic_fluent_chat_empty_24_filled": 61277, - "ic_fluent_chat_empty_28_filled": 61278, - "ic_fluent_chat_empty_32_filled": 61279, - "ic_fluent_chat_empty_48_filled": 61280, - "ic_fluent_circle_image_16_filled": 61281, - "ic_fluent_circle_image_24_filled": 61282, - "ic_fluent_circle_image_28_filled": 61283, - "ic_fluent_code_text_16_filled": 61284, - "ic_fluent_desktop_checkmark_16_filled": 61285, - "ic_fluent_desktop_checkmark_20_filled": 61286, - "ic_fluent_desktop_checkmark_24_filled": 61287, - "ic_fluent_fire_16_filled": 61288, - "ic_fluent_fire_20_filled": 61289, - "ic_fluent_fire_24_filled": 61290, - "ic_fluent_hourglass_20_filled": 61291, - "ic_fluent_hourglass_24_filled": 61292, - "ic_fluent_hourglass_half_20_filled": 61293, - "ic_fluent_hourglass_half_24_filled": 61294, - "ic_fluent_hourglass_one_quarter_20_filled": 61295, - "ic_fluent_hourglass_one_quarter_24_filled": 61296, - "ic_fluent_hourglass_three_quarter_20_filled": 61297, - "ic_fluent_hourglass_three_quarter_24_filled": 61298, - "ic_fluent_ink_stroke_arrow_down_20_filled": 61299, - "ic_fluent_ink_stroke_arrow_down_24_filled": 61300, - "ic_fluent_ink_stroke_arrow_up_down_20_filled": 61301, - "ic_fluent_ink_stroke_arrow_up_down_24_filled": 61302, - "ic_fluent_megaphone_circle_20_filled": 61303, - "ic_fluent_megaphone_circle_24_filled": 61304, - "ic_fluent_number_circle_2_16_filled": 61305, - "ic_fluent_number_circle_2_20_filled": 61306, - "ic_fluent_number_circle_2_24_filled": 61307, - "ic_fluent_number_circle_2_28_filled": 61308, - "ic_fluent_number_circle_2_32_filled": 61309, - "ic_fluent_number_circle_2_48_filled": 61310, - "ic_fluent_number_circle_3_16_filled": 61311, - "ic_fluent_number_circle_3_20_filled": 61312, - "ic_fluent_number_circle_3_24_filled": 61313, - "ic_fluent_number_circle_3_28_filled": 61314, - "ic_fluent_number_circle_3_32_filled": 61315, - "ic_fluent_number_circle_3_48_filled": 61316, - "ic_fluent_number_circle_4_16_filled": 61317, - "ic_fluent_number_circle_4_20_filled": 61318, - "ic_fluent_number_circle_4_24_filled": 61319, - "ic_fluent_number_circle_4_28_filled": 61320, - "ic_fluent_number_circle_4_32_filled": 61321, - "ic_fluent_number_circle_4_48_filled": 61322, - "ic_fluent_number_circle_5_16_filled": 61323, - "ic_fluent_number_circle_5_20_filled": 61324, - "ic_fluent_number_circle_5_24_filled": 61325, - "ic_fluent_number_circle_5_28_filled": 61326, - "ic_fluent_number_circle_5_32_filled": 61327, - "ic_fluent_number_circle_5_48_filled": 61328, - "ic_fluent_person_alert_16_filled": 61329, - "ic_fluent_person_alert_20_filled": 61330, - "ic_fluent_person_alert_24_filled": 61331, - "ic_fluent_person_arrow_back_16_filled": 61332, - "ic_fluent_person_arrow_back_20_filled": 61333, - "ic_fluent_person_arrow_back_24_filled": 61334, - "ic_fluent_person_arrow_back_28_filled": 61335, - "ic_fluent_person_arrow_back_32_filled": 61336, - "ic_fluent_person_arrow_back_48_filled": 61337, - "ic_fluent_person_link_16_filled": 61338, - "ic_fluent_person_link_20_filled": 61339, - "ic_fluent_person_link_24_filled": 61340, - "ic_fluent_person_link_28_filled": 61341, - "ic_fluent_person_link_32_filled": 61342, - "ic_fluent_person_link_48_filled": 61343, - "ic_fluent_phone_28_filled": 61344, - "ic_fluent_phone_32_filled": 61345, - "ic_fluent_phone_48_filled": 61346, - "ic_fluent_phone_chat_16_filled": 61347, - "ic_fluent_phone_chat_20_filled": 61348, - "ic_fluent_phone_chat_24_filled": 61349, - "ic_fluent_phone_chat_28_filled": 61350, - "ic_fluent_premium_12_filled": 61351, - "ic_fluent_shield_add_16_filled": 61352, - "ic_fluent_shield_add_20_filled": 61353, - "ic_fluent_shield_add_24_filled": 61354, - "ic_fluent_sparkle_circle_20_filled": 61355, - "ic_fluent_sparkle_circle_24_filled": 61356, - "ic_fluent_task_list_square_ltr_16_filled": 61357, - "ic_fluent_task_list_square_rtl_16_filled": 61358, - "ic_fluent_text_bullet_list_ltr_rotate_90_20_filled": 61359, - "ic_fluent_text_bullet_list_rtl_rotate_90_20_filled": 61360, - "ic_fluent_text_direction_horizontal_ltr_20_filled": 61361, - "ic_fluent_text_direction_horizontal_ltr_24_filled": 61362, - "ic_fluent_text_direction_horizontal_rtl_20_filled": 61363, - "ic_fluent_text_direction_horizontal_rtl_24_filled": 61364, - "ic_fluent_text_direction_rotate_90_ltr_20_filled": 61365, - "ic_fluent_text_direction_rotate_90_ltr_24_filled": 61366, - "ic_fluent_text_direction_rotate_90_rtl_20_filled": 61367, - "ic_fluent_text_direction_rotate_90_rtl_24_filled": 61368, - "ic_fluent_app_generic_32_filled": 61369, - "ic_fluent_code_block_16_filled": 61370, - "ic_fluent_code_block_20_filled": 61371, - "ic_fluent_code_block_24_filled": 61372, - "ic_fluent_code_block_28_filled": 61373, - "ic_fluent_code_block_32_filled": 61374, - "ic_fluent_code_block_48_filled": 61375, - "ic_fluent_data_bar_vertical_star_16_filled": 61376, - "ic_fluent_data_bar_vertical_star_20_filled": 61377, - "ic_fluent_data_bar_vertical_star_24_filled": 61378, - "ic_fluent_data_bar_vertical_star_32_filled": 61379, - "ic_fluent_database_arrow_right_32_filled": 61380, - "ic_fluent_document_sync_32_filled": 61381, - "ic_fluent_equal_off_12_filled": 61382, - "ic_fluent_equal_off_16_filled": 61383, - "ic_fluent_eye_28_filled": 61384, - "ic_fluent_eye_32_filled": 61385, - "ic_fluent_eye_48_filled": 61386, - "ic_fluent_eye_lines_20_filled": 61387, - "ic_fluent_eye_lines_24_filled": 61388, - "ic_fluent_eye_lines_28_filled": 61389, - "ic_fluent_eye_lines_32_filled": 61390, - "ic_fluent_eye_lines_48_filled": 61391, - "ic_fluent_number_circle_1_28_filled": 61392, - "ic_fluent_number_circle_1_32_filled": 61393, - "ic_fluent_number_circle_1_48_filled": 61394, - "ic_fluent_text_bullet_list_square_person_32_filled": 61395, - "ic_fluent_weather_snowflake_32_filled": 61396, - "ic_fluent_window_database_24_filled": 61397, - "ic_fluent_arrow_trending_12_filled": 61398, - "ic_fluent_building_people_16_filled": 61399, - "ic_fluent_building_people_20_filled": 61400, - "ic_fluent_building_people_24_filled": 61401, - "ic_fluent_cloud_error_16_filled": 61402, - "ic_fluent_cloud_error_20_filled": 61403, - "ic_fluent_cloud_error_24_filled": 61404, - "ic_fluent_cloud_error_28_filled": 61405, - "ic_fluent_cloud_error_32_filled": 61406, - "ic_fluent_cloud_error_48_filled": 61407, - "ic_fluent_couch_32_filled": 61408, - "ic_fluent_couch_48_filled": 61409, - "ic_fluent_database_arrow_right_24_filled": 61410, - "ic_fluent_dishwasher_20_filled": 61411, - "ic_fluent_dishwasher_24_filled": 61412, - "ic_fluent_dishwasher_32_filled": 61413, - "ic_fluent_dishwasher_48_filled": 61414, - "ic_fluent_elevator_20_filled": 61415, - "ic_fluent_elevator_24_filled": 61416, - "ic_fluent_elevator_32_filled": 61417, - "ic_fluent_feed_32_filled": 61418, - "ic_fluent_feed_48_filled": 61419, - "ic_fluent_fireplace_20_filled": 61420, - "ic_fluent_fireplace_24_filled": 61421, - "ic_fluent_fireplace_32_filled": 61422, - "ic_fluent_fireplace_48_filled": 61423, - "ic_fluent_mention_12_filled": 61424, - "ic_fluent_oven_20_filled": 61425, - "ic_fluent_oven_24_filled": 61426, - "ic_fluent_oven_32_filled": 61427, - "ic_fluent_oven_48_filled": 61428, - "ic_fluent_panel_down_20_filled": 61429, - "ic_fluent_panel_left_32_filled": 61430, - "ic_fluent_panel_left_add_16_filled": 61431, - "ic_fluent_panel_left_add_20_filled": 61432, - "ic_fluent_panel_left_add_24_filled": 61433, - "ic_fluent_panel_left_add_28_filled": 61434, - "ic_fluent_panel_left_add_32_filled": 61435, - "ic_fluent_panel_left_add_48_filled": 61436, - "ic_fluent_panel_left_key_16_filled": 61437, - "ic_fluent_panel_left_key_20_filled": 61438, - "ic_fluent_panel_left_key_24_filled": 61439, - "ic_fluent_panel_right_32_filled": 61440, - "ic_fluent_status_12_filled": 61441, - "ic_fluent_vehicle_car_parking_20_filled": 61442, - "ic_fluent_vehicle_car_parking_24_filled": 61443, - "ic_fluent_vehicle_car_profile_ltr_24_filled": 61444, - "ic_fluent_vehicle_car_profile_rtl_24_filled": 61445, - "ic_fluent_washer_20_filled": 61446, - "ic_fluent_washer_24_filled": 61447, - "ic_fluent_washer_32_filled": 61448, - "ic_fluent_washer_48_filled": 61449, - "ic_fluent_accessibility_checkmark_28_filled": 61450, - "ic_fluent_accessibility_checkmark_32_filled": 61451, - "ic_fluent_accessibility_checkmark_48_filled": 61452, - "ic_fluent_add_circle_12_filled": 61453, - "ic_fluent_arrow_turn_down_right_20_filled": 61454, - "ic_fluent_arrow_turn_down_right_48_filled": 61455, - "ic_fluent_arrow_turn_down_up_20_filled": 61456, - "ic_fluent_arrow_turn_down_up_48_filled": 61457, - "ic_fluent_arrow_turn_left_down_20_filled": 61458, - "ic_fluent_arrow_turn_left_down_48_filled": 61459, - "ic_fluent_arrow_turn_left_right_20_filled": 61460, - "ic_fluent_arrow_turn_left_right_48_filled": 61461, - "ic_fluent_arrow_turn_left_up_20_filled": 61462, - "ic_fluent_arrow_turn_left_up_48_filled": 61463, - "ic_fluent_arrow_turn_right_48_filled": 61464, - "ic_fluent_arrow_turn_right_down_20_filled": 61465, - "ic_fluent_arrow_turn_right_down_48_filled": 61466, - "ic_fluent_arrow_turn_right_left_20_filled": 61467, - "ic_fluent_arrow_turn_right_left_48_filled": 61468, - "ic_fluent_arrow_turn_right_up_20_filled": 61469, - "ic_fluent_arrow_turn_right_up_48_filled": 61470, - "ic_fluent_arrow_turn_up_down_20_filled": 61471, - "ic_fluent_arrow_turn_up_down_48_filled": 61472, - "ic_fluent_arrow_turn_up_left_20_filled": 61473, - "ic_fluent_arrow_turn_up_left_48_filled": 61474, - "ic_fluent_building_townhouse_20_filled": 61475, - "ic_fluent_building_townhouse_24_filled": 61476, - "ic_fluent_building_townhouse_32_filled": 61477, - "ic_fluent_camera_sparkles_20_filled": 61478, - "ic_fluent_camera_sparkles_24_filled": 61479, - "ic_fluent_chat_bubbles_28_filled": 61480, - "ic_fluent_chat_bubbles_32_filled": 61481, - "ic_fluent_chat_bubbles_question_28_filled": 61482, - "ic_fluent_chat_bubbles_question_32_filled": 61483, - "ic_fluent_crop_16_filled": 61484, - "ic_fluent_crop_28_filled": 61485, - "ic_fluent_crop_32_filled": 61486, - "ic_fluent_crop_48_filled": 61487, - "ic_fluent_data_trending_28_filled": 61488, - "ic_fluent_data_trending_32_filled": 61489, - "ic_fluent_data_trending_48_filled": 61490, - "ic_fluent_document_database_20_filled": 61491, - "ic_fluent_document_database_24_filled": 61492, - "ic_fluent_earth_48_filled": 61493, - "ic_fluent_earth_leaf_48_filled": 61494, - "ic_fluent_elevator_48_filled": 61495, - "ic_fluent_home_split_20_filled": 61496, - "ic_fluent_home_split_24_filled": 61497, - "ic_fluent_home_split_32_filled": 61498, - "ic_fluent_home_split_48_filled": 61499, - "ic_fluent_leaf_two_48_filled": 61500, - "ic_fluent_panel_right_cursor_20_filled": 61501, - "ic_fluent_panel_right_cursor_24_filled": 61502, - "ic_fluent_person_board_28_filled": 61503, - "ic_fluent_person_board_32_filled": 61504, - "ic_fluent_person_circle_28_filled": 61505, - "ic_fluent_person_circle_32_filled": 61506, - "ic_fluent_person_square_20_filled": 61507, - "ic_fluent_person_square_24_filled": 61508, - "ic_fluent_person_starburst_20_filled": 61509, - "ic_fluent_person_starburst_24_filled": 61510, - "ic_fluent_receipt_sparkles_20_filled": 61511, - "ic_fluent_receipt_sparkles_24_filled": 61512, - "ic_fluent_ruler_28_filled": 61513, - "ic_fluent_ruler_32_filled": 61514, - "ic_fluent_ruler_48_filled": 61515, - "ic_fluent_scan_qr_code_24_filled": 61516, - "ic_fluent_showerhead_20_filled": 61517, - "ic_fluent_showerhead_24_filled": 61518, - "ic_fluent_showerhead_32_filled": 61519, - "ic_fluent_slide_text_multiple_16_filled": 61520, - "ic_fluent_slide_text_multiple_20_filled": 61521, - "ic_fluent_slide_text_multiple_24_filled": 61522, - "ic_fluent_slide_text_multiple_32_filled": 61523, - "ic_fluent_swimming_pool_20_filled": 61524, - "ic_fluent_swimming_pool_24_filled": 61525, - "ic_fluent_swimming_pool_32_filled": 61526, - "ic_fluent_swimming_pool_48_filled": 61527, - "ic_fluent_temperature_32_filled": 61528, - "ic_fluent_temperature_48_filled": 61529, - "ic_fluent_vehicle_car_32_filled": 61530, - "ic_fluent_vehicle_car_parking_16_filled": 61531, - "ic_fluent_vehicle_car_parking_32_filled": 61532, - "ic_fluent_vehicle_car_parking_48_filled": 61533, - "ic_fluent_vehicle_car_profile_ltr_clock_16_filled": 61534, - "ic_fluent_vehicle_car_profile_ltr_clock_20_filled": 61535, - "ic_fluent_vehicle_car_profile_ltr_clock_24_filled": 61536, - "ic_fluent_video_people_32_filled": 61537, - "ic_fluent_water_16_filled": 61538, - "ic_fluent_water_20_filled": 61539, - "ic_fluent_water_24_filled": 61540, - "ic_fluent_water_32_filled": 61541, - "ic_fluent_water_48_filled": 61542, - "ic_fluent_arrow_turn_down_left_20_filled": 61543, - "ic_fluent_arrow_turn_down_left_48_filled": 61544, - "ic_fluent_autosum_16_filled": 61545, - "ic_fluent_bubble_multiple_20_filled": 61546, - "ic_fluent_calculator_16_filled": 61547, - "ic_fluent_calculator_multiple_16_filled": 61548, - "ic_fluent_camera_sparkles_16_filled": 61549, - "ic_fluent_crown_16_filled": 61550, - "ic_fluent_crown_20_filled": 61551, - "ic_fluent_flag_checkered_20_filled": 61552, - "ic_fluent_glance_horizontal_16_filled": 61553, - "ic_fluent_glance_horizontal_sparkles_16_filled": 61554, - "ic_fluent_glance_horizontal_sparkles_24_filled": 61555, - "ic_fluent_grid_circles_24_filled": 61556, - "ic_fluent_grid_circles_28_filled": 61557, - "ic_fluent_heart_circle_hint_16_filled": 61558, - "ic_fluent_heart_circle_hint_20_filled": 61559, - "ic_fluent_heart_circle_hint_24_filled": 61560, - "ic_fluent_heart_circle_hint_28_filled": 61561, - "ic_fluent_heart_circle_hint_32_filled": 61562, - "ic_fluent_heart_circle_hint_48_filled": 61563, - "ic_fluent_lightbulb_28_filled": 61564, - "ic_fluent_lightbulb_32_filled": 61565, - "ic_fluent_lightbulb_48_filled": 61566, - "ic_fluent_lightbulb_person_16_filled": 61567, - "ic_fluent_lightbulb_person_20_filled": 61568, - "ic_fluent_lightbulb_person_24_filled": 61569, - "ic_fluent_lightbulb_person_28_filled": 61570, - "ic_fluent_lightbulb_person_32_filled": 61571, - "ic_fluent_lightbulb_person_48_filled": 61572, - "ic_fluent_megaphone_loud_28_filled": 61573, - "ic_fluent_megaphone_loud_32_filled": 61574, - "ic_fluent_person_walking_20_filled": 61575, - "ic_fluent_person_walking_24_filled": 61576, - "ic_fluent_receipt_16_filled": 61577, - "ic_fluent_receipt_28_filled": 61578, - "ic_fluent_receipt_sparkles_16_filled": 61579, - "ic_fluent_scan_text_16_filled": 61580, - "ic_fluent_scan_text_28_filled": 61581, - "ic_fluent_table_calculator_16_filled": 61582, - "ic_fluent_table_simple_checkmark_16_filled": 61583, - "ic_fluent_table_simple_checkmark_20_filled": 61584, - "ic_fluent_table_simple_checkmark_24_filled": 61585, - "ic_fluent_table_simple_checkmark_28_filled": 61586, - "ic_fluent_table_simple_checkmark_32_filled": 61587, - "ic_fluent_table_simple_checkmark_48_filled": 61588, - "ic_fluent_tabs_16_filled": 61589, - "ic_fluent_text_underline_double_20_filled": 61590, - "ic_fluent_text_underline_double_24_filled": 61591, - "ic_fluent_xbox_controller_error_20_filled": 61592, - "ic_fluent_xbox_controller_error_24_filled": 61593, - "ic_fluent_xbox_controller_error_32_filled": 61594, - "ic_fluent_xbox_controller_error_48_filled": 61595, - "ic_fluent_align_distribute_bottom_16_filled": 61596, - "ic_fluent_align_distribute_left_16_filled": 61597, - "ic_fluent_align_distribute_right_16_filled": 61598, - "ic_fluent_align_distribute_top_16_filled": 61599, - "ic_fluent_align_stretch_horizontal_16_filled": 61600, - "ic_fluent_align_stretch_vertical_16_filled": 61601, - "ic_fluent_arrow_next_16_filled": 61602, - "ic_fluent_arrow_previous_16_filled": 61603, - "ic_fluent_braces_checkmark_16_filled": 61604, - "ic_fluent_braces_dismiss_16_filled": 61605, - "ic_fluent_branch_16_filled": 61606, - "ic_fluent_calendar_arrow_counterclockwise_16_filled": 61607, - "ic_fluent_calendar_arrow_counterclockwise_20_filled": 61608, - "ic_fluent_calendar_arrow_counterclockwise_24_filled": 61609, - "ic_fluent_calendar_arrow_counterclockwise_28_filled": 61610, - "ic_fluent_calendar_arrow_counterclockwise_32_filled": 61611, - "ic_fluent_calendar_arrow_counterclockwise_48_filled": 61612, - "ic_fluent_calendar_play_16_filled": 61613, - "ic_fluent_calendar_play_20_filled": 61614, - "ic_fluent_calendar_play_24_filled": 61615, - "ic_fluent_calendar_play_28_filled": 61616, - "ic_fluent_calendar_shield_16_filled": 61617, - "ic_fluent_calendar_shield_20_filled": 61618, - "ic_fluent_calendar_shield_24_filled": 61619, - "ic_fluent_calendar_shield_28_filled": 61620, - "ic_fluent_calendar_shield_32_filled": 61621, - "ic_fluent_calendar_shield_48_filled": 61622, - "ic_fluent_call_transfer_24_filled": 61623, - "ic_fluent_call_transfer_32_filled": 61624, - "ic_fluent_camera_off_16_filled": 61625, - "ic_fluent_cd_16_filled": 61626, - "ic_fluent_certificate_16_filled": 61627, - "ic_fluent_clipboard_error_16_filled": 61628, - "ic_fluent_clipboard_multiple_16_filled": 61629, - "ic_fluent_clipboard_note_16_filled": 61630, - "ic_fluent_clipboard_task_16_filled": 61631, - "ic_fluent_clipboard_text_ltr_16_filled": 61632, - "ic_fluent_clipboard_text_rtl_16_filled": 61633, - "ic_fluent_cloud_add_24_filled": 61634, - "ic_fluent_cloud_edit_24_filled": 61635, - "ic_fluent_cloud_link_24_filled": 61636, - "ic_fluent_code_cs_16_filled": 61637, - "ic_fluent_code_cs_rectangle_16_filled": 61638, - "ic_fluent_code_fs_16_filled": 61639, - "ic_fluent_code_fs_rectangle_16_filled": 61640, - "ic_fluent_code_js_16_filled": 61641, - "ic_fluent_code_js_rectangle_16_filled": 61642, - "ic_fluent_code_py_16_filled": 61643, - "ic_fluent_code_py_rectangle_16_filled": 61644, - "ic_fluent_code_rb_16_filled": 61645, - "ic_fluent_code_rb_rectangle_16_filled": 61646, - "ic_fluent_code_text_off_16_filled": 61647, - "ic_fluent_code_ts_16_filled": 61648, - "ic_fluent_code_ts_rectangle_16_filled": 61649, - "ic_fluent_code_vb_16_filled": 61650, - "ic_fluent_code_vb_rectangle_16_filled": 61651, - "ic_fluent_cone_16_filled": 61652, - "ic_fluent_data_bar_horizontal_descending_16_filled": 61653, - "ic_fluent_data_bar_vertical_ascending_16_filled": 61654, - "ic_fluent_database_16_filled": 61655, - "ic_fluent_database_stack_16_filled": 61656, - "ic_fluent_developer_board_16_filled": 61657, - "ic_fluent_document_contract_16_filled": 61658, - "ic_fluent_document_cs_16_filled": 61659, - "ic_fluent_document_css_16_filled": 61660, - "ic_fluent_document_data_16_filled": 61661, - "ic_fluent_document_fs_16_filled": 61662, - "ic_fluent_document_js_16_filled": 61663, - "ic_fluent_document_number_1_16_filled": 61664, - "ic_fluent_document_py_16_filled": 61665, - "ic_fluent_document_rb_16_filled": 61666, - "ic_fluent_document_target_16_filled": 61667, - "ic_fluent_document_ts_16_filled": 61668, - "ic_fluent_document_vb_16_filled": 61669, - "ic_fluent_eyedropper_16_filled": 61670, - "ic_fluent_folder_multiple_16_filled": 61671, - "ic_fluent_folder_open_vertical_16_filled": 61672, - "ic_fluent_gantt_chart_16_filled": 61673, - "ic_fluent_hard_drive_16_filled": 61674, - "ic_fluent_hourglass_16_filled": 61675, - "ic_fluent_hourglass_half_16_filled": 61676, - "ic_fluent_hourglass_one_quarter_16_filled": 61677, - "ic_fluent_hourglass_three_quarter_16_filled": 61678, - "ic_fluent_keyboard_mouse_16_filled": 61679, - "ic_fluent_memory_16_filled": 61680, - "ic_fluent_more_circle_16_filled": 61681, - "ic_fluent_more_circle_24_filled": 61682, - "ic_fluent_more_circle_28_filled": 61683, - "ic_fluent_more_circle_48_filled": 61684, - "ic_fluent_network_adapter_16_filled": 61685, - "ic_fluent_people_star_16_filled": 61686, - "ic_fluent_people_star_20_filled": 61687, - "ic_fluent_people_star_24_filled": 61688, - "ic_fluent_people_star_28_filled": 61689, - "ic_fluent_people_star_32_filled": 61690, - "ic_fluent_people_star_48_filled": 61691, - "ic_fluent_person_search_16_filled": 61692, - "ic_fluent_person_search_32_filled": 61693, - "ic_fluent_person_standing_16_filled": 61694, - "ic_fluent_person_walking_16_filled": 61695, - "ic_fluent_play_multiple_16_filled": 61696, - "ic_fluent_radio_button_16_filled": 61779, - "ic_fluent_radio_button_off_16_filled": 61781, - "ic_fluent_ram_16_filled": 61905, - "ic_fluent_save_multiple_16_filled": 61906, - "ic_fluent_script_16_filled": 61915, - "ic_fluent_server_16_filled": 61916, - "ic_fluent_server_surface_16_filled": 61917, - "ic_fluent_server_surface_multiple_16_filled": 61958, - "ic_fluent_shield_12_filled": 61983, - "ic_fluent_slide_text_person_16_filled": 61999, - "ic_fluent_slide_text_person_20_filled": 62043, - "ic_fluent_slide_text_person_24_filled": 62044, - "ic_fluent_slide_text_person_28_filled": 62045, - "ic_fluent_slide_text_person_32_filled": 62046, - "ic_fluent_slide_text_person_48_filled": 62169, - "ic_fluent_spray_can_16_filled": 62170, - "ic_fluent_step_16_filled": 62183, - "ic_fluent_steps_16_filled": 62184, - "ic_fluent_table_lock_16_filled": 62185, - "ic_fluent_table_lock_20_filled": 62188, - "ic_fluent_table_lock_24_filled": 62189, - "ic_fluent_table_lock_28_filled": 62190, - "ic_fluent_table_lock_32_filled": 62210, - "ic_fluent_table_lock_48_filled": 62217, - "ic_fluent_text_t_tag_16_filled": 62246, - "ic_fluent_translate_16_filled": 62247, - "ic_fluent_video_person_32_filled": 62350, - "ic_fluent_video_person_clock_16_filled": 62354, - "ic_fluent_video_person_clock_20_filled": 62452, - "ic_fluent_video_person_clock_24_filled": 62453, - "ic_fluent_video_person_clock_28_filled": 62454, - "ic_fluent_video_person_clock_32_filled": 62455, - "ic_fluent_video_person_clock_48_filled": 62456, - "ic_fluent_voicemail_32_filled": 62457, - "ic_fluent_web_asset_16_filled": 62458 -} diff --git a/src/Wpf.Ui.FontMapper/FluentSystemIcons-Regular.json b/src/Wpf.Ui.FontMapper/FluentSystemIcons-Regular.json deleted file mode 100644 index bd9470d22..000000000 --- a/src/Wpf.Ui.FontMapper/FluentSystemIcons-Regular.json +++ /dev/null @@ -1,6351 +0,0 @@ -{ - "ic_fluent_access_time_24_regular": 61697, - "ic_fluent_accessibility_16_regular": 61698, - "ic_fluent_accessibility_20_regular": 61699, - "ic_fluent_accessibility_24_regular": 61700, - "ic_fluent_accessibility_28_regular": 61701, - "ic_fluent_add_12_regular": 61703, - "ic_fluent_add_16_regular": 61704, - "ic_fluent_add_20_regular": 61705, - "ic_fluent_add_24_regular": 61706, - "ic_fluent_add_28_regular": 61707, - "ic_fluent_add_circle_20_regular": 61708, - "ic_fluent_add_circle_24_regular": 61709, - "ic_fluent_add_circle_28_regular": 61710, - "ic_fluent_airplane_20_regular": 61711, - "ic_fluent_airplane_24_regular": 61712, - "ic_fluent_airplane_take_off_16_regular": 61713, - "ic_fluent_airplane_take_off_20_regular": 61714, - "ic_fluent_airplane_take_off_24_regular": 61715, - "ic_fluent_alert_20_regular": 61716, - "ic_fluent_alert_24_regular": 61717, - "ic_fluent_alert_28_regular": 61718, - "ic_fluent_alert_off_16_regular": 61719, - "ic_fluent_alert_off_20_regular": 61720, - "ic_fluent_alert_off_24_regular": 61721, - "ic_fluent_alert_off_28_regular": 61722, - "ic_fluent_alert_on_24_regular": 61723, - "ic_fluent_alert_snooze_20_regular": 61724, - "ic_fluent_alert_snooze_24_regular": 61725, - "ic_fluent_alert_urgent_20_regular": 61726, - "ic_fluent_alert_urgent_24_regular": 61727, - "ic_fluent_animal_dog_20_regular": 61728, - "ic_fluent_animal_dog_24_regular": 61729, - "ic_fluent_app_folder_20_regular": 61730, - "ic_fluent_app_folder_24_regular": 61731, - "ic_fluent_app_generic_24_regular": 61732, - "ic_fluent_app_recent_24_regular": 61733, - "ic_fluent_app_store_24_regular": 61738, - "ic_fluent_app_title_24_regular": 61739, - "ic_fluent_approvals_app_24_regular": 61744, - "ic_fluent_approvals_app_28_regular": 61745, - "ic_fluent_apps_16_regular": 61746, - "ic_fluent_apps_20_regular": 61747, - "ic_fluent_apps_24_regular": 61748, - "ic_fluent_apps_28_regular": 61749, - "ic_fluent_apps_add_in_20_regular": 61750, - "ic_fluent_apps_add_in_24_regular": 61751, - "ic_fluent_apps_list_24_regular": 61752, - "ic_fluent_archive_20_regular": 61753, - "ic_fluent_archive_24_regular": 61754, - "ic_fluent_archive_28_regular": 61755, - "ic_fluent_archive_48_regular": 61756, - "ic_fluent_arrow_clockwise_20_regular": 61757, - "ic_fluent_arrow_clockwise_24_regular": 61758, - "ic_fluent_arrow_counterclockwise_20_regular": 61759, - "ic_fluent_arrow_counterclockwise_24_regular": 61760, - "ic_fluent_arrow_curve_down_left_20_regular": 61761, - "ic_fluent_arrow_curve_down_right_20_regular": 61762, - "ic_fluent_arrow_curve_up_left_20_regular": 61765, - "ic_fluent_arrow_curve_up_right_20_regular": 61766, - "ic_fluent_arrow_down_16_regular": 61767, - "ic_fluent_arrow_down_20_regular": 61768, - "ic_fluent_arrow_down_24_regular": 61769, - "ic_fluent_arrow_down_28_regular": 61770, - "ic_fluent_arrow_down_left_24_regular": 61771, - "ic_fluent_arrow_download_16_regular": 61775, - "ic_fluent_arrow_download_20_regular": 61776, - "ic_fluent_arrow_download_24_regular": 61777, - "ic_fluent_arrow_download_48_regular": 61778, - "ic_fluent_arrow_expand_24_regular": 61780, - "ic_fluent_arrow_forward_16_regular": 61782, - "ic_fluent_arrow_forward_20_regular": 61783, - "ic_fluent_arrow_forward_24_regular": 61784, - "ic_fluent_arrow_import_20_regular": 61785, - "ic_fluent_arrow_import_24_regular": 61786, - "ic_fluent_arrow_left_20_regular": 61787, - "ic_fluent_arrow_left_24_regular": 61788, - "ic_fluent_arrow_left_28_regular": 61789, - "ic_fluent_arrow_maximize_16_regular": 61790, - "ic_fluent_arrow_maximize_20_regular": 61791, - "ic_fluent_arrow_maximize_24_regular": 61792, - "ic_fluent_arrow_maximize_28_regular": 61793, - "ic_fluent_arrow_maximize_vertical_20_regular": 61794, - "ic_fluent_arrow_maximize_vertical_24_regular": 61795, - "ic_fluent_arrow_minimize_16_regular": 61796, - "ic_fluent_arrow_minimize_20_regular": 61797, - "ic_fluent_arrow_minimize_24_regular": 61798, - "ic_fluent_arrow_minimize_28_regular": 61799, - "ic_fluent_arrow_minimize_vertical_24_regular": 61800, - "ic_fluent_arrow_move_24_regular": 61801, - "ic_fluent_arrow_next_20_regular": 61802, - "ic_fluent_arrow_next_24_regular": 61803, - "ic_fluent_arrow_previous_20_regular": 61804, - "ic_fluent_arrow_previous_24_regular": 61805, - "ic_fluent_arrow_redo_20_regular": 61806, - "ic_fluent_arrow_redo_24_regular": 61807, - "ic_fluent_arrow_repeat_all_16_regular": 61808, - "ic_fluent_arrow_repeat_all_20_regular": 61809, - "ic_fluent_arrow_repeat_all_24_regular": 61810, - "ic_fluent_arrow_repeat_all_off_16_regular": 61811, - "ic_fluent_arrow_repeat_all_off_20_regular": 61812, - "ic_fluent_arrow_repeat_all_off_24_regular": 61813, - "ic_fluent_arrow_reply_16_regular": 61814, - "ic_fluent_arrow_reply_20_regular": 61815, - "ic_fluent_arrow_reply_24_regular": 61816, - "ic_fluent_arrow_reply_48_regular": 61817, - "ic_fluent_arrow_reply_all_16_regular": 61818, - "ic_fluent_arrow_reply_all_20_regular": 61819, - "ic_fluent_arrow_reply_all_24_regular": 61820, - "ic_fluent_arrow_reply_all_48_regular": 61821, - "ic_fluent_arrow_reply_down_16_regular": 61822, - "ic_fluent_arrow_reply_down_20_regular": 61823, - "ic_fluent_arrow_reply_down_24_regular": 61824, - "ic_fluent_arrow_right_20_regular": 61825, - "ic_fluent_arrow_right_24_regular": 61826, - "ic_fluent_arrow_right_28_regular": 61827, - "ic_fluent_arrow_rotate_clockwise_20_regular": 61829, - "ic_fluent_arrow_rotate_clockwise_24_regular": 61830, - "ic_fluent_arrow_rotate_counterclockwise_20_regular": 61831, - "ic_fluent_arrow_rotate_counterclockwise_24_regular": 61832, - "ic_fluent_arrow_sort_20_regular": 61834, - "ic_fluent_arrow_sort_24_regular": 61835, - "ic_fluent_arrow_sort_28_regular": 61836, - "ic_fluent_arrow_swap_20_regular": 61837, - "ic_fluent_arrow_swap_24_regular": 61838, - "ic_fluent_arrow_sync_12_regular": 61839, - "ic_fluent_arrow_sync_20_regular": 61840, - "ic_fluent_arrow_sync_24_regular": 61841, - "ic_fluent_arrow_sync_circle_16_regular": 61842, - "ic_fluent_arrow_sync_circle_20_regular": 61843, - "ic_fluent_arrow_sync_circle_24_regular": 61844, - "ic_fluent_arrow_sync_off_12_regular": 61845, - "ic_fluent_arrow_trending_16_regular": 61846, - "ic_fluent_arrow_trending_20_regular": 61847, - "ic_fluent_arrow_trending_24_regular": 61848, - "ic_fluent_arrow_undo_20_regular": 61849, - "ic_fluent_arrow_undo_24_regular": 61850, - "ic_fluent_arrow_up_20_regular": 61851, - "ic_fluent_arrow_up_24_regular": 61852, - "ic_fluent_arrow_up_28_regular": 61853, - "ic_fluent_arrow_up_left_24_regular": 61857, - "ic_fluent_arrow_up_right_24_regular": 61859, - "ic_fluent_arrow_upload_20_regular": 61860, - "ic_fluent_arrow_upload_24_regular": 61861, - "ic_fluent_arrows_bidirectional_24_regular": 61862, - "ic_fluent_attach_16_regular": 61864, - "ic_fluent_attach_20_regular": 61865, - "ic_fluent_attach_24_regular": 61866, - "ic_fluent_autocorrect_24_regular": 61870, - "ic_fluent_autosum_20_regular": 61871, - "ic_fluent_autosum_24_regular": 61872, - "ic_fluent_backspace_20_regular": 61873, - "ic_fluent_backspace_24_regular": 61874, - "ic_fluent_badge_24_regular": 61877, - "ic_fluent_balloon_20_regular": 61878, - "ic_fluent_balloon_24_regular": 61879, - "ic_fluent_battery_0_20_regular": 61883, - "ic_fluent_battery_0_24_regular": 61884, - "ic_fluent_battery_1_20_regular": 61885, - "ic_fluent_battery_1_24_regular": 61886, - "ic_fluent_battery_2_20_regular": 61887, - "ic_fluent_battery_2_24_regular": 61888, - "ic_fluent_battery_3_20_regular": 61889, - "ic_fluent_battery_3_24_regular": 61890, - "ic_fluent_battery_4_20_regular": 61891, - "ic_fluent_battery_4_24_regular": 61892, - "ic_fluent_battery_5_20_regular": 61893, - "ic_fluent_battery_5_24_regular": 61894, - "ic_fluent_battery_6_20_regular": 61895, - "ic_fluent_battery_6_24_regular": 61896, - "ic_fluent_battery_7_20_regular": 61897, - "ic_fluent_battery_7_24_regular": 61898, - "ic_fluent_battery_8_20_regular": 61899, - "ic_fluent_battery_8_24_regular": 61900, - "ic_fluent_battery_9_20_regular": 61901, - "ic_fluent_battery_9_24_regular": 61902, - "ic_fluent_battery_charge_20_regular": 61903, - "ic_fluent_battery_charge_24_regular": 61904, - "ic_fluent_battery_saver_20_regular": 61907, - "ic_fluent_battery_saver_24_regular": 61908, - "ic_fluent_battery_warning_24_regular": 61909, - "ic_fluent_beaker_16_regular": 61910, - "ic_fluent_beaker_20_regular": 61911, - "ic_fluent_beaker_24_regular": 61912, - "ic_fluent_bed_20_regular": 61913, - "ic_fluent_bed_24_regular": 61914, - "ic_fluent_bluetooth_20_regular": 61918, - "ic_fluent_bluetooth_24_regular": 61919, - "ic_fluent_bluetooth_connected_24_regular": 61920, - "ic_fluent_bluetooth_disabled_24_regular": 61921, - "ic_fluent_bluetooth_searching_24_regular": 61922, - "ic_fluent_board_24_regular": 61923, - "ic_fluent_book_globe_24_regular": 61936, - "ic_fluent_book_number_16_regular": 61937, - "ic_fluent_book_number_20_regular": 61938, - "ic_fluent_book_number_24_regular": 61939, - "ic_fluent_bookmark_16_regular": 61940, - "ic_fluent_bookmark_20_regular": 61941, - "ic_fluent_bookmark_24_regular": 61942, - "ic_fluent_bookmark_28_regular": 61943, - "ic_fluent_bookmark_off_24_regular": 61944, - "ic_fluent_bot_24_regular": 61945, - "ic_fluent_bot_add_24_regular": 61946, - "ic_fluent_branch_24_regular": 61947, - "ic_fluent_briefcase_20_regular": 61948, - "ic_fluent_briefcase_24_regular": 61949, - "ic_fluent_broad_activity_feed_24_regular": 61952, - "ic_fluent_broom_20_regular": 61953, - "ic_fluent_broom_24_regular": 61954, - "ic_fluent_building_24_regular": 61957, - "ic_fluent_building_retail_24_regular": 61961, - "ic_fluent_calculator_20_regular": 61962, - "ic_fluent_calendar_3_day_20_regular": 61966, - "ic_fluent_calendar_3_day_24_regular": 61967, - "ic_fluent_calendar_3_day_28_regular": 61968, - "ic_fluent_calendar_add_20_regular": 61969, - "ic_fluent_calendar_add_24_regular": 61970, - "ic_fluent_calendar_agenda_20_regular": 61971, - "ic_fluent_calendar_agenda_24_regular": 61972, - "ic_fluent_calendar_agenda_28_regular": 61973, - "ic_fluent_calendar_arrow_right_20_regular": 61974, - "ic_fluent_calendar_assistant_20_regular": 61975, - "ic_fluent_calendar_assistant_24_regular": 61976, - "ic_fluent_calendar_cancel_20_regular": 61977, - "ic_fluent_calendar_cancel_24_regular": 61978, - "ic_fluent_calendar_checkmark_16_regular": 61979, - "ic_fluent_calendar_checkmark_20_regular": 61980, - "ic_fluent_calendar_clock_20_regular": 61981, - "ic_fluent_calendar_clock_24_regular": 61982, - "ic_fluent_calendar_day_20_regular": 61986, - "ic_fluent_calendar_day_24_regular": 61987, - "ic_fluent_calendar_day_28_regular": 61988, - "ic_fluent_calendar_empty_16_regular": 61989, - "ic_fluent_calendar_empty_20_regular": 61990, - "ic_fluent_calendar_empty_24_regular": 61991, - "ic_fluent_calendar_empty_28_regular": 61992, - "ic_fluent_calendar_month_20_regular": 61994, - "ic_fluent_calendar_month_24_regular": 61995, - "ic_fluent_calendar_month_28_regular": 61996, - "ic_fluent_calendar_multiple_20_regular": 61997, - "ic_fluent_calendar_multiple_24_regular": 61998, - "ic_fluent_calendar_person_20_regular": 62000, - "ic_fluent_calendar_reply_16_regular": 62001, - "ic_fluent_calendar_reply_20_regular": 62002, - "ic_fluent_calendar_reply_24_regular": 62003, - "ic_fluent_calendar_reply_28_regular": 62004, - "ic_fluent_calendar_settings_20_regular": 62005, - "ic_fluent_calendar_star_20_regular": 62006, - "ic_fluent_calendar_star_24_regular": 62007, - "ic_fluent_calendar_sync_16_regular": 62008, - "ic_fluent_calendar_sync_20_regular": 62009, - "ic_fluent_calendar_sync_24_regular": 62010, - "ic_fluent_calendar_today_16_regular": 62011, - "ic_fluent_calendar_today_20_regular": 62012, - "ic_fluent_calendar_today_24_regular": 62013, - "ic_fluent_calendar_today_28_regular": 62014, - "ic_fluent_calendar_week_numbers_24_regular": 62015, - "ic_fluent_calendar_week_start_20_regular": 62016, - "ic_fluent_calendar_week_start_24_regular": 62017, - "ic_fluent_calendar_week_start_28_regular": 62018, - "ic_fluent_calendar_work_week_16_regular": 62019, - "ic_fluent_calendar_work_week_20_regular": 62020, - "ic_fluent_calendar_work_week_24_regular": 62021, - "ic_fluent_call_add_24_regular": 62022, - "ic_fluent_call_end_20_regular": 62023, - "ic_fluent_call_end_24_regular": 62024, - "ic_fluent_call_end_28_regular": 62025, - "ic_fluent_call_forward_24_regular": 62026, - "ic_fluent_call_inbound_16_regular": 62027, - "ic_fluent_call_inbound_24_regular": 62028, - "ic_fluent_call_missed_16_regular": 62029, - "ic_fluent_call_missed_24_regular": 62030, - "ic_fluent_call_outbound_16_regular": 62031, - "ic_fluent_call_outbound_24_regular": 62032, - "ic_fluent_call_park_24_regular": 62033, - "ic_fluent_calligraphy_pen_20_regular": 62034, - "ic_fluent_calligraphy_pen_24_regular": 62035, - "ic_fluent_camera_20_regular": 62036, - "ic_fluent_camera_24_regular": 62037, - "ic_fluent_camera_28_regular": 62038, - "ic_fluent_camera_add_20_regular": 62039, - "ic_fluent_camera_add_24_regular": 62040, - "ic_fluent_camera_add_48_regular": 62041, - "ic_fluent_camera_switch_24_regular": 62042, - "ic_fluent_caret_down_12_regular": 62047, - "ic_fluent_caret_down_16_regular": 62048, - "ic_fluent_caret_down_20_regular": 62049, - "ic_fluent_caret_down_24_regular": 62050, - "ic_fluent_caret_left_12_regular": 62051, - "ic_fluent_caret_left_16_regular": 62052, - "ic_fluent_caret_left_20_regular": 62053, - "ic_fluent_caret_left_24_regular": 62054, - "ic_fluent_caret_right_12_regular": 62055, - "ic_fluent_caret_right_16_regular": 62056, - "ic_fluent_caret_right_20_regular": 62057, - "ic_fluent_caret_right_24_regular": 62058, - "ic_fluent_cart_24_regular": 62059, - "ic_fluent_cast_20_regular": 62060, - "ic_fluent_cast_24_regular": 62061, - "ic_fluent_cast_28_regular": 62062, - "ic_fluent_cellular_3g_24_regular": 62063, - "ic_fluent_cellular_4g_24_regular": 62064, - "ic_fluent_cellular_data_1_20_regular": 62065, - "ic_fluent_cellular_data_1_24_regular": 62066, - "ic_fluent_cellular_data_2_20_regular": 62067, - "ic_fluent_cellular_data_2_24_regular": 62068, - "ic_fluent_cellular_data_3_20_regular": 62069, - "ic_fluent_cellular_data_3_24_regular": 62070, - "ic_fluent_cellular_data_4_20_regular": 62071, - "ic_fluent_cellular_data_4_24_regular": 62072, - "ic_fluent_cellular_data_5_20_regular": 62073, - "ic_fluent_cellular_data_5_24_regular": 62074, - "ic_fluent_certificate_20_regular": 62078, - "ic_fluent_certificate_24_regular": 62079, - "ic_fluent_channel_16_regular": 62080, - "ic_fluent_channel_20_regular": 62081, - "ic_fluent_channel_24_regular": 62082, - "ic_fluent_chat_20_regular": 62086, - "ic_fluent_chat_24_regular": 62087, - "ic_fluent_chat_28_regular": 62088, - "ic_fluent_chat_bubbles_question_24_regular": 62089, - "ic_fluent_chat_help_24_regular": 62090, - "ic_fluent_chat_off_24_regular": 62091, - "ic_fluent_chat_warning_24_regular": 62092, - "ic_fluent_checkbox_checked_20_regular": 62093, - "ic_fluent_checkbox_checked_24_regular": 62094, - "ic_fluent_checkbox_unchecked_12_regular": 62095, - "ic_fluent_checkbox_unchecked_16_regular": 62096, - "ic_fluent_checkbox_unchecked_20_regular": 62097, - "ic_fluent_checkbox_unchecked_24_regular": 62098, - "ic_fluent_checkmark_12_regular": 62099, - "ic_fluent_checkmark_20_regular": 62100, - "ic_fluent_checkmark_24_regular": 62101, - "ic_fluent_checkmark_28_regular": 62102, - "ic_fluent_checkmark_circle_16_regular": 62103, - "ic_fluent_checkmark_circle_20_regular": 62104, - "ic_fluent_checkmark_circle_24_regular": 62105, - "ic_fluent_checkmark_circle_48_regular": 62106, - "ic_fluent_checkmark_lock_16_regular": 62107, - "ic_fluent_checkmark_lock_20_regular": 62108, - "ic_fluent_checkmark_lock_24_regular": 62109, - "ic_fluent_checkmark_square_24_regular": 62110, - "ic_fluent_checkmark_underline_circle_16_regular": 62111, - "ic_fluent_checkmark_underline_circle_20_regular": 62112, - "ic_fluent_chevron_down_12_regular": 62113, - "ic_fluent_chevron_down_16_regular": 62114, - "ic_fluent_chevron_down_20_regular": 62115, - "ic_fluent_chevron_down_24_regular": 62116, - "ic_fluent_chevron_down_28_regular": 62117, - "ic_fluent_chevron_down_48_regular": 62118, - "ic_fluent_chevron_left_12_regular": 62120, - "ic_fluent_chevron_left_16_regular": 62121, - "ic_fluent_chevron_left_20_regular": 62122, - "ic_fluent_chevron_left_24_regular": 62123, - "ic_fluent_chevron_left_28_regular": 62124, - "ic_fluent_chevron_left_48_regular": 62125, - "ic_fluent_chevron_right_12_regular": 62126, - "ic_fluent_chevron_right_16_regular": 62127, - "ic_fluent_chevron_right_20_regular": 62128, - "ic_fluent_chevron_right_24_regular": 62129, - "ic_fluent_chevron_right_28_regular": 62130, - "ic_fluent_chevron_right_48_regular": 62131, - "ic_fluent_chevron_up_12_regular": 62132, - "ic_fluent_chevron_up_16_regular": 62133, - "ic_fluent_chevron_up_20_regular": 62134, - "ic_fluent_chevron_up_24_regular": 62135, - "ic_fluent_chevron_up_28_regular": 62136, - "ic_fluent_chevron_up_48_regular": 62137, - "ic_fluent_circle_16_regular": 62138, - "ic_fluent_circle_20_regular": 62139, - "ic_fluent_circle_24_regular": 62140, - "ic_fluent_circle_half_fill_20_regular": 62141, - "ic_fluent_circle_half_fill_24_regular": 62142, - "ic_fluent_circle_line_24_regular": 62143, - "ic_fluent_circle_small_24_regular": 62144, - "ic_fluent_city_16_regular": 62145, - "ic_fluent_city_20_regular": 62146, - "ic_fluent_city_24_regular": 62147, - "ic_fluent_class_24_regular": 62148, - "ic_fluent_classification_16_regular": 62149, - "ic_fluent_classification_20_regular": 62150, - "ic_fluent_classification_24_regular": 62151, - "ic_fluent_clear_formatting_24_regular": 62152, - "ic_fluent_clipboard_20_regular": 62153, - "ic_fluent_clipboard_24_regular": 62154, - "ic_fluent_clipboard_code_16_regular": 62155, - "ic_fluent_clipboard_code_20_regular": 62156, - "ic_fluent_clipboard_code_24_regular": 62157, - "ic_fluent_clipboard_letter_16_regular": 62158, - "ic_fluent_clipboard_letter_20_regular": 62159, - "ic_fluent_clipboard_letter_24_regular": 62160, - "ic_fluent_clipboard_link_16_regular": 62161, - "ic_fluent_clipboard_link_20_regular": 62162, - "ic_fluent_clipboard_link_24_regular": 62163, - "ic_fluent_clipboard_more_24_regular": 62164, - "ic_fluent_clipboard_paste_20_regular": 62165, - "ic_fluent_clipboard_paste_24_regular": 62166, - "ic_fluent_clipboard_search_20_regular": 62167, - "ic_fluent_clipboard_search_24_regular": 62168, - "ic_fluent_clock_12_regular": 62171, - "ic_fluent_clock_16_regular": 62172, - "ic_fluent_clock_20_regular": 62173, - "ic_fluent_clock_24_regular": 62174, - "ic_fluent_clock_28_regular": 62175, - "ic_fluent_clock_48_regular": 62176, - "ic_fluent_clock_alarm_20_regular": 62177, - "ic_fluent_clock_alarm_24_regular": 62178, - "ic_fluent_closed_caption_24_regular": 62179, - "ic_fluent_cloud_20_regular": 62180, - "ic_fluent_cloud_24_regular": 62181, - "ic_fluent_cloud_48_regular": 62182, - "ic_fluent_cloud_off_24_regular": 62186, - "ic_fluent_cloud_off_48_regular": 62187, - "ic_fluent_code_20_regular": 62191, - "ic_fluent_code_24_regular": 62192, - "ic_fluent_collections_20_regular": 62193, - "ic_fluent_collections_24_regular": 62194, - "ic_fluent_collections_add_20_regular": 62195, - "ic_fluent_collections_add_24_regular": 62196, - "ic_fluent_color_20_regular": 62197, - "ic_fluent_color_24_regular": 62198, - "ic_fluent_color_background_20_regular": 62199, - "ic_fluent_color_background_24_regular": 62200, - "ic_fluent_color_fill_20_regular": 62201, - "ic_fluent_color_fill_24_regular": 62202, - "ic_fluent_color_line_20_regular": 62203, - "ic_fluent_color_line_24_regular": 62204, - "ic_fluent_column_triple_24_regular": 62205, - "ic_fluent_comment_16_regular": 62206, - "ic_fluent_comment_20_regular": 62207, - "ic_fluent_comment_24_regular": 62208, - "ic_fluent_comment_add_24_regular": 62209, - "ic_fluent_comment_mention_16_regular": 62211, - "ic_fluent_comment_mention_20_regular": 62212, - "ic_fluent_comment_mention_24_regular": 62213, - "ic_fluent_comment_multiple_16_regular": 62214, - "ic_fluent_comment_multiple_20_regular": 62215, - "ic_fluent_comment_multiple_24_regular": 62216, - "ic_fluent_communication_16_regular": 62220, - "ic_fluent_communication_20_regular": 62221, - "ic_fluent_communication_24_regular": 62222, - "ic_fluent_compass_northwest_16_regular": 62223, - "ic_fluent_compass_northwest_20_regular": 62224, - "ic_fluent_compass_northwest_24_regular": 62225, - "ic_fluent_compass_northwest_28_regular": 62226, - "ic_fluent_compose_16_regular": 62227, - "ic_fluent_compose_20_regular": 62228, - "ic_fluent_compose_24_regular": 62229, - "ic_fluent_compose_28_regular": 62230, - "ic_fluent_conference_room_16_regular": 62231, - "ic_fluent_conference_room_20_regular": 62232, - "ic_fluent_conference_room_24_regular": 62233, - "ic_fluent_conference_room_28_regular": 62234, - "ic_fluent_conference_room_48_regular": 62235, - "ic_fluent_connector_16_regular": 62236, - "ic_fluent_connector_20_regular": 62237, - "ic_fluent_connector_24_regular": 62238, - "ic_fluent_contact_card_20_regular": 62239, - "ic_fluent_contact_card_24_regular": 62240, - "ic_fluent_contact_card_group_24_regular": 62241, - "ic_fluent_content_settings_16_regular": 62243, - "ic_fluent_content_settings_20_regular": 62244, - "ic_fluent_content_settings_24_regular": 62245, - "ic_fluent_cookies_20_regular": 62248, - "ic_fluent_cookies_24_regular": 62249, - "ic_fluent_copy_16_regular": 62250, - "ic_fluent_copy_20_regular": 62251, - "ic_fluent_copy_24_regular": 62252, - "ic_fluent_crop_24_regular": 62257, - "ic_fluent_crop_interim_24_regular": 62258, - "ic_fluent_crop_interim_off_24_regular": 62259, - "ic_fluent_cube_16_regular": 62260, - "ic_fluent_cube_20_regular": 62261, - "ic_fluent_cube_24_regular": 62262, - "ic_fluent_cut_20_regular": 62266, - "ic_fluent_cut_24_regular": 62267, - "ic_fluent_dark_theme_24_regular": 62268, - "ic_fluent_data_area_24_regular": 62269, - "ic_fluent_data_bar_horizontal_24_regular": 62270, - "ic_fluent_data_bar_vertical_20_regular": 62271, - "ic_fluent_data_bar_vertical_24_regular": 62272, - "ic_fluent_data_funnel_24_regular": 62273, - "ic_fluent_data_histogram_24_regular": 62274, - "ic_fluent_data_line_24_regular": 62275, - "ic_fluent_data_pie_20_regular": 62276, - "ic_fluent_data_pie_24_regular": 62277, - "ic_fluent_data_scatter_24_regular": 62278, - "ic_fluent_data_sunburst_24_regular": 62279, - "ic_fluent_data_treemap_24_regular": 62280, - "ic_fluent_data_usage_24_regular": 62281, - "ic_fluent_data_waterfall_24_regular": 62282, - "ic_fluent_data_whisker_24_regular": 62283, - "ic_fluent_delete_20_regular": 62284, - "ic_fluent_delete_24_regular": 62285, - "ic_fluent_delete_28_regular": 62286, - "ic_fluent_delete_48_regular": 62287, - "ic_fluent_delete_off_20_regular": 62290, - "ic_fluent_delete_off_24_regular": 62291, - "ic_fluent_dentist_24_regular": 62292, - "ic_fluent_design_ideas_16_regular": 62293, - "ic_fluent_design_ideas_20_regular": 62294, - "ic_fluent_design_ideas_24_regular": 62295, - "ic_fluent_desktop_16_regular": 62296, - "ic_fluent_desktop_20_regular": 62297, - "ic_fluent_desktop_24_regular": 62298, - "ic_fluent_desktop_28_regular": 62299, - "ic_fluent_developer_board_24_regular": 62300, - "ic_fluent_device_eq_24_regular": 62301, - "ic_fluent_dialpad_20_regular": 62302, - "ic_fluent_dialpad_24_regular": 62303, - "ic_fluent_dialpad_off_24_regular": 62304, - "ic_fluent_directions_20_regular": 62309, - "ic_fluent_directions_24_regular": 62310, - "ic_fluent_dismiss_12_regular": 62311, - "ic_fluent_dismiss_16_regular": 62312, - "ic_fluent_dismiss_20_regular": 62313, - "ic_fluent_dismiss_24_regular": 62314, - "ic_fluent_dismiss_28_regular": 62315, - "ic_fluent_dismiss_circle_16_regular": 62316, - "ic_fluent_dismiss_circle_20_regular": 62317, - "ic_fluent_dismiss_circle_24_regular": 62318, - "ic_fluent_dismiss_circle_48_regular": 62319, - "ic_fluent_divider_short_24_regular": 62320, - "ic_fluent_divider_tall_24_regular": 62321, - "ic_fluent_dock_24_regular": 62322, - "ic_fluent_dock_row_24_regular": 62326, - "ic_fluent_doctor_24_regular": 62327, - "ic_fluent_document_20_regular": 62328, - "ic_fluent_document_24_regular": 62329, - "ic_fluent_document_28_regular": 62330, - "ic_fluent_document_briefcase_20_regular": 62332, - "ic_fluent_document_briefcase_24_regular": 62333, - "ic_fluent_document_catch_up_24_regular": 62334, - "ic_fluent_document_copy_16_regular": 62335, - "ic_fluent_document_copy_20_regular": 62336, - "ic_fluent_document_copy_24_regular": 62337, - "ic_fluent_document_copy_48_regular": 62338, - "ic_fluent_document_dismiss_20_regular": 62339, - "ic_fluent_document_dismiss_24_regular": 62340, - "ic_fluent_document_edit_16_regular": 62341, - "ic_fluent_document_edit_20_regular": 62342, - "ic_fluent_document_edit_24_regular": 62343, - "ic_fluent_document_endnote_20_regular": 62344, - "ic_fluent_document_endnote_24_regular": 62345, - "ic_fluent_document_error_16_regular": 62346, - "ic_fluent_document_error_20_regular": 62347, - "ic_fluent_document_error_24_regular": 62348, - "ic_fluent_document_footer_24_regular": 62349, - "ic_fluent_document_header_24_regular": 62351, - "ic_fluent_document_header_footer_20_regular": 62352, - "ic_fluent_document_header_footer_24_regular": 62353, - "ic_fluent_document_landscape_20_regular": 62355, - "ic_fluent_document_landscape_24_regular": 62356, - "ic_fluent_document_margins_20_regular": 62357, - "ic_fluent_document_margins_24_regular": 62358, - "ic_fluent_document_one_page_20_regular": 62361, - "ic_fluent_document_one_page_24_regular": 62362, - "ic_fluent_document_page_bottom_center_20_regular": 62364, - "ic_fluent_document_page_bottom_center_24_regular": 62365, - "ic_fluent_document_page_bottom_left_20_regular": 62366, - "ic_fluent_document_page_bottom_left_24_regular": 62367, - "ic_fluent_document_page_bottom_right_20_regular": 62368, - "ic_fluent_document_page_bottom_right_24_regular": 62369, - "ic_fluent_document_page_break_24_regular": 62370, - "ic_fluent_document_page_number_20_regular": 62371, - "ic_fluent_document_page_number_24_regular": 62372, - "ic_fluent_document_page_top_center_20_regular": 62373, - "ic_fluent_document_page_top_center_24_regular": 62374, - "ic_fluent_document_page_top_left_20_regular": 62375, - "ic_fluent_document_page_top_left_24_regular": 62376, - "ic_fluent_document_page_top_right_20_regular": 62377, - "ic_fluent_document_page_top_right_24_regular": 62378, - "ic_fluent_document_pdf_16_regular": 62379, - "ic_fluent_document_pdf_20_regular": 62380, - "ic_fluent_document_pdf_24_regular": 62381, - "ic_fluent_document_search_20_regular": 62382, - "ic_fluent_document_search_24_regular": 62383, - "ic_fluent_document_toolbox_20_regular": 62384, - "ic_fluent_document_toolbox_24_regular": 62385, - "ic_fluent_document_width_20_regular": 62392, - "ic_fluent_document_width_24_regular": 62393, - "ic_fluent_double_swipe_down_24_regular": 62394, - "ic_fluent_double_swipe_up_24_regular": 62395, - "ic_fluent_drafts_16_regular": 62398, - "ic_fluent_drafts_20_regular": 62399, - "ic_fluent_drafts_24_regular": 62400, - "ic_fluent_drag_24_regular": 62401, - "ic_fluent_drink_beer_24_regular": 62403, - "ic_fluent_drink_coffee_20_regular": 62404, - "ic_fluent_drink_coffee_24_regular": 62405, - "ic_fluent_drink_margarita_24_regular": 62406, - "ic_fluent_drink_wine_24_regular": 62407, - "ic_fluent_dual_screen_24_regular": 62408, - "ic_fluent_dual_screen_add_24_regular": 62409, - "ic_fluent_dual_screen_arrow_right_24_regular": 62410, - "ic_fluent_dual_screen_clock_24_regular": 62411, - "ic_fluent_dual_screen_desktop_24_regular": 62412, - "ic_fluent_dual_screen_group_24_regular": 62414, - "ic_fluent_dual_screen_header_24_regular": 62415, - "ic_fluent_dual_screen_lock_24_regular": 62416, - "ic_fluent_dual_screen_mirror_24_regular": 62417, - "ic_fluent_dual_screen_pagination_24_regular": 62418, - "ic_fluent_dual_screen_settings_24_regular": 62419, - "ic_fluent_dual_screen_status_bar_24_regular": 62420, - "ic_fluent_dual_screen_tablet_24_regular": 62421, - "ic_fluent_dual_screen_update_24_regular": 62422, - "ic_fluent_dual_screen_vertical_scroll_24_regular": 62423, - "ic_fluent_dual_screen_vibrate_24_regular": 62424, - "ic_fluent_earth_16_regular": 62425, - "ic_fluent_earth_20_regular": 62426, - "ic_fluent_earth_24_regular": 62427, - "ic_fluent_edit_16_regular": 62428, - "ic_fluent_edit_20_regular": 62429, - "ic_fluent_edit_24_regular": 62430, - "ic_fluent_emoji_16_regular": 62431, - "ic_fluent_emoji_20_regular": 62432, - "ic_fluent_emoji_24_regular": 62433, - "ic_fluent_emoji_add_24_regular": 62434, - "ic_fluent_emoji_angry_20_regular": 62435, - "ic_fluent_emoji_angry_24_regular": 62436, - "ic_fluent_emoji_laugh_20_regular": 62437, - "ic_fluent_emoji_laugh_24_regular": 62438, - "ic_fluent_emoji_meh_20_regular": 62439, - "ic_fluent_emoji_meh_24_regular": 62440, - "ic_fluent_emoji_sad_20_regular": 62441, - "ic_fluent_emoji_sad_24_regular": 62442, - "ic_fluent_emoji_surprise_20_regular": 62443, - "ic_fluent_emoji_surprise_24_regular": 62444, - "ic_fluent_eraser_tool_24_regular": 62447, - "ic_fluent_error_circle_16_regular": 62448, - "ic_fluent_error_circle_20_regular": 62449, - "ic_fluent_error_circle_24_regular": 62450, - "ic_fluent_extended_dock_24_regular": 62452, - "ic_fluent_fast_acceleration_24_regular": 62461, - "ic_fluent_fast_forward_20_regular": 62462, - "ic_fluent_fast_forward_24_regular": 62463, - "ic_fluent_filter_20_regular": 62470, - "ic_fluent_filter_24_regular": 62471, - "ic_fluent_filter_28_regular": 62472, - "ic_fluent_fingerprint_24_regular": 62473, - "ic_fluent_flag_16_regular": 62474, - "ic_fluent_flag_20_regular": 62475, - "ic_fluent_flag_24_regular": 62476, - "ic_fluent_flag_28_regular": 62477, - "ic_fluent_flag_48_regular": 62478, - "ic_fluent_flag_off_24_regular": 62479, - "ic_fluent_flag_off_28_regular": 62480, - "ic_fluent_flag_off_48_regular": 62481, - "ic_fluent_flash_auto_24_regular": 62482, - "ic_fluent_flash_off_24_regular": 62483, - "ic_fluent_flashlight_24_regular": 62486, - "ic_fluent_flashlight_off_24_regular": 62487, - "ic_fluent_folder_20_regular": 62488, - "ic_fluent_folder_24_regular": 62489, - "ic_fluent_folder_28_regular": 62490, - "ic_fluent_folder_48_regular": 62491, - "ic_fluent_folder_add_20_regular": 62492, - "ic_fluent_folder_add_24_regular": 62493, - "ic_fluent_folder_add_28_regular": 62494, - "ic_fluent_folder_add_48_regular": 62495, - "ic_fluent_folder_briefcase_20_regular": 62496, - "ic_fluent_folder_link_20_regular": 62501, - "ic_fluent_folder_link_24_regular": 62502, - "ic_fluent_folder_link_28_regular": 62503, - "ic_fluent_folder_link_48_regular": 62504, - "ic_fluent_folder_open_16_regular": 62509, - "ic_fluent_folder_open_20_regular": 62510, - "ic_fluent_folder_open_24_regular": 62511, - "ic_fluent_folder_open_vertical_20_regular": 62512, - "ic_fluent_folder_zip_16_regular": 62516, - "ic_fluent_folder_zip_20_regular": 62517, - "ic_fluent_folder_zip_24_regular": 62518, - "ic_fluent_font_decrease_20_regular": 62519, - "ic_fluent_font_decrease_24_regular": 62520, - "ic_fluent_font_increase_20_regular": 62521, - "ic_fluent_font_increase_24_regular": 62522, - "ic_fluent_font_space_tracking_in_16_regular": 62523, - "ic_fluent_font_space_tracking_in_20_regular": 62524, - "ic_fluent_font_space_tracking_in_24_regular": 62525, - "ic_fluent_font_space_tracking_in_28_regular": 62526, - "ic_fluent_font_space_tracking_out_16_regular": 62527, - "ic_fluent_font_space_tracking_out_20_regular": 62528, - "ic_fluent_font_space_tracking_out_24_regular": 62529, - "ic_fluent_font_space_tracking_out_28_regular": 62530, - "ic_fluent_food_20_regular": 62531, - "ic_fluent_food_24_regular": 62532, - "ic_fluent_food_cake_24_regular": 62533, - "ic_fluent_food_egg_24_regular": 62534, - "ic_fluent_food_toast_24_regular": 62535, - "ic_fluent_form_new_24_regular": 62536, - "ic_fluent_form_new_28_regular": 62537, - "ic_fluent_form_new_48_regular": 62538, - "ic_fluent_fps_240_24_regular": 62541, - "ic_fluent_fps_960_24_regular": 62542, - "ic_fluent_games_24_regular": 62545, - "ic_fluent_gesture_24_regular": 62546, - "ic_fluent_gif_20_regular": 62547, - "ic_fluent_gif_24_regular": 62548, - "ic_fluent_gift_20_regular": 62549, - "ic_fluent_gift_24_regular": 62550, - "ic_fluent_glance_24_regular": 62551, - "ic_fluent_glasses_24_regular": 62552, - "ic_fluent_glasses_off_24_regular": 62553, - "ic_fluent_globe_20_regular": 62554, - "ic_fluent_globe_24_regular": 62555, - "ic_fluent_globe_add_24_regular": 62556, - "ic_fluent_globe_clock_24_regular": 62557, - "ic_fluent_globe_desktop_24_regular": 62558, - "ic_fluent_globe_location_24_regular": 62559, - "ic_fluent_globe_search_24_regular": 62560, - "ic_fluent_globe_video_24_regular": 62561, - "ic_fluent_grid_20_regular": 62562, - "ic_fluent_grid_24_regular": 62563, - "ic_fluent_grid_28_regular": 62564, - "ic_fluent_group_20_regular": 62565, - "ic_fluent_group_24_regular": 62566, - "ic_fluent_group_list_24_regular": 62567, - "ic_fluent_guest_16_regular": 62568, - "ic_fluent_guest_20_regular": 62569, - "ic_fluent_guest_24_regular": 62570, - "ic_fluent_guest_28_regular": 62571, - "ic_fluent_guest_add_24_regular": 62572, - "ic_fluent_handshake_16_regular": 62574, - "ic_fluent_handshake_20_regular": 62575, - "ic_fluent_handshake_24_regular": 62576, - "ic_fluent_hdr_24_regular": 62577, - "ic_fluent_headphones_24_regular": 62578, - "ic_fluent_headphones_28_regular": 62579, - "ic_fluent_headset_24_regular": 62580, - "ic_fluent_headset_28_regular": 62581, - "ic_fluent_headset_vr_20_regular": 62582, - "ic_fluent_headset_vr_24_regular": 62583, - "ic_fluent_heart_16_regular": 62584, - "ic_fluent_heart_20_regular": 62585, - "ic_fluent_heart_24_regular": 62586, - "ic_fluent_highlight_16_regular": 62587, - "ic_fluent_highlight_20_regular": 62588, - "ic_fluent_highlight_24_regular": 62589, - "ic_fluent_history_20_regular": 62590, - "ic_fluent_history_24_regular": 62591, - "ic_fluent_home_20_regular": 62592, - "ic_fluent_home_24_regular": 62593, - "ic_fluent_home_28_regular": 62594, - "ic_fluent_home_add_24_regular": 62595, - "ic_fluent_home_checkmark_24_regular": 62596, - "ic_fluent_icons_20_regular": 62597, - "ic_fluent_icons_24_regular": 62598, - "ic_fluent_image_16_regular": 62599, - "ic_fluent_image_20_regular": 62600, - "ic_fluent_image_24_regular": 62601, - "ic_fluent_image_28_regular": 62602, - "ic_fluent_image_48_regular": 62603, - "ic_fluent_image_add_24_regular": 62604, - "ic_fluent_image_alt_text_20_regular": 62605, - "ic_fluent_image_alt_text_24_regular": 62606, - "ic_fluent_image_copy_20_regular": 62607, - "ic_fluent_image_copy_24_regular": 62608, - "ic_fluent_image_copy_28_regular": 62609, - "ic_fluent_image_edit_16_regular": 62610, - "ic_fluent_image_edit_20_regular": 62611, - "ic_fluent_image_edit_24_regular": 62612, - "ic_fluent_image_off_24_regular": 62616, - "ic_fluent_image_search_20_regular": 62617, - "ic_fluent_image_search_24_regular": 62618, - "ic_fluent_immersive_reader_20_regular": 62619, - "ic_fluent_immersive_reader_24_regular": 62620, - "ic_fluent_important_12_regular": 62621, - "ic_fluent_important_16_regular": 62622, - "ic_fluent_important_20_regular": 62623, - "ic_fluent_important_24_regular": 62624, - "ic_fluent_incognito_24_regular": 62625, - "ic_fluent_info_16_regular": 62626, - "ic_fluent_info_20_regular": 62627, - "ic_fluent_info_24_regular": 62628, - "ic_fluent_info_28_regular": 62629, - "ic_fluent_inking_tool_16_regular": 62630, - "ic_fluent_inking_tool_20_regular": 62631, - "ic_fluent_inking_tool_24_regular": 62632, - "ic_fluent_inprivate_account_16_regular": 62633, - "ic_fluent_inprivate_account_20_regular": 62634, - "ic_fluent_inprivate_account_24_regular": 62635, - "ic_fluent_inprivate_account_28_regular": 62636, - "ic_fluent_insert_20_regular": 62637, - "ic_fluent_ios_chevron_right_20_regular": 62642, - "ic_fluent_javascript_16_regular": 62643, - "ic_fluent_javascript_20_regular": 62644, - "ic_fluent_javascript_24_regular": 62645, - "ic_fluent_key_20_regular": 62646, - "ic_fluent_key_24_regular": 62647, - "ic_fluent_keyboard_20_regular": 62648, - "ic_fluent_keyboard_24_regular": 62649, - "ic_fluent_keyboard_dock_24_regular": 62650, - "ic_fluent_keyboard_layout_float_24_regular": 62651, - "ic_fluent_keyboard_layout_one_handed_left_24_regular": 62652, - "ic_fluent_keyboard_layout_resize_24_regular": 62653, - "ic_fluent_keyboard_layout_split_24_regular": 62654, - "ic_fluent_keyboard_shift_24_regular": 62655, - "ic_fluent_keyboard_shift_uppercase_24_regular": 62656, - "ic_fluent_keyboard_tab_24_regular": 62657, - "ic_fluent_laptop_16_regular": 62658, - "ic_fluent_laptop_20_regular": 62659, - "ic_fluent_laptop_24_regular": 62660, - "ic_fluent_laptop_28_regular": 62661, - "ic_fluent_lasso_24_regular": 62665, - "ic_fluent_launcher_settings_24_regular": 62666, - "ic_fluent_layer_20_regular": 62667, - "ic_fluent_layer_24_regular": 62668, - "ic_fluent_leaf_two_16_regular": 62672, - "ic_fluent_leaf_two_20_regular": 62673, - "ic_fluent_leaf_two_24_regular": 62674, - "ic_fluent_library_24_regular": 62675, - "ic_fluent_library_28_regular": 62676, - "ic_fluent_lightbulb_16_regular": 62677, - "ic_fluent_lightbulb_20_regular": 62678, - "ic_fluent_lightbulb_24_regular": 62679, - "ic_fluent_lightbulb_circle_24_regular": 62680, - "ic_fluent_lightbulb_filament_16_regular": 62681, - "ic_fluent_lightbulb_filament_20_regular": 62682, - "ic_fluent_lightbulb_filament_24_regular": 62683, - "ic_fluent_likert_16_regular": 62685, - "ic_fluent_likert_20_regular": 62686, - "ic_fluent_likert_24_regular": 62687, - "ic_fluent_line_horizontal_1_20_regular": 62688, - "ic_fluent_line_horizontal_3_20_regular": 62689, - "ic_fluent_line_horizontal_5_20_regular": 62690, - "ic_fluent_link_16_regular": 62691, - "ic_fluent_link_20_regular": 62692, - "ic_fluent_link_24_regular": 62693, - "ic_fluent_link_28_regular": 62694, - "ic_fluent_link_48_regular": 62695, - "ic_fluent_link_edit_16_regular": 62696, - "ic_fluent_link_edit_20_regular": 62697, - "ic_fluent_link_edit_24_regular": 62698, - "ic_fluent_link_square_24_regular": 62700, - "ic_fluent_list_20_regular": 62701, - "ic_fluent_list_24_regular": 62702, - "ic_fluent_list_28_regular": 62703, - "ic_fluent_live_20_regular": 62704, - "ic_fluent_live_24_regular": 62705, - "ic_fluent_local_language_16_regular": 62706, - "ic_fluent_local_language_20_regular": 62707, - "ic_fluent_local_language_24_regular": 62708, - "ic_fluent_local_language_28_regular": 62709, - "ic_fluent_location_12_regular": 62710, - "ic_fluent_location_16_regular": 62711, - "ic_fluent_location_20_regular": 62712, - "ic_fluent_location_24_regular": 62713, - "ic_fluent_location_28_regular": 62714, - "ic_fluent_location_live_20_regular": 62715, - "ic_fluent_location_live_24_regular": 62716, - "ic_fluent_lock_shield_20_regular": 62722, - "ic_fluent_lock_shield_24_regular": 62723, - "ic_fluent_lock_shield_48_regular": 62724, - "ic_fluent_mail_20_regular": 62726, - "ic_fluent_mail_24_regular": 62727, - "ic_fluent_mail_28_regular": 62728, - "ic_fluent_mail_48_regular": 62729, - "ic_fluent_mail_add_24_regular": 62730, - "ic_fluent_mail_all_read_20_regular": 62734, - "ic_fluent_mail_all_unread_20_regular": 62735, - "ic_fluent_mail_clock_20_regular": 62736, - "ic_fluent_mail_copy_20_regular": 62737, - "ic_fluent_mail_copy_24_regular": 62738, - "ic_fluent_mail_inbox_16_regular": 62739, - "ic_fluent_mail_inbox_20_regular": 62740, - "ic_fluent_mail_inbox_24_regular": 62741, - "ic_fluent_mail_inbox_28_regular": 62742, - "ic_fluent_mail_inbox_add_16_regular": 62743, - "ic_fluent_mail_inbox_add_20_regular": 62744, - "ic_fluent_mail_inbox_add_24_regular": 62745, - "ic_fluent_mail_inbox_add_28_regular": 62746, - "ic_fluent_mail_inbox_dismiss_16_regular": 62747, - "ic_fluent_mail_inbox_dismiss_20_regular": 62748, - "ic_fluent_mail_inbox_dismiss_24_regular": 62749, - "ic_fluent_mail_inbox_dismiss_28_regular": 62750, - "ic_fluent_mail_read_20_regular": 62753, - "ic_fluent_mail_read_24_regular": 62754, - "ic_fluent_mail_read_28_regular": 62755, - "ic_fluent_mail_read_48_regular": 62756, - "ic_fluent_mail_unread_16_regular": 62757, - "ic_fluent_mail_unread_20_regular": 62758, - "ic_fluent_mail_unread_24_regular": 62759, - "ic_fluent_mail_unread_28_regular": 62760, - "ic_fluent_mail_unread_48_regular": 62761, - "ic_fluent_map_24_regular": 62766, - "ic_fluent_map_drive_16_regular": 62767, - "ic_fluent_map_drive_20_regular": 62768, - "ic_fluent_map_drive_24_regular": 62769, - "ic_fluent_match_app_layout_24_regular": 62770, - "ic_fluent_maximize_16_regular": 62771, - "ic_fluent_meet_now_20_regular": 62772, - "ic_fluent_meet_now_24_regular": 62773, - "ic_fluent_megaphone_16_regular": 62774, - "ic_fluent_megaphone_20_regular": 62775, - "ic_fluent_megaphone_24_regular": 62776, - "ic_fluent_megaphone_28_regular": 62777, - "ic_fluent_megaphone_off_24_regular": 62778, - "ic_fluent_mention_16_regular": 62779, - "ic_fluent_mention_20_regular": 62780, - "ic_fluent_mention_24_regular": 62781, - "ic_fluent_merge_24_regular": 62782, - "ic_fluent_mic_off_12_regular": 62783, - "ic_fluent_mic_off_16_regular": 62784, - "ic_fluent_mic_off_24_regular": 62785, - "ic_fluent_mic_off_28_regular": 62786, - "ic_fluent_mic_settings_24_regular": 62792, - "ic_fluent_midi_20_regular": 62793, - "ic_fluent_midi_24_regular": 62794, - "ic_fluent_mobile_optimized_24_regular": 62797, - "ic_fluent_money_16_regular": 62798, - "ic_fluent_money_20_regular": 62799, - "ic_fluent_money_24_regular": 62800, - "ic_fluent_more_vertical_20_regular": 62806, - "ic_fluent_more_vertical_24_regular": 62807, - "ic_fluent_more_vertical_28_regular": 62808, - "ic_fluent_more_vertical_48_regular": 62809, - "ic_fluent_movies_and_tv_24_regular": 62810, - "ic_fluent_my_location_24_regular": 62815, - "ic_fluent_navigation_20_regular": 62816, - "ic_fluent_navigation_24_regular": 62817, - "ic_fluent_network_check_24_regular": 62818, - "ic_fluent_new_16_regular": 62819, - "ic_fluent_new_24_regular": 62820, - "ic_fluent_news_20_regular": 62821, - "ic_fluent_news_24_regular": 62822, - "ic_fluent_news_28_regular": 62823, - "ic_fluent_next_16_regular": 62824, - "ic_fluent_next_20_regular": 62825, - "ic_fluent_next_24_regular": 62826, - "ic_fluent_note_20_regular": 62827, - "ic_fluent_note_24_regular": 62828, - "ic_fluent_note_add_16_regular": 62829, - "ic_fluent_note_add_20_regular": 62830, - "ic_fluent_note_add_24_regular": 62831, - "ic_fluent_notebook_24_regular": 62832, - "ic_fluent_notebook_error_24_regular": 62833, - "ic_fluent_notebook_lightning_24_regular": 62834, - "ic_fluent_notebook_question_mark_24_regular": 62835, - "ic_fluent_notebook_section_24_regular": 62836, - "ic_fluent_notebook_sync_24_regular": 62837, - "ic_fluent_notepad_20_regular": 62838, - "ic_fluent_notepad_24_regular": 62839, - "ic_fluent_notepad_28_regular": 62840, - "ic_fluent_number_row_16_regular": 62841, - "ic_fluent_number_row_20_regular": 62842, - "ic_fluent_number_row_24_regular": 62843, - "ic_fluent_number_symbol_16_regular": 62844, - "ic_fluent_number_symbol_20_regular": 62845, - "ic_fluent_number_symbol_24_regular": 62846, - "ic_fluent_open_16_regular": 62849, - "ic_fluent_open_20_regular": 62850, - "ic_fluent_open_24_regular": 62851, - "ic_fluent_open_folder_24_regular": 62852, - "ic_fluent_options_16_regular": 62854, - "ic_fluent_options_20_regular": 62855, - "ic_fluent_options_24_regular": 62856, - "ic_fluent_organization_20_regular": 62857, - "ic_fluent_organization_24_regular": 62858, - "ic_fluent_organization_28_regular": 62859, - "ic_fluent_page_fit_16_regular": 62862, - "ic_fluent_page_fit_20_regular": 62863, - "ic_fluent_page_fit_24_regular": 62864, - "ic_fluent_paint_brush_16_regular": 62865, - "ic_fluent_paint_brush_20_regular": 62866, - "ic_fluent_paint_brush_24_regular": 62867, - "ic_fluent_paint_bucket_16_regular": 62868, - "ic_fluent_paint_bucket_20_regular": 62869, - "ic_fluent_paint_bucket_24_regular": 62870, - "ic_fluent_pair_24_regular": 62871, - "ic_fluent_password_24_regular": 62878, - "ic_fluent_patient_24_regular": 62879, - "ic_fluent_pause_16_regular": 62880, - "ic_fluent_pause_20_regular": 62881, - "ic_fluent_pause_24_regular": 62882, - "ic_fluent_pause_48_regular": 62883, - "ic_fluent_payment_20_regular": 62884, - "ic_fluent_payment_24_regular": 62885, - "ic_fluent_people_16_regular": 62887, - "ic_fluent_people_20_regular": 62888, - "ic_fluent_people_24_regular": 62889, - "ic_fluent_people_28_regular": 62890, - "ic_fluent_people_add_16_regular": 62891, - "ic_fluent_people_add_20_regular": 62892, - "ic_fluent_people_add_24_regular": 62893, - "ic_fluent_people_audience_24_regular": 62894, - "ic_fluent_people_community_16_regular": 62895, - "ic_fluent_people_community_20_regular": 62896, - "ic_fluent_people_community_24_regular": 62897, - "ic_fluent_people_community_28_regular": 62898, - "ic_fluent_people_community_add_24_regular": 62899, - "ic_fluent_people_prohibited_20_regular": 62900, - "ic_fluent_people_search_24_regular": 62901, - "ic_fluent_people_settings_20_regular": 62902, - "ic_fluent_people_team_16_regular": 62903, - "ic_fluent_people_team_20_regular": 62904, - "ic_fluent_people_team_24_regular": 62905, - "ic_fluent_people_team_28_regular": 62906, - "ic_fluent_person_12_regular": 62907, - "ic_fluent_person_16_regular": 62908, - "ic_fluent_person_20_regular": 62909, - "ic_fluent_person_24_regular": 62910, - "ic_fluent_person_28_regular": 62911, - "ic_fluent_person_48_regular": 62912, - "ic_fluent_person_accounts_24_regular": 62913, - "ic_fluent_person_add_20_regular": 62914, - "ic_fluent_person_add_24_regular": 62915, - "ic_fluent_person_arrow_left_20_regular": 62916, - "ic_fluent_person_arrow_left_24_regular": 62917, - "ic_fluent_person_arrow_right_16_regular": 62918, - "ic_fluent_person_arrow_right_20_regular": 62919, - "ic_fluent_person_arrow_right_24_regular": 62920, - "ic_fluent_person_available_16_regular": 62921, - "ic_fluent_person_available_24_regular": 62922, - "ic_fluent_person_board_16_regular": 62924, - "ic_fluent_person_board_20_regular": 62925, - "ic_fluent_person_board_24_regular": 62926, - "ic_fluent_person_call_24_regular": 62927, - "ic_fluent_person_delete_16_regular": 62928, - "ic_fluent_person_delete_24_regular": 62929, - "ic_fluent_person_feedback_20_regular": 62930, - "ic_fluent_person_feedback_24_regular": 62931, - "ic_fluent_person_prohibited_20_regular": 62932, - "ic_fluent_person_question_mark_16_regular": 62933, - "ic_fluent_person_question_mark_20_regular": 62934, - "ic_fluent_person_question_mark_24_regular": 62935, - "ic_fluent_person_support_16_regular": 62936, - "ic_fluent_person_support_20_regular": 62937, - "ic_fluent_person_support_24_regular": 62938, - "ic_fluent_person_swap_16_regular": 62939, - "ic_fluent_person_swap_20_regular": 62940, - "ic_fluent_person_swap_24_regular": 62941, - "ic_fluent_person_voice_20_regular": 62942, - "ic_fluent_person_voice_24_regular": 62943, - "ic_fluent_phone_20_regular": 62944, - "ic_fluent_phone_24_regular": 62945, - "ic_fluent_phone_desktop_16_regular": 62948, - "ic_fluent_phone_desktop_20_regular": 62949, - "ic_fluent_phone_desktop_24_regular": 62950, - "ic_fluent_phone_desktop_28_regular": 62951, - "ic_fluent_phone_laptop_20_regular": 62954, - "ic_fluent_phone_laptop_24_regular": 62955, - "ic_fluent_phone_link_setup_24_regular": 62956, - "ic_fluent_phone_page_header_24_regular": 62959, - "ic_fluent_phone_pagination_24_regular": 62960, - "ic_fluent_phone_screen_time_24_regular": 62961, - "ic_fluent_phone_shake_24_regular": 62962, - "ic_fluent_phone_status_bar_24_regular": 62963, - "ic_fluent_phone_tablet_20_regular": 62964, - "ic_fluent_phone_tablet_24_regular": 62965, - "ic_fluent_phone_update_24_regular": 62968, - "ic_fluent_phone_vertical_scroll_24_regular": 62969, - "ic_fluent_phone_vibrate_24_regular": 62970, - "ic_fluent_photo_filter_24_regular": 62971, - "ic_fluent_picture_in_picture_16_regular": 62972, - "ic_fluent_picture_in_picture_20_regular": 62973, - "ic_fluent_picture_in_picture_24_regular": 62974, - "ic_fluent_pin_12_regular": 62975, - "ic_fluent_pin_16_regular": 62976, - "ic_fluent_pin_20_regular": 62977, - "ic_fluent_pin_24_regular": 62978, - "ic_fluent_pin_off_20_regular": 62979, - "ic_fluent_pin_off_24_regular": 62980, - "ic_fluent_play_20_regular": 62981, - "ic_fluent_play_24_regular": 62982, - "ic_fluent_play_48_regular": 62983, - "ic_fluent_play_circle_24_regular": 62984, - "ic_fluent_plug_disconnected_20_regular": 62985, - "ic_fluent_plug_disconnected_24_regular": 62986, - "ic_fluent_plug_disconnected_28_regular": 62987, - "ic_fluent_point_scan_24_regular": 62988, - "ic_fluent_poll_24_regular": 62989, - "ic_fluent_power_20_regular": 62990, - "ic_fluent_power_24_regular": 62991, - "ic_fluent_power_28_regular": 62992, - "ic_fluent_predictions_24_regular": 62993, - "ic_fluent_premium_16_regular": 62994, - "ic_fluent_premium_20_regular": 62995, - "ic_fluent_premium_24_regular": 62996, - "ic_fluent_premium_28_regular": 62997, - "ic_fluent_presence_blocked_10_regular": 62998, - "ic_fluent_presence_blocked_12_regular": 62999, - "ic_fluent_presence_blocked_16_regular": 63000, - "ic_fluent_presence_offline_10_regular": 63001, - "ic_fluent_presence_offline_12_regular": 63002, - "ic_fluent_presence_offline_16_regular": 63003, - "ic_fluent_presence_oof_10_regular": 63004, - "ic_fluent_presence_oof_12_regular": 63005, - "ic_fluent_presence_oof_16_regular": 63006, - "ic_fluent_presence_unknown_10_regular": 63007, - "ic_fluent_presence_unknown_12_regular": 63008, - "ic_fluent_presence_unknown_16_regular": 63009, - "ic_fluent_presenter_24_regular": 63010, - "ic_fluent_presenter_off_24_regular": 63011, - "ic_fluent_preview_link_16_regular": 63012, - "ic_fluent_preview_link_20_regular": 63013, - "ic_fluent_preview_link_24_regular": 63014, - "ic_fluent_previous_16_regular": 63015, - "ic_fluent_previous_20_regular": 63016, - "ic_fluent_previous_24_regular": 63017, - "ic_fluent_print_20_regular": 63018, - "ic_fluent_print_24_regular": 63019, - "ic_fluent_print_48_regular": 63020, - "ic_fluent_prohibited_20_regular": 63021, - "ic_fluent_prohibited_24_regular": 63022, - "ic_fluent_prohibited_28_regular": 63023, - "ic_fluent_prohibited_48_regular": 63024, - "ic_fluent_protocol_handler_16_regular": 63026, - "ic_fluent_protocol_handler_20_regular": 63027, - "ic_fluent_protocol_handler_24_regular": 63028, - "ic_fluent_qr_code_24_regular": 63029, - "ic_fluent_qr_code_28_regular": 63030, - "ic_fluent_question_16_regular": 63031, - "ic_fluent_question_20_regular": 63032, - "ic_fluent_question_24_regular": 63033, - "ic_fluent_question_28_regular": 63034, - "ic_fluent_question_48_regular": 63035, - "ic_fluent_question_circle_16_regular": 63036, - "ic_fluent_question_circle_20_regular": 63037, - "ic_fluent_question_circle_24_regular": 63038, - "ic_fluent_question_circle_28_regular": 63039, - "ic_fluent_question_circle_48_regular": 63040, - "ic_fluent_quiz_new_24_regular": 63041, - "ic_fluent_quiz_new_28_regular": 63042, - "ic_fluent_quiz_new_48_regular": 63043, - "ic_fluent_radio_button_20_regular": 63044, - "ic_fluent_radio_button_24_regular": 63045, - "ic_fluent_rating_mature_16_regular": 63046, - "ic_fluent_rating_mature_20_regular": 63047, - "ic_fluent_rating_mature_24_regular": 63048, - "ic_fluent_re_order_16_regular": 63049, - "ic_fluent_re_order_24_regular": 63050, - "ic_fluent_read_aloud_20_regular": 63053, - "ic_fluent_read_aloud_24_regular": 63054, - "ic_fluent_reading_list_16_regular": 63057, - "ic_fluent_reading_list_20_regular": 63058, - "ic_fluent_reading_list_24_regular": 63059, - "ic_fluent_reading_list_28_regular": 63060, - "ic_fluent_reading_list_add_16_regular": 63061, - "ic_fluent_reading_list_add_20_regular": 63062, - "ic_fluent_reading_list_add_24_regular": 63063, - "ic_fluent_reading_list_add_28_regular": 63064, - "ic_fluent_reading_mode_mobile_20_regular": 63067, - "ic_fluent_reading_mode_mobile_24_regular": 63068, - "ic_fluent_record_16_regular": 63072, - "ic_fluent_record_20_regular": 63073, - "ic_fluent_record_24_regular": 63074, - "ic_fluent_rename_16_regular": 63080, - "ic_fluent_rename_20_regular": 63081, - "ic_fluent_rename_24_regular": 63082, - "ic_fluent_rename_28_regular": 63083, - "ic_fluent_resize_20_regular": 63084, - "ic_fluent_resize_image_24_regular": 63085, - "ic_fluent_resize_table_24_regular": 63086, - "ic_fluent_resize_video_24_regular": 63087, - "ic_fluent_reward_16_regular": 63089, - "ic_fluent_reward_20_regular": 63090, - "ic_fluent_reward_24_regular": 63091, - "ic_fluent_rewind_20_regular": 63092, - "ic_fluent_rewind_24_regular": 63093, - "ic_fluent_rocket_16_regular": 63094, - "ic_fluent_rocket_20_regular": 63095, - "ic_fluent_rocket_24_regular": 63096, - "ic_fluent_router_24_regular": 63097, - "ic_fluent_row_triple_24_regular": 63098, - "ic_fluent_ruler_16_regular": 63099, - "ic_fluent_ruler_20_regular": 63100, - "ic_fluent_ruler_24_regular": 63101, - "ic_fluent_run_24_regular": 63102, - "ic_fluent_save_20_regular": 63103, - "ic_fluent_save_24_regular": 63104, - "ic_fluent_save_copy_24_regular": 63107, - "ic_fluent_savings_16_regular": 63108, - "ic_fluent_savings_20_regular": 63109, - "ic_fluent_savings_24_regular": 63110, - "ic_fluent_scale_fill_24_regular": 63111, - "ic_fluent_scale_fit_16_regular": 63112, - "ic_fluent_scale_fit_20_regular": 63113, - "ic_fluent_scale_fit_24_regular": 63114, - "ic_fluent_scan_24_regular": 63115, - "ic_fluent_scratchpad_24_regular": 63116, - "ic_fluent_screenshot_20_regular": 63117, - "ic_fluent_screenshot_24_regular": 63118, - "ic_fluent_search_20_regular": 63119, - "ic_fluent_search_24_regular": 63120, - "ic_fluent_search_28_regular": 63121, - "ic_fluent_search_info_20_regular": 63122, - "ic_fluent_search_info_24_regular": 63123, - "ic_fluent_search_square_24_regular": 63124, - "ic_fluent_select_all_off_24_regular": 63126, - "ic_fluent_select_object_20_regular": 63127, - "ic_fluent_select_object_24_regular": 63128, - "ic_fluent_send_20_regular": 63129, - "ic_fluent_send_24_regular": 63130, - "ic_fluent_send_28_regular": 63131, - "ic_fluent_send_clock_20_regular": 63132, - "ic_fluent_send_copy_24_regular": 63133, - "ic_fluent_serial_port_16_regular": 63137, - "ic_fluent_serial_port_20_regular": 63138, - "ic_fluent_serial_port_24_regular": 63139, - "ic_fluent_service_bell_24_regular": 63140, - "ic_fluent_settings_16_regular": 63144, - "ic_fluent_settings_20_regular": 63145, - "ic_fluent_settings_24_regular": 63146, - "ic_fluent_settings_28_regular": 63147, - "ic_fluent_shapes_16_regular": 63148, - "ic_fluent_shapes_20_regular": 63149, - "ic_fluent_shapes_24_regular": 63150, - "ic_fluent_share_20_regular": 63151, - "ic_fluent_share_24_regular": 63152, - "ic_fluent_share_android_20_regular": 63153, - "ic_fluent_share_android_24_regular": 63154, - "ic_fluent_share_close_tray_24_regular": 63155, - "ic_fluent_share_ios_20_regular": 63157, - "ic_fluent_share_ios_24_regular": 63158, - "ic_fluent_share_ios_28_regular": 63159, - "ic_fluent_share_ios_48_regular": 63160, - "ic_fluent_shield_20_regular": 63166, - "ic_fluent_shield_24_regular": 63167, - "ic_fluent_shield_dismiss_20_regular": 63168, - "ic_fluent_shield_dismiss_24_regular": 63169, - "ic_fluent_shield_error_20_regular": 63170, - "ic_fluent_shield_error_24_regular": 63171, - "ic_fluent_shield_keyhole_16_regular": 63172, - "ic_fluent_shield_keyhole_20_regular": 63173, - "ic_fluent_shield_keyhole_24_regular": 63174, - "ic_fluent_shield_prohibited_20_regular": 63175, - "ic_fluent_shield_prohibited_24_regular": 63176, - "ic_fluent_shifts_24_regular": 63177, - "ic_fluent_shifts_28_regular": 63180, - "ic_fluent_shifts_30_minutes_24_regular": 63181, - "ic_fluent_shifts_activity_20_regular": 63182, - "ic_fluent_shifts_activity_24_regular": 63183, - "ic_fluent_shifts_add_24_regular": 63184, - "ic_fluent_shifts_availability_24_regular": 63186, - "ic_fluent_shifts_open_20_regular": 63188, - "ic_fluent_shifts_open_24_regular": 63189, - "ic_fluent_shifts_team_24_regular": 63191, - "ic_fluent_sign_out_24_regular": 63194, - "ic_fluent_signature_16_regular": 63195, - "ic_fluent_signature_20_regular": 63196, - "ic_fluent_signature_24_regular": 63197, - "ic_fluent_signature_28_regular": 63198, - "ic_fluent_sim_16_regular": 63202, - "ic_fluent_sim_20_regular": 63203, - "ic_fluent_sim_24_regular": 63204, - "ic_fluent_sleep_24_regular": 63205, - "ic_fluent_slide_add_24_regular": 63206, - "ic_fluent_slide_hide_24_regular": 63208, - "ic_fluent_slide_layout_20_regular": 63209, - "ic_fluent_slide_layout_24_regular": 63210, - "ic_fluent_slide_microphone_24_regular": 63211, - "ic_fluent_slide_text_24_regular": 63212, - "ic_fluent_snooze_16_regular": 63220, - "ic_fluent_snooze_24_regular": 63221, - "ic_fluent_sound_source_24_regular": 63222, - "ic_fluent_sound_source_28_regular": 63223, - "ic_fluent_spacebar_24_regular": 63224, - "ic_fluent_speaker_0_24_regular": 63225, - "ic_fluent_speaker_1_24_regular": 63227, - "ic_fluent_speaker_bluetooth_24_regular": 63231, - "ic_fluent_speaker_edit_16_regular": 63232, - "ic_fluent_speaker_edit_20_regular": 63233, - "ic_fluent_speaker_edit_24_regular": 63234, - "ic_fluent_speaker_off_24_regular": 63238, - "ic_fluent_speaker_off_28_regular": 63239, - "ic_fluent_speaker_settings_24_regular": 63240, - "ic_fluent_spinner_ios_20_regular": 63241, - "ic_fluent_star_12_regular": 63245, - "ic_fluent_star_16_regular": 63246, - "ic_fluent_star_20_regular": 63247, - "ic_fluent_star_24_regular": 63248, - "ic_fluent_star_28_regular": 63249, - "ic_fluent_star_add_16_regular": 63250, - "ic_fluent_star_add_20_regular": 63251, - "ic_fluent_star_add_24_regular": 63252, - "ic_fluent_star_arrow_right_start_24_regular": 63254, - "ic_fluent_star_emphasis_24_regular": 63255, - "ic_fluent_star_off_12_regular": 63256, - "ic_fluent_star_off_16_regular": 63257, - "ic_fluent_star_off_20_regular": 63258, - "ic_fluent_star_off_24_regular": 63259, - "ic_fluent_star_off_28_regular": 63260, - "ic_fluent_star_prohibited_16_regular": 63261, - "ic_fluent_star_prohibited_20_regular": 63262, - "ic_fluent_star_prohibited_24_regular": 63263, - "ic_fluent_star_settings_24_regular": 63264, - "ic_fluent_status_16_regular": 63265, - "ic_fluent_status_20_regular": 63266, - "ic_fluent_status_24_regular": 63267, - "ic_fluent_stethoscope_20_regular": 63268, - "ic_fluent_stethoscope_24_regular": 63269, - "ic_fluent_sticker_20_regular": 63270, - "ic_fluent_sticker_24_regular": 63271, - "ic_fluent_sticker_add_24_regular": 63272, - "ic_fluent_stop_16_regular": 63273, - "ic_fluent_stop_20_regular": 63274, - "ic_fluent_stop_24_regular": 63275, - "ic_fluent_storage_24_regular": 63276, - "ic_fluent_store_microsoft_16_regular": 63280, - "ic_fluent_store_microsoft_20_regular": 63281, - "ic_fluent_store_microsoft_24_regular": 63282, - "ic_fluent_style_guide_24_regular": 63283, - "ic_fluent_sub_grid_24_regular": 63284, - "ic_fluent_surface_earbuds_20_regular": 63288, - "ic_fluent_surface_earbuds_24_regular": 63289, - "ic_fluent_surface_hub_20_regular": 63290, - "ic_fluent_surface_hub_24_regular": 63291, - "ic_fluent_swipe_down_24_regular": 63292, - "ic_fluent_swipe_right_24_regular": 63293, - "ic_fluent_swipe_up_24_regular": 63294, - "ic_fluent_symbols_24_regular": 63295, - "ic_fluent_sync_off_16_regular": 63296, - "ic_fluent_sync_off_20_regular": 63297, - "ic_fluent_system_24_regular": 63298, - "ic_fluent_tab_16_regular": 63299, - "ic_fluent_tab_20_regular": 63300, - "ic_fluent_tab_24_regular": 63301, - "ic_fluent_tab_28_regular": 63302, - "ic_fluent_tab_desktop_20_regular": 63303, - "ic_fluent_tab_desktop_arrow_clockwise_16_regular": 63304, - "ic_fluent_tab_desktop_arrow_clockwise_20_regular": 63305, - "ic_fluent_tab_desktop_arrow_clockwise_24_regular": 63306, - "ic_fluent_tab_desktop_clock_20_regular": 63307, - "ic_fluent_tab_desktop_copy_20_regular": 63308, - "ic_fluent_tab_desktop_image_16_regular": 63309, - "ic_fluent_tab_desktop_image_20_regular": 63310, - "ic_fluent_tab_desktop_image_24_regular": 63311, - "ic_fluent_tab_desktop_multiple_20_regular": 63312, - "ic_fluent_tab_desktop_new_page_20_regular": 63313, - "ic_fluent_tab_in_private_16_regular": 63314, - "ic_fluent_tab_in_private_20_regular": 63315, - "ic_fluent_tab_in_private_24_regular": 63316, - "ic_fluent_tab_in_private_28_regular": 63317, - "ic_fluent_tab_inprivate_account_20_regular": 63318, - "ic_fluent_tab_inprivate_account_24_regular": 63319, - "ic_fluent_table_20_regular": 63325, - "ic_fluent_table_24_regular": 63326, - "ic_fluent_table_add_24_regular": 63327, - "ic_fluent_table_cells_merge_20_regular": 63328, - "ic_fluent_table_cells_merge_24_regular": 63329, - "ic_fluent_table_cells_split_20_regular": 63330, - "ic_fluent_table_cells_split_24_regular": 63331, - "ic_fluent_table_edit_24_regular": 63336, - "ic_fluent_table_freeze_column_24_regular": 63338, - "ic_fluent_table_freeze_row_24_regular": 63339, - "ic_fluent_table_move_left_24_regular": 63345, - "ic_fluent_table_move_right_24_regular": 63346, - "ic_fluent_table_settings_24_regular": 63351, - "ic_fluent_table_switch_24_regular": 63352, - "ic_fluent_tablet_20_regular": 63353, - "ic_fluent_tablet_24_regular": 63354, - "ic_fluent_tabs_24_regular": 63355, - "ic_fluent_tag_20_regular": 63356, - "ic_fluent_tag_24_regular": 63357, - "ic_fluent_tap_double_24_regular": 63358, - "ic_fluent_tap_single_24_regular": 63359, - "ic_fluent_target_16_regular": 63360, - "ic_fluent_target_20_regular": 63361, - "ic_fluent_target_24_regular": 63362, - "ic_fluent_target_edit_16_regular": 63363, - "ic_fluent_target_edit_20_regular": 63364, - "ic_fluent_target_edit_24_regular": 63365, - "ic_fluent_task_list_add_20_regular": 63368, - "ic_fluent_task_list_add_24_regular": 63369, - "ic_fluent_tasks_app_24_regular": 63370, - "ic_fluent_tasks_app_28_regular": 63371, - "ic_fluent_teddy_24_regular": 63374, - "ic_fluent_temperature_20_regular": 63375, - "ic_fluent_temperature_24_regular": 63376, - "ic_fluent_tent_24_regular": 63377, - "ic_fluent_text_add_space_after_20_regular": 63381, - "ic_fluent_text_add_space_after_24_regular": 63382, - "ic_fluent_text_add_space_before_20_regular": 63383, - "ic_fluent_text_add_space_before_24_regular": 63384, - "ic_fluent_text_align_center_20_regular": 63385, - "ic_fluent_text_align_center_24_regular": 63386, - "ic_fluent_text_align_distributed_20_regular": 63387, - "ic_fluent_text_align_distributed_24_regular": 63388, - "ic_fluent_text_align_justify_20_regular": 63389, - "ic_fluent_text_align_justify_24_regular": 63390, - "ic_fluent_text_align_left_20_regular": 63391, - "ic_fluent_text_align_left_24_regular": 63392, - "ic_fluent_text_align_right_20_regular": 63393, - "ic_fluent_text_align_right_24_regular": 63394, - "ic_fluent_text_asterisk_20_regular": 63395, - "ic_fluent_text_bold_20_regular": 63396, - "ic_fluent_text_bold_24_regular": 63397, - "ic_fluent_text_bullet_list_add_24_regular": 63400, - "ic_fluent_text_bullet_list_square_24_regular": 63401, - "ic_fluent_text_bullet_list_square_warning_16_regular": 63402, - "ic_fluent_text_bullet_list_square_warning_20_regular": 63403, - "ic_fluent_text_bullet_list_square_warning_24_regular": 63404, - "ic_fluent_text_bullet_list_tree_16_regular": 63405, - "ic_fluent_text_bullet_list_tree_20_regular": 63406, - "ic_fluent_text_bullet_list_tree_24_regular": 63407, - "ic_fluent_text_change_case_20_regular": 63410, - "ic_fluent_text_change_case_24_regular": 63411, - "ic_fluent_text_clear_formatting_20_regular": 63420, - "ic_fluent_text_clear_formatting_24_regular": 63421, - "ic_fluent_text_collapse_24_regular": 63422, - "ic_fluent_text_color_20_regular": 63423, - "ic_fluent_text_color_24_regular": 63424, - "ic_fluent_text_column_one_20_regular": 63425, - "ic_fluent_text_column_one_24_regular": 63426, - "ic_fluent_text_column_three_20_regular": 63427, - "ic_fluent_text_column_three_24_regular": 63428, - "ic_fluent_text_column_two_20_regular": 63429, - "ic_fluent_text_column_two_24_regular": 63430, - "ic_fluent_text_column_two_left_20_regular": 63431, - "ic_fluent_text_column_two_left_24_regular": 63432, - "ic_fluent_text_column_two_right_20_regular": 63433, - "ic_fluent_text_column_two_right_24_regular": 63434, - "ic_fluent_text_description_20_regular": 63435, - "ic_fluent_text_description_24_regular": 63436, - "ic_fluent_text_direction_vertical_20_regular": 63447, - "ic_fluent_text_direction_vertical_24_regular": 63448, - "ic_fluent_text_edit_style_20_regular": 63449, - "ic_fluent_text_edit_style_24_regular": 63450, - "ic_fluent_text_effects_20_regular": 63451, - "ic_fluent_text_effects_24_regular": 63452, - "ic_fluent_text_expand_24_regular": 63453, - "ic_fluent_text_field_16_regular": 63454, - "ic_fluent_text_field_20_regular": 63455, - "ic_fluent_text_field_24_regular": 63456, - "ic_fluent_text_first_line_20_regular": 63457, - "ic_fluent_text_first_line_24_regular": 63458, - "ic_fluent_text_font_16_regular": 63459, - "ic_fluent_text_font_20_regular": 63460, - "ic_fluent_text_font_24_regular": 63461, - "ic_fluent_text_font_size_20_regular": 63462, - "ic_fluent_text_font_size_24_regular": 63463, - "ic_fluent_text_footnote_20_regular": 63464, - "ic_fluent_text_footnote_24_regular": 63465, - "ic_fluent_text_hanging_20_regular": 63469, - "ic_fluent_text_hanging_24_regular": 63470, - "ic_fluent_text_header_1_20_regular": 63471, - "ic_fluent_text_header_2_20_regular": 63472, - "ic_fluent_text_header_3_20_regular": 63473, - "ic_fluent_text_italic_20_regular": 63476, - "ic_fluent_text_italic_24_regular": 63477, - "ic_fluent_text_line_spacing_20_regular": 63478, - "ic_fluent_text_line_spacing_24_regular": 63479, - "ic_fluent_text_number_format_24_regular": 63480, - "ic_fluent_text_number_list_ltr_20_regular": 63481, - "ic_fluent_text_number_list_ltr_24_regular": 63482, - "ic_fluent_text_number_list_rtl_24_regular": 63483, - "ic_fluent_text_proofing_tools_20_regular": 63486, - "ic_fluent_text_proofing_tools_24_regular": 63487, - "ic_fluent_text_quote_20_regular": 63488, - "ic_fluent_text_quote_24_regular": 63489, - "ic_fluent_text_sort_ascending_20_regular": 63490, - "ic_fluent_text_sort_descending_20_regular": 63491, - "ic_fluent_text_subscript_20_regular": 63494, - "ic_fluent_text_subscript_24_regular": 63495, - "ic_fluent_text_superscript_20_regular": 63496, - "ic_fluent_text_superscript_24_regular": 63497, - "ic_fluent_text_underline_20_regular": 63498, - "ic_fluent_text_underline_24_regular": 63499, - "ic_fluent_text_word_count_20_regular": 63500, - "ic_fluent_text_word_count_24_regular": 63501, - "ic_fluent_text_wrap_24_regular": 63502, - "ic_fluent_textbox_20_regular": 63503, - "ic_fluent_textbox_24_regular": 63504, - "ic_fluent_textbox_align_bottom_20_regular": 63507, - "ic_fluent_textbox_align_bottom_24_regular": 63508, - "ic_fluent_textbox_align_middle_20_regular": 63509, - "ic_fluent_textbox_align_middle_24_regular": 63510, - "ic_fluent_textbox_align_top_20_regular": 63511, - "ic_fluent_textbox_align_top_24_regular": 63512, - "ic_fluent_thinking_20_regular": 63515, - "ic_fluent_thinking_24_regular": 63516, - "ic_fluent_thumb_dislike_20_regular": 63517, - "ic_fluent_thumb_dislike_24_regular": 63518, - "ic_fluent_thumb_like_20_regular": 63519, - "ic_fluent_thumb_like_24_regular": 63520, - "ic_fluent_time_and_weather_24_regular": 63523, - "ic_fluent_time_picker_24_regular": 63524, - "ic_fluent_timeline_24_regular": 63525, - "ic_fluent_timer_10_24_regular": 63526, - "ic_fluent_timer_24_regular": 63527, - "ic_fluent_timer_2_24_regular": 63528, - "ic_fluent_timer_off_24_regular": 63529, - "ic_fluent_toggle_right_16_regular": 63530, - "ic_fluent_toggle_right_20_regular": 63531, - "ic_fluent_toggle_right_24_regular": 63532, - "ic_fluent_toolbox_16_regular": 63533, - "ic_fluent_toolbox_20_regular": 63534, - "ic_fluent_toolbox_24_regular": 63535, - "ic_fluent_toolbox_28_regular": 63536, - "ic_fluent_top_speed_24_regular": 63537, - "ic_fluent_translate_16_regular": 63538, - "ic_fluent_translate_20_regular": 63539, - "ic_fluent_translate_24_regular": 63540, - "ic_fluent_trophy_16_regular": 63541, - "ic_fluent_trophy_20_regular": 63542, - "ic_fluent_trophy_24_regular": 63543, - "ic_fluent_uninstall_app_24_regular": 63544, - "ic_fluent_usb_stick_20_regular": 63551, - "ic_fluent_usb_stick_24_regular": 63552, - "ic_fluent_vault_16_regular": 63553, - "ic_fluent_vault_20_regular": 63554, - "ic_fluent_vault_24_regular": 63555, - "ic_fluent_vehicle_bicycle_24_regular": 63556, - "ic_fluent_vehicle_bus_24_regular": 63557, - "ic_fluent_vehicle_cab_24_regular": 63558, - "ic_fluent_vehicle_car_16_regular": 63559, - "ic_fluent_vehicle_car_20_regular": 63560, - "ic_fluent_vehicle_car_24_regular": 63561, - "ic_fluent_vehicle_truck_24_regular": 63562, - "ic_fluent_video_16_regular": 63563, - "ic_fluent_video_20_regular": 63564, - "ic_fluent_video_24_regular": 63565, - "ic_fluent_video_28_regular": 63566, - "ic_fluent_video_background_effect_24_regular": 63567, - "ic_fluent_video_clip_24_regular": 63568, - "ic_fluent_video_off_20_regular": 63569, - "ic_fluent_video_off_24_regular": 63570, - "ic_fluent_video_off_28_regular": 63571, - "ic_fluent_video_person_24_regular": 63572, - "ic_fluent_video_person_off_24_regular": 63573, - "ic_fluent_video_person_star_24_regular": 63574, - "ic_fluent_video_play_pause_24_regular": 63575, - "ic_fluent_video_security_20_regular": 63576, - "ic_fluent_video_security_24_regular": 63577, - "ic_fluent_video_switch_24_regular": 63578, - "ic_fluent_view_desktop_20_regular": 63579, - "ic_fluent_view_desktop_24_regular": 63580, - "ic_fluent_view_desktop_mobile_20_regular": 63581, - "ic_fluent_view_desktop_mobile_24_regular": 63582, - "ic_fluent_voicemail_16_regular": 63586, - "ic_fluent_voicemail_20_regular": 63587, - "ic_fluent_voicemail_24_regular": 63588, - "ic_fluent_walkie_talkie_24_regular": 63589, - "ic_fluent_walkie_talkie_28_regular": 63590, - "ic_fluent_wallpaper_24_regular": 63591, - "ic_fluent_warning_16_regular": 63592, - "ic_fluent_warning_20_regular": 63593, - "ic_fluent_warning_24_regular": 63594, - "ic_fluent_weather_blowing_snow_20_regular": 63595, - "ic_fluent_weather_blowing_snow_24_regular": 63596, - "ic_fluent_weather_blowing_snow_48_regular": 63597, - "ic_fluent_weather_cloudy_20_regular": 63598, - "ic_fluent_weather_cloudy_24_regular": 63599, - "ic_fluent_weather_cloudy_48_regular": 63600, - "ic_fluent_weather_duststorm_20_regular": 63601, - "ic_fluent_weather_duststorm_24_regular": 63602, - "ic_fluent_weather_duststorm_48_regular": 63603, - "ic_fluent_weather_fog_20_regular": 63604, - "ic_fluent_weather_fog_24_regular": 63605, - "ic_fluent_weather_fog_48_regular": 63606, - "ic_fluent_weather_hail_day_20_regular": 63607, - "ic_fluent_weather_hail_day_24_regular": 63608, - "ic_fluent_weather_hail_day_48_regular": 63609, - "ic_fluent_weather_hail_night_20_regular": 63610, - "ic_fluent_weather_hail_night_24_regular": 63611, - "ic_fluent_weather_hail_night_48_regular": 63612, - "ic_fluent_weather_moon_20_regular": 63613, - "ic_fluent_weather_moon_24_regular": 63614, - "ic_fluent_weather_moon_48_regular": 63615, - "ic_fluent_weather_partly_cloudy_day_20_regular": 63616, - "ic_fluent_weather_partly_cloudy_day_24_regular": 63617, - "ic_fluent_weather_partly_cloudy_day_48_regular": 63618, - "ic_fluent_weather_partly_cloudy_night_20_regular": 63619, - "ic_fluent_weather_partly_cloudy_night_24_regular": 63620, - "ic_fluent_weather_partly_cloudy_night_48_regular": 63621, - "ic_fluent_weather_rain_20_regular": 63622, - "ic_fluent_weather_rain_24_regular": 63623, - "ic_fluent_weather_rain_48_regular": 63624, - "ic_fluent_weather_rain_showers_day_20_regular": 63625, - "ic_fluent_weather_rain_showers_day_24_regular": 63626, - "ic_fluent_weather_rain_showers_day_48_regular": 63627, - "ic_fluent_weather_rain_showers_night_20_regular": 63628, - "ic_fluent_weather_rain_showers_night_24_regular": 63629, - "ic_fluent_weather_rain_showers_night_48_regular": 63630, - "ic_fluent_weather_rain_snow_20_regular": 63631, - "ic_fluent_weather_rain_snow_24_regular": 63632, - "ic_fluent_weather_rain_snow_48_regular": 63633, - "ic_fluent_weather_snow_20_regular": 63634, - "ic_fluent_weather_snow_24_regular": 63635, - "ic_fluent_weather_snow_48_regular": 63636, - "ic_fluent_weather_snow_shower_day_20_regular": 63637, - "ic_fluent_weather_snow_shower_day_24_regular": 63638, - "ic_fluent_weather_snow_shower_day_48_regular": 63639, - "ic_fluent_weather_snow_shower_night_20_regular": 63640, - "ic_fluent_weather_snow_shower_night_24_regular": 63641, - "ic_fluent_weather_snow_shower_night_48_regular": 63642, - "ic_fluent_weather_snowflake_20_regular": 63643, - "ic_fluent_weather_snowflake_24_regular": 63644, - "ic_fluent_weather_snowflake_48_regular": 63645, - "ic_fluent_weather_squalls_20_regular": 63646, - "ic_fluent_weather_squalls_24_regular": 63647, - "ic_fluent_weather_squalls_48_regular": 63648, - "ic_fluent_weather_sunny_20_regular": 63649, - "ic_fluent_weather_sunny_24_regular": 63650, - "ic_fluent_weather_sunny_48_regular": 63651, - "ic_fluent_weather_thunderstorm_20_regular": 63652, - "ic_fluent_weather_thunderstorm_24_regular": 63653, - "ic_fluent_weather_thunderstorm_48_regular": 63654, - "ic_fluent_web_asset_24_regular": 63655, - "ic_fluent_whiteboard_20_regular": 63658, - "ic_fluent_whiteboard_24_regular": 63659, - "ic_fluent_wifi_1_20_regular": 63660, - "ic_fluent_wifi_1_24_regular": 63661, - "ic_fluent_wifi_2_20_regular": 63662, - "ic_fluent_wifi_2_24_regular": 63663, - "ic_fluent_wifi_3_20_regular": 63664, - "ic_fluent_wifi_3_24_regular": 63665, - "ic_fluent_wifi_4_20_regular": 63666, - "ic_fluent_wifi_4_24_regular": 63667, - "ic_fluent_window_20_regular": 63669, - "ic_fluent_window_ad_20_regular": 63670, - "ic_fluent_window_dev_tools_16_regular": 63671, - "ic_fluent_window_dev_tools_20_regular": 63672, - "ic_fluent_window_dev_tools_24_regular": 63673, - "ic_fluent_window_inprivate_20_regular": 63674, - "ic_fluent_window_inprivate_account_20_regular": 63675, - "ic_fluent_window_multiple_20_regular": 63676, - "ic_fluent_window_new_20_regular": 63677, - "ic_fluent_window_shield_16_regular": 63678, - "ic_fluent_window_shield_20_regular": 63679, - "ic_fluent_window_shield_24_regular": 63680, - "ic_fluent_wrench_24_regular": 63681, - "ic_fluent_xbox_console_20_regular": 63682, - "ic_fluent_xbox_console_24_regular": 63683, - "ic_fluent_zoom_in_20_regular": 63684, - "ic_fluent_zoom_in_24_regular": 63685, - "ic_fluent_zoom_out_20_regular": 63686, - "ic_fluent_zoom_out_24_regular": 63687, - "ic_fluent_calendar_checkmark_24_regular": 63689, - "ic_fluent_add_square_24_regular": 63690, - "ic_fluent_apps_list_20_regular": 63691, - "ic_fluent_archive_16_regular": 63692, - "ic_fluent_arrow_autofit_height_24_regular": 63693, - "ic_fluent_arrow_autofit_width_24_regular": 63694, - "ic_fluent_arrow_counterclockwise_28_regular": 63695, - "ic_fluent_arrow_down_12_regular": 63696, - "ic_fluent_arrow_down_left_16_regular": 63697, - "ic_fluent_arrow_export_rtl_20_regular": 63698, - "ic_fluent_arrow_hook_down_left_16_regular": 63701, - "ic_fluent_arrow_hook_down_left_20_regular": 63702, - "ic_fluent_arrow_hook_down_left_24_regular": 63703, - "ic_fluent_arrow_hook_down_left_28_regular": 63704, - "ic_fluent_arrow_hook_down_right_16_regular": 63705, - "ic_fluent_arrow_hook_down_right_20_regular": 63706, - "ic_fluent_arrow_hook_down_right_24_regular": 63707, - "ic_fluent_arrow_hook_down_right_28_regular": 63708, - "ic_fluent_arrow_hook_up_left_16_regular": 63709, - "ic_fluent_arrow_hook_up_left_20_regular": 63710, - "ic_fluent_arrow_hook_up_left_24_regular": 63711, - "ic_fluent_arrow_hook_up_left_28_regular": 63712, - "ic_fluent_arrow_hook_up_right_16_regular": 63713, - "ic_fluent_arrow_hook_up_right_20_regular": 63714, - "ic_fluent_arrow_hook_up_right_24_regular": 63715, - "ic_fluent_arrow_hook_up_right_28_regular": 63716, - "ic_fluent_arrow_move_20_regular": 63717, - "ic_fluent_arrow_redo_32_regular": 63718, - "ic_fluent_arrow_redo_48_regular": 63719, - "ic_fluent_arrow_up_right_16_regular": 63723, - "ic_fluent_attach_arrow_right_20_regular": 63724, - "ic_fluent_attach_arrow_right_24_regular": 63725, - "ic_fluent_attach_text_24_regular": 63726, - "ic_fluent_backpack_12_regular": 63728, - "ic_fluent_backpack_16_regular": 63729, - "ic_fluent_backpack_20_regular": 63730, - "ic_fluent_backpack_24_regular": 63731, - "ic_fluent_backpack_28_regular": 63732, - "ic_fluent_backpack_48_regular": 63733, - "ic_fluent_balloon_16_regular": 63734, - "ic_fluent_bed_16_regular": 63735, - "ic_fluent_bluetooth_28_regular": 63736, - "ic_fluent_blur_16_regular": 63737, - "ic_fluent_blur_20_regular": 63738, - "ic_fluent_blur_24_regular": 63739, - "ic_fluent_blur_28_regular": 63740, - "ic_fluent_book_20_regular": 63741, - "ic_fluent_book_24_regular": 63742, - "ic_fluent_book_add_20_regular": 63743, - "ic_fluent_book_add_24_regular": 57697, - "ic_fluent_book_clock_24_regular": 57701, - "ic_fluent_book_coins_24_regular": 57703, - "ic_fluent_book_compass_24_regular": 57705, - "ic_fluent_book_database_24_regular": 57711, - "ic_fluent_book_exclamation_mark_24_regular": 57713, - "ic_fluent_book_information_24_regular": 57716, - "ic_fluent_book_letter_24_regular": 57718, - "ic_fluent_book_open_20_regular": 57720, - "ic_fluent_book_open_24_regular": 57721, - "ic_fluent_book_open_globe_24_regular": 57726, - "ic_fluent_book_pulse_24_regular": 57733, - "ic_fluent_book_question_mark_24_regular": 57735, - "ic_fluent_book_search_24_regular": 57738, - "ic_fluent_book_star_24_regular": 57740, - "ic_fluent_book_theta_24_regular": 57743, - "ic_fluent_border_all_24_regular": 57757, - "ic_fluent_border_bottom_24_regular": 57759, - "ic_fluent_border_bottom_double_24_regular": 57761, - "ic_fluent_border_bottom_thick_24_regular": 57763, - "ic_fluent_border_left_24_regular": 57765, - "ic_fluent_border_outside_24_regular": 57771, - "ic_fluent_border_outside_thick_24_regular": 57773, - "ic_fluent_border_right_24_regular": 57775, - "ic_fluent_border_top_24_regular": 57777, - "ic_fluent_border_top_bottom_24_regular": 57779, - "ic_fluent_border_top_bottom_double_24_regular": 57781, - "ic_fluent_border_top_bottom_thick_24_regular": 57783, - "ic_fluent_briefcase_12_regular": 57832, - "ic_fluent_briefcase_32_regular": 57835, - "ic_fluent_bug_16_regular": 57861, - "ic_fluent_bug_20_regular": 57862, - "ic_fluent_bug_24_regular": 57863, - "ic_fluent_building_bank_16_regular": 57868, - "ic_fluent_building_bank_20_regular": 57869, - "ic_fluent_building_bank_24_regular": 57870, - "ic_fluent_building_government_24_regular": 57885, - "ic_fluent_building_government_32_regular": 57886, - "ic_fluent_building_multiple_24_regular": 57892, - "ic_fluent_building_shop_16_regular": 57901, - "ic_fluent_building_shop_20_regular": 57902, - "ic_fluent_building_shop_24_regular": 57903, - "ic_fluent_building_skyscraper_16_regular": 57904, - "ic_fluent_building_skyscraper_20_regular": 57905, - "ic_fluent_building_skyscraper_24_regular": 57906, - "ic_fluent_calendar_cancel_16_regular": 57920, - "ic_fluent_calendar_clock_16_regular": 57923, - "ic_fluent_calendar_mention_20_regular": 57941, - "ic_fluent_calendar_person_24_regular": 57947, - "ic_fluent_calendar_question_mark_16_regular": 57950, - "ic_fluent_calendar_question_mark_20_regular": 57951, - "ic_fluent_calendar_question_mark_24_regular": 57952, - "ic_fluent_call_forward_16_regular": 57980, - "ic_fluent_call_forward_20_regular": 57981, - "ic_fluent_call_forward_28_regular": 57982, - "ic_fluent_call_forward_48_regular": 57983, - "ic_fluent_call_inbound_20_regular": 57984, - "ic_fluent_call_inbound_28_regular": 57985, - "ic_fluent_call_inbound_48_regular": 57986, - "ic_fluent_call_missed_28_regular": 57988, - "ic_fluent_call_missed_48_regular": 57989, - "ic_fluent_call_outbound_20_regular": 57990, - "ic_fluent_call_outbound_28_regular": 57991, - "ic_fluent_call_outbound_48_regular": 57992, - "ic_fluent_call_park_16_regular": 57993, - "ic_fluent_call_park_20_regular": 57994, - "ic_fluent_call_park_28_regular": 57995, - "ic_fluent_call_park_48_regular": 57996, - "ic_fluent_camera_edit_20_regular": 58015, - "ic_fluent_caret_up_12_regular": 58023, - "ic_fluent_caret_up_16_regular": 58024, - "ic_fluent_caret_up_20_regular": 58025, - "ic_fluent_caret_up_24_regular": 58026, - "ic_fluent_cart_16_regular": 58027, - "ic_fluent_cart_20_regular": 58028, - "ic_fluent_channel_28_regular": 58044, - "ic_fluent_channel_48_regular": 58045, - "ic_fluent_channel_add_16_regular": 58046, - "ic_fluent_channel_add_20_regular": 58047, - "ic_fluent_channel_add_24_regular": 58048, - "ic_fluent_channel_add_28_regular": 58049, - "ic_fluent_channel_add_48_regular": 58050, - "ic_fluent_channel_alert_16_regular": 58051, - "ic_fluent_channel_alert_20_regular": 58052, - "ic_fluent_channel_alert_24_regular": 58053, - "ic_fluent_channel_alert_28_regular": 58054, - "ic_fluent_channel_alert_48_regular": 58055, - "ic_fluent_channel_arrow_left_16_regular": 58056, - "ic_fluent_channel_arrow_left_20_regular": 58057, - "ic_fluent_channel_arrow_left_24_regular": 58058, - "ic_fluent_channel_arrow_left_28_regular": 58059, - "ic_fluent_channel_arrow_left_48_regular": 58060, - "ic_fluent_channel_dismiss_16_regular": 58061, - "ic_fluent_channel_dismiss_20_regular": 58062, - "ic_fluent_channel_dismiss_24_regular": 58063, - "ic_fluent_channel_dismiss_28_regular": 58064, - "ic_fluent_channel_dismiss_48_regular": 58065, - "ic_fluent_chat_16_regular": 58084, - "ic_fluent_checkmark_16_regular": 58117, - "ic_fluent_clipboard_paste_16_regular": 58202, - "ic_fluent_clock_dismiss_24_regular": 58227, - "ic_fluent_closed_caption_16_regular": 58232, - "ic_fluent_closed_caption_20_regular": 58233, - "ic_fluent_closed_caption_28_regular": 58234, - "ic_fluent_closed_caption_48_regular": 58236, - "ic_fluent_color_background_accent_20_regular": 58301, - "ic_fluent_color_background_accent_24_regular": 58302, - "ic_fluent_color_fill_accent_20_regular": 58306, - "ic_fluent_color_fill_accent_24_regular": 58307, - "ic_fluent_color_line_16_regular": 58309, - "ic_fluent_color_line_accent_16_regular": 58310, - "ic_fluent_color_line_accent_20_regular": 58311, - "ic_fluent_color_line_accent_24_regular": 58312, - "ic_fluent_comment_12_regular": 58323, - "ic_fluent_comment_28_regular": 58324, - "ic_fluent_comment_48_regular": 58325, - "ic_fluent_comment_add_12_regular": 58326, - "ic_fluent_comment_add_16_regular": 58327, - "ic_fluent_comment_add_20_regular": 58328, - "ic_fluent_comment_add_28_regular": 58329, - "ic_fluent_comment_add_48_regular": 58330, - "ic_fluent_comment_arrow_left_12_regular": 58331, - "ic_fluent_comment_arrow_left_16_regular": 58332, - "ic_fluent_comment_arrow_left_20_regular": 58333, - "ic_fluent_comment_arrow_left_28_regular": 58335, - "ic_fluent_comment_arrow_left_48_regular": 58336, - "ic_fluent_comment_arrow_right_12_regular": 58337, - "ic_fluent_comment_arrow_right_16_regular": 58338, - "ic_fluent_comment_arrow_right_20_regular": 58339, - "ic_fluent_comment_arrow_right_28_regular": 58341, - "ic_fluent_comment_arrow_right_48_regular": 58342, - "ic_fluent_comment_checkmark_12_regular": 58343, - "ic_fluent_comment_checkmark_16_regular": 58344, - "ic_fluent_comment_checkmark_20_regular": 58345, - "ic_fluent_comment_checkmark_24_regular": 58346, - "ic_fluent_comment_checkmark_28_regular": 58347, - "ic_fluent_comment_checkmark_48_regular": 58348, - "ic_fluent_comment_edit_20_regular": 58351, - "ic_fluent_comment_edit_24_regular": 58352, - "ic_fluent_comment_off_16_regular": 58368, - "ic_fluent_comment_off_20_regular": 58369, - "ic_fluent_comment_off_24_regular": 58370, - "ic_fluent_comment_off_28_regular": 58371, - "ic_fluent_comment_off_48_regular": 58372, - "ic_fluent_contact_card_group_16_regular": 58380, - "ic_fluent_contact_card_group_20_regular": 58381, - "ic_fluent_contact_card_group_28_regular": 58382, - "ic_fluent_contact_card_group_48_regular": 58383, - "ic_fluent_convert_range_24_regular": 58398, - "ic_fluent_copy_add_24_regular": 58400, - "ic_fluent_copy_select_20_regular": 58404, - "ic_fluent_couch_12_regular": 58405, - "ic_fluent_couch_24_regular": 58407, - "ic_fluent_crop_20_regular": 58411, - "ic_fluent_currency_dollar_rupee_16_regular": 58432, - "ic_fluent_currency_dollar_rupee_20_regular": 58433, - "ic_fluent_currency_dollar_rupee_24_regular": 58434, - "ic_fluent_cursor_20_regular": 58435, - "ic_fluent_cursor_24_regular": 58436, - "ic_fluent_cursor_hover_16_regular": 58439, - "ic_fluent_cursor_hover_20_regular": 58440, - "ic_fluent_cursor_hover_24_regular": 58441, - "ic_fluent_cursor_hover_28_regular": 58442, - "ic_fluent_cursor_hover_32_regular": 58443, - "ic_fluent_cursor_hover_48_regular": 58444, - "ic_fluent_cursor_hover_off_16_regular": 58445, - "ic_fluent_cursor_hover_off_20_regular": 58446, - "ic_fluent_cursor_hover_off_24_regular": 58447, - "ic_fluent_cursor_hover_off_28_regular": 58448, - "ic_fluent_cursor_hover_off_48_regular": 58449, - "ic_fluent_data_bar_vertical_add_24_regular": 58453, - "ic_fluent_data_usage_20_regular": 58463, - "ic_fluent_decimal_arrow_left_24_regular": 58488, - "ic_fluent_decimal_arrow_right_24_regular": 58490, - "ic_fluent_delete_16_regular": 58491, - "ic_fluent_dentist_12_regular": 58498, - "ic_fluent_dentist_16_regular": 58499, - "ic_fluent_dentist_20_regular": 58500, - "ic_fluent_dentist_28_regular": 58501, - "ic_fluent_dentist_48_regular": 58502, - "ic_fluent_dismiss_circle_28_regular": 58562, - "ic_fluent_doctor_12_regular": 58578, - "ic_fluent_doctor_16_regular": 58579, - "ic_fluent_doctor_20_regular": 58580, - "ic_fluent_doctor_28_regular": 58581, - "ic_fluent_doctor_48_regular": 58582, - "ic_fluent_document_16_regular": 58583, - "ic_fluent_document_48_regular": 58585, - "ic_fluent_document_add_16_regular": 58586, - "ic_fluent_document_add_20_regular": 58587, - "ic_fluent_document_add_24_regular": 58588, - "ic_fluent_document_add_28_regular": 58589, - "ic_fluent_document_add_48_regular": 58590, - "ic_fluent_document_arrow_left_16_regular": 58593, - "ic_fluent_document_arrow_left_20_regular": 58594, - "ic_fluent_document_arrow_left_24_regular": 58595, - "ic_fluent_document_arrow_left_28_regular": 58596, - "ic_fluent_document_arrow_left_48_regular": 58597, - "ic_fluent_document_catch_up_16_regular": 58607, - "ic_fluent_document_catch_up_20_regular": 58608, - "ic_fluent_document_landscape_data_24_regular": 58639, - "ic_fluent_document_landscape_split_20_regular": 58640, - "ic_fluent_document_landscape_split_hint_20_regular": 58642, - "ic_fluent_document_page_break_20_regular": 58663, - "ic_fluent_drink_beer_16_regular": 58755, - "ic_fluent_drink_beer_20_regular": 58756, - "ic_fluent_drink_coffee_16_regular": 58757, - "ic_fluent_drink_margarita_16_regular": 58758, - "ic_fluent_drink_margarita_20_regular": 58759, - "ic_fluent_drink_wine_16_regular": 58762, - "ic_fluent_drink_wine_20_regular": 58763, - "ic_fluent_dual_screen_span_24_regular": 58790, - "ic_fluent_edit_32_regular": 58803, - "ic_fluent_edit_off_16_regular": 58806, - "ic_fluent_edit_off_24_regular": 58808, - "ic_fluent_edit_settings_24_regular": 58819, - "ic_fluent_emoji_add_16_regular": 58823, - "ic_fluent_emoji_hand_24_regular": 58831, - "ic_fluent_emoji_hand_28_regular": 58832, - "ic_fluent_eraser_20_regular": 58852, - "ic_fluent_eraser_24_regular": 58853, - "ic_fluent_eraser_medium_24_regular": 58855, - "ic_fluent_eraser_segment_24_regular": 58857, - "ic_fluent_eraser_small_24_regular": 58859, - "ic_fluent_error_circle_12_regular": 58861, - "ic_fluent_eye_tracking_off_16_regular": 58874, - "ic_fluent_eye_tracking_off_20_regular": 58875, - "ic_fluent_eye_tracking_off_24_regular": 58876, - "ic_fluent_f_stop_16_regular": 58881, - "ic_fluent_f_stop_20_regular": 58882, - "ic_fluent_f_stop_24_regular": 58883, - "ic_fluent_f_stop_28_regular": 58884, - "ic_fluent_fingerprint_48_regular": 58898, - "ic_fluent_fixed_width_24_regular": 58900, - "ic_fluent_flip_horizontal_24_regular": 58925, - "ic_fluent_flip_vertical_24_regular": 58931, - "ic_fluent_fluent_32_regular": 58942, - "ic_fluent_fluent_48_regular": 58943, - "ic_fluent_fluid_20_regular": 58945, - "ic_fluent_fluid_24_regular": 58946, - "ic_fluent_food_egg_16_regular": 58988, - "ic_fluent_food_egg_20_regular": 58989, - "ic_fluent_food_toast_16_regular": 58994, - "ic_fluent_food_toast_20_regular": 58995, - "ic_fluent_gavel_24_regular": 59031, - "ic_fluent_gavel_32_regular": 59032, - "ic_fluent_glasses_16_regular": 59049, - "ic_fluent_glasses_20_regular": 59050, - "ic_fluent_glasses_28_regular": 59051, - "ic_fluent_glasses_48_regular": 59052, - "ic_fluent_glasses_off_16_regular": 59053, - "ic_fluent_glasses_off_20_regular": 59054, - "ic_fluent_glasses_off_28_regular": 59055, - "ic_fluent_glasses_off_48_regular": 59056, - "ic_fluent_globe_16_regular": 59057, - "ic_fluent_hand_left_20_regular": 59099, - "ic_fluent_hand_right_24_regular": 59104, - "ic_fluent_hand_right_28_regular": 59105, - "ic_fluent_hat_graduation_16_regular": 59109, - "ic_fluent_hat_graduation_20_regular": 59110, - "ic_fluent_hat_graduation_24_regular": 59111, - "ic_fluent_hd_16_regular": 59112, - "ic_fluent_hd_20_regular": 59113, - "ic_fluent_hd_24_regular": 59114, - "ic_fluent_headset_16_regular": 59126, - "ic_fluent_headset_20_regular": 59127, - "ic_fluent_headset_48_regular": 59129, - "ic_fluent_heart_pulse_24_regular": 59138, - "ic_fluent_heart_pulse_32_regular": 59139, - "ic_fluent_home_16_regular": 59151, - "ic_fluent_home_32_regular": 59152, - "ic_fluent_home_48_regular": 59153, - "ic_fluent_image_arrow_counterclockwise_24_regular": 59167, - "ic_fluent_info_shield_20_regular": 59191, - "ic_fluent_key_multiple_20_regular": 59205, - "ic_fluent_line_horizontal_5_error_20_regular": 59245, - "ic_fluent_link_square_12_regular": 59253, - "ic_fluent_link_square_16_regular": 59254, - "ic_fluent_location_48_regular": 59260, - "ic_fluent_location_off_16_regular": 59272, - "ic_fluent_location_off_20_regular": 59273, - "ic_fluent_location_off_24_regular": 59274, - "ic_fluent_location_off_28_regular": 59275, - "ic_fluent_location_off_48_regular": 59276, - "ic_fluent_lock_multiple_24_regular": 59283, - "ic_fluent_lottery_24_regular": 59289, - "ic_fluent_mail_16_regular": 59297, - "ic_fluent_mail_read_16_regular": 59345, - "ic_fluent_math_format_linear_24_regular": 59358, - "ic_fluent_math_format_professional_24_regular": 59360, - "ic_fluent_math_formula_24_regular": 59363, - "ic_fluent_maximize_20_regular": 59371, - "ic_fluent_maximize_24_regular": 59372, - "ic_fluent_maximize_28_regular": 59373, - "ic_fluent_maximize_48_regular": 59374, - "ic_fluent_meet_now_16_regular": 59375, - "ic_fluent_mic_off_20_regular": 59390, - "ic_fluent_mic_off_48_regular": 59392, - "ic_fluent_mic_prohibited_24_regular": 59395, - "ic_fluent_more_circle_20_regular": 59425, - "ic_fluent_movies_and_tv_16_regular": 59435, - "ic_fluent_movies_and_tv_20_regular": 59436, - "ic_fluent_navigation_unread_24_regular": 59491, - "ic_fluent_number_symbol_dismiss_24_regular": 59531, - "ic_fluent_open_28_regular": 59534, - "ic_fluent_open_48_regular": 59535, - "ic_fluent_open_folder_16_regular": 59536, - "ic_fluent_open_folder_20_regular": 59537, - "ic_fluent_open_folder_28_regular": 59538, - "ic_fluent_open_folder_48_regular": 59539, - "ic_fluent_open_off_16_regular": 59540, - "ic_fluent_open_off_20_regular": 59541, - "ic_fluent_open_off_24_regular": 59542, - "ic_fluent_open_off_28_regular": 59543, - "ic_fluent_open_off_48_regular": 59544, - "ic_fluent_paint_brush_arrow_down_24_regular": 59560, - "ic_fluent_paint_brush_arrow_up_24_regular": 59562, - "ic_fluent_pause_12_regular": 59596, - "ic_fluent_payment_16_regular": 59604, - "ic_fluent_payment_28_regular": 59605, - "ic_fluent_people_prohibited_16_regular": 59651, - "ic_fluent_people_swap_16_regular": 59658, - "ic_fluent_people_swap_20_regular": 59659, - "ic_fluent_people_swap_24_regular": 59660, - "ic_fluent_people_swap_28_regular": 59661, - "ic_fluent_people_team_add_20_regular": 59665, - "ic_fluent_people_team_add_24_regular": 59666, - "ic_fluent_person_available_20_regular": 59684, - "ic_fluent_person_clock_16_regular": 59690, - "ic_fluent_person_clock_20_regular": 59691, - "ic_fluent_person_clock_24_regular": 59692, - "ic_fluent_person_delete_20_regular": 59693, - "ic_fluent_person_mail_16_regular": 59703, - "ic_fluent_person_mail_20_regular": 59704, - "ic_fluent_person_mail_24_regular": 59705, - "ic_fluent_person_mail_28_regular": 59706, - "ic_fluent_person_mail_48_regular": 59707, - "ic_fluent_person_prohibited_24_regular": 59715, - "ic_fluent_poll_20_regular": 59807, - "ic_fluent_presence_available_10_regular": 59829, - "ic_fluent_presence_available_12_regular": 59830, - "ic_fluent_presence_available_16_regular": 59831, - "ic_fluent_presence_dnd_10_regular": 59836, - "ic_fluent_presence_dnd_12_regular": 59837, - "ic_fluent_presence_dnd_16_regular": 59838, - "ic_fluent_pulse_24_regular": 59869, - "ic_fluent_qr_code_20_regular": 59884, - "ic_fluent_real_estate_24_regular": 59901, - "ic_fluent_ribbon_24_regular": 59944, - "ic_fluent_ribbon_star_20_regular": 59951, - "ic_fluent_ribbon_star_24_regular": 59952, - "ic_fluent_run_16_regular": 59967, - "ic_fluent_run_20_regular": 59968, - "ic_fluent_scales_24_regular": 59985, - "ic_fluent_scales_32_regular": 59986, - "ic_fluent_search_shield_20_regular": 60032, - "ic_fluent_shield_dismiss_shield_20_regular": 60109, - "ic_fluent_shifts_day_20_regular": 60131, - "ic_fluent_shifts_day_24_regular": 60132, - "ic_fluent_sidebar_search_ltr_20_regular": 60152, - "ic_fluent_sidebar_search_rtl_20_regular": 60153, - "ic_fluent_sign_out_20_regular": 60154, - "ic_fluent_slide_multiple_arrow_right_24_regular": 60191, - "ic_fluent_slide_search_24_regular": 60193, - "ic_fluent_slide_search_28_regular": 60194, - "ic_fluent_slide_size_24_regular": 60198, - "ic_fluent_slide_text_16_regular": 60199, - "ic_fluent_slide_text_20_regular": 60200, - "ic_fluent_slide_text_28_regular": 60201, - "ic_fluent_slide_text_48_regular": 60202, - "ic_fluent_speaker_0_16_regular": 60215, - "ic_fluent_speaker_0_20_regular": 60216, - "ic_fluent_speaker_0_28_regular": 60217, - "ic_fluent_speaker_0_48_regular": 60219, - "ic_fluent_speaker_1_16_regular": 60220, - "ic_fluent_speaker_1_20_regular": 60221, - "ic_fluent_speaker_1_28_regular": 60222, - "ic_fluent_speaker_1_48_regular": 60224, - "ic_fluent_speaker_bluetooth_28_regular": 60232, - "ic_fluent_speaker_off_16_regular": 60238, - "ic_fluent_speaker_off_20_regular": 60239, - "ic_fluent_speaker_off_48_regular": 60240, - "ic_fluent_speaker_usb_24_regular": 60244, - "ic_fluent_speaker_usb_28_regular": 60245, - "ic_fluent_sport_16_regular": 60261, - "ic_fluent_sport_20_regular": 60262, - "ic_fluent_sport_24_regular": 60263, - "ic_fluent_sport_american_football_24_regular": 60265, - "ic_fluent_sport_baseball_24_regular": 60267, - "ic_fluent_sport_basketball_24_regular": 60269, - "ic_fluent_sport_hockey_24_regular": 60271, - "ic_fluent_star_edit_24_regular": 60329, - "ic_fluent_tab_desktop_arrow_left_20_regular": 60395, - "ic_fluent_tab_prohibited_24_regular": 60401, - "ic_fluent_table_16_regular": 60404, - "ic_fluent_table_28_regular": 60405, - "ic_fluent_table_48_regular": 60407, - "ic_fluent_table_simple_16_regular": 60496, - "ic_fluent_table_simple_20_regular": 60497, - "ic_fluent_table_simple_24_regular": 60498, - "ic_fluent_table_simple_28_regular": 60499, - "ic_fluent_table_simple_48_regular": 60500, - "ic_fluent_tag_16_regular": 60528, - "ic_fluent_tasks_app_20_regular": 60575, - "ic_fluent_tent_12_regular": 60578, - "ic_fluent_tent_16_regular": 60579, - "ic_fluent_tent_20_regular": 60580, - "ic_fluent_tent_28_regular": 60581, - "ic_fluent_tent_48_regular": 60582, - "ic_fluent_text_bold_16_regular": 60626, - "ic_fluent_text_color_16_regular": 60661, - "ic_fluent_text_column_one_narrow_20_regular": 60662, - "ic_fluent_text_column_one_narrow_24_regular": 60663, - "ic_fluent_text_column_one_wide_20_regular": 60664, - "ic_fluent_text_column_one_wide_24_regular": 60665, - "ic_fluent_text_continuous_24_regular": 60669, - "ic_fluent_text_italic_16_regular": 60726, - "ic_fluent_text_underline_16_regular": 60775, - "ic_fluent_ticket_diagonal_16_regular": 60795, - "ic_fluent_ticket_diagonal_20_regular": 60796, - "ic_fluent_ticket_diagonal_24_regular": 60797, - "ic_fluent_ticket_diagonal_28_regular": 60798, - "ic_fluent_timer_16_regular": 60806, - "ic_fluent_timer_20_regular": 60808, - "ic_fluent_toggle_left_16_regular": 60815, - "ic_fluent_toggle_left_20_regular": 60816, - "ic_fluent_toggle_left_24_regular": 60817, - "ic_fluent_toggle_left_28_regular": 60818, - "ic_fluent_toggle_left_48_regular": 60819, - "ic_fluent_toggle_right_28_regular": 60823, - "ic_fluent_toggle_right_48_regular": 60824, - "ic_fluent_tv_16_regular": 60865, - "ic_fluent_tv_20_regular": 60866, - "ic_fluent_tv_24_regular": 60867, - "ic_fluent_tv_28_regular": 60868, - "ic_fluent_tv_48_regular": 60869, - "ic_fluent_vehicle_bicycle_16_regular": 60881, - "ic_fluent_vehicle_bicycle_20_regular": 60882, - "ic_fluent_vehicle_bus_16_regular": 60883, - "ic_fluent_vehicle_bus_20_regular": 60884, - "ic_fluent_vehicle_car_28_regular": 60888, - "ic_fluent_vehicle_car_48_regular": 60889, - "ic_fluent_vehicle_ship_16_regular": 60898, - "ic_fluent_vehicle_ship_20_regular": 60899, - "ic_fluent_vehicle_ship_24_regular": 60900, - "ic_fluent_vehicle_subway_16_regular": 60901, - "ic_fluent_vehicle_subway_20_regular": 60902, - "ic_fluent_vehicle_subway_24_regular": 60903, - "ic_fluent_vehicle_truck_16_regular": 60904, - "ic_fluent_vehicle_truck_20_regular": 60905, - "ic_fluent_video_clip_20_regular": 60927, - "ic_fluent_vote_20_regular": 60968, - "ic_fluent_vote_24_regular": 60969, - "ic_fluent_weather_drizzle_20_regular": 60990, - "ic_fluent_weather_drizzle_24_regular": 60991, - "ic_fluent_weather_drizzle_48_regular": 60992, - "ic_fluent_weather_haze_20_regular": 60993, - "ic_fluent_weather_haze_24_regular": 60994, - "ic_fluent_weather_haze_48_regular": 60995, - "ic_fluent_weather_moon_16_regular": 60996, - "ic_fluent_weather_moon_28_regular": 60997, - "ic_fluent_weather_moon_off_16_regular": 60998, - "ic_fluent_weather_moon_off_20_regular": 60999, - "ic_fluent_weather_moon_off_24_regular": 61000, - "ic_fluent_weather_moon_off_28_regular": 61001, - "ic_fluent_weather_moon_off_48_regular": 61002, - "ic_fluent_weather_sunny_high_20_regular": 61007, - "ic_fluent_weather_sunny_high_24_regular": 61008, - "ic_fluent_weather_sunny_high_48_regular": 61009, - "ic_fluent_weather_sunny_low_20_regular": 61010, - "ic_fluent_weather_sunny_low_24_regular": 61011, - "ic_fluent_weather_sunny_low_48_regular": 61012, - "ic_fluent_window_new_16_regular": 61050, - "ic_fluent_window_new_24_regular": 61051, - "ic_fluent_wrench_16_regular": 61061, - "ic_fluent_wrench_20_regular": 61062, - "ic_fluent_video_background_effect_20_regular": 60919, - "ic_fluent_alert_16_regular": 57364, - "ic_fluent_approvals_app_16_regular": 57439, - "ic_fluent_approvals_app_20_regular": 57440, - "ic_fluent_arrow_bounce_16_regular": 57478, - "ic_fluent_arrow_bounce_24_regular": 57480, - "ic_fluent_arrow_enter_up_20_regular": 57538, - "ic_fluent_arrow_enter_up_24_regular": 57539, - "ic_fluent_bookmark_multiple_20_regular": 57747, - "ic_fluent_briefcase_28_regular": 57834, - "ic_fluent_briefcase_48_regular": 57836, - "ic_fluent_building_20_regular": 57867, - "ic_fluent_chat_48_regular": 58086, - "ic_fluent_desktop_arrow_right_16_regular": 58504, - "ic_fluent_desktop_arrow_right_20_regular": 58505, - "ic_fluent_desktop_arrow_right_24_regular": 58506, - "ic_fluent_desktop_speaker_20_regular": 58532, - "ic_fluent_desktop_speaker_24_regular": 58533, - "ic_fluent_desktop_speaker_off_20_regular": 58534, - "ic_fluent_desktop_speaker_off_24_regular": 58535, - "ic_fluent_emoji_add_20_regular": 58824, - "ic_fluent_food_cake_20_regular": 58987, - "ic_fluent_grid_kanban_20_regular": 59079, - "ic_fluent_hand_right_20_regular": 59103, - "ic_fluent_hand_right_off_20_regular": 59106, - "ic_fluent_learning_app_20_regular": 59231, - "ic_fluent_learning_app_24_regular": 59232, - "ic_fluent_live_off_20_regular": 59258, - "ic_fluent_live_off_24_regular": 59259, - "ic_fluent_mic_prohibited_20_regular": 59394, - "ic_fluent_notebook_section_20_regular": 59513, - "ic_fluent_people_audience_20_regular": 59631, - "ic_fluent_people_call_16_regular": 59632, - "ic_fluent_people_call_20_regular": 59633, - "ic_fluent_person_call_16_regular": 59685, - "ic_fluent_person_call_20_regular": 59686, - "ic_fluent_phone_desktop_add_20_regular": 59737, - "ic_fluent_presenter_20_regular": 59847, - "ic_fluent_presenter_off_20_regular": 59848, - "ic_fluent_rectangle_landscape_20_regular": 59913, - "ic_fluent_ribbon_20_regular": 59943, - "ic_fluent_save_sync_20_regular": 59982, - "ic_fluent_shifts_20_regular": 60124, - "ic_fluent_shifts_checkmark_20_regular": 60129, - "ic_fluent_shifts_checkmark_24_regular": 60130, - "ic_fluent_slide_multiple_24_regular": 60189, - "ic_fluent_star_line_horizontal_3_20_regular": 60338, - "ic_fluent_star_line_horizontal_3_24_regular": 60339, - "ic_fluent_table_add_20_regular": 60409, - "ic_fluent_table_dismiss_20_regular": 60436, - "ic_fluent_table_dismiss_24_regular": 60437, - "ic_fluent_tap_double_20_regular": 60554, - "ic_fluent_tap_single_20_regular": 60557, - "ic_fluent_text_bullet_list_add_20_regular": 60629, - "ic_fluent_text_bullet_list_square_20_regular": 60642, - "ic_fluent_text_grammar_error_20_regular": 60697, - "ic_fluent_text_number_list_rtl_20_regular": 60736, - "ic_fluent_video_360_20_regular": 60913, - "ic_fluent_video_360_24_regular": 60914, - "ic_fluent_video_person_12_regular": 60936, - "ic_fluent_video_person_16_regular": 60937, - "ic_fluent_video_person_20_regular": 60938, - "ic_fluent_video_person_28_regular": 60939, - "ic_fluent_video_person_48_regular": 60940, - "ic_fluent_video_person_call_16_regular": 60941, - "ic_fluent_video_person_call_20_regular": 60942, - "ic_fluent_video_person_call_24_regular": 60943, - "ic_fluent_video_person_star_20_regular": 60951, - "ic_fluent_video_prohibited_20_regular": 60956, - "ic_fluent_video_switch_20_regular": 60960, - "ic_fluent_wifi_warning_20_regular": 61020, - "ic_fluent_album_24_regular": 57360, - "ic_fluent_album_add_24_regular": 57362, - "ic_fluent_alert_urgent_16_regular": 57373, - "ic_fluent_arrow_right_16_regular": 57579, - "ic_fluent_arrow_undo_16_regular": 57638, - "ic_fluent_arrow_up_left_16_regular": 57643, - "ic_fluent_arrow_up_left_20_regular": 57644, - "ic_fluent_backpack_add_20_regular": 57661, - "ic_fluent_backpack_add_24_regular": 57662, - "ic_fluent_backpack_add_28_regular": 57663, - "ic_fluent_backpack_add_48_regular": 57664, - "ic_fluent_bot_20_regular": 57784, - "ic_fluent_call_connecting_20_regular": 57976, - "ic_fluent_call_exclamation_20_regular": 57979, - "ic_fluent_call_transfer_20_regular": 58003, - "ic_fluent_camera_off_24_regular": 58017, - "ic_fluent_chat_bubbles_question_20_regular": 58091, - "ic_fluent_chat_mail_20_regular": 58095, - "ic_fluent_chat_off_20_regular": 58096, - "ic_fluent_checkmark_48_regular": 58118, - "ic_fluent_cloud_sync_20_regular": 58286, - "ic_fluent_content_view_20_regular": 58392, - "ic_fluent_cube_rotate_20_regular": 58424, - "ic_fluent_data_line_20_regular": 58456, - "ic_fluent_device_meeting_room_20_regular": 58546, - "ic_fluent_device_meeting_room_remote_20_regular": 58547, - "ic_fluent_draw_shape_24_regular": 58742, - "ic_fluent_draw_text_24_regular": 58744, - "ic_fluent_folder_arrow_up_16_regular": 58960, - "ic_fluent_folder_arrow_up_20_regular": 58961, - "ic_fluent_folder_arrow_up_24_regular": 58962, - "ic_fluent_folder_arrow_up_28_regular": 58963, - "ic_fluent_fps_30_16_regular": 59000, - "ic_fluent_fps_30_20_regular": 59001, - "ic_fluent_fps_30_24_regular": 59002, - "ic_fluent_fps_30_28_regular": 59003, - "ic_fluent_fps_30_48_regular": 59004, - "ic_fluent_fps_60_16_regular": 59005, - "ic_fluent_fps_60_20_regular": 59006, - "ic_fluent_fps_60_24_regular": 59007, - "ic_fluent_fps_60_28_regular": 59008, - "ic_fluent_fps_60_48_regular": 59009, - "ic_fluent_home_person_20_regular": 59159, - "ic_fluent_image_off_20_regular": 59180, - "ic_fluent_lasso_20_regular": 59222, - "ic_fluent_leaf_three_16_regular": 59228, - "ic_fluent_leaf_three_20_regular": 59229, - "ic_fluent_leaf_three_24_regular": 59230, - "ic_fluent_mic_sync_20_regular": 59414, - "ic_fluent_notebook_subsection_20_regular": 59515, - "ic_fluent_person_circle_20_regular": 59688, - "ic_fluent_pulse_20_regular": 59868, - "ic_fluent_pulse_square_24_regular": 59873, - "ic_fluent_ribbon_16_regular": 59942, - "ic_fluent_rotate_left_24_regular": 59960, - "ic_fluent_rotate_right_20_regular": 59961, - "ic_fluent_rotate_right_24_regular": 59962, - "ic_fluent_share_close_tray_20_regular": 60073, - "ic_fluent_square_multiple_20_regular": 60310, - "ic_fluent_star_emphasis_20_regular": 60330, - "ic_fluent_tv_arrow_right_20_regular": 60870, - "ic_fluent_video_person_star_off_20_regular": 60952, - "ic_fluent_video_recording_20_regular": 60959, - "ic_fluent_video_sync_20_regular": 60961, - "ic_fluent_breakout_room_20_regular": 57829, - "ic_fluent_content_view_gallery_20_regular": 58394, - "ic_fluent_door_tag_24_regular": 58731, - "ic_fluent_luggage_24_regular": 59292, - "ic_fluent_people_edit_20_regular": 59639, - "ic_fluent_channel_share_12_regular": 58066, - "ic_fluent_channel_share_16_regular": 58067, - "ic_fluent_channel_share_20_regular": 58068, - "ic_fluent_channel_share_24_regular": 58069, - "ic_fluent_channel_share_28_regular": 58070, - "ic_fluent_channel_share_48_regular": 58071, - "ic_fluent_people_error_16_regular": 59640, - "ic_fluent_people_error_20_regular": 59641, - "ic_fluent_people_error_24_regular": 59642, - "ic_fluent_puzzle_cube_16_regular": 59874, - "ic_fluent_puzzle_cube_20_regular": 59875, - "ic_fluent_puzzle_cube_24_regular": 59876, - "ic_fluent_puzzle_cube_28_regular": 59877, - "ic_fluent_puzzle_cube_48_regular": 59878, - "ic_fluent_arrow_circle_down_right_16_regular": 57486, - "ic_fluent_arrow_circle_down_right_24_regular": 57488, - "ic_fluent_arrow_circle_right_24_regular": 57500, - "ic_fluent_arrow_circle_up_16_regular": 57505, - "ic_fluent_arrow_circle_up_20_regular": 57506, - "ic_fluent_arrow_circle_up_24_regular": 57507, - "ic_fluent_arrow_circle_up_left_24_regular": 57512, - "ic_fluent_arrow_enter_left_20_regular": 57536, - "ic_fluent_arrow_enter_left_24_regular": 57537, - "ic_fluent_arrow_export_ltr_20_regular": 57543, - "ic_fluent_arrow_export_ltr_24_regular": 57544, - "ic_fluent_arrow_square_down_24_regular": 57591, - "ic_fluent_arrow_undo_32_regular": 57640, - "ic_fluent_arrow_undo_48_regular": 57641, - "ic_fluent_auto_fit_height_24_regular": 57656, - "ic_fluent_auto_fit_width_24_regular": 57658, - "ic_fluent_briefcase_medical_24_regular": 57838, - "ic_fluent_briefcase_medical_32_regular": 57839, - "ic_fluent_building_factory_24_regular": 57880, - "ic_fluent_calendar_arrow_down_24_regular": 57916, - "ic_fluent_call_16_regular": 57967, - "ic_fluent_call_20_regular": 57968, - "ic_fluent_call_24_regular": 57969, - "ic_fluent_call_28_regular": 57970, - "ic_fluent_call_missed_20_regular": 57987, - "ic_fluent_call_prohibited_16_regular": 57997, - "ic_fluent_call_prohibited_20_regular": 57998, - "ic_fluent_call_prohibited_24_regular": 57999, - "ic_fluent_call_prohibited_28_regular": 58000, - "ic_fluent_call_prohibited_48_regular": 58001, - "ic_fluent_center_horizontal_24_regular": 58041, - "ic_fluent_center_vertical_24_regular": 58043, - "ic_fluent_chevron_circle_down_24_regular": 58128, - "ic_fluent_chevron_circle_right_24_regular": 58142, - "ic_fluent_clipboard_image_24_regular": 58199, - "ic_fluent_comment_arrow_left_24_regular": 58334, - "ic_fluent_comment_arrow_right_24_regular": 58340, - "ic_fluent_comment_dismiss_24_regular": 58350, - "ic_fluent_component_2_double_tap_swipe_down_24_regular": 58375, - "ic_fluent_component_2_double_tap_swipe_up_24_regular": 58376, - "ic_fluent_copy_arrow_right_16_regular": 58401, - "ic_fluent_copy_arrow_right_24_regular": 58403, - "ic_fluent_currency_dollar_euro_16_regular": 58429, - "ic_fluent_currency_dollar_euro_20_regular": 58430, - "ic_fluent_currency_dollar_euro_24_regular": 58431, - "ic_fluent_delete_dismiss_24_regular": 58495, - "ic_fluent_delete_dismiss_28_regular": 58496, - "ic_fluent_document_prohibited_20_regular": 58670, - "ic_fluent_document_prohibited_24_regular": 58671, - "ic_fluent_document_sync_24_regular": 58697, - "ic_fluent_drink_to_go_24_regular": 58761, - "ic_fluent_fluent_24_regular": 58941, - "ic_fluent_folder_arrow_right_16_regular": 58955, - "ic_fluent_folder_arrow_right_20_regular": 58956, - "ic_fluent_folder_arrow_right_24_regular": 58957, - "ic_fluent_folder_arrow_right_28_regular": 58958, - "ic_fluent_folder_arrow_right_48_regular": 58959, - "ic_fluent_folder_arrow_up_48_regular": 58964, - "ic_fluent_folder_prohibited_20_regular": 58972, - "ic_fluent_folder_prohibited_24_regular": 58973, - "ic_fluent_folder_prohibited_28_regular": 58974, - "ic_fluent_folder_prohibited_48_regular": 58975, - "ic_fluent_folder_swap_16_regular": 58976, - "ic_fluent_folder_swap_20_regular": 58977, - "ic_fluent_folder_swap_24_regular": 58978, - "ic_fluent_full_screen_maximize_24_regular": 59013, - "ic_fluent_full_screen_minimize_24_regular": 59016, - "ic_fluent_image_multiple_20_regular": 59173, - "ic_fluent_image_multiple_24_regular": 59174, - "ic_fluent_image_multiple_28_regular": 59175, - "ic_fluent_leaf_one_16_regular": 59225, - "ic_fluent_leaf_one_20_regular": 59226, - "ic_fluent_leaf_one_24_regular": 59227, - "ic_fluent_link_dismiss_20_regular": 59251, - "ic_fluent_location_dismiss_24_regular": 59271, - "ic_fluent_lock_closed_12_regular": 59277, - "ic_fluent_lock_closed_16_regular": 59278, - "ic_fluent_lock_closed_20_regular": 59279, - "ic_fluent_lock_closed_24_regular": 59280, - "ic_fluent_lock_open_20_regular": 59285, - "ic_fluent_lock_open_24_regular": 59286, - "ic_fluent_lock_open_28_regular": 59287, - "ic_fluent_mail_inbox_all_24_regular": 59319, - "ic_fluent_mail_inbox_arrow_right_24_regular": 59322, - "ic_fluent_mail_inbox_arrow_up_20_regular": 59323, - "ic_fluent_mail_inbox_arrow_up_24_regular": 59324, - "ic_fluent_mail_off_24_regular": 59338, - "ic_fluent_more_horizontal_16_regular": 59427, - "ic_fluent_more_horizontal_20_regular": 59428, - "ic_fluent_more_horizontal_24_regular": 59429, - "ic_fluent_more_horizontal_28_regular": 59430, - "ic_fluent_more_horizontal_48_regular": 59432, - "ic_fluent_music_note_1_20_regular": 59473, - "ic_fluent_music_note_1_24_regular": 59474, - "ic_fluent_music_note_2_16_regular": 59475, - "ic_fluent_music_note_2_24_regular": 59477, - "ic_fluent_people_team_delete_24_regular": 59669, - "ic_fluent_phone_add_24_regular": 59733, - "ic_fluent_phone_arrow_right_20_regular": 59734, - "ic_fluent_phone_arrow_right_24_regular": 59735, - "ic_fluent_phone_dismiss_24_regular": 59739, - "ic_fluent_phone_lock_24_regular": 59748, - "ic_fluent_phone_span_in_16_regular": 59753, - "ic_fluent_phone_span_in_20_regular": 59754, - "ic_fluent_phone_span_in_24_regular": 59755, - "ic_fluent_phone_span_in_28_regular": 59756, - "ic_fluent_phone_span_out_16_regular": 59757, - "ic_fluent_phone_span_out_20_regular": 59758, - "ic_fluent_phone_span_out_24_regular": 59759, - "ic_fluent_phone_span_out_28_regular": 59760, - "ic_fluent_position_backward_20_regular": 59816, - "ic_fluent_position_backward_24_regular": 59817, - "ic_fluent_position_forward_20_regular": 59818, - "ic_fluent_position_forward_24_regular": 59819, - "ic_fluent_position_to_back_20_regular": 59820, - "ic_fluent_position_to_back_24_regular": 59821, - "ic_fluent_position_to_front_20_regular": 59822, - "ic_fluent_position_to_front_24_regular": 59823, - "ic_fluent_resize_large_16_regular": 59925, - "ic_fluent_resize_large_20_regular": 59926, - "ic_fluent_resize_large_24_regular": 59927, - "ic_fluent_resize_small_16_regular": 59928, - "ic_fluent_resize_small_20_regular": 59929, - "ic_fluent_resize_small_24_regular": 59930, - "ic_fluent_save_edit_20_regular": 59976, - "ic_fluent_save_edit_24_regular": 59977, - "ic_fluent_search_visual_16_regular": 60034, - "ic_fluent_search_visual_20_regular": 60035, - "ic_fluent_search_visual_24_regular": 60036, - "ic_fluent_select_all_on_24_regular": 60039, - "ic_fluent_share_screen_start_20_regular": 60090, - "ic_fluent_share_screen_start_24_regular": 60091, - "ic_fluent_share_screen_start_28_regular": 60092, - "ic_fluent_share_screen_stop_16_regular": 60094, - "ic_fluent_share_screen_stop_20_regular": 60095, - "ic_fluent_share_screen_stop_24_regular": 60096, - "ic_fluent_share_screen_stop_28_regular": 60097, - "ic_fluent_share_screen_stop_48_regular": 60098, - "ic_fluent_shield_dismiss_16_regular": 60108, - "ic_fluent_shifts_prohibited_24_regular": 60134, - "ic_fluent_shifts_question_mark_24_regular": 60136, - "ic_fluent_speaker_2_16_regular": 60225, - "ic_fluent_speaker_2_20_regular": 60226, - "ic_fluent_speaker_2_24_regular": 60227, - "ic_fluent_speaker_2_28_regular": 60228, - "ic_fluent_speaker_2_48_regular": 60230, - "ic_fluent_speaker_mute_16_regular": 60233, - "ic_fluent_speaker_mute_20_regular": 60234, - "ic_fluent_speaker_mute_24_regular": 60235, - "ic_fluent_speaker_mute_28_regular": 60236, - "ic_fluent_speaker_mute_48_regular": 60237, - "ic_fluent_star_arrow_right_end_24_regular": 60322, - "ic_fluent_subtract_12_regular": 60366, - "ic_fluent_subtract_16_regular": 60367, - "ic_fluent_subtract_20_regular": 60368, - "ic_fluent_subtract_24_regular": 60369, - "ic_fluent_subtract_28_regular": 60370, - "ic_fluent_subtract_48_regular": 60371, - "ic_fluent_tab_add_20_regular": 60389, - "ic_fluent_tab_add_24_regular": 60390, - "ic_fluent_tab_arrow_left_24_regular": 60392, - "ic_fluent_tab_shield_dismiss_20_regular": 60402, - "ic_fluent_tab_shield_dismiss_24_regular": 60403, - "ic_fluent_table_delete_column_24_regular": 60429, - "ic_fluent_table_delete_row_24_regular": 60433, - "ic_fluent_table_freeze_column_and_row_24_regular": 60447, - "ic_fluent_table_insert_column_24_regular": 60455, - "ic_fluent_table_insert_row_24_regular": 60459, - "ic_fluent_table_move_above_24_regular": 60471, - "ic_fluent_table_move_below_24_regular": 60475, - "ic_fluent_table_resize_column_24_regular": 60486, - "ic_fluent_table_resize_row_24_regular": 60490, - "ic_fluent_table_stack_above_24_regular": 60504, - "ic_fluent_table_stack_below_24_regular": 60508, - "ic_fluent_table_stack_left_24_regular": 60512, - "ic_fluent_table_stack_right_24_regular": 60516, - "ic_fluent_tag_question_mark_16_regular": 60546, - "ic_fluent_tag_question_mark_24_regular": 60548, - "ic_fluent_text_grammar_arrow_left_20_regular": 60689, - "ic_fluent_text_grammar_arrow_left_24_regular": 60690, - "ic_fluent_text_grammar_arrow_right_20_regular": 60691, - "ic_fluent_text_grammar_arrow_right_24_regular": 60692, - "ic_fluent_text_grammar_checkmark_20_regular": 60693, - "ic_fluent_text_grammar_checkmark_24_regular": 60694, - "ic_fluent_text_grammar_dismiss_20_regular": 60695, - "ic_fluent_text_grammar_dismiss_24_regular": 60696, - "ic_fluent_text_grammar_settings_20_regular": 60698, - "ic_fluent_text_grammar_settings_24_regular": 60699, - "ic_fluent_text_grammar_wand_16_regular": 60700, - "ic_fluent_text_grammar_wand_20_regular": 60701, - "ic_fluent_text_grammar_wand_24_regular": 60702, - "ic_fluent_text_number_format_20_regular": 60729, - "ic_fluent_text_paragraph_20_regular": 60738, - "ic_fluent_text_paragraph_24_regular": 60739, - "ic_fluent_text_paragraph_direction_20_regular": 60740, - "ic_fluent_text_paragraph_direction_24_regular": 60741, - "ic_fluent_text_position_behind_20_regular": 60747, - "ic_fluent_text_position_behind_24_regular": 60748, - "ic_fluent_text_position_front_20_regular": 60749, - "ic_fluent_text_position_front_24_regular": 60750, - "ic_fluent_text_position_line_20_regular": 60751, - "ic_fluent_text_position_line_24_regular": 60752, - "ic_fluent_text_position_square_20_regular": 60753, - "ic_fluent_text_position_square_24_regular": 60754, - "ic_fluent_text_position_through_20_regular": 60755, - "ic_fluent_text_position_through_24_regular": 60756, - "ic_fluent_text_position_tight_20_regular": 60757, - "ic_fluent_text_position_tight_24_regular": 60758, - "ic_fluent_text_position_top_bottom_20_regular": 60759, - "ic_fluent_text_position_top_bottom_24_regular": 60760, - "ic_fluent_textbox_align_center_20_regular": 60781, - "ic_fluent_textbox_align_center_24_regular": 60782, - "ic_fluent_thumb_like_16_regular": 60792, - "ic_fluent_ticket_horizontal_20_regular": 60799, - "ic_fluent_ticket_horizontal_24_regular": 60800, - "ic_fluent_wand_16_regular": 60982, - "ic_fluent_wand_20_regular": 60983, - "ic_fluent_wand_24_regular": 60984, - "ic_fluent_wand_28_regular": 60985, - "ic_fluent_wand_48_regular": 60986, - "ic_fluent_window_arrow_up_24_regular": 61036, - "ic_fluent_window_header_horizontal_20_regular": 61044, - "ic_fluent_window_header_vertical_20_regular": 61046, - "ic_fluent_accessibility_32_regular": 57345, - "ic_fluent_accessibility_checkmark_24_regular": 57348, - "ic_fluent_add_circle_16_regular": 57349, - "ic_fluent_add_circle_32_regular": 57350, - "ic_fluent_animal_rabbit_16_regular": 57424, - "ic_fluent_animal_rabbit_20_regular": 57425, - "ic_fluent_animal_rabbit_24_regular": 57426, - "ic_fluent_animal_rabbit_28_regular": 57427, - "ic_fluent_animal_turtle_16_regular": 57428, - "ic_fluent_animal_turtle_20_regular": 57429, - "ic_fluent_animal_turtle_24_regular": 57430, - "ic_fluent_animal_turtle_28_regular": 57431, - "ic_fluent_book_contacts_20_regular": 57706, - "ic_fluent_book_contacts_24_regular": 57707, - "ic_fluent_book_contacts_28_regular": 57708, - "ic_fluent_book_open_globe_20_regular": 57725, - "ic_fluent_calligraphy_pen_checkmark_20_regular": 58006, - "ic_fluent_calligraphy_pen_question_mark_20_regular": 58008, - "ic_fluent_cellular_5g_24_regular": 58035, - "ic_fluent_checkbox_1_24_regular": 58103, - "ic_fluent_checkbox_2_24_regular": 58105, - "ic_fluent_checkbox_arrow_right_24_regular": 58107, - "ic_fluent_checkbox_person_24_regular": 58114, - "ic_fluent_checkbox_warning_24_regular": 58116, - "ic_fluent_circle_edit_24_regular": 58165, - "ic_fluent_clock_32_regular": 58222, - "ic_fluent_cloud_16_regular": 58242, - "ic_fluent_cloud_32_regular": 58244, - "ic_fluent_comment_note_24_regular": 58367, - "ic_fluent_content_settings_32_regular": 58391, - "ic_fluent_desktop_mac_16_regular": 58520, - "ic_fluent_desktop_mac_32_regular": 58523, - "ic_fluent_document_arrow_right_24_regular": 58599, - "ic_fluent_document_checkmark_24_regular": 58610, - "ic_fluent_dual_screen_dismiss_24_regular": 58782, - "ic_fluent_dual_screen_speaker_24_regular": 58792, - "ic_fluent_filter_dismiss_24_regular": 58894, - "ic_fluent_filter_sync_24_regular": 58896, - "ic_fluent_folder_16_regular": 58947, - "ic_fluent_folder_32_regular": 58948, - "ic_fluent_globe_person_24_regular": 59064, - "ic_fluent_home_person_24_regular": 59160, - "ic_fluent_image_globe_24_regular": 59171, - "ic_fluent_inking_tool_32_regular": 59194, - "ic_fluent_key_16_regular": 59200, - "ic_fluent_key_32_regular": 59201, - "ic_fluent_line_style_24_regular": 59247, - "ic_fluent_math_formula_16_regular": 59361, - "ic_fluent_math_formula_32_regular": 59364, - "ic_fluent_notebook_add_24_regular": 59507, - "ic_fluent_notebook_section_arrow_right_24_regular": 59514, - "ic_fluent_notebook_subsection_24_regular": 59516, - "ic_fluent_orientation_20_regular": 59551, - "ic_fluent_people_32_regular": 59628, - "ic_fluent_person_note_24_regular": 59711, - "ic_fluent_phone_laptop_16_regular": 59744, - "ic_fluent_phone_laptop_32_regular": 59745, - "ic_fluent_phone_speaker_24_regular": 59762, - "ic_fluent_pi_24_regular": 59771, - "ic_fluent_premium_32_regular": 59825, - "ic_fluent_receipt_20_regular": 59902, - "ic_fluent_receipt_24_regular": 59903, - "ic_fluent_rss_24_regular": 59966, - "ic_fluent_screen_cut_20_regular": 60023, - "ic_fluent_screen_person_20_regular": 60024, - "ic_fluent_shape_exclude_16_regular": 60056, - "ic_fluent_shape_exclude_20_regular": 60057, - "ic_fluent_shape_exclude_24_regular": 60058, - "ic_fluent_shape_intersect_16_regular": 60059, - "ic_fluent_shape_intersect_20_regular": 60060, - "ic_fluent_shape_intersect_24_regular": 60061, - "ic_fluent_shape_subtract_16_regular": 60062, - "ic_fluent_shape_subtract_20_regular": 60063, - "ic_fluent_shape_subtract_24_regular": 60064, - "ic_fluent_shape_union_16_regular": 60065, - "ic_fluent_shape_union_20_regular": 60066, - "ic_fluent_shape_union_24_regular": 60067, - "ic_fluent_shifts_16_regular": 60123, - "ic_fluent_slide_settings_24_regular": 60196, - "ic_fluent_slide_transition_24_regular": 60204, - "ic_fluent_star_emphasis_32_regular": 60331, - "ic_fluent_table_32_regular": 60406, - "ic_fluent_table_cell_edit_24_regular": 60419, - "ic_fluent_tablet_speaker_24_regular": 60526, - "ic_fluent_target_32_regular": 60560, - "ic_fluent_timer_3_24_regular": 60811, - "ic_fluent_voicemail_28_regular": 60964, - "ic_fluent_walkie_talkie_20_regular": 60970, - "ic_fluent_warning_shield_20_regular": 60989, - "ic_fluent_add_subtract_circle_16_regular": 57354, - "ic_fluent_add_subtract_circle_20_regular": 57355, - "ic_fluent_add_subtract_circle_24_regular": 57356, - "ic_fluent_add_subtract_circle_28_regular": 57357, - "ic_fluent_add_subtract_circle_48_regular": 57358, - "ic_fluent_beach_16_regular": 57672, - "ic_fluent_beach_20_regular": 57673, - "ic_fluent_beach_24_regular": 57674, - "ic_fluent_beach_28_regular": 57675, - "ic_fluent_building_16_regular": 57866, - "ic_fluent_calendar_edit_16_regular": 57925, - "ic_fluent_calendar_edit_20_regular": 57926, - "ic_fluent_calendar_edit_24_regular": 57927, - "ic_fluent_calendar_ltr_20_regular": 57934, - "ic_fluent_calendar_ltr_24_regular": 57935, - "ic_fluent_calendar_ltr_28_regular": 57936, - "ic_fluent_calendar_rtl_20_regular": 57955, - "ic_fluent_calendar_rtl_24_regular": 57956, - "ic_fluent_calendar_rtl_28_regular": 57957, - "ic_fluent_circle_small_20_regular": 58174, - "ic_fluent_clipboard_16_regular": 58178, - "ic_fluent_clipboard_arrow_right_16_regular": 58180, - "ic_fluent_clipboard_arrow_right_20_regular": 58181, - "ic_fluent_clipboard_arrow_right_24_regular": 58182, - "ic_fluent_clipboard_text_ltr_20_regular": 58217, - "ic_fluent_clipboard_text_ltr_24_regular": 58218, - "ic_fluent_clipboard_text_rtl_20_regular": 58220, - "ic_fluent_clipboard_text_rtl_24_regular": 58221, - "ic_fluent_cube_sync_24_regular": 58426, - "ic_fluent_document_question_mark_16_regular": 58672, - "ic_fluent_document_question_mark_20_regular": 58673, - "ic_fluent_document_question_mark_24_regular": 58674, - "ic_fluent_door_arrow_left_20_regular": 58725, - "ic_fluent_drop_12_regular": 58766, - "ic_fluent_drop_16_regular": 58767, - "ic_fluent_drop_20_regular": 58768, - "ic_fluent_drop_24_regular": 58769, - "ic_fluent_drop_28_regular": 58770, - "ic_fluent_drop_48_regular": 58771, - "ic_fluent_dumbbell_16_regular": 58798, - "ic_fluent_dumbbell_20_regular": 58799, - "ic_fluent_dumbbell_24_regular": 58800, - "ic_fluent_dumbbell_28_regular": 58801, - "ic_fluent_edit_off_20_regular": 58807, - "ic_fluent_eyedropper_20_regular": 58877, - "ic_fluent_eyedropper_24_regular": 58878, - "ic_fluent_flag_off_16_regular": 58901, - "ic_fluent_flag_off_20_regular": 58902, - "ic_fluent_fps_120_20_regular": 58997, - "ic_fluent_fps_120_24_regular": 58998, - "ic_fluent_fps_240_20_regular": 58999, - "ic_fluent_guitar_16_regular": 59090, - "ic_fluent_guitar_20_regular": 59091, - "ic_fluent_guitar_24_regular": 59092, - "ic_fluent_guitar_28_regular": 59093, - "ic_fluent_key_command_16_regular": 59202, - "ic_fluent_more_vertical_16_regular": 59433, - "ic_fluent_people_checkmark_20_regular": 59635, - "ic_fluent_people_checkmark_24_regular": 59636, - "ic_fluent_play_circle_16_regular": 59795, - "ic_fluent_play_circle_20_regular": 59796, - "ic_fluent_play_circle_28_regular": 59797, - "ic_fluent_re_order_dots_horizontal_16_regular": 59892, - "ic_fluent_re_order_dots_horizontal_20_regular": 59893, - "ic_fluent_re_order_dots_horizontal_24_regular": 59894, - "ic_fluent_re_order_dots_vertical_16_regular": 59895, - "ic_fluent_re_order_dots_vertical_20_regular": 59896, - "ic_fluent_re_order_dots_vertical_24_regular": 59897, - "ic_fluent_scale_fill_20_regular": 59983, - "ic_fluent_skip_back_10_20_regular": 60155, - "ic_fluent_skip_forward_10_20_regular": 60160, - "ic_fluent_skip_forward_30_20_regular": 60165, - "ic_fluent_slide_eraser_24_regular": 60182, - "ic_fluent_split_horizontal_12_regular": 60247, - "ic_fluent_split_horizontal_16_regular": 60248, - "ic_fluent_split_horizontal_20_regular": 60249, - "ic_fluent_split_horizontal_24_regular": 60250, - "ic_fluent_split_horizontal_28_regular": 60251, - "ic_fluent_split_horizontal_32_regular": 60252, - "ic_fluent_split_horizontal_48_regular": 60253, - "ic_fluent_split_vertical_12_regular": 60254, - "ic_fluent_split_vertical_16_regular": 60255, - "ic_fluent_split_vertical_20_regular": 60256, - "ic_fluent_split_vertical_24_regular": 60257, - "ic_fluent_split_vertical_28_regular": 60258, - "ic_fluent_split_vertical_32_regular": 60259, - "ic_fluent_split_vertical_48_regular": 60260, - "ic_fluent_sport_soccer_20_regular": 60273, - "ic_fluent_sport_soccer_24_regular": 60274, - "ic_fluent_symbols_20_regular": 60385, - "ic_fluent_table_delete_column_20_regular": 60428, - "ic_fluent_table_delete_row_20_regular": 60432, - "ic_fluent_table_stack_above_20_regular": 60503, - "ic_fluent_table_stack_left_20_regular": 60511, - "ic_fluent_table_stack_right_20_regular": 60515, - "ic_fluent_task_list_ltr_20_regular": 60562, - "ic_fluent_task_list_ltr_24_regular": 60563, - "ic_fluent_task_list_rtl_20_regular": 60564, - "ic_fluent_task_list_rtl_24_regular": 60565, - "ic_fluent_tetris_app_16_regular": 60583, - "ic_fluent_tetris_app_20_regular": 60584, - "ic_fluent_tetris_app_24_regular": 60585, - "ic_fluent_tetris_app_28_regular": 60586, - "ic_fluent_tetris_app_32_regular": 60587, - "ic_fluent_tetris_app_48_regular": 60588, - "ic_fluent_text_bullet_list_ltr_20_regular": 60633, - "ic_fluent_text_bullet_list_ltr_24_regular": 60634, - "ic_fluent_text_bullet_list_rtl_20_regular": 60640, - "ic_fluent_text_bullet_list_rtl_24_regular": 60641, - "ic_fluent_vehicle_cab_16_regular": 60885, - "ic_fluent_vehicle_cab_20_regular": 60886, - "ic_fluent_vehicle_cab_28_regular": 60887, - "ic_fluent_vehicle_truck_profile_24_regular": 60911, - "ic_fluent_bot_add_20_regular": 57785, - "ic_fluent_chart_person_20_regular": 58079, - "ic_fluent_chart_person_24_regular": 58080, - "ic_fluent_chart_person_28_regular": 58081, - "ic_fluent_chart_person_48_regular": 58082, - "ic_fluent_mic_prohibited_16_regular": 59393, - "ic_fluent_mic_prohibited_28_regular": 59396, - "ic_fluent_mic_prohibited_48_regular": 59397, - "ic_fluent_tv_usb_16_regular": 60871, - "ic_fluent_tv_usb_20_regular": 60872, - "ic_fluent_tv_usb_24_regular": 60873, - "ic_fluent_tv_usb_28_regular": 60874, - "ic_fluent_tv_usb_48_regular": 60875, - "ic_fluent_video_360_off_20_regular": 60915, - "ic_fluent_video_prohibited_16_regular": 60955, - "ic_fluent_video_prohibited_24_regular": 60957, - "ic_fluent_video_prohibited_28_regular": 60958, - "ic_fluent_alert_32_regular": 57365, - "ic_fluent_arrow_down_left_20_regular": 57531, - "ic_fluent_arrow_step_back_16_regular": 57592, - "ic_fluent_arrow_step_in_16_regular": 57595, - "ic_fluent_arrow_step_out_16_regular": 57610, - "ic_fluent_arrow_step_over_16_regular": 57614, - "ic_fluent_arrow_up_right_20_regular": 57646, - "ic_fluent_backpack_32_regular": 57660, - "ic_fluent_book_contacts_32_regular": 57709, - "ic_fluent_bookmark_32_regular": 57745, - "ic_fluent_bookmark_multiple_24_regular": 57748, - "ic_fluent_branch_compare_16_regular": 57818, - "ic_fluent_branch_compare_20_regular": 57819, - "ic_fluent_branch_compare_24_regular": 57820, - "ic_fluent_branch_fork_16_regular": 57821, - "ic_fluent_branch_fork_20_regular": 57822, - "ic_fluent_branch_fork_24_regular": 57823, - "ic_fluent_calendar_ltr_16_regular": 57933, - "ic_fluent_calendar_ltr_32_regular": 57937, - "ic_fluent_calendar_rtl_32_regular": 57958, - "ic_fluent_call_32_regular": 57971, - "ic_fluent_calligraphy_pen_error_20_regular": 58007, - "ic_fluent_chat_32_regular": 58085, - "ic_fluent_clipboard_data_bar_32_regular": 58193, - "ic_fluent_clock_alarm_32_regular": 58224, - "ic_fluent_content_view_32_regular": 58393, - "ic_fluent_desktop_32_regular": 58503, - "ic_fluent_dismiss_square_multiple_16_regular": 58566, - "ic_fluent_document_32_regular": 58584, - "ic_fluent_document_pdf_32_regular": 58664, - "ic_fluent_food_pizza_20_regular": 58992, - "ic_fluent_food_pizza_24_regular": 58993, - "ic_fluent_globe_32_regular": 59058, - "ic_fluent_headset_32_regular": 59128, - "ic_fluent_heart_pulse_20_regular": 59137, - "ic_fluent_multiplier_1_2x_20_regular": 59437, - "ic_fluent_multiplier_1_2x_24_regular": 59438, - "ic_fluent_multiplier_1_2x_28_regular": 59439, - "ic_fluent_multiplier_1_2x_32_regular": 59440, - "ic_fluent_multiplier_1_2x_48_regular": 59441, - "ic_fluent_multiplier_1_5x_20_regular": 59442, - "ic_fluent_multiplier_1_5x_24_regular": 59443, - "ic_fluent_multiplier_1_5x_28_regular": 59444, - "ic_fluent_multiplier_1_5x_32_regular": 59445, - "ic_fluent_multiplier_1_5x_48_regular": 59446, - "ic_fluent_multiplier_1_8x_20_regular": 59447, - "ic_fluent_multiplier_1_8x_24_regular": 59448, - "ic_fluent_multiplier_1_8x_28_regular": 59449, - "ic_fluent_multiplier_1_8x_32_regular": 59450, - "ic_fluent_multiplier_1_8x_48_regular": 59451, - "ic_fluent_multiplier_1x_20_regular": 59452, - "ic_fluent_multiplier_1x_24_regular": 59453, - "ic_fluent_multiplier_1x_28_regular": 59454, - "ic_fluent_multiplier_1x_32_regular": 59455, - "ic_fluent_multiplier_1x_48_regular": 59456, - "ic_fluent_multiplier_2x_20_regular": 59457, - "ic_fluent_multiplier_2x_24_regular": 59458, - "ic_fluent_multiplier_2x_28_regular": 59459, - "ic_fluent_multiplier_2x_32_regular": 59460, - "ic_fluent_multiplier_2x_48_regular": 59461, - "ic_fluent_my_location_16_regular": 59485, - "ic_fluent_my_location_20_regular": 59486, - "ic_fluent_notepad_32_regular": 59519, - "ic_fluent_patient_32_regular": 59595, - "ic_fluent_people_team_32_regular": 59664, - "ic_fluent_pulse_32_regular": 59871, - "ic_fluent_remote_16_regular": 59919, - "ic_fluent_ribbon_32_regular": 59945, - "ic_fluent_shifts_32_regular": 60126, - "ic_fluent_skip_forward_10_24_regular": 60161, - "ic_fluent_skip_forward_10_28_regular": 60162, - "ic_fluent_skip_forward_10_32_regular": 60163, - "ic_fluent_skip_forward_10_48_regular": 60164, - "ic_fluent_skip_forward_30_24_regular": 60166, - "ic_fluent_skip_forward_30_28_regular": 60167, - "ic_fluent_skip_forward_30_32_regular": 60168, - "ic_fluent_skip_forward_30_48_regular": 60169, - "ic_fluent_subtract_square_multiple_16_regular": 60379, - "ic_fluent_text_sort_ascending_16_regular": 60762, - "ic_fluent_text_sort_ascending_24_regular": 60763, - "ic_fluent_text_sort_descending_16_regular": 60764, - "ic_fluent_text_sort_descending_24_regular": 60765, - "ic_fluent_video_person_call_32_regular": 60944, - "ic_fluent_weather_sunny_32_regular": 61006, - "ic_fluent_align_bottom_16_regular": 57374, - "ic_fluent_align_bottom_20_regular": 57375, - "ic_fluent_align_bottom_24_regular": 57376, - "ic_fluent_align_bottom_28_regular": 57377, - "ic_fluent_align_bottom_32_regular": 57378, - "ic_fluent_align_bottom_48_regular": 57379, - "ic_fluent_align_center_horizontal_16_regular": 57380, - "ic_fluent_align_center_horizontal_20_regular": 57381, - "ic_fluent_align_center_horizontal_24_regular": 57382, - "ic_fluent_align_center_horizontal_28_regular": 57383, - "ic_fluent_align_center_horizontal_32_regular": 57384, - "ic_fluent_align_center_horizontal_48_regular": 57385, - "ic_fluent_align_center_vertical_16_regular": 57386, - "ic_fluent_align_center_vertical_20_regular": 57387, - "ic_fluent_align_center_vertical_24_regular": 57388, - "ic_fluent_align_center_vertical_28_regular": 57389, - "ic_fluent_align_center_vertical_32_regular": 57390, - "ic_fluent_align_center_vertical_48_regular": 57391, - "ic_fluent_align_left_16_regular": 57394, - "ic_fluent_align_left_20_regular": 57395, - "ic_fluent_align_left_24_regular": 57396, - "ic_fluent_align_left_28_regular": 57397, - "ic_fluent_align_left_32_regular": 57398, - "ic_fluent_align_left_48_regular": 57399, - "ic_fluent_align_right_16_regular": 57400, - "ic_fluent_align_right_20_regular": 57401, - "ic_fluent_align_right_24_regular": 57402, - "ic_fluent_align_right_28_regular": 57403, - "ic_fluent_align_right_32_regular": 57404, - "ic_fluent_align_right_48_regular": 57405, - "ic_fluent_align_top_16_regular": 57417, - "ic_fluent_align_top_20_regular": 57418, - "ic_fluent_align_top_24_regular": 57419, - "ic_fluent_align_top_28_regular": 57420, - "ic_fluent_align_top_32_regular": 57421, - "ic_fluent_align_top_48_regular": 57422, - "ic_fluent_calculator_24_regular": 57907, - "ic_fluent_camera_16_regular": 58009, - "ic_fluent_group_dismiss_24_regular": 59081, - "ic_fluent_group_return_24_regular": 59084, - "ic_fluent_hand_left_16_regular": 59098, - "ic_fluent_hand_left_24_regular": 59100, - "ic_fluent_hand_left_28_regular": 59101, - "ic_fluent_hand_right_16_regular": 59102, - "ic_fluent_home_12_regular": 59150, - "ic_fluent_keyboard_shift_16_regular": 59216, - "ic_fluent_keyboard_shift_20_regular": 59217, - "ic_fluent_link_square_20_regular": 59255, - "ic_fluent_mail_inbox_checkmark_16_regular": 59325, - "ic_fluent_mail_inbox_checkmark_20_regular": 59326, - "ic_fluent_mail_inbox_checkmark_24_regular": 59327, - "ic_fluent_music_note_2_20_regular": 59476, - "ic_fluent_my_location_12_regular": 59484, - "ic_fluent_number_symbol_square_20_regular": 59532, - "ic_fluent_number_symbol_square_24_regular": 59533, - "ic_fluent_person_32_regular": 59675, - "ic_fluent_person_5_32_regular": 59677, - "ic_fluent_person_tag_20_regular": 59726, - "ic_fluent_person_tag_24_regular": 59727, - "ic_fluent_person_tag_28_regular": 59728, - "ic_fluent_person_tag_32_regular": 59729, - "ic_fluent_person_tag_48_regular": 59730, - "ic_fluent_search_16_regular": 60028, - "ic_fluent_send_16_regular": 60046, - "ic_fluent_symbols_16_regular": 60384, - "ic_fluent_teddy_20_regular": 60576, - "ic_fluent_video_person_star_off_24_regular": 60953, - "ic_fluent_apps_add_in_16_regular": 57442, - "ic_fluent_apps_add_in_28_regular": 57443, - "ic_fluent_arrow_curve_down_left_16_regular": 57528, - "ic_fluent_arrow_curve_down_left_24_regular": 57529, - "ic_fluent_arrow_curve_down_left_28_regular": 57530, - "ic_fluent_arrow_upload_16_regular": 57649, - "ic_fluent_attach_12_regular": 57653, - "ic_fluent_board_16_regular": 57685, - "ic_fluent_board_20_regular": 57686, - "ic_fluent_board_28_regular": 57687, - "ic_fluent_board_split_16_regular": 57692, - "ic_fluent_board_split_20_regular": 57693, - "ic_fluent_board_split_24_regular": 57694, - "ic_fluent_board_split_28_regular": 57695, - "ic_fluent_board_split_48_regular": 57696, - "ic_fluent_calendar_empty_32_regular": 57928, - "ic_fluent_calendar_ltr_12_regular": 57932, - "ic_fluent_calendar_multiple_32_regular": 57943, - "ic_fluent_chevron_up_down_20_regular": 58159, - "ic_fluent_chevron_up_down_24_regular": 58160, - "ic_fluent_circle_12_regular": 58161, - "ic_fluent_circle_half_fill_12_regular": 58167, - "ic_fluent_circle_line_12_regular": 58169, - "ic_fluent_closed_caption_off_16_regular": 58237, - "ic_fluent_closed_caption_off_20_regular": 58238, - "ic_fluent_closed_caption_off_24_regular": 58239, - "ic_fluent_closed_caption_off_28_regular": 58240, - "ic_fluent_closed_caption_off_48_regular": 58241, - "ic_fluent_desktop_pulse_16_regular": 58524, - "ic_fluent_desktop_pulse_20_regular": 58525, - "ic_fluent_desktop_pulse_24_regular": 58526, - "ic_fluent_desktop_pulse_28_regular": 58527, - "ic_fluent_desktop_pulse_32_regular": 58528, - "ic_fluent_desktop_pulse_48_regular": 58529, - "ic_fluent_developer_board_20_regular": 58540, - "ic_fluent_dismiss_square_24_regular": 58565, - "ic_fluent_door_arrow_left_24_regular": 58726, - "ic_fluent_emoji_hand_20_regular": 58830, - "ic_fluent_filter_16_regular": 58890, - "ic_fluent_flash_16_regular": 58903, - "ic_fluent_flash_28_regular": 58906, - "ic_fluent_flash_checkmark_16_regular": 58909, - "ic_fluent_flash_checkmark_20_regular": 58910, - "ic_fluent_flash_checkmark_24_regular": 58911, - "ic_fluent_flash_checkmark_28_regular": 58912, - "ic_fluent_folder_prohibited_16_regular": 58971, - "ic_fluent_grid_16_regular": 59075, - "ic_fluent_headphones_20_regular": 59118, - "ic_fluent_headphones_32_regular": 59119, - "ic_fluent_headphones_48_regular": 59120, - "ic_fluent_headphones_sound_wave_20_regular": 59121, - "ic_fluent_headphones_sound_wave_24_regular": 59122, - "ic_fluent_headphones_sound_wave_28_regular": 59123, - "ic_fluent_headphones_sound_wave_32_regular": 59124, - "ic_fluent_headphones_sound_wave_48_regular": 59125, - "ic_fluent_home_checkmark_16_regular": 59155, - "ic_fluent_home_checkmark_20_regular": 59156, - "ic_fluent_ink_stroke_20_regular": 59192, - "ic_fluent_ink_stroke_24_regular": 59193, - "ic_fluent_library_16_regular": 59233, - "ic_fluent_library_20_regular": 59234, - "ic_fluent_list_16_regular": 59257, - "ic_fluent_location_arrow_left_48_regular": 59267, - "ic_fluent_location_arrow_right_48_regular": 59268, - "ic_fluent_location_arrow_up_48_regular": 59269, - "ic_fluent_mail_inbox_checkmark_28_regular": 59328, - "ic_fluent_map_20_regular": 59354, - "ic_fluent_multiplier_5x_20_regular": 59462, - "ic_fluent_multiplier_5x_24_regular": 59463, - "ic_fluent_multiplier_5x_28_regular": 59464, - "ic_fluent_multiplier_5x_32_regular": 59465, - "ic_fluent_multiplier_5x_48_regular": 59466, - "ic_fluent_music_note_2_play_20_regular": 59478, - "ic_fluent_notepad_12_regular": 59518, - "ic_fluent_organization_12_regular": 59546, - "ic_fluent_people_community_add_20_regular": 59637, - "ic_fluent_people_community_add_28_regular": 59638, - "ic_fluent_person_6_32_regular": 59679, - "ic_fluent_person_add_16_regular": 59681, - "ic_fluent_person_add_28_regular": 59682, - "ic_fluent_person_prohibited_16_regular": 59714, - "ic_fluent_person_prohibited_28_regular": 59716, - "ic_fluent_pin_28_regular": 59778, - "ic_fluent_pin_32_regular": 59779, - "ic_fluent_pin_48_regular": 59780, - "ic_fluent_premium_person_20_regular": 59827, - "ic_fluent_premium_person_24_regular": 59828, - "ic_fluent_prohibited_multiple_16_regular": 59856, - "ic_fluent_prohibited_multiple_20_regular": 59857, - "ic_fluent_prohibited_multiple_24_regular": 59858, - "ic_fluent_read_aloud_16_regular": 59898, - "ic_fluent_read_aloud_28_regular": 59899, - "ic_fluent_shield_16_regular": 60099, - "ic_fluent_shield_28_regular": 60100, - "ic_fluent_shield_48_regular": 60101, - "ic_fluent_shield_checkmark_16_regular": 60103, - "ic_fluent_shield_checkmark_20_regular": 60104, - "ic_fluent_shield_checkmark_24_regular": 60105, - "ic_fluent_shield_checkmark_28_regular": 60106, - "ic_fluent_shield_checkmark_48_regular": 60107, - "ic_fluent_top_speed_20_regular": 60827, - "ic_fluent_checkmark_circle_12_regular": 58119, - "ic_fluent_add_square_multiple_16_regular": 57352, - "ic_fluent_add_square_multiple_20_regular": 57353, - "ic_fluent_arrow_forward_48_regular": 57553, - "ic_fluent_arrow_sync_16_regular": 57616, - "ic_fluent_book_open_28_regular": 57722, - "ic_fluent_book_open_32_regular": 57723, - "ic_fluent_book_open_48_regular": 57724, - "ic_fluent_book_open_microphone_20_regular": 57727, - "ic_fluent_book_open_microphone_24_regular": 57728, - "ic_fluent_book_open_microphone_28_regular": 57729, - "ic_fluent_book_open_microphone_32_regular": 57730, - "ic_fluent_book_open_microphone_48_regular": 57731, - "ic_fluent_briefcase_off_16_regular": 57840, - "ic_fluent_briefcase_off_20_regular": 57841, - "ic_fluent_briefcase_off_24_regular": 57842, - "ic_fluent_briefcase_off_28_regular": 57843, - "ic_fluent_briefcase_off_32_regular": 57844, - "ic_fluent_briefcase_off_48_regular": 57845, - "ic_fluent_building_bank_28_regular": 57871, - "ic_fluent_building_bank_48_regular": 57872, - "ic_fluent_building_bank_link_16_regular": 57873, - "ic_fluent_building_bank_link_20_regular": 57874, - "ic_fluent_building_bank_link_24_regular": 57875, - "ic_fluent_building_bank_link_28_regular": 57876, - "ic_fluent_building_bank_link_48_regular": 57877, - "ic_fluent_calendar_mail_16_regular": 57939, - "ic_fluent_calendar_rtl_12_regular": 57953, - "ic_fluent_calendar_rtl_16_regular": 57954, - "ic_fluent_chevron_double_up_16_regular": 58156, - "ic_fluent_chevron_double_up_20_regular": 58157, - "ic_fluent_cloud_28_regular": 58243, - "ic_fluent_cloud_off_16_regular": 58279, - "ic_fluent_cloud_off_20_regular": 58280, - "ic_fluent_cloud_off_28_regular": 58281, - "ic_fluent_cloud_off_32_regular": 58282, - "ic_fluent_cloud_sync_16_regular": 58285, - "ic_fluent_cloud_sync_24_regular": 58287, - "ic_fluent_cloud_sync_28_regular": 58288, - "ic_fluent_cloud_sync_32_regular": 58289, - "ic_fluent_cloud_sync_48_regular": 58290, - "ic_fluent_dismiss_square_20_regular": 58564, - "ic_fluent_document_footer_16_regular": 58620, - "ic_fluent_document_footer_dismiss_24_regular": 58623, - "ic_fluent_document_header_16_regular": 58624, - "ic_fluent_document_header_arrow_down_16_regular": 58626, - "ic_fluent_document_header_dismiss_24_regular": 58630, - "ic_fluent_document_header_footer_16_regular": 58631, - "ic_fluent_document_ribbon_16_regular": 58681, - "ic_fluent_document_ribbon_20_regular": 58682, - "ic_fluent_document_ribbon_24_regular": 58683, - "ic_fluent_document_ribbon_28_regular": 58684, - "ic_fluent_document_ribbon_32_regular": 58685, - "ic_fluent_document_ribbon_48_regular": 58686, - "ic_fluent_door_arrow_left_16_regular": 58724, - "ic_fluent_drive_train_24_regular": 58765, - "ic_fluent_engine_24_regular": 58848, - "ic_fluent_folder_mail_16_regular": 58966, - "ic_fluent_folder_sync_16_regular": 58979, - "ic_fluent_gas_24_regular": 59025, - "ic_fluent_gas_pump_24_regular": 59027, - "ic_fluent_mail_dismiss_16_regular": 59313, - "ic_fluent_mail_prohibited_16_regular": 59343, - "ic_fluent_mic_sparkle_16_regular": 59411, - "ic_fluent_mic_sparkle_20_regular": 59412, - "ic_fluent_mic_sparkle_24_regular": 59413, - "ic_fluent_notepad_person_20_regular": 59522, - "ic_fluent_notepad_person_24_regular": 59523, - "ic_fluent_pin_off_16_regular": 59781, - "ic_fluent_pin_off_48_regular": 59784, - "ic_fluent_skip_forward_tab_24_regular": 60171, - "ic_fluent_square_arrow_forward_16_regular": 60284, - "ic_fluent_square_arrow_forward_20_regular": 60285, - "ic_fluent_square_arrow_forward_24_regular": 60286, - "ic_fluent_square_arrow_forward_28_regular": 60287, - "ic_fluent_square_arrow_forward_32_regular": 60288, - "ic_fluent_square_arrow_forward_48_regular": 60289, - "ic_fluent_subtract_square_multiple_20_regular": 60380, - "ic_fluent_transmission_24_regular": 60829, - "ic_fluent_wifi_off_20_regular": 61017, - "ic_fluent_wifi_off_24_regular": 61018, - "ic_fluent_animal_cat_16_regular": 61702, - "ic_fluent_animal_cat_20_regular": 61734, - "ic_fluent_animal_cat_24_regular": 61735, - "ic_fluent_animal_cat_28_regular": 61736, - "ic_fluent_archive_settings_16_regular": 61737, - "ic_fluent_arrow_circle_down_20_regular": 61740, - "ic_fluent_arrow_circle_down_24_regular": 61741, - "ic_fluent_arrow_circle_down_double_20_regular": 61742, - "ic_fluent_arrow_circle_down_double_24_regular": 61743, - "ic_fluent_arrow_circle_down_split_20_regular": 61763, - "ic_fluent_arrow_circle_down_split_24_regular": 61764, - "ic_fluent_arrow_down_32_regular": 61772, - "ic_fluent_arrow_down_48_regular": 61773, - "ic_fluent_arrow_fit_16_regular": 61774, - "ic_fluent_arrow_left_16_regular": 61828, - "ic_fluent_arrow_left_32_regular": 61833, - "ic_fluent_arrow_left_48_regular": 61854, - "ic_fluent_arrow_reset_20_regular": 61855, - "ic_fluent_arrow_reset_24_regular": 61856, - "ic_fluent_arrow_right_32_regular": 61858, - "ic_fluent_arrow_right_48_regular": 61863, - "ic_fluent_arrow_sort_16_regular": 61867, - "ic_fluent_arrow_sort_down_16_regular": 61868, - "ic_fluent_arrow_sort_down_lines_16_regular": 61869, - "ic_fluent_arrow_sort_up_16_regular": 61875, - "ic_fluent_arrow_up_16_regular": 61876, - "ic_fluent_arrow_up_32_regular": 61880, - "ic_fluent_arrow_up_48_regular": 61881, - "ic_fluent_barcode_scanner_20_regular": 61882, - "ic_fluent_barcode_scanner_24_regular": 61924, - "ic_fluent_beaker_edit_20_regular": 61925, - "ic_fluent_beaker_edit_24_regular": 61926, - "ic_fluent_book_toolbox_20_regular": 61927, - "ic_fluent_bookmark_add_20_regular": 61928, - "ic_fluent_bookmark_add_24_regular": 61929, - "ic_fluent_bowl_chopsticks_16_regular": 61930, - "ic_fluent_bowl_chopsticks_20_regular": 61931, - "ic_fluent_bowl_chopsticks_24_regular": 61932, - "ic_fluent_bowl_chopsticks_28_regular": 61933, - "ic_fluent_brain_circuit_20_regular": 61934, - "ic_fluent_briefcase_medical_20_regular": 61935, - "ic_fluent_broom_16_regular": 61950, - "ic_fluent_building_bank_toolbox_20_regular": 61951, - "ic_fluent_calendar_info_16_regular": 61955, - "ic_fluent_calendar_multiple_16_regular": 61956, - "ic_fluent_call_checkmark_20_regular": 61959, - "ic_fluent_call_dismiss_20_regular": 61960, - "ic_fluent_call_dismiss_24_regular": 61963, - "ic_fluent_call_pause_20_regular": 61964, - "ic_fluent_call_pause_24_regular": 61965, - "ic_fluent_chat_help_20_regular": 61984, - "ic_fluent_chat_settings_20_regular": 61985, - "ic_fluent_chat_settings_24_regular": 61993, - "ic_fluent_check_20_regular": 62075, - "ic_fluent_checkbox_checked_16_regular": 62076, - "ic_fluent_checkbox_checked_sync_16_regular": 62077, - "ic_fluent_checkmark_starburst_16_regular": 62083, - "ic_fluent_chevron_double_down_16_regular": 62084, - "ic_fluent_chevron_double_left_16_regular": 62085, - "ic_fluent_chevron_double_right_16_regular": 62119, - "ic_fluent_circle_half_fill_16_regular": 62218, - "ic_fluent_clipboard_heart_20_regular": 62219, - "ic_fluent_clipboard_pulse_20_regular": 62242, - "ic_fluent_clipboard_settings_20_regular": 62253, - "ic_fluent_clock_arrow_download_20_regular": 62254, - "ic_fluent_cloud_add_16_regular": 62255, - "ic_fluent_cloud_edit_16_regular": 62256, - "ic_fluent_cloud_flow_20_regular": 62263, - "ic_fluent_cloud_link_16_regular": 62264, - "ic_fluent_code_16_regular": 62265, - "ic_fluent_comment_error_16_regular": 62288, - "ic_fluent_comment_lightning_20_regular": 62289, - "ic_fluent_comment_lightning_24_regular": 62305, - "ic_fluent_contact_card_16_regular": 62306, - "ic_fluent_contact_card_link_16_regular": 62307, - "ic_fluent_contract_down_left_16_regular": 62308, - "ic_fluent_contract_down_left_20_regular": 62323, - "ic_fluent_contract_down_left_24_regular": 62324, - "ic_fluent_contract_down_left_28_regular": 62325, - "ic_fluent_contract_down_left_32_regular": 62331, - "ic_fluent_contract_down_left_48_regular": 62359, - "ic_fluent_credit_card_toolbox_20_regular": 62360, - "ic_fluent_data_bar_horizontal_20_regular": 62363, - "ic_fluent_data_usage_edit_20_regular": 62386, - "ic_fluent_desktop_sync_16_regular": 62387, - "ic_fluent_device_meeting_room_16_regular": 62388, - "ic_fluent_device_meeting_room_24_regular": 62389, - "ic_fluent_device_meeting_room_28_regular": 62390, - "ic_fluent_device_meeting_room_32_regular": 62391, - "ic_fluent_device_meeting_room_48_regular": 62396, - "ic_fluent_device_meeting_room_remote_16_regular": 62397, - "ic_fluent_device_meeting_room_remote_24_regular": 62402, - "ic_fluent_device_meeting_room_remote_28_regular": 62413, - "ic_fluent_device_meeting_room_remote_32_regular": 62445, - "ic_fluent_device_meeting_room_remote_48_regular": 62446, - "ic_fluent_dismiss_32_regular": 62451, - "ic_fluent_dismiss_48_regular": 62464, - "ic_fluent_document_arrow_up_16_regular": 62465, - "ic_fluent_document_bullet_list_20_regular": 62466, - "ic_fluent_document_bullet_list_24_regular": 62467, - "ic_fluent_document_link_20_regular": 62468, - "ic_fluent_document_link_24_regular": 62469, - "ic_fluent_document_person_16_regular": 62497, - "ic_fluent_document_settings_16_regular": 62498, - "ic_fluent_document_split_hint_24_regular": 62499, - "ic_fluent_document_split_hint_off_24_regular": 62500, - "ic_fluent_edit_arrow_back_16_regular": 62505, - "ic_fluent_equal_off_20_regular": 62506, - "ic_fluent_error_circle_settings_16_regular": 62507, - "ic_fluent_expand_up_left_16_regular": 62508, - "ic_fluent_expand_up_left_20_regular": 62513, - "ic_fluent_expand_up_left_24_regular": 62514, - "ic_fluent_expand_up_left_28_regular": 62515, - "ic_fluent_expand_up_left_32_regular": 62539, - "ic_fluent_expand_up_left_48_regular": 62540, - "ic_fluent_expand_up_right_16_regular": 62543, - "ic_fluent_expand_up_right_20_regular": 62544, - "ic_fluent_expand_up_right_24_regular": 62573, - "ic_fluent_expand_up_right_28_regular": 62613, - "ic_fluent_expand_up_right_32_regular": 62614, - "ic_fluent_expand_up_right_48_regular": 62615, - "ic_fluent_fax_16_regular": 62638, - "ic_fluent_flow_16_regular": 62639, - "ic_fluent_folder_globe_16_regular": 62641, - "ic_fluent_folder_person_16_regular": 62662, - "ic_fluent_gauge_20_regular": 62663, - "ic_fluent_gauge_24_regular": 62664, - "ic_fluent_gift_card_16_regular": 62669, - "ic_fluent_gift_card_20_regular": 62670, - "ic_fluent_gift_card_add_20_regular": 62671, - "ic_fluent_globe_location_20_regular": 62684, - "ic_fluent_globe_star_16_regular": 62699, - "ic_fluent_globe_video_20_regular": 62717, - "ic_fluent_headset_add_20_regular": 62718, - "ic_fluent_headset_add_24_regular": 62719, - "ic_fluent_heart_28_regular": 62720, - "ic_fluent_heart_broken_16_regular": 62721, - "ic_fluent_laptop_dismiss_16_regular": 62725, - "ic_fluent_mail_add_16_regular": 62733, - "ic_fluent_mail_add_20_regular": 62751, - "ic_fluent_mail_alert_16_regular": 62752, - "ic_fluent_mail_alert_20_regular": 62762, - "ic_fluent_mail_alert_24_regular": 62763, - "ic_fluent_mail_arrow_down_16_regular": 62764, - "ic_fluent_mail_arrow_up_20_regular": 62765, - "ic_fluent_mail_arrow_up_24_regular": 62795, - "ic_fluent_mail_checkmark_16_regular": 62796, - "ic_fluent_mail_clock_16_regular": 62801, - "ic_fluent_mail_clock_24_regular": 62802, - "ic_fluent_mail_dismiss_20_regular": 62803, - "ic_fluent_mail_dismiss_24_regular": 62804, - "ic_fluent_mail_error_20_regular": 62805, - "ic_fluent_mail_error_24_regular": 62813, - "ic_fluent_mail_inbox_arrow_down_16_regular": 62814, - "ic_fluent_mail_link_20_regular": 62853, - "ic_fluent_mail_link_24_regular": 62860, - "ic_fluent_mail_pause_16_regular": 62886, - "ic_fluent_mail_prohibited_20_regular": 62923, - "ic_fluent_mail_prohibited_24_regular": 62946, - "ic_fluent_mail_settings_16_regular": 62947, - "ic_fluent_mail_shield_16_regular": 62952, - "ic_fluent_mail_template_20_regular": 62953, - "ic_fluent_mail_template_24_regular": 62957, - "ic_fluent_mail_warning_16_regular": 62958, - "ic_fluent_meet_now_28_regular": 62966, - "ic_fluent_meet_now_32_regular": 62967, - "ic_fluent_meet_now_48_regular": 63025, - "ic_fluent_megaphone_loud_20_regular": 63051, - "ic_fluent_microscope_20_regular": 63052, - "ic_fluent_microscope_24_regular": 63055, - "ic_fluent_molecule_16_regular": 63056, - "ic_fluent_molecule_20_regular": 63065, - "ic_fluent_molecule_24_regular": 63066, - "ic_fluent_molecule_28_regular": 63069, - "ic_fluent_molecule_32_regular": 63070, - "ic_fluent_molecule_48_regular": 63071, - "ic_fluent_note_16_regular": 63075, - "ic_fluent_note_pin_16_regular": 63076, - "ic_fluent_notepad_16_regular": 63077, - "ic_fluent_notepad_edit_16_regular": 63078, - "ic_fluent_open_32_regular": 63079, - "ic_fluent_padding_down_20_regular": 63105, - "ic_fluent_padding_down_24_regular": 63106, - "ic_fluent_padding_left_20_regular": 63125, - "ic_fluent_padding_left_24_regular": 63134, - "ic_fluent_padding_right_20_regular": 63135, - "ic_fluent_padding_right_24_regular": 63136, - "ic_fluent_padding_top_20_regular": 63156, - "ic_fluent_padding_top_24_regular": 63161, - "ic_fluent_patch_20_regular": 63162, - "ic_fluent_patch_24_regular": 63163, - "ic_fluent_pause_circle_20_regular": 63164, - "ic_fluent_people_sync_16_regular": 63165, - "ic_fluent_people_toolbox_16_regular": 63178, - "ic_fluent_person_chat_16_regular": 63179, - "ic_fluent_person_chat_20_regular": 63185, - "ic_fluent_person_chat_24_regular": 63187, - "ic_fluent_person_info_16_regular": 63190, - "ic_fluent_person_lock_16_regular": 63192, - "ic_fluent_person_lock_20_regular": 63193, - "ic_fluent_person_subtract_16_regular": 63213, - "ic_fluent_phone_16_regular": 63214, - "ic_fluent_phone_checkmark_16_regular": 63215, - "ic_fluent_pill_16_regular": 63216, - "ic_fluent_pill_20_regular": 63217, - "ic_fluent_pill_24_regular": 63218, - "ic_fluent_pill_28_regular": 63219, - "ic_fluent_print_16_regular": 63226, - "ic_fluent_print_add_20_regular": 63228, - "ic_fluent_production_20_regular": 63229, - "ic_fluent_production_24_regular": 63230, - "ic_fluent_production_checkmark_20_regular": 63235, - "ic_fluent_production_checkmark_24_regular": 63236, - "ic_fluent_prohibited_16_regular": 63237, - "ic_fluent_ratio_one_to_one_20_regular": 63242, - "ic_fluent_ratio_one_to_one_24_regular": 63243, - "ic_fluent_receipt_add_20_regular": 63244, - "ic_fluent_receipt_bag_20_regular": 63253, - "ic_fluent_receipt_cube_20_regular": 63277, - "ic_fluent_receipt_money_20_regular": 63278, - "ic_fluent_record_12_regular": 63279, - "ic_fluent_record_28_regular": 63285, - "ic_fluent_record_32_regular": 63286, - "ic_fluent_record_48_regular": 63287, - "ic_fluent_record_stop_12_regular": 63320, - "ic_fluent_record_stop_16_regular": 63321, - "ic_fluent_record_stop_20_regular": 63322, - "ic_fluent_record_stop_24_regular": 63323, - "ic_fluent_record_stop_28_regular": 63324, - "ic_fluent_record_stop_32_regular": 63332, - "ic_fluent_record_stop_48_regular": 63333, - "ic_fluent_ribbon_add_20_regular": 63334, - "ic_fluent_ribbon_add_24_regular": 63335, - "ic_fluent_server_20_regular": 63337, - "ic_fluent_server_24_regular": 63340, - "ic_fluent_shield_badge_20_regular": 63341, - "ic_fluent_shopping_bag_16_regular": 63342, - "ic_fluent_shopping_bag_20_regular": 63343, - "ic_fluent_shopping_bag_24_regular": 63344, - "ic_fluent_slide_multiple_search_20_regular": 63347, - "ic_fluent_slide_multiple_search_24_regular": 63348, - "ic_fluent_smartwatch_20_regular": 63349, - "ic_fluent_smartwatch_24_regular": 63350, - "ic_fluent_smartwatch_dot_20_regular": 63366, - "ic_fluent_smartwatch_dot_24_regular": 63367, - "ic_fluent_square_multiple_24_regular": 63372, - "ic_fluent_stack_16_regular": 63373, - "ic_fluent_stack_20_regular": 63378, - "ic_fluent_stack_24_regular": 63398, - "ic_fluent_subtract_circle_16_regular": 63399, - "ic_fluent_subtract_circle_20_regular": 63408, - "ic_fluent_subtract_circle_24_regular": 63409, - "ic_fluent_subtract_circle_28_regular": 63412, - "ic_fluent_subtract_circle_32_regular": 63413, - "ic_fluent_tag_multiple_16_regular": 63414, - "ic_fluent_target_arrow_16_regular": 63415, - "ic_fluent_target_arrow_20_regular": 63416, - "ic_fluent_text_bullet_list_square_edit_20_regular": 63417, - "ic_fluent_text_bullet_list_square_edit_24_regular": 63418, - "ic_fluent_tooltip_quote_20_regular": 63419, - "ic_fluent_vehicle_car_profile_ltr_16_regular": 63437, - "ic_fluent_vehicle_car_profile_rtl_16_regular": 63438, - "ic_fluent_vehicle_truck_profile_16_regular": 63466, - "ic_fluent_voicemail_arrow_back_16_regular": 63467, - "ic_fluent_voicemail_arrow_forward_16_regular": 63468, - "ic_fluent_voicemail_subtract_16_regular": 63484, - "ic_fluent_wifi_warning_24_regular": 63485, - "ic_fluent_window_edit_16_regular": 63492, - "ic_fluent_arrow_sort_down_20_regular": 63493, - "ic_fluent_arrow_sort_down_24_regular": 63505, - "ic_fluent_arrow_sort_up_20_regular": 63506, - "ic_fluent_arrow_sort_up_24_regular": 63521, - "ic_fluent_arrow_turn_bidirectional_down_right_24_regular": 63522, - "ic_fluent_arrow_turn_right_24_regular": 63545, - "ic_fluent_book_question_mark_rtl_24_regular": 63546, - "ic_fluent_brain_circuit_24_regular": 63547, - "ic_fluent_building_bank_toolbox_24_regular": 63548, - "ic_fluent_calendar_checkmark_28_regular": 63583, - "ic_fluent_calendar_search_16_regular": 63584, - "ic_fluent_call_park_32_regular": 63585, - "ic_fluent_chat_bubbles_question_16_regular": 63656, - "ic_fluent_chat_multiple_16_regular": 63657, - "ic_fluent_chat_multiple_20_regular": 63688, - "ic_fluent_chat_multiple_24_regular": 63699, - "ic_fluent_checkmark_32_regular": 63700, - "ic_fluent_checkmark_circle_32_regular": 63720, - "ic_fluent_clipboard_bullet_list_ltr_16_regular": 58183, - "ic_fluent_clipboard_bullet_list_rtl_16_regular": 58185, - "ic_fluent_column_edit_20_regular": 58316, - "ic_fluent_column_edit_24_regular": 58317, - "ic_fluent_contact_card_28_regular": 58377, - "ic_fluent_contact_card_32_regular": 58378, - "ic_fluent_contact_card_48_regular": 58379, - "ic_fluent_diagram_24_regular": 58549, - "ic_fluent_dismiss_circle_32_regular": 58563, - "ic_fluent_document_arrow_down_16_regular": 58591, - "ic_fluent_document_bullet_list_clock_20_regular": 58601, - "ic_fluent_document_bullet_list_clock_24_regular": 58602, - "ic_fluent_document_bullet_list_off_24_regular": 58606, - "ic_fluent_document_multiple_16_regular": 58655, - "ic_fluent_document_pill_20_regular": 58668, - "ic_fluent_document_pill_24_regular": 58669, - "ic_fluent_document_save_20_regular": 58687, - "ic_fluent_document_save_24_regular": 58688, - "ic_fluent_door_16_regular": 58721, - "ic_fluent_dual_screen_arrow_up_24_regular": 58776, - "ic_fluent_dual_screen_closed_alert_24_regular": 58779, - "ic_fluent_emoji_multiple_20_regular": 58834, - "ic_fluent_emoji_multiple_24_regular": 58835, - "ic_fluent_gantt_chart_20_regular": 59022, - "ic_fluent_gantt_chart_24_regular": 59023, - "ic_fluent_gift_card_add_24_regular": 59037, - "ic_fluent_hand_draw_24_regular": 59096, - "ic_fluent_image_arrow_back_24_regular": 59165, - "ic_fluent_image_arrow_forward_24_regular": 59169, - "ic_fluent_image_multiple_16_regular": 59172, - "ic_fluent_image_reflection_24_regular": 59184, - "ic_fluent_image_shadow_24_regular": 59186, - "ic_fluent_mail_arrow_double_back_16_regular": 59302, - "ic_fluent_mail_arrow_forward_16_regular": 59305, - "ic_fluent_mail_attach_16_regular": 59308, - "ic_fluent_more_horizontal_32_regular": 59431, - "ic_fluent_more_vertical_32_regular": 59434, - "ic_fluent_organization_16_regular": 59547, - "ic_fluent_organization_32_regular": 59548, - "ic_fluent_organization_48_regular": 59549, - "ic_fluent_orientation_24_regular": 59552, - "ic_fluent_people_list_16_regular": 59643, - "ic_fluent_people_money_20_regular": 59649, - "ic_fluent_people_money_24_regular": 59650, - "ic_fluent_person_pill_20_regular": 59712, - "ic_fluent_person_pill_24_regular": 59713, - "ic_fluent_person_settings_16_regular": 59717, - "ic_fluent_pivot_20_regular": 59789, - "ic_fluent_pivot_24_regular": 59790, - "ic_fluent_play_12_regular": 59791, - "ic_fluent_print_add_24_regular": 59854, - "ic_fluent_pulse_28_regular": 59870, - "ic_fluent_receipt_add_24_regular": 59904, - "ic_fluent_receipt_bag_24_regular": 59905, - "ic_fluent_receipt_cube_24_regular": 59906, - "ic_fluent_scan_object_20_regular": 60001, - "ic_fluent_scan_object_24_regular": 60002, - "ic_fluent_search_12_regular": 60027, - "ic_fluent_search_32_regular": 60029, - "ic_fluent_search_48_regular": 60030, - "ic_fluent_share_16_regular": 60070, - "ic_fluent_shield_badge_24_regular": 60102, - "ic_fluent_shield_lock_16_regular": 60111, - "ic_fluent_slide_eraser_16_regular": 60180, - "ic_fluent_slide_eraser_20_regular": 60181, - "ic_fluent_slide_grid_24_regular": 60184, - "ic_fluent_square_16_regular": 60276, - "ic_fluent_square_add_16_regular": 60282, - "ic_fluent_square_hint_arrow_back_16_regular": 60301, - "ic_fluent_steps_20_regular": 60351, - "ic_fluent_steps_24_regular": 60352, - "ic_fluent_tab_desktop_bottom_24_regular": 60397, - "ic_fluent_tab_desktop_multiple_bottom_24_regular": 60399, - "ic_fluent_task_list_square_add_20_regular": 60566, - "ic_fluent_task_list_square_add_24_regular": 60567, - "ic_fluent_task_list_square_ltr_20_regular": 60569, - "ic_fluent_task_list_square_ltr_24_regular": 60570, - "ic_fluent_task_list_square_rtl_20_regular": 60572, - "ic_fluent_task_list_square_rtl_24_regular": 60573, - "ic_fluent_text_align_distributed_evenly_24_regular": 60602, - "ic_fluent_text_align_distributed_vertical_24_regular": 60604, - "ic_fluent_text_align_justify_low_24_regular": 60606, - "ic_fluent_textbox_more_24_regular": 60788, - "ic_fluent_video_32_regular": 60912, - "ic_fluent_video_48_regular": 60916, - "ic_fluent_video_clip_16_regular": 60926, - "ic_fluent_window_ad_person_20_regular": 61027, - "ic_fluent_window_dev_edit_16_regular": 61041, - "ic_fluent_arrow_autofit_height_dotted_24_regular": 57465, - "ic_fluent_arrow_autofit_width_dotted_24_regular": 57470, - "ic_fluent_multiselect_rtl_16_regular": 59470, - "ic_fluent_animal_dog_16_regular": 57423, - "ic_fluent_archive_settings_20_regular": 57456, - "ic_fluent_arrow_clockwise_16_regular": 57514, - "ic_fluent_arrow_clockwise_dashes_20_regular": 57518, - "ic_fluent_arrow_clockwise_dashes_24_regular": 57519, - "ic_fluent_arrow_counterclockwise_dashes_20_regular": 57526, - "ic_fluent_arrow_counterclockwise_dashes_24_regular": 57527, - "ic_fluent_arrow_export_ltr_16_regular": 57542, - "ic_fluent_arrow_export_up_20_regular": 57547, - "ic_fluent_arrow_export_up_24_regular": 57548, - "ic_fluent_arrow_routing_20_regular": 57581, - "ic_fluent_arrow_routing_24_regular": 57582, - "ic_fluent_arrow_routing_rectangle_multiple_20_regular": 57583, - "ic_fluent_arrow_routing_rectangle_multiple_24_regular": 57584, - "ic_fluent_bin_full_20_regular": 57680, - "ic_fluent_bin_full_24_regular": 57681, - "ic_fluent_book_toolbox_24_regular": 57744, - "ic_fluent_box_16_regular": 57786, - "ic_fluent_braces_variable_20_regular": 57815, - "ic_fluent_braces_variable_24_regular": 57816, - "ic_fluent_briefcase_16_regular": 57833, - "ic_fluent_briefcase_medical_16_regular": 57837, - "ic_fluent_building_retail_20_regular": 57893, - "ic_fluent_building_retail_money_20_regular": 57894, - "ic_fluent_building_retail_money_24_regular": 57895, - "ic_fluent_building_retail_shield_20_regular": 57897, - "ic_fluent_building_retail_shield_24_regular": 57898, - "ic_fluent_building_retail_toolbox_20_regular": 57899, - "ic_fluent_building_retail_toolbox_24_regular": 57900, - "ic_fluent_calculator_multiple_20_regular": 57910, - "ic_fluent_calculator_multiple_24_regular": 57911, - "ic_fluent_calendar_3_day_16_regular": 57912, - "ic_fluent_calendar_arrow_right_16_regular": 57917, - "ic_fluent_calendar_day_16_regular": 57924, - "ic_fluent_calendar_info_20_regular": 57931, - "ic_fluent_calendar_settings_16_regular": 57961, - "ic_fluent_call_checkmark_24_regular": 57975, - "ic_fluent_call_end_16_regular": 57978, - "ic_fluent_camera_dome_16_regular": 58010, - "ic_fluent_camera_dome_20_regular": 58011, - "ic_fluent_camera_dome_24_regular": 58012, - "ic_fluent_camera_dome_28_regular": 58013, - "ic_fluent_camera_dome_48_regular": 58014, - "ic_fluent_chat_12_regular": 58083, - "ic_fluent_chevron_double_down_20_regular": 58153, - "ic_fluent_chevron_double_left_20_regular": 58154, - "ic_fluent_chevron_double_right_20_regular": 58155, - "ic_fluent_clipboard_bullet_list_ltr_20_regular": 58184, - "ic_fluent_clipboard_bullet_list_rtl_20_regular": 58186, - "ic_fluent_clipboard_checkmark_20_regular": 58187, - "ic_fluent_clipboard_checkmark_24_regular": 58188, - "ic_fluent_clipboard_error_20_regular": 58195, - "ic_fluent_clipboard_error_24_regular": 58196, - "ic_fluent_clipboard_heart_24_regular": 58197, - "ic_fluent_clipboard_task_20_regular": 58205, - "ic_fluent_clipboard_task_24_regular": 58206, - "ic_fluent_clipboard_task_add_20_regular": 58207, - "ic_fluent_clipboard_task_add_24_regular": 58208, - "ic_fluent_clipboard_task_list_ltr_20_regular": 58209, - "ic_fluent_clipboard_task_list_ltr_24_regular": 58210, - "ic_fluent_clock_alarm_16_regular": 58223, - "ic_fluent_cloud_add_20_regular": 58245, - "ic_fluent_cloud_edit_20_regular": 58276, - "ic_fluent_cloud_link_20_regular": 58278, - "ic_fluent_color_16_regular": 58300, - "ic_fluent_column_triple_20_regular": 58318, - "ic_fluent_column_triple_edit_20_regular": 58319, - "ic_fluent_column_triple_edit_24_regular": 58320, - "ic_fluent_comment_error_20_regular": 58353, - "ic_fluent_communication_person_20_regular": 58373, - "ic_fluent_communication_person_24_regular": 58374, - "ic_fluent_contact_card_link_20_regular": 58384, - "ic_fluent_data_trending_16_regular": 58460, - "ic_fluent_data_trending_20_regular": 58461, - "ic_fluent_data_trending_24_regular": 58462, - "ic_fluent_data_usage_edit_24_regular": 58464, - "ic_fluent_database_20_regular": 58470, - "ic_fluent_database_24_regular": 58471, - "ic_fluent_database_search_20_regular": 58482, - "ic_fluent_database_search_24_regular": 58483, - "ic_fluent_delete_arrow_back_16_regular": 58492, - "ic_fluent_desktop_edit_16_regular": 58511, - "ic_fluent_dismiss_circle_12_regular": 58561, - "ic_fluent_divider_tall_16_regular": 58574, - "ic_fluent_document_arrow_down_20_regular": 58592, - "ic_fluent_document_heart_20_regular": 58632, - "ic_fluent_document_heart_24_regular": 58633, - "ic_fluent_document_heart_pulse_20_regular": 58634, - "ic_fluent_document_heart_pulse_24_regular": 58635, - "ic_fluent_document_multiple_20_regular": 58656, - "ic_fluent_document_multiple_prohibited_20_regular": 58660, - "ic_fluent_document_multiple_prohibited_24_regular": 58661, - "ic_fluent_document_search_16_regular": 58689, - "ic_fluent_door_20_regular": 58722, - "ic_fluent_emoji_laugh_16_regular": 58833, - "ic_fluent_equal_off_24_regular": 58851, - "ic_fluent_error_circle_settings_20_regular": 58862, - "ic_fluent_eye_off_16_regular": 58868, - "ic_fluent_fax_20_regular": 58888, - "ic_fluent_filter_dismiss_16_regular": 58892, - "ic_fluent_filter_dismiss_20_regular": 58893, - "ic_fluent_flashlight_16_regular": 58920, - "ic_fluent_flashlight_20_regular": 58921, - "ic_fluent_flow_20_regular": 58935, - "ic_fluent_fluid_16_regular": 58944, - "ic_fluent_folder_add_16_regular": 58949, - "ic_fluent_folder_globe_20_regular": 58965, - "ic_fluent_folder_mail_20_regular": 58967, - "ic_fluent_folder_person_20_regular": 58970, - "ic_fluent_folder_sync_20_regular": 58980, - "ic_fluent_food_16_regular": 58982, - "ic_fluent_food_cake_16_regular": 58986, - "ic_fluent_full_screen_maximize_16_regular": 59011, - "ic_fluent_full_screen_maximize_20_regular": 59012, - "ic_fluent_gif_16_regular": 59034, - "ic_fluent_gift_16_regular": 59035, - "ic_fluent_globe_star_20_regular": 59069, - "ic_fluent_globe_surface_20_regular": 59070, - "ic_fluent_globe_surface_24_regular": 59071, - "ic_fluent_heart_broken_20_regular": 59133, - "ic_fluent_history_16_regular": 59141, - "ic_fluent_image_prohibited_20_regular": 59181, - "ic_fluent_image_prohibited_24_regular": 59182, - "ic_fluent_info_12_regular": 59190, - "ic_fluent_iot_20_regular": 59197, - "ic_fluent_iot_24_regular": 59198, - "ic_fluent_mail_open_person_16_regular": 59339, - "ic_fluent_mail_template_16_regular": 59351, - "ic_fluent_navigation_16_regular": 59487, - "ic_fluent_news_16_regular": 59494, - "ic_fluent_note_edit_20_regular": 59502, - "ic_fluent_note_edit_24_regular": 59503, - "ic_fluent_notepad_edit_20_regular": 59520, - "ic_fluent_people_list_20_regular": 59644, - "ic_fluent_people_settings_24_regular": 59656, - "ic_fluent_people_team_toolbox_20_regular": 59672, - "ic_fluent_people_team_toolbox_24_regular": 59673, - "ic_fluent_person_feedback_16_regular": 59696, - "ic_fluent_person_money_20_regular": 59708, - "ic_fluent_person_money_24_regular": 59709, - "ic_fluent_phone_eraser_16_regular": 59740, - "ic_fluent_port_hdmi_24_regular": 59809, - "ic_fluent_port_micro_usb_24_regular": 59811, - "ic_fluent_port_usb_a_24_regular": 59813, - "ic_fluent_port_usb_c_24_regular": 59815, - "ic_fluent_prohibited_12_regular": 59855, - "ic_fluent_receipt_play_20_regular": 59908, - "ic_fluent_receipt_play_24_regular": 59909, - "ic_fluent_save_search_20_regular": 59981, - "ic_fluent_search_settings_20_regular": 60031, - "ic_fluent_shield_lock_20_regular": 60112, - "ic_fluent_square_add_20_regular": 60283, - "ic_fluent_star_line_horizontal_3_16_regular": 60337, - "ic_fluent_stream_20_regular": 60356, - "ic_fluent_stream_24_regular": 60357, - "ic_fluent_syringe_20_regular": 60386, - "ic_fluent_syringe_24_regular": 60387, - "ic_fluent_tag_dismiss_20_regular": 60533, - "ic_fluent_tag_dismiss_24_regular": 60534, - "ic_fluent_target_arrow_24_regular": 60561, - "ic_fluent_temperature_16_regular": 60577, - "ic_fluent_thumb_dislike_16_regular": 60791, - "ic_fluent_tooltip_quote_24_regular": 60826, - "ic_fluent_umbrella_20_regular": 60876, - "ic_fluent_umbrella_24_regular": 60877, - "ic_fluent_vehicle_truck_profile_20_regular": 60910, - "ic_fluent_video_add_20_regular": 60917, - "ic_fluent_video_add_24_regular": 60918, - "ic_fluent_warning_12_regular": 60987, - "ic_fluent_window_dev_edit_20_regular": 61042, - "ic_fluent_xray_20_regular": 61065, - "ic_fluent_xray_24_regular": 61066, - "ic_fluent_arrow_autofit_down_24_regular": 57462, - "ic_fluent_arrow_autofit_up_24_regular": 57467, - "ic_fluent_clipboard_task_list_rtl_20_regular": 58211, - "ic_fluent_clipboard_task_list_rtl_24_regular": 58212, - "ic_fluent_comma_24_regular": 58322, - "ic_fluent_text_align_center_rotate_270_24_regular": 60597, - "ic_fluent_text_align_justify_rotate_90_24_regular": 60610, - "ic_fluent_text_align_left_rotate_270_24_regular": 60614, - "ic_fluent_text_align_right_rotate_270_24_regular": 60621, - "ic_fluent_text_strikethrough_16_regular": 60766, - "ic_fluent_text_strikethrough_20_regular": 60767, - "ic_fluent_text_strikethrough_24_regular": 60768, - "ic_fluent_textbox_align_bottom_rotate_90_24_regular": 60780, - "ic_fluent_textbox_align_middle_rotate_90_24_regular": 60784, - "ic_fluent_textbox_align_top_rotate_90_24_regular": 60786, - "ic_fluent_arrow_clockwise_12_regular": 57513, - "ic_fluent_arrow_clockwise_28_regular": 57515, - "ic_fluent_arrow_clockwise_32_regular": 57516, - "ic_fluent_arrow_clockwise_48_regular": 57517, - "ic_fluent_arrow_counterclockwise_12_regular": 57522, - "ic_fluent_arrow_counterclockwise_16_regular": 57523, - "ic_fluent_arrow_counterclockwise_32_regular": 57524, - "ic_fluent_arrow_counterclockwise_48_regular": 57525, - "ic_fluent_arrow_rotate_clockwise_16_regular": 57580, - "ic_fluent_arrow_split_20_regular": 57588, - "ic_fluent_battery_checkmark_24_regular": 57670, - "ic_fluent_book_open_16_regular": 57719, - "ic_fluent_broad_activity_feed_16_regular": 57858, - "ic_fluent_broad_activity_feed_20_regular": 57859, - "ic_fluent_calendar_pattern_20_regular": 57945, - "ic_fluent_calendar_person_16_regular": 57946, - "ic_fluent_calendar_phone_16_regular": 57948, - "ic_fluent_calendar_phone_20_regular": 57949, - "ic_fluent_calendar_search_20_regular": 57960, - "ic_fluent_calendar_star_16_regular": 57962, - "ic_fluent_chat_arrow_back_16_regular": 58087, - "ic_fluent_chat_arrow_back_20_regular": 58088, - "ic_fluent_chat_arrow_double_back_16_regular": 58089, - "ic_fluent_chat_arrow_double_back_20_regular": 58090, - "ic_fluent_check_24_regular": 58101, - "ic_fluent_checkbox_checked_sync_20_regular": 58108, - "ic_fluent_chevron_up_down_16_regular": 58158, - "ic_fluent_cursor_click_20_regular": 58437, - "ic_fluent_cursor_click_24_regular": 58438, - "ic_fluent_directions_16_regular": 58560, - "ic_fluent_divider_tall_20_regular": 58575, - "ic_fluent_document_arrow_up_20_regular": 58600, - "ic_fluent_document_dismiss_16_regular": 58617, - "ic_fluent_document_link_16_regular": 58643, - "ic_fluent_document_person_20_regular": 58667, - "ic_fluent_edit_arrow_back_20_regular": 58805, - "ic_fluent_emoji_sad_16_regular": 58836, - "ic_fluent_globe_clock_16_regular": 59060, - "ic_fluent_globe_clock_20_regular": 59061, - "ic_fluent_immersive_reader_16_regular": 59187, - "ic_fluent_link_dismiss_16_regular": 59250, - "ic_fluent_lock_open_16_regular": 59284, - "ic_fluent_luggage_16_regular": 59290, - "ic_fluent_luggage_20_regular": 59291, - "ic_fluent_mail_arrow_double_back_20_regular": 59303, - "ic_fluent_mail_arrow_down_20_regular": 59304, - "ic_fluent_mail_arrow_forward_20_regular": 59306, - "ic_fluent_mail_attach_20_regular": 59309, - "ic_fluent_mail_checkmark_20_regular": 59312, - "ic_fluent_mail_error_16_regular": 59317, - "ic_fluent_mail_inbox_arrow_down_20_regular": 59320, - "ic_fluent_mail_pause_20_regular": 59342, - "ic_fluent_mail_settings_20_regular": 59349, - "ic_fluent_mail_shield_20_regular": 59350, - "ic_fluent_note_pin_20_regular": 59504, - "ic_fluent_pause_circle_24_regular": 59599, - "ic_fluent_people_checkmark_16_regular": 59634, - "ic_fluent_people_sync_20_regular": 59662, - "ic_fluent_people_toolbox_20_regular": 59674, - "ic_fluent_person_settings_20_regular": 59718, - "ic_fluent_phone_checkmark_20_regular": 59736, - "ic_fluent_play_16_regular": 59792, - "ic_fluent_play_28_regular": 59793, - "ic_fluent_play_32_regular": 59794, - "ic_fluent_receipt_money_24_regular": 59907, - "ic_fluent_save_16_regular": 59971, - "ic_fluent_shield_error_16_regular": 60110, - "ic_fluent_sport_soccer_16_regular": 60272, - "ic_fluent_square_20_regular": 60277, - "ic_fluent_tag_multiple_20_regular": 60542, - "ic_fluent_text_quote_16_regular": 60761, - "ic_fluent_vehicle_car_profile_ltr_20_regular": 60896, - "ic_fluent_vehicle_car_profile_rtl_20_regular": 60897, - "ic_fluent_weather_partly_cloudy_day_16_regular": 61003, - "ic_fluent_weather_sunny_16_regular": 61004, - "ic_fluent_text_direction_horizontal_left_20_regular": 60674, - "ic_fluent_text_direction_horizontal_left_24_regular": 60675, - "ic_fluent_text_direction_horizontal_right_20_regular": 60676, - "ic_fluent_text_direction_horizontal_right_24_regular": 60677, - "ic_fluent_text_direction_rotate_270_right_20_regular": 60678, - "ic_fluent_text_direction_rotate_270_right_24_regular": 60679, - "ic_fluent_text_direction_rotate_90_left_20_regular": 60680, - "ic_fluent_text_direction_rotate_90_left_24_regular": 60681, - "ic_fluent_text_direction_rotate_90_right_20_regular": 60682, - "ic_fluent_text_direction_rotate_90_right_24_regular": 60683, - "ic_fluent_arrow_autofit_content_24_regular": 57460, - "ic_fluent_arrow_trending_lines_20_regular": 57628, - "ic_fluent_arrow_trending_lines_24_regular": 57629, - "ic_fluent_calendar_error_24_regular": 57930, - "ic_fluent_cellular_warning_24_regular": 58039, - "ic_fluent_cloud_arrow_down_16_regular": 58252, - "ic_fluent_cloud_arrow_down_20_regular": 58253, - "ic_fluent_cloud_arrow_down_24_regular": 58254, - "ic_fluent_cloud_arrow_down_28_regular": 58255, - "ic_fluent_cloud_arrow_down_32_regular": 58256, - "ic_fluent_cloud_arrow_down_48_regular": 58257, - "ic_fluent_cloud_arrow_up_16_regular": 58258, - "ic_fluent_cloud_arrow_up_20_regular": 58259, - "ic_fluent_cloud_arrow_up_24_regular": 58260, - "ic_fluent_cloud_arrow_up_28_regular": 58261, - "ic_fluent_cloud_arrow_up_32_regular": 58262, - "ic_fluent_cloud_arrow_up_48_regular": 58263, - "ic_fluent_cloud_checkmark_16_regular": 58264, - "ic_fluent_cloud_checkmark_20_regular": 58265, - "ic_fluent_cloud_checkmark_24_regular": 58266, - "ic_fluent_cloud_checkmark_28_regular": 58267, - "ic_fluent_cloud_checkmark_32_regular": 58268, - "ic_fluent_cloud_checkmark_48_regular": 58269, - "ic_fluent_cloud_dismiss_16_regular": 58270, - "ic_fluent_cloud_dismiss_20_regular": 58271, - "ic_fluent_cloud_dismiss_24_regular": 58272, - "ic_fluent_cloud_dismiss_28_regular": 58273, - "ic_fluent_cloud_dismiss_32_regular": 58274, - "ic_fluent_cloud_dismiss_48_regular": 58275, - "ic_fluent_grid_dots_20_regular": 59076, - "ic_fluent_grid_dots_24_regular": 59077, - "ic_fluent_grid_dots_28_regular": 59078, - "ic_fluent_ios_arrow_ltr_24_regular": 59195, - "ic_fluent_ios_arrow_rtl_24_regular": 59196, - "ic_fluent_mail_multiple_16_regular": 59333, - "ic_fluent_mail_multiple_20_regular": 59334, - "ic_fluent_mail_multiple_24_regular": 59335, - "ic_fluent_panel_bottom_20_regular": 59564, - "ic_fluent_panel_left_16_regular": 59567, - "ic_fluent_panel_left_20_regular": 59568, - "ic_fluent_panel_left_24_regular": 59569, - "ic_fluent_panel_left_28_regular": 59570, - "ic_fluent_panel_left_48_regular": 59571, - "ic_fluent_panel_right_16_regular": 59580, - "ic_fluent_panel_right_20_regular": 59581, - "ic_fluent_panel_right_24_regular": 59582, - "ic_fluent_panel_right_28_regular": 59583, - "ic_fluent_panel_right_48_regular": 59584, - "ic_fluent_panel_right_contract_16_regular": 59585, - "ic_fluent_panel_right_contract_20_regular": 59586, - "ic_fluent_panel_right_contract_24_regular": 59587, - "ic_fluent_panel_right_expand_20_regular": 59588, - "ic_fluent_puzzle_piece_16_regular": 59880, - "ic_fluent_puzzle_piece_20_regular": 59881, - "ic_fluent_puzzle_piece_24_regular": 59882, - "ic_fluent_scan_table_24_regular": 60004, - "ic_fluent_scan_text_24_regular": 60006, - "ic_fluent_scan_type_20_regular": 60017, - "ic_fluent_scan_type_24_regular": 60018, - "ic_fluent_scan_type_off_20_regular": 60021, - "ic_fluent_shield_task_16_regular": 60118, - "ic_fluent_shield_task_20_regular": 60119, - "ic_fluent_shield_task_24_regular": 60120, - "ic_fluent_shield_task_28_regular": 60121, - "ic_fluent_shield_task_48_regular": 60122, - "ic_fluent_square_multiple_16_regular": 60309, - "ic_fluent_stack_star_16_regular": 60316, - "ic_fluent_stack_star_20_regular": 60317, - "ic_fluent_stack_star_24_regular": 60318, - "ic_fluent_subtract_circle_arrow_back_16_regular": 60373, - "ic_fluent_subtract_circle_arrow_back_20_regular": 60374, - "ic_fluent_subtract_circle_arrow_forward_16_regular": 60375, - "ic_fluent_subtract_circle_arrow_forward_20_regular": 60376, - "ic_fluent_text_add_t_24_regular": 60593, - "ic_fluent_text_more_24_regular": 60728, - "ic_fluent_text_t_20_regular": 60771, - "ic_fluent_text_t_24_regular": 60772, - "ic_fluent_usb_plug_20_regular": 60879, - "ic_fluent_usb_plug_24_regular": 60880, - "ic_fluent_wifi_lock_24_regular": 61016, - "ic_fluent_arrow_bidirectional_up_down_12_regular": 57474, - "ic_fluent_arrow_bidirectional_up_down_16_regular": 57475, - "ic_fluent_arrow_bidirectional_up_down_20_regular": 57476, - "ic_fluent_arrow_bidirectional_up_down_24_regular": 57477, - "ic_fluent_arrow_circle_down_up_20_regular": 57489, - "ic_fluent_arrow_circle_left_12_regular": 57490, - "ic_fluent_arrow_circle_left_16_regular": 57491, - "ic_fluent_arrow_circle_right_12_regular": 57497, - "ic_fluent_arrow_circle_right_16_regular": 57498, - "ic_fluent_arrow_eject_20_regular": 57534, - "ic_fluent_arrow_export_rtl_16_regular": 57545, - "ic_fluent_arrow_left_12_regular": 57559, - "ic_fluent_arrow_move_inward_20_regular": 57564, - "ic_fluent_arrow_redo_16_regular": 57572, - "ic_fluent_arrow_right_12_regular": 57578, - "ic_fluent_arrow_step_in_12_regular": 57594, - "ic_fluent_arrow_step_in_left_12_regular": 57599, - "ic_fluent_arrow_step_in_left_16_regular": 57600, - "ic_fluent_arrow_step_in_right_12_regular": 57604, - "ic_fluent_arrow_step_in_right_16_regular": 57605, - "ic_fluent_arrow_step_out_12_regular": 57609, - "ic_fluent_arrow_sync_off_16_regular": 57621, - "ic_fluent_arrow_sync_off_20_regular": 57622, - "ic_fluent_arrow_up_12_regular": 57642, - "ic_fluent_bezier_curve_square_12_regular": 57678, - "ic_fluent_border_all_16_regular": 57755, - "ic_fluent_border_all_20_regular": 57756, - "ic_fluent_braces_20_regular": 57813, - "ic_fluent_building_lighthouse_20_regular": 57890, - "ic_fluent_calendar_assistant_16_regular": 57919, - "ic_fluent_center_vertical_20_regular": 58042, - "ic_fluent_chat_dismiss_16_regular": 58092, - "ic_fluent_chat_warning_16_regular": 58099, - "ic_fluent_checkbox_indeterminate_16_regular": 58109, - "ic_fluent_checkbox_indeterminate_20_regular": 58110, - "ic_fluent_checkbox_indeterminate_24_regular": 58111, - "ic_fluent_chevron_circle_right_12_regular": 58139, - "ic_fluent_circle_off_16_regular": 58172, - "ic_fluent_clipboard_pulse_24_regular": 58203, - "ic_fluent_clock_arrow_download_24_regular": 58225, - "ic_fluent_cloud_flow_24_regular": 58277, - "ic_fluent_cloud_swap_20_regular": 58283, - "ic_fluent_cloud_swap_24_regular": 58284, - "ic_fluent_code_circle_20_regular": 58297, - "ic_fluent_comment_multiple_28_regular": 58355, - "ic_fluent_comment_multiple_checkmark_16_regular": 58357, - "ic_fluent_comment_multiple_checkmark_20_regular": 58358, - "ic_fluent_comment_multiple_checkmark_24_regular": 58359, - "ic_fluent_comment_multiple_checkmark_28_regular": 58360, - "ic_fluent_cube_12_regular": 58414, - "ic_fluent_developer_board_search_20_regular": 58543, - "ic_fluent_document_arrow_right_20_regular": 58598, - "ic_fluent_document_chevron_double_24_regular": 58612, - "ic_fluent_document_css_24_regular": 58614, - "ic_fluent_document_javascript_24_regular": 58637, - "ic_fluent_document_multiple_percent_20_regular": 58658, - "ic_fluent_document_percent_20_regular": 58665, - "ic_fluent_document_percent_24_regular": 58666, - "ic_fluent_document_settings_20_regular": 58690, - "ic_fluent_document_split_hint_16_regular": 58691, - "ic_fluent_document_split_hint_20_regular": 58692, - "ic_fluent_document_sync_16_regular": 58695, - "ic_fluent_document_sync_20_regular": 58696, - "ic_fluent_door_arrow_right_16_regular": 58727, - "ic_fluent_door_arrow_right_20_regular": 58728, - "ic_fluent_dual_screen_20_regular": 58772, - "ic_fluent_glance_20_regular": 59044, - "ic_fluent_glance_horizontal_20_regular": 59047, - "ic_fluent_highlight_link_20_regular": 59140, - "ic_fluent_keyboard_123_24_regular": 59209, - "ic_fluent_laptop_dismiss_20_regular": 59221, - "ic_fluent_link_dismiss_24_regular": 59252, - "ic_fluent_panel_bottom_contract_20_regular": 59565, - "ic_fluent_panel_bottom_expand_20_regular": 59566, - "ic_fluent_panel_left_expand_20_regular": 59577, - "ic_fluent_panel_separate_window_20_regular": 59589, - "ic_fluent_panel_top_contract_20_regular": 59590, - "ic_fluent_panel_top_expand_20_regular": 59591, - "ic_fluent_pause_off_16_regular": 59600, - "ic_fluent_person_circle_12_regular": 59687, - "ic_fluent_person_info_20_regular": 59698, - "ic_fluent_phone_12_regular": 59731, - "ic_fluent_replay_20_regular": 59922, - "ic_fluent_square_12_regular": 60275, - "ic_fluent_square_dismiss_16_regular": 60290, - "ic_fluent_square_dismiss_20_regular": 60291, - "ic_fluent_subtract_circle_12_regular": 60372, - "ic_fluent_tag_circle_20_regular": 60531, - "ic_fluent_text_bullet_list_ltr_16_regular": 60632, - "ic_fluent_text_bullet_list_rtl_16_regular": 60639, - "ic_fluent_text_header_1_24_regular": 60703, - "ic_fluent_text_header_2_24_regular": 60704, - "ic_fluent_text_header_3_24_regular": 60705, - "ic_fluent_text_period_asterisk_20_regular": 60746, - "ic_fluent_timeline_20_regular": 60803, - "ic_fluent_triangle_12_regular": 60836, - "ic_fluent_wifi_settings_20_regular": 61019, - "ic_fluent_window_16_regular": 61021, - "ic_fluent_window_24_regular": 61022, - "ic_fluent_window_ad_off_20_regular": 61026, - "ic_fluent_window_arrow_up_16_regular": 61034, - "ic_fluent_window_arrow_up_20_regular": 61035, - "ic_fluent_window_console_20_regular": 61039, - "ic_fluent_window_header_horizontal_off_20_regular": 61045, - "ic_fluent_window_multiple_16_regular": 61048, - "ic_fluent_zoom_in_16_regular": 61070, - "ic_fluent_zoom_out_16_regular": 61071, - "ic_fluent_align_end_horizontal_20_regular": 57392, - "ic_fluent_align_end_vertical_20_regular": 57393, - "ic_fluent_align_space_around_horizontal_20_regular": 57406, - "ic_fluent_align_space_around_vertical_20_regular": 57407, - "ic_fluent_align_space_between_horizontal_20_regular": 57408, - "ic_fluent_align_space_between_vertical_20_regular": 57409, - "ic_fluent_align_space_evenly_horizontal_20_regular": 57410, - "ic_fluent_align_space_evenly_vertical_20_regular": 57411, - "ic_fluent_align_space_fit_vertical_20_regular": 57412, - "ic_fluent_align_start_horizontal_20_regular": 57413, - "ic_fluent_align_start_vertical_20_regular": 57414, - "ic_fluent_align_stretch_horizontal_20_regular": 57415, - "ic_fluent_align_stretch_vertical_20_regular": 57416, - "ic_fluent_arrow_collapse_all_20_regular": 57520, - "ic_fluent_arrow_collapse_all_24_regular": 57521, - "ic_fluent_arrow_wrap_20_regular": 57650, - "ic_fluent_arrow_wrap_off_20_regular": 57651, - "ic_fluent_center_horizontal_20_regular": 58040, - "ic_fluent_document_multiple_24_regular": 58657, - "ic_fluent_document_multiple_percent_24_regular": 58659, - "ic_fluent_document_table_16_regular": 58698, - "ic_fluent_document_table_20_regular": 58699, - "ic_fluent_document_table_24_regular": 58700, - "ic_fluent_glance_horizontal_12_regular": 59046, - "ic_fluent_panel_left_expand_16_regular": 59576, - "ic_fluent_square_shadow_12_regular": 60311, - "ic_fluent_text_baseline_20_regular": 60625, - "ic_fluent_arrow_circle_down_12_regular": 57481, - "ic_fluent_arrow_circle_down_16_regular": 57482, - "ic_fluent_arrow_circle_down_28_regular": 57483, - "ic_fluent_arrow_circle_down_32_regular": 57484, - "ic_fluent_arrow_circle_down_48_regular": 57485, - "ic_fluent_arrow_circle_left_20_regular": 57492, - "ic_fluent_arrow_circle_left_24_regular": 57493, - "ic_fluent_arrow_circle_left_28_regular": 57494, - "ic_fluent_arrow_circle_left_32_regular": 57495, - "ic_fluent_arrow_circle_left_48_regular": 57496, - "ic_fluent_arrow_circle_right_20_regular": 57499, - "ic_fluent_arrow_circle_right_28_regular": 57501, - "ic_fluent_arrow_circle_right_32_regular": 57502, - "ic_fluent_arrow_circle_right_48_regular": 57503, - "ic_fluent_arrow_circle_up_12_regular": 57504, - "ic_fluent_arrow_circle_up_28_regular": 57508, - "ic_fluent_arrow_circle_up_32_regular": 57509, - "ic_fluent_arrow_circle_up_48_regular": 57510, - "ic_fluent_arrow_trending_checkmark_20_regular": 57623, - "ic_fluent_arrow_trending_checkmark_24_regular": 57624, - "ic_fluent_arrow_trending_settings_20_regular": 57630, - "ic_fluent_arrow_trending_settings_24_regular": 57631, - "ic_fluent_balloon_12_regular": 57666, - "ic_fluent_calendar_work_week_28_regular": 57966, - "ic_fluent_channel_subtract_16_regular": 58072, - "ic_fluent_channel_subtract_20_regular": 58073, - "ic_fluent_channel_subtract_24_regular": 58074, - "ic_fluent_channel_subtract_28_regular": 58075, - "ic_fluent_channel_subtract_48_regular": 58076, - "ic_fluent_clipboard_settings_24_regular": 58204, - "ic_fluent_cloud_archive_16_regular": 58246, - "ic_fluent_cloud_archive_20_regular": 58247, - "ic_fluent_cloud_words_16_regular": 58291, - "ic_fluent_cloud_words_20_regular": 58292, - "ic_fluent_cloud_words_24_regular": 58293, - "ic_fluent_cloud_words_28_regular": 58294, - "ic_fluent_cloud_words_32_regular": 58295, - "ic_fluent_cloud_words_48_regular": 58296, - "ic_fluent_column_arrow_right_20_regular": 58314, - "ic_fluent_control_button_20_regular": 58395, - "ic_fluent_control_button_24_regular": 58396, - "ic_fluent_credit_card_person_20_regular": 58408, - "ic_fluent_credit_card_person_24_regular": 58409, - "ic_fluent_credit_card_toolbox_24_regular": 58410, - "ic_fluent_cube_link_20_regular": 58417, - "ic_fluent_delete_lines_20_regular": 58497, - "ic_fluent_dialpad_28_regular": 58550, - "ic_fluent_dialpad_32_regular": 58551, - "ic_fluent_dialpad_48_regular": 58552, - "ic_fluent_diversity_20_regular": 58568, - "ic_fluent_diversity_24_regular": 58569, - "ic_fluent_diversity_28_regular": 58570, - "ic_fluent_diversity_48_regular": 58571, - "ic_fluent_food_cake_12_regular": 58985, - "ic_fluent_globe_prohibited_20_regular": 59065, - "ic_fluent_globe_search_20_regular": 59066, - "ic_fluent_globe_video_28_regular": 59072, - "ic_fluent_globe_video_32_regular": 59073, - "ic_fluent_globe_video_48_regular": 59074, - "ic_fluent_guardian_20_regular": 59085, - "ic_fluent_guardian_24_regular": 59086, - "ic_fluent_guardian_28_regular": 59087, - "ic_fluent_guardian_48_regular": 59088, - "ic_fluent_hat_graduation_12_regular": 59108, - "ic_fluent_lock_closed_32_regular": 59281, - "ic_fluent_money_calculator_20_regular": 59416, - "ic_fluent_money_calculator_24_regular": 59417, - "ic_fluent_money_settings_20_regular": 59424, - "ic_fluent_options_48_regular": 59545, - "ic_fluent_pause_settings_20_regular": 59603, - "ic_fluent_person_lock_24_regular": 59702, - "ic_fluent_person_note_20_regular": 59710, - "ic_fluent_road_cone_16_regular": 59953, - "ic_fluent_road_cone_20_regular": 59954, - "ic_fluent_road_cone_24_regular": 59955, - "ic_fluent_road_cone_28_regular": 59956, - "ic_fluent_road_cone_32_regular": 59957, - "ic_fluent_road_cone_48_regular": 59958, - "ic_fluent_scan_thumb_up_16_regular": 60007, - "ic_fluent_scan_thumb_up_20_regular": 60008, - "ic_fluent_scan_thumb_up_24_regular": 60009, - "ic_fluent_scan_thumb_up_28_regular": 60010, - "ic_fluent_scan_thumb_up_48_regular": 60011, - "ic_fluent_share_48_regular": 60072, - "ic_fluent_speaker_0_32_regular": 60218, - "ic_fluent_speaker_1_32_regular": 60223, - "ic_fluent_speaker_2_32_regular": 60229, - "ic_fluent_sticker_12_regular": 60353, - "ic_fluent_toolbox_12_regular": 60825, - "ic_fluent_vehicle_car_collision_16_regular": 60890, - "ic_fluent_vehicle_car_collision_20_regular": 60891, - "ic_fluent_vehicle_car_collision_24_regular": 60892, - "ic_fluent_vehicle_car_collision_48_regular": 60895, - "ic_fluent_wallet_20_regular": 60972, - "ic_fluent_wallet_24_regular": 60973, - "ic_fluent_whiteboard_48_regular": 61014, - "ic_fluent_call_48_regular": 57972, - "ic_fluent_closed_caption_32_regular": 58235, - "ic_fluent_desktop_keyboard_16_regular": 58516, - "ic_fluent_desktop_keyboard_20_regular": 58517, - "ic_fluent_desktop_keyboard_24_regular": 58518, - "ic_fluent_desktop_keyboard_28_regular": 58519, - "ic_fluent_heart_12_regular": 59130, - "ic_fluent_image_alt_text_16_regular": 59163, - "ic_fluent_mail_12_regular": 59296, - "ic_fluent_more_circle_32_regular": 59426, - "ic_fluent_number_symbol_32_regular": 59528, - "ic_fluent_poll_16_regular": 59806, - "ic_fluent_rectangle_landscape_12_regular": 59911, - "ic_fluent_rectangle_landscape_16_regular": 59912, - "ic_fluent_rectangle_landscape_24_regular": 59914, - "ic_fluent_rectangle_landscape_28_regular": 59915, - "ic_fluent_rectangle_landscape_32_regular": 59916, - "ic_fluent_rectangle_landscape_48_regular": 59917, - "ic_fluent_scan_thumb_up_off_16_regular": 60012, - "ic_fluent_scan_thumb_up_off_20_regular": 60013, - "ic_fluent_scan_thumb_up_off_24_regular": 60014, - "ic_fluent_scan_thumb_up_off_28_regular": 60015, - "ic_fluent_scan_thumb_up_off_48_regular": 60016, - "ic_fluent_send_clock_24_regular": 60047, - "ic_fluent_share_screen_person_16_regular": 60074, - "ic_fluent_share_screen_person_20_regular": 60075, - "ic_fluent_share_screen_person_24_regular": 60076, - "ic_fluent_share_screen_person_28_regular": 60077, - "ic_fluent_share_screen_person_overlay_16_regular": 60078, - "ic_fluent_share_screen_person_overlay_20_regular": 60079, - "ic_fluent_share_screen_person_overlay_24_regular": 60080, - "ic_fluent_share_screen_person_overlay_28_regular": 60081, - "ic_fluent_share_screen_person_overlay_inside_16_regular": 60082, - "ic_fluent_share_screen_person_overlay_inside_20_regular": 60083, - "ic_fluent_share_screen_person_overlay_inside_24_regular": 60084, - "ic_fluent_share_screen_person_overlay_inside_28_regular": 60085, - "ic_fluent_slide_microphone_32_regular": 60187, - "ic_fluent_snooze_20_regular": 60205, - "ic_fluent_tag_32_regular": 60530, - "ic_fluent_tag_dismiss_16_regular": 60532, - "ic_fluent_tag_lock_16_regular": 60538, - "ic_fluent_tag_lock_20_regular": 60539, - "ic_fluent_tag_lock_24_regular": 60540, - "ic_fluent_tag_lock_32_regular": 60541, - "ic_fluent_text_align_center_16_regular": 60594, - "ic_fluent_text_align_left_16_regular": 60611, - "ic_fluent_text_align_right_16_regular": 60618, - "ic_fluent_text_change_case_16_regular": 60658, - "ic_fluent_text_clear_formatting_16_regular": 60659, - "ic_fluent_text_font_size_16_regular": 60688, - "ic_fluent_text_indent_decrease_ltr_16_regular": 60706, - "ic_fluent_text_indent_decrease_ltr_20_regular": 60707, - "ic_fluent_text_indent_decrease_ltr_24_regular": 60708, - "ic_fluent_text_indent_decrease_rtl_16_regular": 60713, - "ic_fluent_text_indent_decrease_rtl_20_regular": 60714, - "ic_fluent_text_indent_decrease_rtl_24_regular": 60715, - "ic_fluent_text_indent_increase_ltr_16_regular": 60716, - "ic_fluent_text_indent_increase_ltr_20_regular": 60717, - "ic_fluent_text_indent_increase_ltr_24_regular": 60718, - "ic_fluent_text_indent_increase_rtl_16_regular": 60723, - "ic_fluent_text_indent_increase_rtl_20_regular": 60724, - "ic_fluent_text_indent_increase_rtl_24_regular": 60725, - "ic_fluent_text_number_list_ltr_16_regular": 60730, - "ic_fluent_text_number_list_rtl_16_regular": 60735, - "ic_fluent_text_paragraph_direction_left_16_regular": 60742, - "ic_fluent_text_paragraph_direction_left_20_regular": 60743, - "ic_fluent_text_paragraph_direction_right_16_regular": 60744, - "ic_fluent_text_paragraph_direction_right_20_regular": 60745, - "ic_fluent_text_subscript_16_regular": 60769, - "ic_fluent_text_superscript_16_regular": 60770, - "ic_fluent_apps_list_detail_20_regular": 57444, - "ic_fluent_apps_list_detail_24_regular": 57445, - "ic_fluent_arrow_maximize_32_regular": 57560, - "ic_fluent_arrow_outline_up_right_32_regular": 57568, - "ic_fluent_arrow_up_right_32_regular": 57647, - "ic_fluent_box_edit_20_regular": 57797, - "ic_fluent_box_edit_24_regular": 57798, - "ic_fluent_box_toolbox_20_regular": 57811, - "ic_fluent_box_toolbox_24_regular": 57812, - "ic_fluent_chat_video_20_regular": 58097, - "ic_fluent_chat_video_24_regular": 58098, - "ic_fluent_circle_32_regular": 58162, - "ic_fluent_database_link_20_regular": 58476, - "ic_fluent_database_link_24_regular": 58477, - "ic_fluent_diamond_32_regular": 58558, - "ic_fluent_document_text_20_regular": 58711, - "ic_fluent_document_text_24_regular": 58712, - "ic_fluent_document_text_link_20_regular": 58717, - "ic_fluent_document_text_link_24_regular": 58718, - "ic_fluent_globe_shield_20_regular": 59067, - "ic_fluent_globe_shield_24_regular": 59068, - "ic_fluent_line_32_regular": 59239, - "ic_fluent_line_dashes_32_regular": 59243, - "ic_fluent_number_symbol_28_regular": 59527, - "ic_fluent_number_symbol_48_regular": 59529, - "ic_fluent_oval_32_regular": 59557, - "ic_fluent_pentagon_32_regular": 59625, - "ic_fluent_play_circle_48_regular": 59798, - "ic_fluent_projection_screen_16_regular": 59860, - "ic_fluent_projection_screen_20_regular": 59861, - "ic_fluent_projection_screen_24_regular": 59862, - "ic_fluent_projection_screen_28_regular": 59863, - "ic_fluent_projection_screen_dismiss_16_regular": 59864, - "ic_fluent_projection_screen_dismiss_20_regular": 59865, - "ic_fluent_projection_screen_dismiss_24_regular": 59866, - "ic_fluent_projection_screen_dismiss_28_regular": 59867, - "ic_fluent_rhombus_32_regular": 59939, - "ic_fluent_save_arrow_right_20_regular": 59973, - "ic_fluent_save_arrow_right_24_regular": 59974, - "ic_fluent_shortpick_20_regular": 60150, - "ic_fluent_shortpick_24_regular": 60151, - "ic_fluent_sparkle_16_regular": 60210, - "ic_fluent_sparkle_20_regular": 60211, - "ic_fluent_sparkle_24_regular": 60212, - "ic_fluent_sparkle_28_regular": 60213, - "ic_fluent_sparkle_48_regular": 60214, - "ic_fluent_square_32_regular": 60280, - "ic_fluent_subtract_square_24_regular": 60378, - "ic_fluent_text_case_lowercase_16_regular": 60649, - "ic_fluent_text_case_lowercase_20_regular": 60650, - "ic_fluent_text_case_lowercase_24_regular": 60651, - "ic_fluent_text_case_title_16_regular": 60652, - "ic_fluent_text_case_title_20_regular": 60653, - "ic_fluent_text_case_title_24_regular": 60654, - "ic_fluent_text_case_uppercase_16_regular": 60655, - "ic_fluent_text_case_uppercase_20_regular": 60656, - "ic_fluent_text_case_uppercase_24_regular": 60657, - "ic_fluent_triangle_32_regular": 60839, - "ic_fluent_video_person_sparkle_16_regular": 60946, - "ic_fluent_video_person_sparkle_20_regular": 60947, - "ic_fluent_video_person_sparkle_24_regular": 60948, - "ic_fluent_video_person_sparkle_28_regular": 60949, - "ic_fluent_video_person_sparkle_48_regular": 60950, - "ic_fluent_accessibility_48_regular": 57346, - "ic_fluent_archive_multiple_16_regular": 57453, - "ic_fluent_archive_multiple_20_regular": 57454, - "ic_fluent_archive_multiple_24_regular": 57455, - "ic_fluent_arrow_reset_32_regular": 57576, - "ic_fluent_arrow_reset_48_regular": 57577, - "ic_fluent_box_20_regular": 57787, - "ic_fluent_box_24_regular": 57788, - "ic_fluent_box_dismiss_20_regular": 57795, - "ic_fluent_box_dismiss_24_regular": 57796, - "ic_fluent_clear_formatting_16_regular": 58176, - "ic_fluent_clear_formatting_20_regular": 58177, - "ic_fluent_clipboard_clock_20_regular": 58189, - "ic_fluent_clipboard_clock_24_regular": 58190, - "ic_fluent_cloud_archive_24_regular": 58248, - "ic_fluent_cloud_archive_28_regular": 58249, - "ic_fluent_cloud_archive_32_regular": 58250, - "ic_fluent_cloud_archive_48_regular": 58251, - "ic_fluent_document_table_arrow_right_20_regular": 58701, - "ic_fluent_document_table_arrow_right_24_regular": 58702, - "ic_fluent_document_table_checkmark_20_regular": 58703, - "ic_fluent_document_table_checkmark_24_regular": 58704, - "ic_fluent_document_text_clock_20_regular": 58713, - "ic_fluent_document_text_clock_24_regular": 58714, - "ic_fluent_flash_settings_20_regular": 58918, - "ic_fluent_flash_settings_24_regular": 58919, - "ic_fluent_games_16_regular": 59017, - "ic_fluent_games_20_regular": 59018, - "ic_fluent_games_28_regular": 59019, - "ic_fluent_games_32_regular": 59020, - "ic_fluent_games_48_regular": 59021, - "ic_fluent_hand_draw_28_regular": 59097, - "ic_fluent_lasso_28_regular": 59223, - "ic_fluent_money_dismiss_20_regular": 59418, - "ic_fluent_money_dismiss_24_regular": 59419, - "ic_fluent_money_off_20_regular": 59422, - "ic_fluent_money_off_24_regular": 59423, - "ic_fluent_note_28_regular": 59498, - "ic_fluent_note_48_regular": 59499, - "ic_fluent_person_lightbulb_20_regular": 59700, - "ic_fluent_person_lightbulb_24_regular": 59701, - "ic_fluent_picture_in_picture_enter_16_regular": 59772, - "ic_fluent_picture_in_picture_enter_20_regular": 59773, - "ic_fluent_picture_in_picture_enter_24_regular": 59774, - "ic_fluent_picture_in_picture_exit_16_regular": 59775, - "ic_fluent_picture_in_picture_exit_20_regular": 59776, - "ic_fluent_picture_in_picture_exit_24_regular": 59777, - "ic_fluent_plug_connected_20_regular": 59801, - "ic_fluent_sanitize_20_regular": 59969, - "ic_fluent_sanitize_24_regular": 59970, - "ic_fluent_settings_32_regular": 60052, - "ic_fluent_settings_48_regular": 60053, - "ic_fluent_shapes_28_regular": 60068, - "ic_fluent_shapes_48_regular": 60069, - "ic_fluent_shopping_bag_percent_20_regular": 60144, - "ic_fluent_shopping_bag_percent_24_regular": 60145, - "ic_fluent_shopping_bag_tag_20_regular": 60148, - "ic_fluent_shopping_bag_tag_24_regular": 60149, - "ic_fluent_stack_arrow_forward_20_regular": 60314, - "ic_fluent_stack_arrow_forward_24_regular": 60315, - "ic_fluent_table_lightning_20_regular": 60462, - "ic_fluent_table_lightning_24_regular": 60463, - "ic_fluent_table_link_20_regular": 60466, - "ic_fluent_table_link_24_regular": 60467, - "ic_fluent_text_t_28_regular": 60773, - "ic_fluent_text_t_48_regular": 60774, - "ic_fluent_thumb_like_28_regular": 60793, - "ic_fluent_thumb_like_48_regular": 60794, - "ic_fluent_video_off_32_regular": 60934, - "ic_fluent_video_off_48_regular": 60935, - "ic_fluent_bookmark_search_20_regular": 57753, - "ic_fluent_bookmark_search_24_regular": 57754, - "ic_fluent_building_factory_16_regular": 57878, - "ic_fluent_building_factory_20_regular": 57879, - "ic_fluent_building_factory_28_regular": 57881, - "ic_fluent_building_factory_32_regular": 57882, - "ic_fluent_building_factory_48_regular": 57883, - "ic_fluent_calendar_chat_20_regular": 57921, - "ic_fluent_calendar_chat_24_regular": 57922, - "ic_fluent_calendar_toolbox_20_regular": 57963, - "ic_fluent_calendar_toolbox_24_regular": 57964, - "ic_fluent_camera_switch_20_regular": 58018, - "ic_fluent_comment_multiple_32_regular": 58356, - "ic_fluent_comment_multiple_link_16_regular": 58361, - "ic_fluent_comment_multiple_link_20_regular": 58362, - "ic_fluent_comment_multiple_link_24_regular": 58363, - "ic_fluent_comment_multiple_link_28_regular": 58364, - "ic_fluent_comment_multiple_link_32_regular": 58365, - "ic_fluent_contact_card_ribbon_16_regular": 58385, - "ic_fluent_contact_card_ribbon_20_regular": 58386, - "ic_fluent_contact_card_ribbon_24_regular": 58387, - "ic_fluent_contact_card_ribbon_28_regular": 58388, - "ic_fluent_contact_card_ribbon_32_regular": 58389, - "ic_fluent_contact_card_ribbon_48_regular": 58390, - "ic_fluent_database_person_20_regular": 58479, - "ic_fluent_database_person_24_regular": 58480, - "ic_fluent_document_flowchart_20_regular": 58618, - "ic_fluent_document_flowchart_24_regular": 58619, - "ic_fluent_document_table_search_20_regular": 58707, - "ic_fluent_document_table_search_24_regular": 58708, - "ic_fluent_document_text_extract_20_regular": 58715, - "ic_fluent_document_text_extract_24_regular": 58716, - "ic_fluent_fast_forward_16_regular": 58886, - "ic_fluent_fast_forward_28_regular": 58887, - "ic_fluent_flowchart_20_regular": 58936, - "ic_fluent_flowchart_24_regular": 58937, - "ic_fluent_flowchart_circle_20_regular": 58938, - "ic_fluent_flowchart_circle_24_regular": 58939, - "ic_fluent_folder_sync_24_regular": 58981, - "ic_fluent_heart_circle_16_regular": 59134, - "ic_fluent_heart_circle_20_regular": 59135, - "ic_fluent_heart_circle_24_regular": 59136, - "ic_fluent_megaphone_loud_24_regular": 59376, - "ic_fluent_people_lock_20_regular": 59647, - "ic_fluent_people_lock_24_regular": 59648, - "ic_fluent_person_circle_24_regular": 59689, - "ic_fluent_phone_update_checkmark_20_regular": 59765, - "ic_fluent_phone_update_checkmark_24_regular": 59766, - "ic_fluent_plug_connected_24_regular": 59802, - "ic_fluent_rewind_16_regular": 59933, - "ic_fluent_rewind_28_regular": 59934, - "ic_fluent_save_multiple_20_regular": 59979, - "ic_fluent_save_multiple_24_regular": 59980, - "ic_fluent_scan_type_checkmark_20_regular": 60019, - "ic_fluent_scan_type_checkmark_24_regular": 60020, - "ic_fluent_select_object_skew_20_regular": 60040, - "ic_fluent_select_object_skew_24_regular": 60041, - "ic_fluent_select_object_skew_dismiss_20_regular": 60042, - "ic_fluent_select_object_skew_dismiss_24_regular": 60043, - "ic_fluent_select_object_skew_edit_20_regular": 60044, - "ic_fluent_select_object_skew_edit_24_regular": 60045, - "ic_fluent_shopping_bag_dismiss_20_regular": 60140, - "ic_fluent_shopping_bag_dismiss_24_regular": 60141, - "ic_fluent_shopping_bag_pause_20_regular": 60142, - "ic_fluent_shopping_bag_pause_24_regular": 60143, - "ic_fluent_tag_error_16_regular": 60535, - "ic_fluent_tag_error_20_regular": 60536, - "ic_fluent_tag_error_24_regular": 60537, - "ic_fluent_tag_multiple_24_regular": 60543, - "ic_fluent_tag_question_mark_20_regular": 60547, - "ic_fluent_tag_question_mark_32_regular": 60549, - "ic_fluent_text_column_one_wide_lightning_20_regular": 60666, - "ic_fluent_text_column_one_wide_lightning_24_regular": 60667, - "ic_fluent_text_font_info_16_regular": 60685, - "ic_fluent_text_font_info_20_regular": 60686, - "ic_fluent_text_font_info_24_regular": 60687, - "ic_fluent_tray_item_add_20_regular": 60830, - "ic_fluent_tray_item_add_24_regular": 60831, - "ic_fluent_tray_item_remove_20_regular": 60832, - "ic_fluent_tray_item_remove_24_regular": 60833, - "ic_fluent_vehicle_truck_bag_20_regular": 60906, - "ic_fluent_vehicle_truck_bag_24_regular": 60907, - "ic_fluent_checkmark_starburst_20_regular": 58122, - "ic_fluent_checkmark_starburst_24_regular": 58123, - "ic_fluent_access_time_20_regular": 57344, - "ic_fluent_accessibility_checkmark_20_regular": 57347, - "ic_fluent_add_square_20_regular": 57351, - "ic_fluent_album_20_regular": 57359, - "ic_fluent_album_add_20_regular": 57361, - "ic_fluent_alert_on_20_regular": 57370, - "ic_fluent_app_generic_20_regular": 57436, - "ic_fluent_app_recent_20_regular": 57437, - "ic_fluent_app_title_20_regular": 57438, - "ic_fluent_arrow_autofit_down_20_regular": 57461, - "ic_fluent_arrow_autofit_height_20_regular": 57463, - "ic_fluent_arrow_autofit_height_dotted_20_regular": 57464, - "ic_fluent_arrow_autofit_up_20_regular": 57466, - "ic_fluent_arrow_autofit_width_20_regular": 57468, - "ic_fluent_arrow_autofit_width_dotted_20_regular": 57469, - "ic_fluent_arrow_bounce_20_regular": 57479, - "ic_fluent_arrow_circle_down_right_20_regular": 57487, - "ic_fluent_arrow_circle_up_left_20_regular": 57511, - "ic_fluent_arrow_expand_20_regular": 57541, - "ic_fluent_arrow_fit_20_regular": 57549, - "ic_fluent_arrow_minimize_vertical_20_regular": 57563, - "ic_fluent_arrow_sort_down_lines_24_regular": 57586, - "ic_fluent_arrow_square_down_20_regular": 57590, - "ic_fluent_arrow_step_back_20_regular": 57593, - "ic_fluent_arrow_step_in_left_20_regular": 57601, - "ic_fluent_arrow_step_in_right_20_regular": 57606, - "ic_fluent_arrow_step_out_20_regular": 57611, - "ic_fluent_arrow_step_over_20_regular": 57615, - "ic_fluent_arrow_turn_bidirectional_down_right_20_regular": 57636, - "ic_fluent_arrow_turn_right_20_regular": 57637, - "ic_fluent_arrows_bidirectional_20_regular": 57652, - "ic_fluent_attach_text_20_regular": 57654, - "ic_fluent_auto_fit_height_20_regular": 57655, - "ic_fluent_auto_fit_width_20_regular": 57657, - "ic_fluent_autocorrect_20_regular": 57659, - "ic_fluent_badge_20_regular": 57665, - "ic_fluent_battery_checkmark_20_regular": 57669, - "ic_fluent_battery_warning_20_regular": 57671, - "ic_fluent_bluetooth_connected_20_regular": 57682, - "ic_fluent_bluetooth_disabled_20_regular": 57683, - "ic_fluent_bluetooth_searching_20_regular": 57684, - "ic_fluent_bookmark_multiple_16_regular": 57746, - "ic_fluent_bookmark_multiple_28_regular": 57749, - "ic_fluent_bookmark_multiple_32_regular": 57750, - "ic_fluent_bookmark_multiple_48_regular": 57751, - "ic_fluent_branch_fork_hint_20_regular": 57824, - "ic_fluent_branch_fork_hint_24_regular": 57825, - "ic_fluent_branch_fork_link_20_regular": 57826, - "ic_fluent_branch_fork_link_24_regular": 57827, - "ic_fluent_calendar_ltr_48_regular": 57938, - "ic_fluent_calendar_rtl_48_regular": 57959, - "ic_fluent_data_usage_toolbox_20_regular": 58466, - "ic_fluent_data_usage_toolbox_24_regular": 58467, - "ic_fluent_desktop_cursor_16_regular": 58507, - "ic_fluent_desktop_cursor_20_regular": 58508, - "ic_fluent_desktop_cursor_24_regular": 58509, - "ic_fluent_desktop_cursor_28_regular": 58510, - "ic_fluent_desktop_flow_20_regular": 58514, - "ic_fluent_desktop_flow_24_regular": 58515, - "ic_fluent_desktop_signal_20_regular": 58530, - "ic_fluent_desktop_signal_24_regular": 58531, - "ic_fluent_emoji_sad_slight_20_regular": 58837, - "ic_fluent_emoji_sad_slight_24_regular": 58838, - "ic_fluent_emoji_smile_slight_20_regular": 58839, - "ic_fluent_emoji_smile_slight_24_regular": 58840, - "ic_fluent_food_apple_20_regular": 58983, - "ic_fluent_food_apple_24_regular": 58984, - "ic_fluent_mail_edit_20_regular": 59315, - "ic_fluent_mail_edit_24_regular": 59316, - "ic_fluent_person_arrow_left_16_regular": 59683, - "ic_fluent_person_edit_20_regular": 59694, - "ic_fluent_person_edit_24_regular": 59695, - "ic_fluent_scan_dash_12_regular": 59994, - "ic_fluent_scan_dash_16_regular": 59995, - "ic_fluent_scan_dash_20_regular": 59996, - "ic_fluent_scan_dash_24_regular": 59997, - "ic_fluent_scan_dash_28_regular": 59998, - "ic_fluent_scan_dash_32_regular": 59999, - "ic_fluent_scan_dash_48_regular": 60000, - "ic_fluent_square_hint_20_regular": 60294, - "ic_fluent_square_hint_24_regular": 60295, - "ic_fluent_tag_off_20_regular": 60544, - "ic_fluent_tag_off_24_regular": 60545, - "ic_fluent_text_box_settings_20_regular": 60627, - "ic_fluent_text_box_settings_24_regular": 60628, - "ic_fluent_vehicle_truck_cube_20_regular": 60908, - "ic_fluent_vehicle_truck_cube_24_regular": 60909, - "ic_fluent_arrow_forward_down_lightning_20_regular": 57554, - "ic_fluent_arrow_forward_down_lightning_24_regular": 57555, - "ic_fluent_arrow_forward_down_person_20_regular": 57556, - "ic_fluent_arrow_forward_down_person_24_regular": 57557, - "ic_fluent_arrow_step_in_28_regular": 57598, - "ic_fluent_arrow_step_in_left_24_regular": 57602, - "ic_fluent_arrow_step_in_left_28_regular": 57603, - "ic_fluent_arrow_step_in_right_24_regular": 57607, - "ic_fluent_arrow_step_in_right_28_regular": 57608, - "ic_fluent_arrow_step_out_24_regular": 57612, - "ic_fluent_arrow_step_out_28_regular": 57613, - "ic_fluent_arrow_trending_text_20_regular": 57632, - "ic_fluent_arrow_trending_text_24_regular": 57633, - "ic_fluent_arrow_trending_wrench_20_regular": 57634, - "ic_fluent_arrow_trending_wrench_24_regular": 57635, - "ic_fluent_battery_10_20_regular": 57667, - "ic_fluent_beach_32_regular": 57676, - "ic_fluent_beach_48_regular": 57677, - "ic_fluent_book_clock_20_regular": 57700, - "ic_fluent_book_coins_20_regular": 57702, - "ic_fluent_book_compass_20_regular": 57704, - "ic_fluent_book_database_20_regular": 57710, - "ic_fluent_book_exclamation_mark_20_regular": 57712, - "ic_fluent_book_globe_20_regular": 57714, - "ic_fluent_book_information_20_regular": 57715, - "ic_fluent_book_letter_20_regular": 57717, - "ic_fluent_book_pulse_20_regular": 57732, - "ic_fluent_book_question_mark_20_regular": 57734, - "ic_fluent_book_question_mark_rtl_20_regular": 57736, - "ic_fluent_book_search_20_regular": 57737, - "ic_fluent_book_star_20_regular": 57739, - "ic_fluent_book_theta_20_regular": 57742, - "ic_fluent_bookmark_off_20_regular": 57752, - "ic_fluent_border_bottom_20_regular": 57758, - "ic_fluent_border_bottom_double_20_regular": 57760, - "ic_fluent_border_bottom_thick_20_regular": 57762, - "ic_fluent_border_left_20_regular": 57764, - "ic_fluent_border_none_20_regular": 57768, - "ic_fluent_border_outside_20_regular": 57770, - "ic_fluent_border_outside_thick_20_regular": 57772, - "ic_fluent_border_right_20_regular": 57774, - "ic_fluent_border_top_20_regular": 57776, - "ic_fluent_border_top_bottom_20_regular": 57778, - "ic_fluent_border_top_bottom_double_20_regular": 57780, - "ic_fluent_border_top_bottom_thick_20_regular": 57782, - "ic_fluent_branch_20_regular": 57817, - "ic_fluent_brightness_high_16_regular": 57846, - "ic_fluent_brightness_high_20_regular": 57847, - "ic_fluent_brightness_high_24_regular": 57848, - "ic_fluent_brightness_high_28_regular": 57849, - "ic_fluent_brightness_high_32_regular": 57850, - "ic_fluent_brightness_high_48_regular": 57851, - "ic_fluent_brightness_low_16_regular": 57852, - "ic_fluent_brightness_low_20_regular": 57853, - "ic_fluent_brightness_low_24_regular": 57854, - "ic_fluent_brightness_low_28_regular": 57855, - "ic_fluent_brightness_low_32_regular": 57856, - "ic_fluent_brightness_low_48_regular": 57857, - "ic_fluent_building_government_20_regular": 57884, - "ic_fluent_building_multiple_20_regular": 57891, - "ic_fluent_chat_dismiss_20_regular": 58093, - "ic_fluent_chat_dismiss_24_regular": 58094, - "ic_fluent_cube_tree_20_regular": 58427, - "ic_fluent_cube_tree_24_regular": 58428, - "ic_fluent_draw_image_20_regular": 58739, - "ic_fluent_draw_image_24_regular": 58740, - "ic_fluent_draw_shape_20_regular": 58741, - "ic_fluent_draw_text_20_regular": 58743, - "ic_fluent_drawer_add_20_regular": 58745, - "ic_fluent_drawer_add_24_regular": 58746, - "ic_fluent_drawer_arrow_download_20_regular": 58747, - "ic_fluent_drawer_arrow_download_24_regular": 58748, - "ic_fluent_drawer_dismiss_20_regular": 58749, - "ic_fluent_drawer_dismiss_24_regular": 58750, - "ic_fluent_drawer_play_20_regular": 58751, - "ic_fluent_drawer_play_24_regular": 58752, - "ic_fluent_drawer_subtract_20_regular": 58753, - "ic_fluent_drawer_subtract_24_regular": 58754, - "ic_fluent_emoji_28_regular": 58820, - "ic_fluent_emoji_32_regular": 58821, - "ic_fluent_emoji_48_regular": 58822, - "ic_fluent_emoji_sparkle_16_regular": 58841, - "ic_fluent_emoji_sparkle_20_regular": 58842, - "ic_fluent_emoji_sparkle_24_regular": 58843, - "ic_fluent_emoji_sparkle_28_regular": 58844, - "ic_fluent_emoji_sparkle_32_regular": 58845, - "ic_fluent_emoji_sparkle_48_regular": 58846, - "ic_fluent_flip_horizontal_16_regular": 58923, - "ic_fluent_flip_horizontal_20_regular": 58924, - "ic_fluent_flip_horizontal_28_regular": 58926, - "ic_fluent_flip_horizontal_32_regular": 58927, - "ic_fluent_flip_horizontal_48_regular": 58928, - "ic_fluent_flip_vertical_16_regular": 58929, - "ic_fluent_flip_vertical_20_regular": 58930, - "ic_fluent_flip_vertical_28_regular": 58932, - "ic_fluent_flip_vertical_32_regular": 58933, - "ic_fluent_flip_vertical_48_regular": 58934, - "ic_fluent_food_grains_20_regular": 58990, - "ic_fluent_food_grains_24_regular": 58991, - "ic_fluent_gift_card_arrow_right_20_regular": 59038, - "ic_fluent_gift_card_arrow_right_24_regular": 59039, - "ic_fluent_heart_32_regular": 59131, - "ic_fluent_heart_48_regular": 59132, - "ic_fluent_link_12_regular": 59248, - "ic_fluent_link_32_regular": 59249, - "ic_fluent_luggage_28_regular": 59293, - "ic_fluent_luggage_32_regular": 59294, - "ic_fluent_luggage_48_regular": 59295, - "ic_fluent_money_hand_20_regular": 59420, - "ic_fluent_money_hand_24_regular": 59421, - "ic_fluent_next_28_regular": 59495, - "ic_fluent_next_32_regular": 59496, - "ic_fluent_next_48_regular": 59497, - "ic_fluent_people_list_28_regular": 59646, - "ic_fluent_previous_28_regular": 59849, - "ic_fluent_previous_32_regular": 59850, - "ic_fluent_previous_48_regular": 59851, - "ic_fluent_question_circle_32_regular": 59886, - "ic_fluent_text_paragraph_16_regular": 60737, - "ic_fluent_vehicle_car_collision_28_regular": 60893, - "ic_fluent_vehicle_car_collision_32_regular": 60894, - "ic_fluent_video_clip_multiple_16_regular": 60928, - "ic_fluent_video_clip_multiple_20_regular": 60929, - "ic_fluent_video_clip_multiple_24_regular": 60930, - "ic_fluent_wallet_28_regular": 60974, - "ic_fluent_wallet_32_regular": 60975, - "ic_fluent_wallet_48_regular": 60976, - "ic_fluent_weather_sunny_28_regular": 61005, - "ic_fluent_wrench_screwdriver_20_regular": 61063, - "ic_fluent_wrench_screwdriver_24_regular": 61064, - "ic_fluent_arrow_between_down_20_regular": 57471, - "ic_fluent_arrow_between_down_24_regular": 57472, - "ic_fluent_arrow_redo_28_regular": 57573, - "ic_fluent_arrow_sync_checkmark_20_regular": 57617, - "ic_fluent_arrow_sync_checkmark_24_regular": 57618, - "ic_fluent_arrow_sync_dismiss_20_regular": 57619, - "ic_fluent_arrow_sync_dismiss_24_regular": 57620, - "ic_fluent_calculator_arrow_clockwise_20_regular": 57908, - "ic_fluent_calculator_arrow_clockwise_24_regular": 57909, - "ic_fluent_calendar_arrow_down_20_regular": 57915, - "ic_fluent_calendar_arrow_right_24_regular": 57918, - "ic_fluent_calendar_error_20_regular": 57929, - "ic_fluent_calendar_mail_20_regular": 57940, - "ic_fluent_calendar_week_numbers_20_regular": 57965, - "ic_fluent_call_add_20_regular": 57974, - "ic_fluent_camera_off_20_regular": 58016, - "ic_fluent_cellular_off_20_regular": 58036, - "ic_fluent_chevron_circle_down_32_regular": 58130, - "ic_fluent_chevron_circle_up_32_regular": 58151, - "ic_fluent_circle_48_regular": 58163, - "ic_fluent_clock_pause_20_regular": 58228, - "ic_fluent_clock_pause_24_regular": 58229, - "ic_fluent_diamond_16_regular": 58554, - "ic_fluent_diamond_20_regular": 58555, - "ic_fluent_diamond_24_regular": 58556, - "ic_fluent_diamond_28_regular": 58557, - "ic_fluent_diamond_48_regular": 58559, - "ic_fluent_door_28_regular": 58723, - "ic_fluent_door_arrow_right_28_regular": 58729, - "ic_fluent_immersive_reader_28_regular": 59188, - "ic_fluent_key_reset_20_regular": 59206, - "ic_fluent_key_reset_24_regular": 59207, - "ic_fluent_lightbulb_filament_48_regular": 59236, - "ic_fluent_line_20_regular": 59237, - "ic_fluent_line_24_regular": 59238, - "ic_fluent_line_48_regular": 59240, - "ic_fluent_line_dashes_20_regular": 59241, - "ic_fluent_line_dashes_24_regular": 59242, - "ic_fluent_line_dashes_48_regular": 59244, - "ic_fluent_mail_arrow_up_16_regular": 59307, - "ic_fluent_notepad_person_16_regular": 59521, - "ic_fluent_oval_16_regular": 59553, - "ic_fluent_oval_20_regular": 59554, - "ic_fluent_oval_24_regular": 59555, - "ic_fluent_oval_28_regular": 59556, - "ic_fluent_oval_48_regular": 59558, - "ic_fluent_pentagon_48_regular": 59626, - "ic_fluent_people_add_28_regular": 59630, - "ic_fluent_people_list_24_regular": 59645, - "ic_fluent_people_queue_20_regular": 59653, - "ic_fluent_people_queue_24_regular": 59654, - "ic_fluent_people_settings_28_regular": 59657, - "ic_fluent_print_28_regular": 59852, - "ic_fluent_rhombus_16_regular": 59935, - "ic_fluent_rhombus_20_regular": 59936, - "ic_fluent_rhombus_24_regular": 59937, - "ic_fluent_rhombus_28_regular": 59938, - "ic_fluent_rhombus_48_regular": 59940, - "ic_fluent_screen_search_20_regular": 60025, - "ic_fluent_screen_search_24_regular": 60026, - "ic_fluent_settings_chat_20_regular": 60054, - "ic_fluent_settings_chat_24_regular": 60055, - "ic_fluent_share_screen_person_p_16_regular": 60086, - "ic_fluent_share_screen_person_p_20_regular": 60087, - "ic_fluent_share_screen_person_p_24_regular": 60088, - "ic_fluent_share_screen_person_p_28_regular": 60089, - "ic_fluent_slide_add_16_regular": 60173, - "ic_fluent_slide_add_20_regular": 60174, - "ic_fluent_slide_add_28_regular": 60175, - "ic_fluent_slide_add_32_regular": 60176, - "ic_fluent_slide_add_48_regular": 60177, - "ic_fluent_slide_arrow_right_20_regular": 60178, - "ic_fluent_slide_arrow_right_24_regular": 60179, - "ic_fluent_sound_wave_circle_24_regular": 60208, - "ic_fluent_square_48_regular": 60281, - "ic_fluent_star_48_regular": 60319, - "ic_fluent_star_add_28_regular": 60320, - "ic_fluent_star_dismiss_16_regular": 60324, - "ic_fluent_star_dismiss_20_regular": 60325, - "ic_fluent_star_dismiss_24_regular": 60326, - "ic_fluent_star_dismiss_28_regular": 60327, - "ic_fluent_star_edit_20_regular": 60328, - "ic_fluent_star_settings_20_regular": 60345, - "ic_fluent_triangle_48_regular": 60840, - "ic_fluent_trophy_28_regular": 60856, - "ic_fluent_trophy_32_regular": 60857, - "ic_fluent_trophy_48_regular": 60858, - "ic_fluent_trophy_off_16_regular": 60859, - "ic_fluent_trophy_off_20_regular": 60860, - "ic_fluent_trophy_off_24_regular": 60861, - "ic_fluent_trophy_off_28_regular": 60862, - "ic_fluent_trophy_off_32_regular": 60863, - "ic_fluent_trophy_off_48_regular": 60864, - "ic_fluent_window_28_regular": 61023, - "ic_fluent_window_32_regular": 61024, - "ic_fluent_window_48_regular": 61025, - "ic_fluent_window_apps_16_regular": 61028, - "ic_fluent_window_apps_20_regular": 61029, - "ic_fluent_window_apps_24_regular": 61030, - "ic_fluent_window_apps_28_regular": 61031, - "ic_fluent_window_apps_32_regular": 61032, - "ic_fluent_window_apps_48_regular": 61033, - "ic_fluent_window_wrench_16_regular": 61055, - "ic_fluent_window_wrench_20_regular": 61056, - "ic_fluent_window_wrench_24_regular": 61057, - "ic_fluent_window_wrench_28_regular": 61058, - "ic_fluent_window_wrench_32_regular": 61059, - "ic_fluent_window_wrench_48_regular": 61060, - "ic_fluent_arrow_down_left_32_regular": 57532, - "ic_fluent_arrow_down_left_48_regular": 57533, - "ic_fluent_arrow_maximize_48_regular": 57561, - "ic_fluent_arrow_maximize_vertical_48_regular": 57562, - "ic_fluent_arrow_outline_up_right_48_regular": 57569, - "ic_fluent_arrow_up_left_48_regular": 57645, - "ic_fluent_arrow_up_right_48_regular": 57648, - "ic_fluent_book_arrow_clockwise_20_regular": 57698, - "ic_fluent_book_arrow_clockwise_24_regular": 57699, - "ic_fluent_box_arrow_left_20_regular": 57789, - "ic_fluent_box_arrow_left_24_regular": 57790, - "ic_fluent_box_arrow_up_20_regular": 57791, - "ic_fluent_box_arrow_up_24_regular": 57792, - "ic_fluent_box_checkmark_20_regular": 57793, - "ic_fluent_box_checkmark_24_regular": 57794, - "ic_fluent_box_multiple_20_regular": 57799, - "ic_fluent_box_multiple_24_regular": 57800, - "ic_fluent_box_multiple_arrow_left_20_regular": 57801, - "ic_fluent_box_multiple_arrow_left_24_regular": 57802, - "ic_fluent_box_multiple_arrow_right_20_regular": 57803, - "ic_fluent_box_multiple_arrow_right_24_regular": 57804, - "ic_fluent_box_multiple_checkmark_20_regular": 57805, - "ic_fluent_box_multiple_checkmark_24_regular": 57806, - "ic_fluent_box_multiple_search_20_regular": 57807, - "ic_fluent_box_multiple_search_24_regular": 57808, - "ic_fluent_box_search_20_regular": 57809, - "ic_fluent_box_search_24_regular": 57810, - "ic_fluent_cellular_warning_20_regular": 58038, - "ic_fluent_chart_multiple_20_regular": 58077, - "ic_fluent_chart_multiple_24_regular": 58078, - "ic_fluent_checkbox_arrow_right_20_regular": 58106, - "ic_fluent_checkbox_warning_20_regular": 58115, - "ic_fluent_clock_toolbox_20_regular": 58230, - "ic_fluent_clock_toolbox_24_regular": 58231, - "ic_fluent_cube_multiple_20_regular": 58418, - "ic_fluent_cube_multiple_24_regular": 58419, - "ic_fluent_desktop_toolbox_20_regular": 58538, - "ic_fluent_desktop_toolbox_24_regular": 58539, - "ic_fluent_document_bullet_list_multiple_20_regular": 58603, - "ic_fluent_document_bullet_list_multiple_24_regular": 58604, - "ic_fluent_document_queue_20_regular": 58675, - "ic_fluent_document_queue_24_regular": 58676, - "ic_fluent_document_queue_add_20_regular": 58677, - "ic_fluent_document_queue_add_24_regular": 58678, - "ic_fluent_document_queue_multiple_20_regular": 58679, - "ic_fluent_document_queue_multiple_24_regular": 58680, - "ic_fluent_document_table_cube_20_regular": 58705, - "ic_fluent_document_table_cube_24_regular": 58706, - "ic_fluent_document_table_truck_20_regular": 58709, - "ic_fluent_document_table_truck_24_regular": 58710, - "ic_fluent_document_text_toolbox_20_regular": 58719, - "ic_fluent_document_text_toolbox_24_regular": 58720, - "ic_fluent_equal_circle_20_regular": 58849, - "ic_fluent_equal_circle_24_regular": 58850, - "ic_fluent_gift_card_money_20_regular": 59040, - "ic_fluent_gift_card_money_24_regular": 59041, - "ic_fluent_gift_card_multiple_20_regular": 59042, - "ic_fluent_gift_card_multiple_24_regular": 59043, - "ic_fluent_image_multiple_32_regular": 59176, - "ic_fluent_image_multiple_48_regular": 59177, - "ic_fluent_mail_alert_28_regular": 59298, - "ic_fluent_puzzle_piece_shield_20_regular": 59883, - "ic_fluent_ribbon_12_regular": 59941, - "ic_fluent_ribbon_off_12_regular": 59946, - "ic_fluent_ribbon_off_16_regular": 59947, - "ic_fluent_ribbon_off_20_regular": 59948, - "ic_fluent_ribbon_off_24_regular": 59949, - "ic_fluent_ribbon_off_32_regular": 59950, - "ic_fluent_share_28_regular": 60071, - "ic_fluent_shopping_bag_arrow_left_20_regular": 60138, - "ic_fluent_shopping_bag_arrow_left_24_regular": 60139, - "ic_fluent_shopping_bag_play_20_regular": 60146, - "ic_fluent_shopping_bag_play_24_regular": 60147, - "ic_fluent_square_24_regular": 60278, - "ic_fluent_square_28_regular": 60279, - "ic_fluent_square_hint_16_regular": 60293, - "ic_fluent_square_hint_28_regular": 60296, - "ic_fluent_square_hint_32_regular": 60297, - "ic_fluent_square_hint_48_regular": 60298, - "ic_fluent_square_hint_apps_20_regular": 60299, - "ic_fluent_square_hint_apps_24_regular": 60300, - "ic_fluent_square_hint_sparkles_16_regular": 60303, - "ic_fluent_square_hint_sparkles_20_regular": 60304, - "ic_fluent_square_hint_sparkles_24_regular": 60305, - "ic_fluent_square_hint_sparkles_28_regular": 60306, - "ic_fluent_square_hint_sparkles_32_regular": 60307, - "ic_fluent_square_hint_sparkles_48_regular": 60308, - "ic_fluent_tablet_12_regular": 60521, - "ic_fluent_tablet_16_regular": 60522, - "ic_fluent_tablet_32_regular": 60523, - "ic_fluent_tablet_48_regular": 60524, - "ic_fluent_tag_reset_20_regular": 60550, - "ic_fluent_tag_reset_24_regular": 60551, - "ic_fluent_tag_search_20_regular": 60552, - "ic_fluent_tag_search_24_regular": 60553, - "ic_fluent_tap_double_32_regular": 60555, - "ic_fluent_tap_double_48_regular": 60556, - "ic_fluent_tap_single_32_regular": 60558, - "ic_fluent_tap_single_48_regular": 60559, - "ic_fluent_timer_12_regular": 60805, - "ic_fluent_timer_28_regular": 60809, - "ic_fluent_timer_32_regular": 60812, - "ic_fluent_timer_48_regular": 60813, - "ic_fluent_board_heart_16_regular": 57689, - "ic_fluent_board_heart_20_regular": 57690, - "ic_fluent_board_heart_24_regular": 57691, - "ic_fluent_braces_24_regular": 57814, - "ic_fluent_breakout_room_24_regular": 57830, - "ic_fluent_breakout_room_28_regular": 57831, - "ic_fluent_chat_warning_20_regular": 58100, - "ic_fluent_checkbox_person_16_regular": 58112, - "ic_fluent_checkbox_person_20_regular": 58113, - "ic_fluent_chevron_circle_down_12_regular": 58125, - "ic_fluent_chevron_circle_down_16_regular": 58126, - "ic_fluent_chevron_circle_down_20_regular": 58127, - "ic_fluent_chevron_circle_down_28_regular": 58129, - "ic_fluent_chevron_circle_down_48_regular": 58131, - "ic_fluent_chevron_circle_left_12_regular": 58132, - "ic_fluent_chevron_circle_left_16_regular": 58133, - "ic_fluent_chevron_circle_left_20_regular": 58134, - "ic_fluent_chevron_circle_left_24_regular": 58135, - "ic_fluent_chevron_circle_left_28_regular": 58136, - "ic_fluent_chevron_circle_left_32_regular": 58137, - "ic_fluent_chevron_circle_left_48_regular": 58138, - "ic_fluent_chevron_circle_right_16_regular": 58140, - "ic_fluent_chevron_circle_right_20_regular": 58141, - "ic_fluent_chevron_circle_right_28_regular": 58143, - "ic_fluent_chevron_circle_right_32_regular": 58144, - "ic_fluent_chevron_circle_right_48_regular": 58145, - "ic_fluent_chevron_circle_up_12_regular": 58146, - "ic_fluent_chevron_circle_up_16_regular": 58147, - "ic_fluent_chevron_circle_up_20_regular": 58148, - "ic_fluent_chevron_circle_up_24_regular": 58149, - "ic_fluent_chevron_circle_up_28_regular": 58150, - "ic_fluent_chevron_circle_up_48_regular": 58152, - "ic_fluent_circle_edit_20_regular": 58164, - "ic_fluent_circle_line_20_regular": 58170, - "ic_fluent_circle_off_20_regular": 58173, - "ic_fluent_class_20_regular": 58175, - "ic_fluent_clipboard_data_bar_20_regular": 58191, - "ic_fluent_clipboard_data_bar_24_regular": 58192, - "ic_fluent_clipboard_image_20_regular": 58198, - "ic_fluent_clipboard_more_20_regular": 58200, - "ic_fluent_clock_dismiss_20_regular": 58226, - "ic_fluent_comment_dismiss_20_regular": 58349, - "ic_fluent_comment_error_24_regular": 58354, - "ic_fluent_comment_note_20_regular": 58366, - "ic_fluent_convert_range_20_regular": 58397, - "ic_fluent_copy_add_20_regular": 58399, - "ic_fluent_copy_arrow_right_20_regular": 58402, - "ic_fluent_couch_20_regular": 58406, - "ic_fluent_crop_interim_20_regular": 58412, - "ic_fluent_crop_interim_off_20_regular": 58413, - "ic_fluent_cube_sync_20_regular": 58425, - "ic_fluent_dark_theme_20_regular": 58450, - "ic_fluent_data_area_20_regular": 58451, - "ic_fluent_data_bar_vertical_add_20_regular": 58452, - "ic_fluent_data_funnel_20_regular": 58454, - "ic_fluent_data_histogram_20_regular": 58455, - "ic_fluent_data_scatter_20_regular": 58457, - "ic_fluent_data_sunburst_20_regular": 58458, - "ic_fluent_data_treemap_20_regular": 58459, - "ic_fluent_data_waterfall_20_regular": 58468, - "ic_fluent_data_whisker_20_regular": 58469, - "ic_fluent_document_lock_16_regular": 58644, - "ic_fluent_document_lock_20_regular": 58645, - "ic_fluent_document_lock_24_regular": 58646, - "ic_fluent_document_lock_28_regular": 58647, - "ic_fluent_document_lock_32_regular": 58648, - "ic_fluent_document_lock_48_regular": 58649, - "ic_fluent_eyedropper_off_20_regular": 58879, - "ic_fluent_eyedropper_off_24_regular": 58880, - "ic_fluent_globe_person_20_regular": 59063, - "ic_fluent_mail_open_person_20_regular": 59340, - "ic_fluent_mail_open_person_24_regular": 59341, - "ic_fluent_resize_24_regular": 59923, - "ic_fluent_resize_image_20_regular": 59924, - "ic_fluent_scan_camera_16_regular": 59989, - "ic_fluent_scan_camera_20_regular": 59990, - "ic_fluent_scan_camera_24_regular": 59991, - "ic_fluent_scan_camera_28_regular": 59992, - "ic_fluent_scan_camera_48_regular": 59993, - "ic_fluent_style_guide_20_regular": 60361, - "ic_fluent_tab_desktop_16_regular": 60393, - "ic_fluent_tab_desktop_24_regular": 60394, - "ic_fluent_tab_desktop_bottom_20_regular": 60396, - "ic_fluent_approvals_app_32_regular": 57441, - "ic_fluent_arrow_export_rtl_24_regular": 57546, - "ic_fluent_arrow_sort_down_lines_20_regular": 57585, - "ic_fluent_arrow_step_in_20_regular": 57596, - "ic_fluent_arrow_step_in_24_regular": 57597, - "ic_fluent_battery_10_24_regular": 57668, - "ic_fluent_bezier_curve_square_20_regular": 57679, - "ic_fluent_border_none_24_regular": 57769, - "ic_fluent_calendar_pattern_16_regular": 57944, - "ic_fluent_caret_down_right_12_regular": 58019, - "ic_fluent_caret_down_right_16_regular": 58020, - "ic_fluent_caret_down_right_20_regular": 58021, - "ic_fluent_caret_down_right_24_regular": 58022, - "ic_fluent_cellular_off_24_regular": 58037, - "ic_fluent_eye_12_regular": 58864, - "ic_fluent_eye_16_regular": 58865, - "ic_fluent_eye_20_regular": 58866, - "ic_fluent_eye_24_regular": 58867, - "ic_fluent_eye_off_20_regular": 58869, - "ic_fluent_eye_off_24_regular": 58870, - "ic_fluent_eye_tracking_16_regular": 58871, - "ic_fluent_eye_tracking_20_regular": 58872, - "ic_fluent_eye_tracking_24_regular": 58873, - "ic_fluent_flash_20_regular": 58904, - "ic_fluent_flash_24_regular": 58905, - "ic_fluent_hdr_off_24_regular": 59117, - "ic_fluent_mic_16_regular": 59384, - "ic_fluent_mic_20_regular": 59385, - "ic_fluent_mic_24_regular": 59386, - "ic_fluent_mic_28_regular": 59387, - "ic_fluent_mic_32_regular": 59388, - "ic_fluent_mic_48_regular": 59389, - "ic_fluent_multiselect_ltr_16_regular": 59467, - "ic_fluent_multiselect_ltr_20_regular": 59468, - "ic_fluent_multiselect_ltr_24_regular": 59469, - "ic_fluent_multiselect_rtl_20_regular": 59471, - "ic_fluent_multiselect_rtl_24_regular": 59472, - "ic_fluent_panel_left_contract_16_regular": 59572, - "ic_fluent_panel_left_contract_20_regular": 59573, - "ic_fluent_panel_left_contract_24_regular": 59574, - "ic_fluent_share_screen_start_48_regular": 60093, - "ic_fluent_shield_lock_24_regular": 60113, - "ic_fluent_shield_lock_28_regular": 60114, - "ic_fluent_shield_lock_48_regular": 60115, - "ic_fluent_skip_back_10_24_regular": 60156, - "ic_fluent_skip_back_10_28_regular": 60157, - "ic_fluent_skip_back_10_32_regular": 60158, - "ic_fluent_skip_back_10_48_regular": 60159, - "ic_fluent_table_stack_below_20_regular": 60507, - "ic_fluent_textbox_16_regular": 60778, - "ic_fluent_textbox_rotate_90_20_regular": 60789, - "ic_fluent_textbox_rotate_90_24_regular": 60790, - "ic_fluent_board_games_20_regular": 57688, - "ic_fluent_building_home_16_regular": 57887, - "ic_fluent_building_home_20_regular": 57888, - "ic_fluent_building_home_24_regular": 57889, - "ic_fluent_color_fill_16_regular": 58303, - "ic_fluent_color_fill_28_regular": 58304, - "ic_fluent_color_fill_accent_16_regular": 58305, - "ic_fluent_color_fill_accent_28_regular": 58308, - "ic_fluent_decimal_arrow_left_20_regular": 58487, - "ic_fluent_decimal_arrow_right_20_regular": 58489, - "ic_fluent_delete_arrow_back_20_regular": 58493, - "ic_fluent_delete_dismiss_20_regular": 58494, - "ic_fluent_desktop_edit_20_regular": 58512, - "ic_fluent_desktop_edit_24_regular": 58513, - "ic_fluent_desktop_mac_20_regular": 58521, - "ic_fluent_desktop_mac_24_regular": 58522, - "ic_fluent_desktop_sync_20_regular": 58536, - "ic_fluent_desktop_sync_24_regular": 58537, - "ic_fluent_developer_board_search_24_regular": 58544, - "ic_fluent_device_eq_20_regular": 58545, - "ic_fluent_diagram_20_regular": 58548, - "ic_fluent_dialpad_off_20_regular": 58553, - "ic_fluent_dismiss_square_multiple_20_regular": 58567, - "ic_fluent_divider_short_16_regular": 58572, - "ic_fluent_divider_short_20_regular": 58573, - "ic_fluent_dock_20_regular": 58576, - "ic_fluent_dock_row_20_regular": 58577, - "ic_fluent_document_bullet_list_off_20_regular": 58605, - "ic_fluent_document_checkmark_20_regular": 58609, - "ic_fluent_document_chevron_double_20_regular": 58611, - "ic_fluent_document_css_20_regular": 58613, - "ic_fluent_document_footer_20_regular": 58621, - "ic_fluent_document_footer_dismiss_20_regular": 58622, - "ic_fluent_document_header_20_regular": 58625, - "ic_fluent_document_header_arrow_down_20_regular": 58627, - "ic_fluent_document_header_arrow_down_24_regular": 58628, - "ic_fluent_document_header_dismiss_20_regular": 58629, - "ic_fluent_document_javascript_20_regular": 58636, - "ic_fluent_document_landscape_data_20_regular": 58638, - "ic_fluent_document_landscape_split_24_regular": 58641, - "ic_fluent_double_tap_swipe_down_20_regular": 58734, - "ic_fluent_double_tap_swipe_down_24_regular": 58735, - "ic_fluent_double_tap_swipe_up_20_regular": 58736, - "ic_fluent_double_tap_swipe_up_24_regular": 58737, - "ic_fluent_location_add_16_regular": 59261, - "ic_fluent_location_add_20_regular": 59262, - "ic_fluent_location_add_24_regular": 59263, - "ic_fluent_math_symbols_16_regular": 59365, - "ic_fluent_math_symbols_20_regular": 59366, - "ic_fluent_math_symbols_24_regular": 59367, - "ic_fluent_math_symbols_28_regular": 59368, - "ic_fluent_math_symbols_32_regular": 59369, - "ic_fluent_math_symbols_48_regular": 59370, - "ic_fluent_password_16_regular": 59592, - "ic_fluent_password_20_regular": 59593, - "ic_fluent_people_prohibited_24_regular": 59652, - "ic_fluent_sticker_add_20_regular": 60354, - "ic_fluent_subtract_square_20_regular": 60377, - "ic_fluent_system_20_regular": 60388, - "ic_fluent_table_add_16_regular": 60408, - "ic_fluent_table_add_28_regular": 60410, - "ic_fluent_table_cell_edit_16_regular": 60417, - "ic_fluent_table_cell_edit_20_regular": 60418, - "ic_fluent_table_cell_edit_28_regular": 60420, - "ic_fluent_table_cells_merge_16_regular": 60421, - "ic_fluent_table_cells_merge_28_regular": 60422, - "ic_fluent_table_cells_split_16_regular": 60423, - "ic_fluent_table_cells_split_28_regular": 60424, - "ic_fluent_table_delete_column_16_regular": 60427, - "ic_fluent_table_delete_column_28_regular": 60430, - "ic_fluent_table_delete_row_16_regular": 60431, - "ic_fluent_table_delete_row_28_regular": 60434, - "ic_fluent_table_dismiss_16_regular": 60435, - "ic_fluent_table_dismiss_28_regular": 60438, - "ic_fluent_table_edit_16_regular": 60439, - "ic_fluent_table_edit_20_regular": 60440, - "ic_fluent_table_edit_28_regular": 60441, - "ic_fluent_table_freeze_column_16_regular": 60442, - "ic_fluent_table_freeze_column_20_regular": 60443, - "ic_fluent_table_freeze_column_28_regular": 60444, - "ic_fluent_table_freeze_column_and_row_16_regular": 60445, - "ic_fluent_table_freeze_column_and_row_20_regular": 60446, - "ic_fluent_table_freeze_column_and_row_28_regular": 60448, - "ic_fluent_table_freeze_row_16_regular": 60449, - "ic_fluent_table_freeze_row_20_regular": 60450, - "ic_fluent_table_freeze_row_28_regular": 60451, - "ic_fluent_table_insert_column_16_regular": 60453, - "ic_fluent_table_insert_column_20_regular": 60454, - "ic_fluent_table_insert_column_28_regular": 60456, - "ic_fluent_table_insert_row_16_regular": 60457, - "ic_fluent_table_insert_row_20_regular": 60458, - "ic_fluent_table_insert_row_28_regular": 60460, - "ic_fluent_table_lightning_16_regular": 60461, - "ic_fluent_table_lightning_28_regular": 60464, - "ic_fluent_table_link_16_regular": 60465, - "ic_fluent_table_link_28_regular": 60468, - "ic_fluent_table_move_above_16_regular": 60469, - "ic_fluent_table_move_above_20_regular": 60470, - "ic_fluent_table_move_above_28_regular": 60472, - "ic_fluent_table_move_below_16_regular": 60473, - "ic_fluent_table_move_below_20_regular": 60474, - "ic_fluent_table_move_below_28_regular": 60476, - "ic_fluent_table_move_left_16_regular": 60477, - "ic_fluent_table_move_left_20_regular": 60478, - "ic_fluent_table_move_left_28_regular": 60479, - "ic_fluent_table_move_right_16_regular": 60480, - "ic_fluent_table_move_right_20_regular": 60481, - "ic_fluent_table_move_right_28_regular": 60482, - "ic_fluent_table_resize_column_16_regular": 60484, - "ic_fluent_table_resize_column_20_regular": 60485, - "ic_fluent_table_resize_column_28_regular": 60487, - "ic_fluent_table_resize_row_16_regular": 60488, - "ic_fluent_table_resize_row_20_regular": 60489, - "ic_fluent_table_resize_row_28_regular": 60491, - "ic_fluent_table_settings_16_regular": 60493, - "ic_fluent_table_settings_20_regular": 60494, - "ic_fluent_table_settings_28_regular": 60495, - "ic_fluent_table_stack_above_16_regular": 60502, - "ic_fluent_table_stack_above_28_regular": 60505, - "ic_fluent_table_stack_below_16_regular": 60506, - "ic_fluent_table_stack_below_28_regular": 60509, - "ic_fluent_table_stack_left_16_regular": 60510, - "ic_fluent_table_stack_left_28_regular": 60513, - "ic_fluent_table_stack_right_16_regular": 60514, - "ic_fluent_table_stack_right_28_regular": 60517, - "ic_fluent_table_switch_16_regular": 60518, - "ic_fluent_table_switch_20_regular": 60519, - "ic_fluent_table_switch_28_regular": 60520, - "ic_fluent_tablet_speaker_20_regular": 60525, - "ic_fluent_text_align_distributed_evenly_20_regular": 60601, - "ic_fluent_text_align_distributed_vertical_20_regular": 60603, - "ic_fluent_text_align_justify_low_20_regular": 60605, - "ic_fluent_text_continuous_20_regular": 60668, - "ic_fluent_textbox_align_bottom_rotate_90_20_regular": 60779, - "ic_fluent_textbox_align_middle_rotate_90_20_regular": 60783, - "ic_fluent_textbox_align_top_rotate_90_20_regular": 60785, - "ic_fluent_textbox_more_20_regular": 60787, - "ic_fluent_video_chat_16_regular": 60920, - "ic_fluent_video_chat_20_regular": 60921, - "ic_fluent_video_chat_24_regular": 60922, - "ic_fluent_arrow_paragraph_20_regular": 57570, - "ic_fluent_clipboard_edit_20_regular": 58194, - "ic_fluent_clipboard_note_20_regular": 58201, - "ic_fluent_document_mention_16_regular": 58650, - "ic_fluent_document_mention_20_regular": 58651, - "ic_fluent_document_mention_24_regular": 58652, - "ic_fluent_document_mention_28_regular": 58653, - "ic_fluent_document_mention_48_regular": 58654, - "ic_fluent_document_split_hint_off_16_regular": 58693, - "ic_fluent_document_split_hint_off_20_regular": 58694, - "ic_fluent_door_tag_20_regular": 58730, - "ic_fluent_double_swipe_down_20_regular": 58732, - "ic_fluent_double_swipe_up_20_regular": 58733, - "ic_fluent_drag_20_regular": 58738, - "ic_fluent_drink_to_go_20_regular": 58760, - "ic_fluent_drive_train_20_regular": 58764, - "ic_fluent_dual_screen_add_20_regular": 58773, - "ic_fluent_dual_screen_arrow_right_20_regular": 58774, - "ic_fluent_dual_screen_arrow_up_20_regular": 58775, - "ic_fluent_dual_screen_clock_20_regular": 58777, - "ic_fluent_dual_screen_closed_alert_20_regular": 58778, - "ic_fluent_dual_screen_desktop_20_regular": 58780, - "ic_fluent_dual_screen_dismiss_20_regular": 58781, - "ic_fluent_dual_screen_group_20_regular": 58783, - "ic_fluent_dual_screen_header_20_regular": 58784, - "ic_fluent_dual_screen_lock_20_regular": 58785, - "ic_fluent_dual_screen_mirror_20_regular": 58786, - "ic_fluent_dual_screen_pagination_20_regular": 58787, - "ic_fluent_dual_screen_settings_20_regular": 58788, - "ic_fluent_dual_screen_span_20_regular": 58789, - "ic_fluent_dual_screen_speaker_20_regular": 58791, - "ic_fluent_dual_screen_status_bar_20_regular": 58793, - "ic_fluent_dual_screen_tablet_20_regular": 58794, - "ic_fluent_dual_screen_update_20_regular": 58795, - "ic_fluent_dual_screen_vertical_scroll_20_regular": 58796, - "ic_fluent_dual_screen_vibrate_20_regular": 58797, - "ic_fluent_edit_settings_20_regular": 58818, - "ic_fluent_engine_20_regular": 58847, - "ic_fluent_eraser_medium_20_regular": 58854, - "ic_fluent_eraser_segment_20_regular": 58856, - "ic_fluent_eraser_small_20_regular": 58858, - "ic_fluent_eraser_tool_20_regular": 58860, - "ic_fluent_extended_dock_20_regular": 58863, - "ic_fluent_fast_acceleration_20_regular": 58885, - "ic_fluent_filter_sync_20_regular": 58895, - "ic_fluent_fingerprint_20_regular": 58897, - "ic_fluent_fixed_width_20_regular": 58899, - "ic_fluent_flash_auto_20_regular": 58908, - "ic_fluent_flash_off_20_regular": 58916, - "ic_fluent_flashlight_off_20_regular": 58922, - "ic_fluent_fluent_20_regular": 58940, - "ic_fluent_form_new_20_regular": 58996, - "ic_fluent_fps_960_20_regular": 59010, - "ic_fluent_full_screen_minimize_16_regular": 59014, - "ic_fluent_full_screen_minimize_20_regular": 59015, - "ic_fluent_gas_20_regular": 59024, - "ic_fluent_gas_pump_20_regular": 59026, - "ic_fluent_gavel_20_regular": 59030, - "ic_fluent_gesture_20_regular": 59033, - "ic_fluent_gift_card_24_regular": 59036, - "ic_fluent_glance_default_12_regular": 59045, - "ic_fluent_glance_horizontal_24_regular": 59048, - "ic_fluent_globe_add_20_regular": 59059, - "ic_fluent_globe_desktop_20_regular": 59062, - "ic_fluent_group_dismiss_20_regular": 59080, - "ic_fluent_group_list_20_regular": 59082, - "ic_fluent_group_return_20_regular": 59083, - "ic_fluent_guest_add_20_regular": 59089, - "ic_fluent_hand_draw_20_regular": 59095, - "ic_fluent_home_add_20_regular": 59154, - "ic_fluent_mail_dismiss_28_regular": 59314, - "ic_fluent_mail_inbox_all_20_regular": 59318, - "ic_fluent_mail_inbox_arrow_right_20_regular": 59321, - "ic_fluent_mail_list_16_regular": 59329, - "ic_fluent_mail_multiple_28_regular": 59336, - "ic_fluent_mail_off_20_regular": 59337, - "ic_fluent_mic_settings_20_regular": 59410, - "ic_fluent_navigation_unread_20_regular": 59490, - "ic_fluent_new_20_regular": 59493, - "ic_fluent_notebook_20_regular": 59505, - "ic_fluent_notebook_add_20_regular": 59506, - "ic_fluent_notebook_error_20_regular": 59509, - "ic_fluent_notebook_lightning_20_regular": 59511, - "ic_fluent_notebook_question_mark_20_regular": 59512, - "ic_fluent_number_symbol_dismiss_20_regular": 59530, - "ic_fluent_pair_20_regular": 59563, - "ic_fluent_patient_20_regular": 59594, - "ic_fluent_pause_off_20_regular": 59601, - "ic_fluent_pause_settings_16_regular": 59602, - "ic_fluent_people_sync_28_regular": 59663, - "ic_fluent_phone_add_20_regular": 59732, - "ic_fluent_phone_dismiss_20_regular": 59738, - "ic_fluent_phone_lock_20_regular": 59747, - "ic_fluent_phone_page_header_20_regular": 59749, - "ic_fluent_phone_pagination_20_regular": 59750, - "ic_fluent_phone_screen_time_20_regular": 59751, - "ic_fluent_phone_status_bar_20_regular": 59763, - "ic_fluent_phone_update_20_regular": 59764, - "ic_fluent_phone_vertical_scroll_20_regular": 59767, - "ic_fluent_phone_vibrate_20_regular": 59768, - "ic_fluent_photo_filter_20_regular": 59769, - "ic_fluent_pi_20_regular": 59770, - "ic_fluent_port_hdmi_20_regular": 59808, - "ic_fluent_predictions_20_regular": 59824, - "ic_fluent_pulse_square_20_regular": 59872, - "ic_fluent_remote_20_regular": 59920, - "ic_fluent_reorder_20_regular": 59921, - "ic_fluent_resize_video_20_regular": 59932, - "ic_fluent_rotate_left_20_regular": 59959, - "ic_fluent_router_20_regular": 59963, - "ic_fluent_scan_20_regular": 59988, - "ic_fluent_scan_table_20_regular": 60003, - "ic_fluent_scan_text_20_regular": 60005, - "ic_fluent_search_square_20_regular": 60033, - "ic_fluent_service_bell_20_regular": 60051, - "ic_fluent_shifts_add_20_regular": 60127, - "ic_fluent_shifts_prohibited_20_regular": 60133, - "ic_fluent_shifts_question_mark_20_regular": 60135, - "ic_fluent_slide_grid_20_regular": 60183, - "ic_fluent_slide_settings_20_regular": 60195, - "ic_fluent_slide_transition_20_regular": 60203, - "ic_fluent_spacebar_20_regular": 60209, - "ic_fluent_speaker_settings_20_regular": 60241, - "ic_fluent_speaker_settings_28_regular": 60242, - "ic_fluent_star_arrow_right_end_20_regular": 60321, - "ic_fluent_star_arrow_right_start_20_regular": 60323, - "ic_fluent_star_half_12_regular": 60332, - "ic_fluent_star_half_16_regular": 60333, - "ic_fluent_star_half_20_regular": 60334, - "ic_fluent_star_half_24_regular": 60335, - "ic_fluent_star_half_28_regular": 60336, - "ic_fluent_star_one_quarter_12_regular": 60340, - "ic_fluent_star_one_quarter_16_regular": 60341, - "ic_fluent_star_one_quarter_20_regular": 60342, - "ic_fluent_star_one_quarter_24_regular": 60343, - "ic_fluent_star_one_quarter_28_regular": 60344, - "ic_fluent_star_three_quarter_12_regular": 60346, - "ic_fluent_star_three_quarter_16_regular": 60347, - "ic_fluent_star_three_quarter_20_regular": 60348, - "ic_fluent_star_three_quarter_24_regular": 60349, - "ic_fluent_star_three_quarter_28_regular": 60350, - "ic_fluent_storage_20_regular": 60355, - "ic_fluent_sub_grid_20_regular": 60362, - "ic_fluent_text_density_16_regular": 60670, - "ic_fluent_text_density_20_regular": 60671, - "ic_fluent_video_person_off_20_regular": 60945, - "ic_fluent_voicemail_arrow_back_20_regular": 60965, - "ic_fluent_voicemail_arrow_forward_20_regular": 60966, - "ic_fluent_voicemail_arrow_subtract_20_regular": 60967, - "ic_fluent_web_asset_20_regular": 61013, - "ic_fluent_archive_32_regular": 57446, - "ic_fluent_archive_settings_24_regular": 57457, - "ic_fluent_arrow_enter_20_regular": 57535, - "ic_fluent_arrow_exit_20_regular": 57540, - "ic_fluent_arrow_join_20_regular": 57558, - "ic_fluent_arrow_trending_down_16_regular": 57625, - "ic_fluent_arrow_trending_down_20_regular": 57626, - "ic_fluent_arrow_trending_down_24_regular": 57627, - "ic_fluent_book_template_20_regular": 57741, - "ic_fluent_border_left_right_20_regular": 57766, - "ic_fluent_border_left_right_24_regular": 57767, - "ic_fluent_building_retail_more_20_regular": 57896, - "ic_fluent_calendar_add_16_regular": 57913, - "ic_fluent_calendar_add_28_regular": 57914, - "ic_fluent_cellular_3g_20_regular": 58032, - "ic_fluent_cellular_4g_20_regular": 58033, - "ic_fluent_cellular_5g_20_regular": 58034, - "ic_fluent_checkbox_1_20_regular": 58102, - "ic_fluent_checkbox_2_20_regular": 58104, - "ic_fluent_checkmark_note_20_regular": 58120, - "ic_fluent_code_text_20_regular": 58298, - "ic_fluent_code_text_edit_20_regular": 58299, - "ic_fluent_column_20_regular": 58313, - "ic_fluent_cube_add_20_regular": 58415, - "ic_fluent_cube_quick_16_regular": 58420, - "ic_fluent_cube_quick_20_regular": 58421, - "ic_fluent_cube_quick_24_regular": 58422, - "ic_fluent_cube_quick_28_regular": 58423, - "ic_fluent_database_arrow_down_20_regular": 58472, - "ic_fluent_database_arrow_right_20_regular": 58473, - "ic_fluent_database_arrow_up_20_regular": 58474, - "ic_fluent_database_lightning_20_regular": 58475, - "ic_fluent_database_plug_connected_20_regular": 58481, - "ic_fluent_database_warning_20_regular": 58485, - "ic_fluent_database_window_20_regular": 58486, - "ic_fluent_developer_board_lightning_20_regular": 58541, - "ic_fluent_developer_board_lightning_toolbox_20_regular": 58542, - "ic_fluent_edit_28_regular": 58802, - "ic_fluent_edit_48_regular": 58804, - "ic_fluent_edit_off_28_regular": 58809, - "ic_fluent_edit_off_32_regular": 58810, - "ic_fluent_edit_off_48_regular": 58811, - "ic_fluent_edit_prohibited_16_regular": 58812, - "ic_fluent_edit_prohibited_20_regular": 58813, - "ic_fluent_edit_prohibited_24_regular": 58814, - "ic_fluent_edit_prohibited_28_regular": 58815, - "ic_fluent_edit_prohibited_32_regular": 58816, - "ic_fluent_edit_prohibited_48_regular": 58817, - "ic_fluent_emoji_edit_16_regular": 58825, - "ic_fluent_emoji_edit_20_regular": 58826, - "ic_fluent_emoji_edit_24_regular": 58827, - "ic_fluent_emoji_edit_28_regular": 58828, - "ic_fluent_emoji_edit_48_regular": 58829, - "ic_fluent_filter_add_20_regular": 58891, - "ic_fluent_flash_add_20_regular": 58907, - "ic_fluent_flash_flow_16_regular": 58913, - "ic_fluent_flash_flow_20_regular": 58914, - "ic_fluent_flash_flow_24_regular": 58915, - "ic_fluent_flash_play_20_regular": 58917, - "ic_fluent_folder_arrow_left_16_regular": 58950, - "ic_fluent_folder_arrow_left_20_regular": 58951, - "ic_fluent_folder_arrow_left_24_regular": 58952, - "ic_fluent_folder_arrow_left_28_regular": 58953, - "ic_fluent_folder_arrow_left_32_regular": 58954, - "ic_fluent_gauge_add_20_regular": 59029, - "ic_fluent_hand_draw_16_regular": 59094, - "ic_fluent_hard_drive_20_regular": 59107, - "ic_fluent_hdr_20_regular": 59115, - "ic_fluent_hdr_off_20_regular": 59116, - "ic_fluent_home_database_20_regular": 59157, - "ic_fluent_image_add_20_regular": 59162, - "ic_fluent_image_arrow_back_20_regular": 59164, - "ic_fluent_image_arrow_counterclockwise_20_regular": 59166, - "ic_fluent_image_arrow_forward_20_regular": 59168, - "ic_fluent_image_globe_20_regular": 59170, - "ic_fluent_image_reflection_20_regular": 59183, - "ic_fluent_image_shadow_20_regular": 59185, - "ic_fluent_incognito_20_regular": 59189, - "ic_fluent_key_command_20_regular": 59203, - "ic_fluent_key_command_24_regular": 59204, - "ic_fluent_keyboard_123_20_regular": 59208, - "ic_fluent_keyboard_dock_20_regular": 59211, - "ic_fluent_keyboard_layout_float_20_regular": 59212, - "ic_fluent_keyboard_layout_one_handed_left_20_regular": 59213, - "ic_fluent_keyboard_layout_resize_20_regular": 59214, - "ic_fluent_keyboard_layout_split_20_regular": 59215, - "ic_fluent_keyboard_shift_uppercase_16_regular": 59218, - "ic_fluent_keyboard_shift_uppercase_20_regular": 59219, - "ic_fluent_keyboard_tab_20_regular": 59220, - "ic_fluent_launcher_settings_20_regular": 59224, - "ic_fluent_lightbulb_circle_20_regular": 59235, - "ic_fluent_line_style_20_regular": 59246, - "ic_fluent_link_toolbox_20_regular": 59256, - "ic_fluent_location_add_left_20_regular": 59264, - "ic_fluent_location_add_right_20_regular": 59265, - "ic_fluent_location_add_up_20_regular": 59266, - "ic_fluent_location_dismiss_20_regular": 59270, - "ic_fluent_mail_all_read_16_regular": 59299, - "ic_fluent_mail_all_read_24_regular": 59300, - "ic_fluent_mail_all_read_28_regular": 59301, - "ic_fluent_mail_list_20_regular": 59330, - "ic_fluent_mail_list_24_regular": 59331, - "ic_fluent_mail_list_28_regular": 59332, - "ic_fluent_mail_read_multiple_16_regular": 59346, - "ic_fluent_mail_read_multiple_24_regular": 59347, - "ic_fluent_mail_read_multiple_28_regular": 59348, - "ic_fluent_math_format_professional_20_regular": 59359, - "ic_fluent_math_formula_20_regular": 59362, - "ic_fluent_mention_arrow_down_20_regular": 59380, - "ic_fluent_mention_brackets_20_regular": 59381, - "ic_fluent_music_note_off_1_20_regular": 59479, - "ic_fluent_music_note_off_1_24_regular": 59480, - "ic_fluent_music_note_off_2_16_regular": 59481, - "ic_fluent_music_note_off_2_20_regular": 59482, - "ic_fluent_music_note_off_2_24_regular": 59483, - "ic_fluent_navigation_location_target_20_regular": 59488, - "ic_fluent_navigation_play_20_regular": 59489, - "ic_fluent_number_circle_1_16_regular": 59524, - "ic_fluent_number_circle_1_20_regular": 59525, - "ic_fluent_number_circle_1_24_regular": 59526, - "ic_fluent_panel_left_contract_28_regular": 59575, - "ic_fluent_panel_left_expand_24_regular": 59578, - "ic_fluent_panel_left_expand_28_regular": 59579, - "ic_fluent_pen_16_regular": 59606, - "ic_fluent_pen_20_regular": 59607, - "ic_fluent_pen_24_regular": 59608, - "ic_fluent_pen_28_regular": 59609, - "ic_fluent_pen_32_regular": 59610, - "ic_fluent_pen_48_regular": 59611, - "ic_fluent_pen_off_16_regular": 59612, - "ic_fluent_pen_off_20_regular": 59613, - "ic_fluent_pen_off_24_regular": 59614, - "ic_fluent_pen_off_28_regular": 59615, - "ic_fluent_pen_off_32_regular": 59616, - "ic_fluent_pen_off_48_regular": 59617, - "ic_fluent_pen_prohibited_16_regular": 59618, - "ic_fluent_pen_prohibited_20_regular": 59619, - "ic_fluent_pen_prohibited_24_regular": 59620, - "ic_fluent_pen_prohibited_28_regular": 59621, - "ic_fluent_pen_prohibited_32_regular": 59622, - "ic_fluent_pen_prohibited_48_regular": 59623, - "ic_fluent_person_key_20_regular": 59699, - "ic_fluent_phone_link_setup_20_regular": 59746, - "ic_fluent_pipeline_20_regular": 59785, - "ic_fluent_pipeline_add_20_regular": 59786, - "ic_fluent_pipeline_play_20_regular": 59788, - "ic_fluent_play_settings_20_regular": 59799, - "ic_fluent_plug_connected_add_20_regular": 59803, - "ic_fluent_plug_connected_checkmark_20_regular": 59804, - "ic_fluent_presence_available_20_regular": 59832, - "ic_fluent_presence_available_24_regular": 59833, - "ic_fluent_presence_blocked_20_regular": 59834, - "ic_fluent_presence_blocked_24_regular": 59835, - "ic_fluent_presence_dnd_20_regular": 59839, - "ic_fluent_presence_dnd_24_regular": 59840, - "ic_fluent_presence_offline_20_regular": 59841, - "ic_fluent_presence_offline_24_regular": 59842, - "ic_fluent_presence_oof_20_regular": 59843, - "ic_fluent_presence_oof_24_regular": 59844, - "ic_fluent_presence_unknown_20_regular": 59845, - "ic_fluent_presence_unknown_24_regular": 59846, - "ic_fluent_prohibited_note_20_regular": 59859, - "ic_fluent_puzzle_cube_piece_20_regular": 59879, - "ic_fluent_ram_20_regular": 59891, - "ic_fluent_receipt_search_20_regular": 59910, - "ic_fluent_rectangle_portrait_location_target_20_regular": 59918, - "ic_fluent_save_image_20_regular": 59978, - "ic_fluent_scan_16_regular": 59987, - "ic_fluent_server_multiple_20_regular": 60049, - "ic_fluent_server_play_20_regular": 60050, - "ic_fluent_shield_person_20_regular": 60116, - "ic_fluent_shield_person_add_20_regular": 60117, - "ic_fluent_split_hint_20_regular": 60246, - "ic_fluent_squares_nested_20_regular": 60313, - "ic_fluent_stream_input_20_regular": 60358, - "ic_fluent_stream_input_output_20_regular": 60359, - "ic_fluent_stream_output_20_regular": 60360, - "ic_fluent_table_bottom_row_16_regular": 60411, - "ic_fluent_table_bottom_row_20_regular": 60412, - "ic_fluent_table_bottom_row_24_regular": 60413, - "ic_fluent_table_bottom_row_28_regular": 60414, - "ic_fluent_table_bottom_row_32_regular": 60415, - "ic_fluent_table_bottom_row_48_regular": 60416, - "ic_fluent_table_checker_20_regular": 60425, - "ic_fluent_table_copy_20_regular": 60426, - "ic_fluent_table_image_20_regular": 60452, - "ic_fluent_table_multiple_20_regular": 60483, - "ic_fluent_table_search_20_regular": 60492, - "ic_fluent_table_split_20_regular": 60501, - "ic_fluent_task_list_square_database_20_regular": 60568, - "ic_fluent_text_bullet_list_checkmark_20_regular": 60630, - "ic_fluent_text_bullet_list_dismiss_20_regular": 60631, - "ic_fluent_text_bullet_list_square_clock_20_regular": 60643, - "ic_fluent_text_bullet_list_square_person_20_regular": 60644, - "ic_fluent_text_bullet_list_square_search_20_regular": 60645, - "ic_fluent_text_bullet_list_square_settings_20_regular": 60646, - "ic_fluent_text_bullet_list_square_shield_20_regular": 60647, - "ic_fluent_text_bullet_list_square_toolbox_20_regular": 60648, - "ic_fluent_text_density_24_regular": 60672, - "ic_fluent_text_density_28_regular": 60673, - "ic_fluent_text_expand_20_regular": 60684, - "ic_fluent_timer_off_20_regular": 60814, - "ic_fluent_triangle_16_regular": 60837, - "ic_fluent_triangle_20_regular": 60838, - "ic_fluent_triangle_down_12_regular": 60841, - "ic_fluent_triangle_down_16_regular": 60842, - "ic_fluent_triangle_down_20_regular": 60843, - "ic_fluent_triangle_down_32_regular": 60844, - "ic_fluent_triangle_down_48_regular": 60845, - "ic_fluent_triangle_left_12_regular": 60846, - "ic_fluent_triangle_left_16_regular": 60847, - "ic_fluent_triangle_left_20_regular": 60848, - "ic_fluent_triangle_left_32_regular": 60849, - "ic_fluent_triangle_left_48_regular": 60850, - "ic_fluent_triangle_right_12_regular": 60851, - "ic_fluent_triangle_right_16_regular": 60852, - "ic_fluent_triangle_right_20_regular": 60853, - "ic_fluent_triangle_right_32_regular": 60854, - "ic_fluent_triangle_right_48_regular": 60855, - "ic_fluent_video_chat_28_regular": 60923, - "ic_fluent_video_chat_32_regular": 60924, - "ic_fluent_video_chat_48_regular": 60925, - "ic_fluent_virtual_network_20_regular": 60962, - "ic_fluent_virtual_network_toolbox_20_regular": 60963, - "ic_fluent_wallet_16_regular": 60971, - "ic_fluent_wallet_credit_card_16_regular": 60977, - "ic_fluent_wallet_credit_card_20_regular": 60978, - "ic_fluent_wallet_credit_card_24_regular": 60979, - "ic_fluent_wallet_credit_card_32_regular": 60980, - "ic_fluent_window_bullet_list_20_regular": 61037, - "ic_fluent_window_bullet_list_add_20_regular": 61038, - "ic_fluent_window_database_20_regular": 61040, - "ic_fluent_window_location_target_20_regular": 61047, - "ic_fluent_window_multiple_swap_20_regular": 61049, - "ic_fluent_window_play_20_regular": 61052, - "ic_fluent_window_settings_20_regular": 61053, - "ic_fluent_window_text_20_regular": 61054, - "ic_fluent_archive_arrow_back_16_regular": 57447, - "ic_fluent_archive_arrow_back_20_regular": 57448, - "ic_fluent_archive_arrow_back_24_regular": 57449, - "ic_fluent_archive_arrow_back_28_regular": 57450, - "ic_fluent_archive_arrow_back_32_regular": 57451, - "ic_fluent_archive_arrow_back_48_regular": 57452, - "ic_fluent_circle_multiple_subtract_checkmark_20_regular": 58171, - "ic_fluent_database_multiple_20_regular": 58478, - "ic_fluent_image_multiple_off_16_regular": 59178, - "ic_fluent_keyboard_16_regular": 59210, - "ic_fluent_lock_multiple_20_regular": 59282, - "ic_fluent_lottery_20_regular": 59288, - "ic_fluent_mail_warning_20_regular": 59352, - "ic_fluent_mail_warning_24_regular": 59353, - "ic_fluent_match_app_layout_20_regular": 59356, - "ic_fluent_math_format_linear_20_regular": 59357, - "ic_fluent_megaphone_off_16_regular": 59377, - "ic_fluent_megaphone_off_20_regular": 59378, - "ic_fluent_megaphone_off_28_regular": 59379, - "ic_fluent_merge_20_regular": 59383, - "ic_fluent_mic_off_32_regular": 59391, - "ic_fluent_mobile_optimized_20_regular": 59415, - "ic_fluent_network_check_20_regular": 59492, - "ic_fluent_note_add_28_regular": 59500, - "ic_fluent_note_add_48_regular": 59501, - "ic_fluent_notebook_sync_20_regular": 59517, - "ic_fluent_organization_horizontal_20_regular": 59550, - "ic_fluent_paint_brush_arrow_down_20_regular": 59559, - "ic_fluent_paint_brush_arrow_up_20_regular": 59561, - "ic_fluent_pentagon_20_regular": 59624, - "ic_fluent_person_accounts_20_regular": 59680, - "ic_fluent_person_subtract_20_regular": 59719, - "ic_fluent_pin_off_28_regular": 59782, - "ic_fluent_pin_off_32_regular": 59783, - "ic_fluent_point_scan_20_regular": 59805, - "ic_fluent_port_usb_a_20_regular": 59812, - "ic_fluent_question_circle_12_regular": 59885, - "ic_fluent_row_triple_20_regular": 59964, - "ic_fluent_scratchpad_20_regular": 60022, - "ic_fluent_shifts_availability_20_regular": 60128, - "ic_fluent_skip_forward_tab_20_regular": 60170, - "ic_fluent_sleep_20_regular": 60172, - "ic_fluent_slide_multiple_20_regular": 60188, - "ic_fluent_slide_multiple_arrow_right_20_regular": 60190, - "ic_fluent_slide_size_20_regular": 60197, - "ic_fluent_sound_wave_circle_20_regular": 60207, - "ic_fluent_sport_american_football_20_regular": 60264, - "ic_fluent_sport_baseball_20_regular": 60266, - "ic_fluent_sport_hockey_20_regular": 60270, - "ic_fluent_square_hint_arrow_back_20_regular": 60302, - "ic_fluent_square_shadow_20_regular": 60312, - "ic_fluent_tab_arrow_left_20_regular": 60391, - "ic_fluent_tab_prohibited_20_regular": 60400, - "ic_fluent_text_collapse_20_regular": 60660, - "ic_fluent_text_more_20_regular": 60727, - "ic_fluent_time_and_weather_20_regular": 60801, - "ic_fluent_transmission_20_regular": 60828, - "ic_fluent_video_play_pause_20_regular": 60954, - "ic_fluent_arrow_next_12_regular": 57565, - "ic_fluent_arrow_previous_12_regular": 57571, - "ic_fluent_data_usage_settings_20_regular": 58465, - "ic_fluent_document_multiple_sync_20_regular": 58662, - "ic_fluent_filter_12_regular": 58889, - "ic_fluent_history_28_regular": 59142, - "ic_fluent_history_32_regular": 59143, - "ic_fluent_history_48_regular": 59144, - "ic_fluent_history_dismiss_20_regular": 59145, - "ic_fluent_history_dismiss_24_regular": 59146, - "ic_fluent_history_dismiss_28_regular": 59147, - "ic_fluent_history_dismiss_32_regular": 59148, - "ic_fluent_history_dismiss_48_regular": 59149, - "ic_fluent_home_more_20_regular": 59158, - "ic_fluent_people_search_20_regular": 59655, - "ic_fluent_people_team_delete_16_regular": 59667, - "ic_fluent_people_team_delete_20_regular": 59668, - "ic_fluent_people_team_delete_28_regular": 59670, - "ic_fluent_people_team_delete_32_regular": 59671, - "ic_fluent_person_5_20_regular": 59676, - "ic_fluent_person_6_20_regular": 59678, - "ic_fluent_person_sync_24_regular": 59722, - "ic_fluent_phone_eraser_20_regular": 59741, - "ic_fluent_phone_shake_20_regular": 59752, - "ic_fluent_phone_speaker_20_regular": 59761, - "ic_fluent_radar_20_regular": 59888, - "ic_fluent_radar_checkmark_20_regular": 59889, - "ic_fluent_radar_rectangle_multiple_20_regular": 59890, - "ic_fluent_real_estate_20_regular": 59900, - "ic_fluent_resize_table_20_regular": 59931, - "ic_fluent_shifts_30_minutes_20_regular": 60125, - "ic_fluent_sound_source_20_regular": 60206, - "ic_fluent_subtitles_16_regular": 60363, - "ic_fluent_subtitles_20_regular": 60364, - "ic_fluent_subtitles_24_regular": 60365, - "ic_fluent_task_list_square_person_20_regular": 60571, - "ic_fluent_task_list_square_settings_20_regular": 60574, - "ic_fluent_timer_10_20_regular": 60804, - "ic_fluent_timer_2_20_regular": 60807, - "ic_fluent_timer_3_20_regular": 60810, - "ic_fluent_tree_deciduous_20_regular": 60834, - "ic_fluent_tree_evergreen_20_regular": 60835, - "ic_fluent_uninstall_app_20_regular": 60878, - "ic_fluent_alert_badge_16_regular": 57367, - "ic_fluent_alert_badge_20_regular": 57368, - "ic_fluent_alert_badge_24_regular": 57369, - "ic_fluent_archive_settings_28_regular": 57458, - "ic_fluent_arrow_between_up_20_regular": 57473, - "ic_fluent_arrow_fit_in_16_regular": 57550, - "ic_fluent_arrow_fit_in_20_regular": 57551, - "ic_fluent_arrow_forward_28_regular": 57552, - "ic_fluent_arrow_reply_28_regular": 57574, - "ic_fluent_arrow_reply_all_28_regular": 57575, - "ic_fluent_arrow_undo_28_regular": 57639, - "ic_fluent_branch_request_20_regular": 57828, - "ic_fluent_broom_28_regular": 57860, - "ic_fluent_bug_arrow_counterclockwise_20_regular": 57864, - "ic_fluent_bug_prohibited_20_regular": 57865, - "ic_fluent_calendar_multiple_28_regular": 57942, - "ic_fluent_call_add_16_regular": 57973, - "ic_fluent_call_dismiss_16_regular": 57977, - "ic_fluent_call_transfer_16_regular": 58002, - "ic_fluent_call_warning_16_regular": 58004, - "ic_fluent_call_warning_20_regular": 58005, - "ic_fluent_checkmark_square_20_regular": 58121, - "ic_fluent_circle_eraser_20_regular": 58166, - "ic_fluent_column_double_compare_20_regular": 58315, - "ic_fluent_comma_20_regular": 58321, - "ic_fluent_cube_arrow_curve_down_20_regular": 58416, - "ic_fluent_database_switch_20_regular": 58484, - "ic_fluent_document_data_20_regular": 58615, - "ic_fluent_folder_mail_24_regular": 58968, - "ic_fluent_folder_mail_28_regular": 58969, - "ic_fluent_gather_20_regular": 59028, - "ic_fluent_image_32_regular": 59161, - "ic_fluent_mail_attach_24_regular": 59310, - "ic_fluent_mail_attach_28_regular": 59311, - "ic_fluent_mail_prohibited_28_regular": 59344, - "ic_fluent_markdown_20_regular": 59355, - "ic_fluent_merge_16_regular": 59382, - "ic_fluent_notebook_arrow_curve_down_20_regular": 59508, - "ic_fluent_notebook_eye_20_regular": 59510, - "ic_fluent_person_sync_16_regular": 59720, - "ic_fluent_person_sync_20_regular": 59721, - "ic_fluent_person_sync_28_regular": 59723, - "ic_fluent_person_sync_32_regular": 59724, - "ic_fluent_person_sync_48_regular": 59725, - "ic_fluent_phone_key_20_regular": 59742, - "ic_fluent_phone_key_24_regular": 59743, - "ic_fluent_pipeline_arrow_curve_down_20_regular": 59787, - "ic_fluent_print_32_regular": 59853, - "ic_fluent_save_28_regular": 59972, - "ic_fluent_select_all_off_20_regular": 60037, - "ic_fluent_select_all_on_20_regular": 60038, - "ic_fluent_square_eraser_20_regular": 60292, - "ic_fluent_tab_desktop_multiple_bottom_20_regular": 60398, - "ic_fluent_tag_28_regular": 60529, - "ic_fluent_text_bullet_list_rotate_270_24_regular": 60636, - "ic_fluent_text_bullet_list_rotate_90_24_regular": 60638, - "ic_fluent_text_indent_decrease_rotate_270_24_regular": 60710, - "ic_fluent_text_indent_decrease_rotate_90_24_regular": 60712, - "ic_fluent_text_indent_increase_rotate_270_24_regular": 60720, - "ic_fluent_text_indent_increase_rotate_90_24_regular": 60722, - "ic_fluent_text_number_list_rotate_270_24_regular": 60732, - "ic_fluent_text_number_list_rotate_90_24_regular": 60734, - "ic_fluent_text_whole_word_20_regular": 60776, - "ic_fluent_time_picker_20_regular": 60802, - "ic_fluent_video_clip_off_16_regular": 60931, - "ic_fluent_video_clip_off_20_regular": 60932, - "ic_fluent_video_clip_off_24_regular": 60933, - "ic_fluent_wallpaper_20_regular": 60981, - "ic_fluent_warning_28_regular": 60988, - "ic_fluent_wifi_lock_20_regular": 61015, - "ic_fluent_alert_12_regular": 57363, - "ic_fluent_alert_48_regular": 57366, - "ic_fluent_alert_snooze_12_regular": 57371, - "ic_fluent_alert_snooze_16_regular": 57372, - "ic_fluent_arrow_autofit_content_20_regular": 57459, - "ic_fluent_arrow_split_16_regular": 57587, - "ic_fluent_arrow_split_24_regular": 57589, - "ic_fluent_catch_up_16_regular": 58029, - "ic_fluent_catch_up_20_regular": 58030, - "ic_fluent_catch_up_24_regular": 58031, - "ic_fluent_chess_20_regular": 58124, - "ic_fluent_circle_image_20_regular": 58168, - "ic_fluent_image_multiple_off_20_regular": 59179, - "ic_fluent_mic_pulse_16_regular": 59398, - "ic_fluent_mic_pulse_20_regular": 59399, - "ic_fluent_mic_pulse_24_regular": 59400, - "ic_fluent_mic_pulse_28_regular": 59401, - "ic_fluent_mic_pulse_32_regular": 59402, - "ic_fluent_mic_pulse_48_regular": 59403, - "ic_fluent_mic_pulse_off_16_regular": 59404, - "ic_fluent_mic_pulse_off_20_regular": 59405, - "ic_fluent_mic_pulse_off_24_regular": 59406, - "ic_fluent_mic_pulse_off_28_regular": 59407, - "ic_fluent_mic_pulse_off_32_regular": 59408, - "ic_fluent_mic_pulse_off_48_regular": 59409, - "ic_fluent_pause_28_regular": 59597, - "ic_fluent_pause_32_regular": 59598, - "ic_fluent_playing_cards_20_regular": 59800, - "ic_fluent_premium_person_16_regular": 59826, - "ic_fluent_quiz_new_20_regular": 59887, - "ic_fluent_save_copy_20_regular": 59975, - "ic_fluent_send_copy_20_regular": 60048, - "ic_fluent_slide_hide_20_regular": 60185, - "ic_fluent_slide_microphone_20_regular": 60186, - "ic_fluent_slide_search_20_regular": 60192, - "ic_fluent_sport_basketball_20_regular": 60268, - "ic_fluent_swipe_down_20_regular": 60381, - "ic_fluent_swipe_right_20_regular": 60382, - "ic_fluent_swipe_up_20_regular": 60383, - "ic_fluent_tabs_20_regular": 60527, - "ic_fluent_text_12_regular": 60589, - "ic_fluent_text_16_regular": 60590, - "ic_fluent_text_32_regular": 60591, - "ic_fluent_text_add_20_regular": 60592, - "ic_fluent_text_bullet_list_rotate_270_20_regular": 60635, - "ic_fluent_text_bullet_list_rotate_90_20_regular": 60637, - "ic_fluent_text_indent_decrease_rotate_270_20_regular": 60709, - "ic_fluent_text_indent_decrease_rotate_90_20_regular": 60711, - "ic_fluent_text_indent_increase_rotate_270_20_regular": 60719, - "ic_fluent_text_indent_increase_rotate_90_20_regular": 60721, - "ic_fluent_text_number_list_rotate_270_20_regular": 60731, - "ic_fluent_text_number_list_rotate_90_20_regular": 60733, - "ic_fluent_text_wrap_20_regular": 60777, - "ic_fluent_toggle_multiple_16_regular": 60820, - "ic_fluent_toggle_multiple_20_regular": 60821, - "ic_fluent_toggle_multiple_24_regular": 60822, - "ic_fluent_window_edit_20_regular": 61043, - "ic_fluent_zoom_fit_16_regular": 61067, - "ic_fluent_zoom_fit_20_regular": 61068, - "ic_fluent_zoom_fit_24_regular": 61069, - "ic_fluent_app_folder_16_regular": 57432, - "ic_fluent_app_folder_28_regular": 57433, - "ic_fluent_app_folder_32_regular": 57434, - "ic_fluent_app_folder_48_regular": 57435, - "ic_fluent_arrow_outline_up_right_20_regular": 57566, - "ic_fluent_arrow_outline_up_right_24_regular": 57567, - "ic_fluent_clipboard_32_regular": 58179, - "ic_fluent_clipboard_text_32_regular": 58213, - "ic_fluent_clipboard_text_edit_20_regular": 58214, - "ic_fluent_clipboard_text_edit_24_regular": 58215, - "ic_fluent_clipboard_text_edit_32_regular": 58216, - "ic_fluent_document_data_24_regular": 58616, - "ic_fluent_joystick_20_regular": 59199, - "ic_fluent_people_12_regular": 59627, - "ic_fluent_people_48_regular": 59629, - "ic_fluent_person_heart_24_regular": 59697, - "ic_fluent_port_micro_usb_20_regular": 59810, - "ic_fluent_port_usb_c_20_regular": 59814, - "ic_fluent_rss_20_regular": 59965, - "ic_fluent_scales_20_regular": 59984, - "ic_fluent_shifts_team_20_regular": 60137, - "ic_fluent_speaker_bluetooth_20_regular": 60231, - "ic_fluent_speaker_usb_20_regular": 60243, - "ic_fluent_text_align_center_rotate_270_16_regular": 60595, - "ic_fluent_text_align_center_rotate_270_20_regular": 60596, - "ic_fluent_text_align_center_rotate_90_16_regular": 60598, - "ic_fluent_text_align_center_rotate_90_20_regular": 60599, - "ic_fluent_text_align_center_rotate_90_24_regular": 60600, - "ic_fluent_text_align_justify_rotate_270_20_regular": 60607, - "ic_fluent_text_align_justify_rotate_270_24_regular": 60608, - "ic_fluent_text_align_justify_rotate_90_20_regular": 60609, - "ic_fluent_text_align_left_rotate_270_16_regular": 60612, - "ic_fluent_text_align_left_rotate_270_20_regular": 60613, - "ic_fluent_text_align_left_rotate_90_16_regular": 60615, - "ic_fluent_text_align_left_rotate_90_20_regular": 60616, - "ic_fluent_text_align_left_rotate_90_24_regular": 60617, - "ic_fluent_text_align_right_rotate_270_16_regular": 60619, - "ic_fluent_text_align_right_rotate_270_20_regular": 60620, - "ic_fluent_text_align_right_rotate_90_16_regular": 60622, - "ic_fluent_text_align_right_rotate_90_20_regular": 60623, - "ic_fluent_text_align_right_rotate_90_24_regular": 60624, - "ic_fluent_clipboard_text_ltr_32_regular": 58219, - "ic_fluent_braces_16_regular": 61072, - "ic_fluent_braces_28_regular": 61073, - "ic_fluent_braces_32_regular": 61074, - "ic_fluent_braces_48_regular": 61075, - "ic_fluent_branch_fork_32_regular": 61076, - "ic_fluent_calendar_data_bar_16_regular": 61077, - "ic_fluent_calendar_data_bar_20_regular": 61078, - "ic_fluent_calendar_data_bar_24_regular": 61079, - "ic_fluent_calendar_data_bar_28_regular": 61080, - "ic_fluent_clipboard_3_day_16_regular": 61081, - "ic_fluent_clipboard_3_day_20_regular": 61082, - "ic_fluent_clipboard_3_day_24_regular": 61083, - "ic_fluent_clipboard_day_16_regular": 61084, - "ic_fluent_clipboard_day_20_regular": 61085, - "ic_fluent_clipboard_day_24_regular": 61086, - "ic_fluent_clipboard_month_16_regular": 61087, - "ic_fluent_clipboard_month_20_regular": 61088, - "ic_fluent_clipboard_month_24_regular": 61089, - "ic_fluent_content_view_gallery_24_regular": 61090, - "ic_fluent_content_view_gallery_28_regular": 61091, - "ic_fluent_data_bar_vertical_16_regular": 61092, - "ic_fluent_delete_12_regular": 61093, - "ic_fluent_delete_32_regular": 61094, - "ic_fluent_form_20_regular": 61095, - "ic_fluent_form_24_regular": 61096, - "ic_fluent_form_28_regular": 61097, - "ic_fluent_form_48_regular": 61098, - "ic_fluent_mail_read_multiple_20_regular": 61099, - "ic_fluent_mail_read_multiple_32_regular": 61100, - "ic_fluent_megaphone_loud_16_regular": 61101, - "ic_fluent_panel_right_add_20_regular": 61102, - "ic_fluent_person_note_16_regular": 61103, - "ic_fluent_shield_globe_16_regular": 61104, - "ic_fluent_shield_globe_20_regular": 61105, - "ic_fluent_shield_globe_24_regular": 61106, - "ic_fluent_square_multiple_28_regular": 61107, - "ic_fluent_square_multiple_32_regular": 61108, - "ic_fluent_square_multiple_48_regular": 61109, - "ic_fluent_table_calculator_20_regular": 61110, - "ic_fluent_xbox_controller_16_regular": 61111, - "ic_fluent_xbox_controller_20_regular": 61112, - "ic_fluent_xbox_controller_24_regular": 61113, - "ic_fluent_xbox_controller_28_regular": 61114, - "ic_fluent_xbox_controller_32_regular": 61115, - "ic_fluent_xbox_controller_48_regular": 61116, - "ic_fluent_apps_32_regular": 61117, - "ic_fluent_arrow_paragraph_16_regular": 61118, - "ic_fluent_arrow_paragraph_24_regular": 61119, - "ic_fluent_beaker_32_regular": 61120, - "ic_fluent_building_retail_more_32_regular": 61122, - "ic_fluent_calendar_month_32_regular": 61123, - "ic_fluent_content_view_24_regular": 61124, - "ic_fluent_content_view_28_regular": 61125, - "ic_fluent_credit_card_clock_20_regular": 61126, - "ic_fluent_credit_card_clock_24_regular": 61127, - "ic_fluent_credit_card_clock_28_regular": 61128, - "ic_fluent_credit_card_clock_32_regular": 61129, - "ic_fluent_cube_32_regular": 61130, - "ic_fluent_data_bar_vertical_32_regular": 61131, - "ic_fluent_database_32_regular": 61132, - "ic_fluent_document_data_32_regular": 61133, - "ic_fluent_folder_people_20_regular": 61134, - "ic_fluent_folder_people_24_regular": 61135, - "ic_fluent_gauge_32_regular": 61136, - "ic_fluent_hand_left_chat_16_regular": 61137, - "ic_fluent_hand_left_chat_20_regular": 61138, - "ic_fluent_hand_left_chat_24_regular": 61139, - "ic_fluent_hand_left_chat_28_regular": 61140, - "ic_fluent_home_database_24_regular": 61141, - "ic_fluent_home_database_32_regular": 61142, - "ic_fluent_home_more_24_regular": 61143, - "ic_fluent_home_more_32_regular": 61144, - "ic_fluent_notebook_32_regular": 61145, - "ic_fluent_payment_32_regular": 61146, - "ic_fluent_payment_48_regular": 61147, - "ic_fluent_person_running_20_regular": 61148, - "ic_fluent_pipeline_24_regular": 61149, - "ic_fluent_pipeline_32_regular": 61150, - "ic_fluent_stack_32_regular": 61151, - "ic_fluent_text_align_justify_low_rotate_270_20_regular": 61152, - "ic_fluent_text_align_justify_low_rotate_270_24_regular": 61153, - "ic_fluent_text_align_justify_low_rotate_90_20_regular": 61154, - "ic_fluent_text_align_justify_low_rotate_90_24_regular": 61155, - "ic_fluent_animal_rabbit_32_regular": 61121, - "ic_fluent_animal_rabbit_off_20_regular": 61156, - "ic_fluent_animal_rabbit_off_32_regular": 61157, - "ic_fluent_beaker_off_20_regular": 61158, - "ic_fluent_beaker_off_32_regular": 61159, - "ic_fluent_bowl_salad_20_regular": 61160, - "ic_fluent_bowl_salad_24_regular": 61161, - "ic_fluent_building_retail_more_24_regular": 61162, - "ic_fluent_connected_16_regular": 61163, - "ic_fluent_connected_20_regular": 61164, - "ic_fluent_document_text_16_regular": 61165, - "ic_fluent_drink_bottle_20_regular": 61166, - "ic_fluent_drink_bottle_32_regular": 61167, - "ic_fluent_drink_bottle_off_20_regular": 61168, - "ic_fluent_drink_bottle_off_32_regular": 61169, - "ic_fluent_earth_32_regular": 61170, - "ic_fluent_earth_leaf_16_regular": 61171, - "ic_fluent_earth_leaf_20_regular": 61172, - "ic_fluent_earth_leaf_24_regular": 61173, - "ic_fluent_earth_leaf_32_regular": 61174, - "ic_fluent_feed_16_regular": 61175, - "ic_fluent_feed_20_regular": 61176, - "ic_fluent_feed_24_regular": 61177, - "ic_fluent_feed_28_regular": 61178, - "ic_fluent_filmstrip_20_regular": 61179, - "ic_fluent_filmstrip_24_regular": 61180, - "ic_fluent_food_carrot_20_regular": 61181, - "ic_fluent_food_carrot_24_regular": 61182, - "ic_fluent_food_fish_20_regular": 61183, - "ic_fluent_food_fish_24_regular": 61184, - "ic_fluent_hand_open_heart_20_regular": 61185, - "ic_fluent_hand_open_heart_32_regular": 61186, - "ic_fluent_hand_wave_16_regular": 61187, - "ic_fluent_hand_wave_20_regular": 61188, - "ic_fluent_hand_wave_24_regular": 61189, - "ic_fluent_handshake_32_regular": 61190, - "ic_fluent_leaf_one_32_regular": 61191, - "ic_fluent_leaf_two_32_regular": 61192, - "ic_fluent_notebook_16_regular": 61193, - "ic_fluent_person_heart_20_regular": 61194, - "ic_fluent_person_star_16_regular": 61195, - "ic_fluent_person_star_20_regular": 61196, - "ic_fluent_person_star_24_regular": 61197, - "ic_fluent_person_star_28_regular": 61198, - "ic_fluent_person_star_32_regular": 61199, - "ic_fluent_person_star_48_regular": 61200, - "ic_fluent_pipeline_add_32_regular": 61201, - "ic_fluent_recycle_20_regular": 61202, - "ic_fluent_recycle_32_regular": 61203, - "ic_fluent_reward_12_regular": 61204, - "ic_fluent_slide_link_20_regular": 61205, - "ic_fluent_slide_link_24_regular": 61206, - "ic_fluent_food_chicken_leg_16_regular": 61207, - "ic_fluent_food_chicken_leg_20_regular": 61208, - "ic_fluent_food_chicken_leg_24_regular": 61209, - "ic_fluent_food_chicken_leg_32_regular": 61210, - "ic_fluent_form_multiple_20_regular": 61211, - "ic_fluent_form_multiple_24_regular": 61212, - "ic_fluent_form_multiple_28_regular": 61213, - "ic_fluent_form_multiple_48_regular": 61214, - "ic_fluent_laser_tool_20_regular": 61215, - "ic_fluent_shield_32_regular": 61216, - "ic_fluent_shield_question_16_regular": 61217, - "ic_fluent_shield_question_20_regular": 61218, - "ic_fluent_shield_question_24_regular": 61219, - "ic_fluent_shield_question_32_regular": 61220, - "ic_fluent_heart_broken_24_regular": 61221, - "ic_fluent_layer_diagonal_20_regular": 61222, - "ic_fluent_layer_diagonal_person_20_regular": 61223, - "ic_fluent_text_wrap_16_regular": 61224, - "ic_fluent_text_wrap_off_16_regular": 61225, - "ic_fluent_text_wrap_off_20_regular": 61226, - "ic_fluent_text_wrap_off_24_regular": 61227, - "ic_fluent_trophy_lock_16_regular": 61228, - "ic_fluent_trophy_lock_20_regular": 61229, - "ic_fluent_trophy_lock_24_regular": 61230, - "ic_fluent_trophy_lock_28_regular": 61231, - "ic_fluent_trophy_lock_32_regular": 61232, - "ic_fluent_trophy_lock_48_regular": 61233, - "ic_fluent_arrow_repeat_1_16_regular": 61234, - "ic_fluent_arrow_repeat_1_20_regular": 61235, - "ic_fluent_arrow_repeat_1_24_regular": 61236, - "ic_fluent_arrow_shuffle_16_regular": 61237, - "ic_fluent_arrow_shuffle_20_regular": 61238, - "ic_fluent_arrow_shuffle_24_regular": 61239, - "ic_fluent_arrow_shuffle_28_regular": 61240, - "ic_fluent_arrow_shuffle_32_regular": 61241, - "ic_fluent_arrow_shuffle_48_regular": 61242, - "ic_fluent_arrow_shuffle_off_16_regular": 61243, - "ic_fluent_arrow_shuffle_off_20_regular": 61244, - "ic_fluent_arrow_shuffle_off_24_regular": 61245, - "ic_fluent_arrow_shuffle_off_28_regular": 61246, - "ic_fluent_arrow_shuffle_off_32_regular": 61247, - "ic_fluent_arrow_shuffle_off_48_regular": 61248, - "ic_fluent_building_desktop_16_regular": 61249, - "ic_fluent_building_desktop_20_regular": 61250, - "ic_fluent_building_desktop_24_regular": 61251, - "ic_fluent_calendar_empty_48_regular": 61252, - "ic_fluent_calendar_lock_16_regular": 61253, - "ic_fluent_calendar_lock_20_regular": 61254, - "ic_fluent_calendar_lock_24_regular": 61255, - "ic_fluent_calendar_lock_28_regular": 61256, - "ic_fluent_calendar_lock_32_regular": 61257, - "ic_fluent_calendar_lock_48_regular": 61258, - "ic_fluent_calendar_settings_24_regular": 61259, - "ic_fluent_calendar_settings_28_regular": 61260, - "ic_fluent_calendar_settings_32_regular": 61261, - "ic_fluent_calendar_settings_48_regular": 61262, - "ic_fluent_call_12_regular": 61263, - "ic_fluent_call_missed_12_regular": 61264, - "ic_fluent_chat_add_16_regular": 61265, - "ic_fluent_chat_add_20_regular": 61266, - "ic_fluent_chat_add_24_regular": 61267, - "ic_fluent_chat_add_28_regular": 61268, - "ic_fluent_chat_add_32_regular": 61269, - "ic_fluent_chat_add_48_regular": 61270, - "ic_fluent_chat_cursor_16_regular": 61271, - "ic_fluent_chat_cursor_20_regular": 61272, - "ic_fluent_chat_cursor_24_regular": 61273, - "ic_fluent_chat_empty_12_regular": 61274, - "ic_fluent_chat_empty_16_regular": 61275, - "ic_fluent_chat_empty_20_regular": 61276, - "ic_fluent_chat_empty_24_regular": 61277, - "ic_fluent_chat_empty_28_regular": 61278, - "ic_fluent_chat_empty_32_regular": 61279, - "ic_fluent_chat_empty_48_regular": 61280, - "ic_fluent_circle_image_16_regular": 61281, - "ic_fluent_circle_image_24_regular": 61282, - "ic_fluent_circle_image_28_regular": 61283, - "ic_fluent_code_text_16_regular": 61284, - "ic_fluent_desktop_checkmark_16_regular": 61285, - "ic_fluent_desktop_checkmark_20_regular": 61286, - "ic_fluent_desktop_checkmark_24_regular": 61287, - "ic_fluent_fire_16_regular": 61288, - "ic_fluent_fire_20_regular": 61289, - "ic_fluent_fire_24_regular": 61290, - "ic_fluent_hourglass_20_regular": 61291, - "ic_fluent_hourglass_24_regular": 61292, - "ic_fluent_hourglass_half_20_regular": 61293, - "ic_fluent_hourglass_half_24_regular": 61294, - "ic_fluent_hourglass_one_quarter_20_regular": 61295, - "ic_fluent_hourglass_one_quarter_24_regular": 61296, - "ic_fluent_hourglass_three_quarter_20_regular": 61297, - "ic_fluent_hourglass_three_quarter_24_regular": 61298, - "ic_fluent_ink_stroke_arrow_down_20_regular": 61299, - "ic_fluent_ink_stroke_arrow_down_24_regular": 61300, - "ic_fluent_ink_stroke_arrow_up_down_20_regular": 61301, - "ic_fluent_ink_stroke_arrow_up_down_24_regular": 61302, - "ic_fluent_megaphone_circle_20_regular": 61303, - "ic_fluent_megaphone_circle_24_regular": 61304, - "ic_fluent_number_circle_2_16_regular": 61305, - "ic_fluent_number_circle_2_20_regular": 61306, - "ic_fluent_number_circle_2_24_regular": 61307, - "ic_fluent_number_circle_2_28_regular": 61308, - "ic_fluent_number_circle_2_32_regular": 61309, - "ic_fluent_number_circle_2_48_regular": 61310, - "ic_fluent_number_circle_3_16_regular": 61311, - "ic_fluent_number_circle_3_20_regular": 61312, - "ic_fluent_number_circle_3_24_regular": 61313, - "ic_fluent_number_circle_3_28_regular": 61314, - "ic_fluent_number_circle_3_32_regular": 61315, - "ic_fluent_number_circle_3_48_regular": 61316, - "ic_fluent_number_circle_4_16_regular": 61317, - "ic_fluent_number_circle_4_20_regular": 61318, - "ic_fluent_number_circle_4_24_regular": 61319, - "ic_fluent_number_circle_4_28_regular": 61320, - "ic_fluent_number_circle_4_32_regular": 61321, - "ic_fluent_number_circle_4_48_regular": 61322, - "ic_fluent_number_circle_5_16_regular": 61323, - "ic_fluent_number_circle_5_20_regular": 61324, - "ic_fluent_number_circle_5_24_regular": 61325, - "ic_fluent_number_circle_5_28_regular": 61326, - "ic_fluent_number_circle_5_32_regular": 61327, - "ic_fluent_number_circle_5_48_regular": 61328, - "ic_fluent_person_alert_16_regular": 61329, - "ic_fluent_person_alert_20_regular": 61330, - "ic_fluent_person_alert_24_regular": 61331, - "ic_fluent_person_arrow_back_16_regular": 61332, - "ic_fluent_person_arrow_back_20_regular": 61333, - "ic_fluent_person_arrow_back_24_regular": 61334, - "ic_fluent_person_arrow_back_28_regular": 61335, - "ic_fluent_person_arrow_back_32_regular": 61336, - "ic_fluent_person_arrow_back_48_regular": 61337, - "ic_fluent_person_link_16_regular": 61338, - "ic_fluent_person_link_20_regular": 61339, - "ic_fluent_person_link_24_regular": 61340, - "ic_fluent_person_link_28_regular": 61341, - "ic_fluent_person_link_32_regular": 61342, - "ic_fluent_person_link_48_regular": 61343, - "ic_fluent_phone_28_regular": 61344, - "ic_fluent_phone_32_regular": 61345, - "ic_fluent_phone_48_regular": 61346, - "ic_fluent_phone_chat_16_regular": 61347, - "ic_fluent_phone_chat_20_regular": 61348, - "ic_fluent_phone_chat_24_regular": 61349, - "ic_fluent_phone_chat_28_regular": 61350, - "ic_fluent_premium_12_regular": 61351, - "ic_fluent_shield_add_16_regular": 61352, - "ic_fluent_shield_add_20_regular": 61353, - "ic_fluent_shield_add_24_regular": 61354, - "ic_fluent_sparkle_circle_20_regular": 61355, - "ic_fluent_sparkle_circle_24_regular": 61356, - "ic_fluent_task_list_square_ltr_16_regular": 61357, - "ic_fluent_task_list_square_rtl_16_regular": 61358, - "ic_fluent_text_bullet_list_ltr_rotate_90_20_regular": 61359, - "ic_fluent_text_bullet_list_rtl_rotate_90_20_regular": 61360, - "ic_fluent_text_direction_horizontal_ltr_20_regular": 61361, - "ic_fluent_text_direction_horizontal_ltr_24_regular": 61362, - "ic_fluent_text_direction_horizontal_rtl_20_regular": 61363, - "ic_fluent_text_direction_horizontal_rtl_24_regular": 61364, - "ic_fluent_text_direction_rotate_90_ltr_20_regular": 61365, - "ic_fluent_text_direction_rotate_90_ltr_24_regular": 61366, - "ic_fluent_text_direction_rotate_90_rtl_20_regular": 61367, - "ic_fluent_text_direction_rotate_90_rtl_24_regular": 61368, - "ic_fluent_app_generic_32_regular": 61369, - "ic_fluent_code_block_16_regular": 61370, - "ic_fluent_code_block_20_regular": 61371, - "ic_fluent_code_block_24_regular": 61372, - "ic_fluent_code_block_28_regular": 61373, - "ic_fluent_code_block_32_regular": 61374, - "ic_fluent_code_block_48_regular": 61375, - "ic_fluent_data_bar_vertical_star_16_regular": 61376, - "ic_fluent_data_bar_vertical_star_20_regular": 61377, - "ic_fluent_data_bar_vertical_star_24_regular": 61378, - "ic_fluent_data_bar_vertical_star_32_regular": 61379, - "ic_fluent_database_arrow_right_32_regular": 61380, - "ic_fluent_document_sync_32_regular": 61381, - "ic_fluent_equal_off_12_regular": 61382, - "ic_fluent_equal_off_16_regular": 61383, - "ic_fluent_eye_28_regular": 61384, - "ic_fluent_eye_32_regular": 61385, - "ic_fluent_eye_48_regular": 61386, - "ic_fluent_eye_lines_20_regular": 61387, - "ic_fluent_eye_lines_24_regular": 61388, - "ic_fluent_eye_lines_28_regular": 61389, - "ic_fluent_eye_lines_32_regular": 61390, - "ic_fluent_eye_lines_48_regular": 61391, - "ic_fluent_number_circle_1_28_regular": 61392, - "ic_fluent_number_circle_1_32_regular": 61393, - "ic_fluent_number_circle_1_48_regular": 61394, - "ic_fluent_text_bullet_list_square_person_32_regular": 61395, - "ic_fluent_weather_snowflake_32_regular": 61396, - "ic_fluent_window_database_24_regular": 61397, - "ic_fluent_arrow_trending_12_regular": 61398, - "ic_fluent_building_people_16_regular": 61399, - "ic_fluent_building_people_20_regular": 61400, - "ic_fluent_building_people_24_regular": 61401, - "ic_fluent_cloud_error_16_regular": 61402, - "ic_fluent_cloud_error_20_regular": 61403, - "ic_fluent_cloud_error_24_regular": 61404, - "ic_fluent_cloud_error_28_regular": 61405, - "ic_fluent_cloud_error_32_regular": 61406, - "ic_fluent_cloud_error_48_regular": 61407, - "ic_fluent_couch_32_regular": 61408, - "ic_fluent_couch_48_regular": 61409, - "ic_fluent_database_arrow_right_24_regular": 61410, - "ic_fluent_dishwasher_20_regular": 61411, - "ic_fluent_dishwasher_24_regular": 61412, - "ic_fluent_dishwasher_32_regular": 61413, - "ic_fluent_dishwasher_48_regular": 61414, - "ic_fluent_elevator_20_regular": 61415, - "ic_fluent_elevator_24_regular": 61416, - "ic_fluent_elevator_32_regular": 61417, - "ic_fluent_feed_32_regular": 61418, - "ic_fluent_feed_48_regular": 61419, - "ic_fluent_fireplace_20_regular": 61420, - "ic_fluent_fireplace_24_regular": 61421, - "ic_fluent_fireplace_32_regular": 61422, - "ic_fluent_fireplace_48_regular": 61423, - "ic_fluent_mention_12_regular": 61424, - "ic_fluent_oven_20_regular": 61425, - "ic_fluent_oven_24_regular": 61426, - "ic_fluent_oven_32_regular": 61427, - "ic_fluent_oven_48_regular": 61428, - "ic_fluent_panel_down_20_regular": 61429, - "ic_fluent_panel_left_32_regular": 61430, - "ic_fluent_panel_left_add_16_regular": 61431, - "ic_fluent_panel_left_add_20_regular": 61432, - "ic_fluent_panel_left_add_24_regular": 61433, - "ic_fluent_panel_left_add_28_regular": 61434, - "ic_fluent_panel_left_add_32_regular": 61435, - "ic_fluent_panel_left_add_48_regular": 61436, - "ic_fluent_panel_left_key_16_regular": 61437, - "ic_fluent_panel_left_key_20_regular": 61438, - "ic_fluent_panel_left_key_24_regular": 61439, - "ic_fluent_panel_right_32_regular": 61440, - "ic_fluent_status_12_regular": 61441, - "ic_fluent_vehicle_car_parking_20_regular": 61442, - "ic_fluent_vehicle_car_parking_24_regular": 61443, - "ic_fluent_vehicle_car_profile_ltr_24_regular": 61444, - "ic_fluent_vehicle_car_profile_rtl_24_regular": 61445, - "ic_fluent_washer_20_regular": 61446, - "ic_fluent_washer_24_regular": 61447, - "ic_fluent_washer_32_regular": 61448, - "ic_fluent_washer_48_regular": 61449, - "ic_fluent_accessibility_checkmark_28_regular": 61450, - "ic_fluent_accessibility_checkmark_32_regular": 61451, - "ic_fluent_accessibility_checkmark_48_regular": 61452, - "ic_fluent_add_circle_12_regular": 61453, - "ic_fluent_arrow_turn_down_right_20_regular": 61454, - "ic_fluent_arrow_turn_down_right_48_regular": 61455, - "ic_fluent_arrow_turn_down_up_20_regular": 61456, - "ic_fluent_arrow_turn_down_up_48_regular": 61457, - "ic_fluent_arrow_turn_left_down_20_regular": 61458, - "ic_fluent_arrow_turn_left_down_48_regular": 61459, - "ic_fluent_arrow_turn_left_right_20_regular": 61460, - "ic_fluent_arrow_turn_left_right_48_regular": 61461, - "ic_fluent_arrow_turn_left_up_20_regular": 61462, - "ic_fluent_arrow_turn_left_up_48_regular": 61463, - "ic_fluent_arrow_turn_right_48_regular": 61464, - "ic_fluent_arrow_turn_right_down_20_regular": 61465, - "ic_fluent_arrow_turn_right_down_48_regular": 61466, - "ic_fluent_arrow_turn_right_left_20_regular": 61467, - "ic_fluent_arrow_turn_right_left_48_regular": 61468, - "ic_fluent_arrow_turn_right_up_20_regular": 61469, - "ic_fluent_arrow_turn_right_up_48_regular": 61470, - "ic_fluent_arrow_turn_up_down_20_regular": 61471, - "ic_fluent_arrow_turn_up_down_48_regular": 61472, - "ic_fluent_arrow_turn_up_left_20_regular": 61473, - "ic_fluent_arrow_turn_up_left_48_regular": 61474, - "ic_fluent_building_townhouse_20_regular": 61475, - "ic_fluent_building_townhouse_24_regular": 61476, - "ic_fluent_building_townhouse_32_regular": 61477, - "ic_fluent_camera_sparkles_20_regular": 61478, - "ic_fluent_camera_sparkles_24_regular": 61479, - "ic_fluent_chat_bubbles_28_regular": 61480, - "ic_fluent_chat_bubbles_32_regular": 61481, - "ic_fluent_chat_bubbles_question_28_regular": 61482, - "ic_fluent_chat_bubbles_question_32_regular": 61483, - "ic_fluent_crop_16_regular": 61484, - "ic_fluent_crop_28_regular": 61485, - "ic_fluent_crop_32_regular": 61486, - "ic_fluent_crop_48_regular": 61487, - "ic_fluent_data_trending_28_regular": 61488, - "ic_fluent_data_trending_32_regular": 61489, - "ic_fluent_data_trending_48_regular": 61490, - "ic_fluent_document_database_20_regular": 61491, - "ic_fluent_document_database_24_regular": 61492, - "ic_fluent_earth_48_regular": 61493, - "ic_fluent_earth_leaf_48_regular": 61494, - "ic_fluent_elevator_48_regular": 61495, - "ic_fluent_home_split_20_regular": 61496, - "ic_fluent_home_split_24_regular": 61497, - "ic_fluent_home_split_32_regular": 61498, - "ic_fluent_home_split_48_regular": 61499, - "ic_fluent_leaf_two_48_regular": 61500, - "ic_fluent_panel_right_cursor_20_regular": 61501, - "ic_fluent_panel_right_cursor_24_regular": 61502, - "ic_fluent_person_board_28_regular": 61503, - "ic_fluent_person_board_32_regular": 61504, - "ic_fluent_person_circle_28_regular": 61505, - "ic_fluent_person_circle_32_regular": 61506, - "ic_fluent_person_square_20_regular": 61507, - "ic_fluent_person_square_24_regular": 61508, - "ic_fluent_person_starburst_20_regular": 61509, - "ic_fluent_person_starburst_24_regular": 61510, - "ic_fluent_receipt_sparkles_20_regular": 61511, - "ic_fluent_receipt_sparkles_24_regular": 61512, - "ic_fluent_ruler_28_regular": 61513, - "ic_fluent_ruler_32_regular": 61514, - "ic_fluent_ruler_48_regular": 61515, - "ic_fluent_scan_qr_code_24_regular": 61516, - "ic_fluent_showerhead_20_regular": 61517, - "ic_fluent_showerhead_24_regular": 61518, - "ic_fluent_showerhead_32_regular": 61519, - "ic_fluent_slide_text_multiple_16_regular": 61520, - "ic_fluent_slide_text_multiple_20_regular": 61521, - "ic_fluent_slide_text_multiple_24_regular": 61522, - "ic_fluent_slide_text_multiple_32_regular": 61523, - "ic_fluent_swimming_pool_20_regular": 61524, - "ic_fluent_swimming_pool_24_regular": 61525, - "ic_fluent_swimming_pool_32_regular": 61526, - "ic_fluent_swimming_pool_48_regular": 61527, - "ic_fluent_temperature_32_regular": 61528, - "ic_fluent_temperature_48_regular": 61529, - "ic_fluent_vehicle_car_32_regular": 61530, - "ic_fluent_vehicle_car_parking_16_regular": 61531, - "ic_fluent_vehicle_car_parking_32_regular": 61532, - "ic_fluent_vehicle_car_parking_48_regular": 61533, - "ic_fluent_vehicle_car_profile_ltr_clock_16_regular": 61534, - "ic_fluent_vehicle_car_profile_ltr_clock_20_regular": 61535, - "ic_fluent_vehicle_car_profile_ltr_clock_24_regular": 61536, - "ic_fluent_video_people_32_regular": 61537, - "ic_fluent_water_16_regular": 61538, - "ic_fluent_water_20_regular": 61539, - "ic_fluent_water_24_regular": 61540, - "ic_fluent_water_32_regular": 61541, - "ic_fluent_water_48_regular": 61542, - "ic_fluent_arrow_turn_down_left_20_regular": 61543, - "ic_fluent_arrow_turn_down_left_48_regular": 61544, - "ic_fluent_autosum_16_regular": 61545, - "ic_fluent_bubble_multiple_20_regular": 61546, - "ic_fluent_calculator_16_regular": 61547, - "ic_fluent_calculator_multiple_16_regular": 61548, - "ic_fluent_camera_sparkles_16_regular": 61549, - "ic_fluent_crown_16_regular": 61550, - "ic_fluent_crown_20_regular": 61551, - "ic_fluent_flag_checkered_20_regular": 61552, - "ic_fluent_glance_horizontal_16_regular": 61553, - "ic_fluent_glance_horizontal_sparkles_16_regular": 61554, - "ic_fluent_glance_horizontal_sparkles_24_regular": 61555, - "ic_fluent_grid_circles_24_regular": 61556, - "ic_fluent_grid_circles_28_regular": 61557, - "ic_fluent_heart_circle_hint_16_regular": 61558, - "ic_fluent_heart_circle_hint_20_regular": 61559, - "ic_fluent_heart_circle_hint_24_regular": 61560, - "ic_fluent_heart_circle_hint_28_regular": 61561, - "ic_fluent_heart_circle_hint_32_regular": 61562, - "ic_fluent_heart_circle_hint_48_regular": 61563, - "ic_fluent_lightbulb_28_regular": 61564, - "ic_fluent_lightbulb_32_regular": 61565, - "ic_fluent_lightbulb_48_regular": 61566, - "ic_fluent_lightbulb_person_16_regular": 61567, - "ic_fluent_lightbulb_person_20_regular": 61568, - "ic_fluent_lightbulb_person_24_regular": 61569, - "ic_fluent_lightbulb_person_28_regular": 61570, - "ic_fluent_lightbulb_person_32_regular": 61571, - "ic_fluent_lightbulb_person_48_regular": 61572, - "ic_fluent_megaphone_loud_28_regular": 61573, - "ic_fluent_megaphone_loud_32_regular": 61574, - "ic_fluent_person_walking_20_regular": 61575, - "ic_fluent_person_walking_24_regular": 61576, - "ic_fluent_receipt_16_regular": 61577, - "ic_fluent_receipt_28_regular": 61578, - "ic_fluent_receipt_sparkles_16_regular": 61579, - "ic_fluent_scan_text_16_regular": 61580, - "ic_fluent_scan_text_28_regular": 61581, - "ic_fluent_table_calculator_16_regular": 61582, - "ic_fluent_table_simple_checkmark_16_regular": 61583, - "ic_fluent_table_simple_checkmark_20_regular": 61584, - "ic_fluent_table_simple_checkmark_24_regular": 61585, - "ic_fluent_table_simple_checkmark_28_regular": 61586, - "ic_fluent_table_simple_checkmark_32_regular": 61587, - "ic_fluent_table_simple_checkmark_48_regular": 61588, - "ic_fluent_tabs_16_regular": 61589, - "ic_fluent_text_underline_double_20_regular": 61590, - "ic_fluent_text_underline_double_24_regular": 61591, - "ic_fluent_xbox_controller_error_20_regular": 61592, - "ic_fluent_xbox_controller_error_24_regular": 61593, - "ic_fluent_xbox_controller_error_32_regular": 61594, - "ic_fluent_xbox_controller_error_48_regular": 61595, - "ic_fluent_align_distribute_bottom_16_regular": 61596, - "ic_fluent_align_distribute_left_16_regular": 61597, - "ic_fluent_align_distribute_right_16_regular": 61598, - "ic_fluent_align_distribute_top_16_regular": 61599, - "ic_fluent_align_stretch_horizontal_16_regular": 61600, - "ic_fluent_align_stretch_vertical_16_regular": 61601, - "ic_fluent_arrow_next_16_regular": 61602, - "ic_fluent_arrow_previous_16_regular": 61603, - "ic_fluent_braces_checkmark_16_regular": 61604, - "ic_fluent_braces_dismiss_16_regular": 61605, - "ic_fluent_branch_16_regular": 61606, - "ic_fluent_calendar_arrow_counterclockwise_16_regular": 61607, - "ic_fluent_calendar_arrow_counterclockwise_20_regular": 61608, - "ic_fluent_calendar_arrow_counterclockwise_24_regular": 61609, - "ic_fluent_calendar_arrow_counterclockwise_28_regular": 61610, - "ic_fluent_calendar_arrow_counterclockwise_32_regular": 61611, - "ic_fluent_calendar_arrow_counterclockwise_48_regular": 61612, - "ic_fluent_calendar_play_16_regular": 61613, - "ic_fluent_calendar_play_20_regular": 61614, - "ic_fluent_calendar_play_24_regular": 61615, - "ic_fluent_calendar_play_28_regular": 61616, - "ic_fluent_calendar_shield_16_regular": 61617, - "ic_fluent_calendar_shield_20_regular": 61618, - "ic_fluent_calendar_shield_24_regular": 61619, - "ic_fluent_calendar_shield_28_regular": 61620, - "ic_fluent_calendar_shield_32_regular": 61621, - "ic_fluent_calendar_shield_48_regular": 61622, - "ic_fluent_call_transfer_24_regular": 61623, - "ic_fluent_call_transfer_32_regular": 61624, - "ic_fluent_camera_off_16_regular": 61625, - "ic_fluent_cd_16_regular": 61626, - "ic_fluent_certificate_16_regular": 61627, - "ic_fluent_clipboard_error_16_regular": 61628, - "ic_fluent_clipboard_multiple_16_regular": 61629, - "ic_fluent_clipboard_note_16_regular": 61630, - "ic_fluent_clipboard_task_16_regular": 61631, - "ic_fluent_clipboard_text_ltr_16_regular": 61632, - "ic_fluent_clipboard_text_rtl_16_regular": 61633, - "ic_fluent_cloud_add_24_regular": 61634, - "ic_fluent_cloud_edit_24_regular": 61635, - "ic_fluent_cloud_link_24_regular": 61636, - "ic_fluent_code_cs_16_regular": 61637, - "ic_fluent_code_cs_rectangle_16_regular": 61638, - "ic_fluent_code_fs_16_regular": 61639, - "ic_fluent_code_fs_rectangle_16_regular": 61640, - "ic_fluent_code_js_16_regular": 61641, - "ic_fluent_code_js_rectangle_16_regular": 61642, - "ic_fluent_code_py_16_regular": 61643, - "ic_fluent_code_py_rectangle_16_regular": 61644, - "ic_fluent_code_rb_16_regular": 61645, - "ic_fluent_code_rb_rectangle_16_regular": 61646, - "ic_fluent_code_text_off_16_regular": 61647, - "ic_fluent_code_ts_16_regular": 61648, - "ic_fluent_code_ts_rectangle_16_regular": 61649, - "ic_fluent_code_vb_16_regular": 61650, - "ic_fluent_code_vb_rectangle_16_regular": 61651, - "ic_fluent_cone_16_regular": 61652, - "ic_fluent_data_bar_horizontal_descending_16_regular": 61653, - "ic_fluent_data_bar_vertical_ascending_16_regular": 61654, - "ic_fluent_database_16_regular": 61655, - "ic_fluent_database_stack_16_regular": 61656, - "ic_fluent_developer_board_16_regular": 61657, - "ic_fluent_document_contract_16_regular": 61658, - "ic_fluent_document_cs_16_regular": 61659, - "ic_fluent_document_css_16_regular": 61660, - "ic_fluent_document_data_16_regular": 61661, - "ic_fluent_document_fs_16_regular": 61662, - "ic_fluent_document_js_16_regular": 61663, - "ic_fluent_document_number_1_16_regular": 61664, - "ic_fluent_document_py_16_regular": 61665, - "ic_fluent_document_rb_16_regular": 61666, - "ic_fluent_document_target_16_regular": 61667, - "ic_fluent_document_ts_16_regular": 61668, - "ic_fluent_document_vb_16_regular": 61669, - "ic_fluent_eyedropper_16_regular": 61670, - "ic_fluent_folder_multiple_16_regular": 61671, - "ic_fluent_folder_open_vertical_16_regular": 61672, - "ic_fluent_gantt_chart_16_regular": 61673, - "ic_fluent_hard_drive_16_regular": 61674, - "ic_fluent_hourglass_16_regular": 61675, - "ic_fluent_hourglass_half_16_regular": 61676, - "ic_fluent_hourglass_one_quarter_16_regular": 61677, - "ic_fluent_hourglass_three_quarter_16_regular": 61678, - "ic_fluent_keyboard_mouse_16_regular": 61679, - "ic_fluent_memory_16_regular": 61680, - "ic_fluent_more_circle_16_regular": 61681, - "ic_fluent_more_circle_24_regular": 61682, - "ic_fluent_more_circle_28_regular": 61683, - "ic_fluent_more_circle_48_regular": 61684, - "ic_fluent_network_adapter_16_regular": 61685, - "ic_fluent_people_star_16_regular": 61686, - "ic_fluent_people_star_20_regular": 61687, - "ic_fluent_people_star_24_regular": 61688, - "ic_fluent_people_star_28_regular": 61689, - "ic_fluent_people_star_32_regular": 61690, - "ic_fluent_people_star_48_regular": 61691, - "ic_fluent_person_search_16_regular": 61692, - "ic_fluent_person_search_32_regular": 61693, - "ic_fluent_person_standing_16_regular": 61694, - "ic_fluent_person_walking_16_regular": 61695, - "ic_fluent_play_multiple_16_regular": 61696, - "ic_fluent_radio_button_16_regular": 61779, - "ic_fluent_radio_button_off_16_regular": 61781, - "ic_fluent_ram_16_regular": 61905, - "ic_fluent_save_multiple_16_regular": 61906, - "ic_fluent_script_16_regular": 61915, - "ic_fluent_server_16_regular": 61916, - "ic_fluent_server_surface_16_regular": 61917, - "ic_fluent_server_surface_multiple_16_regular": 61958, - "ic_fluent_shield_12_regular": 61983, - "ic_fluent_slide_text_person_16_regular": 61999, - "ic_fluent_slide_text_person_20_regular": 62043, - "ic_fluent_slide_text_person_24_regular": 62044, - "ic_fluent_slide_text_person_28_regular": 62045, - "ic_fluent_slide_text_person_32_regular": 62046, - "ic_fluent_slide_text_person_48_regular": 62169, - "ic_fluent_spray_can_16_regular": 62170, - "ic_fluent_step_16_regular": 62183, - "ic_fluent_steps_16_regular": 62184, - "ic_fluent_table_lock_16_regular": 62185, - "ic_fluent_table_lock_20_regular": 62188, - "ic_fluent_table_lock_24_regular": 62189, - "ic_fluent_table_lock_28_regular": 62190, - "ic_fluent_table_lock_32_regular": 62210, - "ic_fluent_table_lock_48_regular": 62217, - "ic_fluent_text_t_tag_16_regular": 62246, - "ic_fluent_video_person_32_regular": 62247, - "ic_fluent_video_person_clock_16_regular": 62350, - "ic_fluent_video_person_clock_20_regular": 62354, - "ic_fluent_video_person_clock_24_regular": 62453, - "ic_fluent_video_person_clock_28_regular": 62454, - "ic_fluent_video_person_clock_32_regular": 62455, - "ic_fluent_video_person_clock_48_regular": 62456, - "ic_fluent_voicemail_32_regular": 62457, - "ic_fluent_web_asset_16_regular": 62458 -} diff --git a/src/Wpf.Ui.FontMapper/FontSource.cs b/src/Wpf.Ui.FontMapper/FontSource.cs index a19345c2c..d3e768da2 100644 --- a/src/Wpf.Ui.FontMapper/FontSource.cs +++ b/src/Wpf.Ui.FontMapper/FontSource.cs @@ -1,9 +1,28 @@ namespace Wpf.Ui.FontMapper; -struct FontSource +class FontSource { - public string Name { get; set; } - public string Description { get; set; } - public string SourcePath { get; set; } - public string DestinationPath { get; set; } + public string Name { get; } + public string Description { get; private set; } + public string SourcePath { get; } + public string DestinationPath { get; } + public IDictionary Contents { get; private set; } + + public FontSource(string name, string description, string sourcePath, string destinationPath) + { + Name = name; + Description = description; + SourcePath = sourcePath; + DestinationPath = destinationPath; + } + + public void SetContents(IDictionary contents) + { + Contents = contents; + } + + public void UpdateVersion(string version) + { + Description = Description.Replace("{{FLUENT_SYSTEM_ICONS_VERSION}}", version); + } } diff --git a/src/Wpf.Ui.FontMapper/GitTag.cs b/src/Wpf.Ui.FontMapper/GitTag.cs new file mode 100644 index 000000000..455cc2c82 --- /dev/null +++ b/src/Wpf.Ui.FontMapper/GitTag.cs @@ -0,0 +1,6 @@ +namespace Wpf.Ui.FontMapper; + +record GitTag( + string Ref, + string Node_Id, + string Url); diff --git a/src/Wpf.Ui.FontMapper/Program.cs b/src/Wpf.Ui.FontMapper/Program.cs index 240c1fd84..9b6f0d2f1 100644 --- a/src/Wpf.Ui.FontMapper/Program.cs +++ b/src/Wpf.Ui.FontMapper/Program.cs @@ -3,65 +3,109 @@ // Copyright (C) Leszek Pomianowski and WPF UI Contributors. // All Rights Reserved. +using System.Net.Http.Json; using System.Text; -using System.Text.Json; using Wpf.Ui.FontMapper; Console.WriteLine("Fluent System Icons Mapper"); System.Diagnostics.Debug.WriteLine("INFO | Fluent System Icons Mapper", "Wpf.Ui.FontMapper"); -var fluentSystemIconsVersion = "1.1.190"; -var executingPath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location); -var fontSources = new FontSource[] +var workingDirectory = Path.GetDirectoryName( + System.Reflection.Assembly.GetExecutingAssembly().Location +); + +var regularIcons = new FontSource( + "SymbolRegular", + "Represents a list of regular Fluent System Icons v.{{FLUENT_SYSTEM_ICONS_VERSION}}.\nMay be converted to using GetGlyph() or to using GetString()", + @"https://raw.githubusercontent.com/microsoft/fluentui-system-icons/main/fonts/FluentSystemIcons-Regular.json", + "generated\\SymbolRegular.cs" +); +var filledIcons = new FontSource( + "SymbolFilled", + "Represents a list of filled Fluent System Icons v.{{FLUENT_SYSTEM_ICONS_VERSION}}.\nMay be converted to using GetGlyph() or to using GetString()", + @"https://raw.githubusercontent.com/microsoft/fluentui-system-icons/main/fonts/FluentSystemIcons-Filled.json", + "generated\\SymbolFilled.cs" +); + +var fetchVersionAsync = async () => { - new() - { - Name = "SymbolRegular", - Description = $"Represents a list of regular Fluent System Icons v.{fluentSystemIconsVersion}.\nMay be converted to using GetGlyph() or to using GetString()", - SourcePath = "FluentSystemIcons-Regular.json", - DestinationPath = "generated\\SymbolRegular.cs" - }, - new() + using var httpClient = new HttpClient(); + httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; AcmeInc/1.0)"); + + return (await httpClient.GetFromJsonAsync>(@"https://api.github.com/repos/microsoft/fluentui-system-icons/git/refs/tags"))?.Last()?.Ref.Replace("refs/tags/", String.Empty).Trim() + ?? throw new Exception("Unable to parse the verison string"); +}; + +var formatIconName = (string rawIconName) => +{ + rawIconName = rawIconName.Replace("ic_fluent_", String.Empty) + .Replace("_regular", String.Empty) + .Replace("_filled", String.Empty); + + var iconName = String.Empty; + + foreach (var newPart in rawIconName.Split('_')) { - Name = "SymbolFilled", - Description = $"Represents a list of filled Fluent System Icons v.{fluentSystemIconsVersion}.\nMay be converted to using GetGlyph() or to using GetString()", - SourcePath = "FluentSystemIcons-Filled.json", - DestinationPath = "generated\\SymbolFilled.cs" - }, - // new() - // { - // Name = "SymbolResizable", - // Description = $"Represents a list of resizable Fluent System Icons v.{fluentSystemIconsVersion}.\nMay be converted to using GetGlyph() or to using GetString()", - // SourcePath = "FluentSystemIcons-Resizable.json", - // DestinationPath = "generated\\SymbolResizable.cs" - // } + var charactersArray = newPart.ToCharArray(); + charactersArray[0] = Char.ToUpper(charactersArray[0]); + + iconName += new string(charactersArray); + } + + return iconName; }; -Parallel.ForEach(fontSources, singleFont => +var fetchFontContentsAsync = async (FontSource source, string version) => { - if (String.IsNullOrEmpty(executingPath)) - return; + using var httpClient = new HttpClient(); + httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; AcmeInc/1.0)"); + + var sourceJsonContent = await httpClient.GetFromJsonAsync>(source.SourcePath) ?? throw new Exception("Unable to obtain JSON data"); - var sourcePath = Path.Combine(executingPath, singleFont.SourcePath); - var destinationPath = Path.Combine(executingPath, singleFont.DestinationPath); + sourceJsonContent = sourceJsonContent + .OrderBy(x => x.Value) + .ToDictionary( + k => formatIconName(k.Key), + v => v.Value); + + source.SetContents(sourceJsonContent); + source.UpdateVersion(version); +}; - if (!File.Exists(sourcePath)) - return; +var recentVersion = await fetchVersionAsync(); + +await fetchFontContentsAsync(regularIcons, recentVersion); +await fetchFontContentsAsync(filledIcons, recentVersion); + +var regularKeys = regularIcons.Contents.Keys; +var filledKeys = filledIcons.Contents.Keys; +var keysToRemove = regularKeys.Except(filledKeys).Concat(filledKeys.Except(regularKeys)); + +foreach (var key in keysToRemove) +{ + regularIcons.Contents.Remove(key); + filledIcons.Contents.Remove(key); - Console.WriteLine($"Mapping {singleFont.Name}"); - System.Diagnostics.Debug.WriteLine($"INFO | Mapping {singleFont.Name}", "Wpf.Ui.FontMapper"); + Console.WriteLine($"Deleted key \"{key}\" because no duplicate found in all lists"); +} - var fileStream = new FileStream(sourcePath, FileMode.Open); - using var reader = new StreamReader(fileStream); +var writeToFileAsync = async (FontSource singleFont, string workingDirectory) => +{ + var destinationPath = Path.Combine(workingDirectory, singleFont.DestinationPath); - var jsonData = JsonSerializer.Deserialize>(reader.ReadToEnd()) ?? new Dictionary(); var enumName = singleFont.Name; var enumMapStringBuilder = new StringBuilder(); - enumMapStringBuilder.AppendLine("// This Source Code Form is subject to the terms of the MIT License."); - enumMapStringBuilder.AppendLine("// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT."); - enumMapStringBuilder.AppendLine("// Copyright (C) Leszek Pomianowski and WPF UI Contributors."); + enumMapStringBuilder.AppendLine( + "// This Source Code Form is subject to the terms of the MIT License." + ); + enumMapStringBuilder.AppendLine( + "// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT." + ); + enumMapStringBuilder.AppendLine( + "// Copyright (C) Leszek Pomianowski and WPF UI Contributors." + ); enumMapStringBuilder.AppendLine("// All Rights Reserved."); enumMapStringBuilder.AppendLine(""); enumMapStringBuilder.AppendLine("namespace Wpf.Ui.Common;"); @@ -76,42 +120,16 @@ enumMapStringBuilder.AppendLine("public enum " + enumName); enumMapStringBuilder.AppendLine("{"); enumMapStringBuilder.AppendLine(" /// "); - enumMapStringBuilder.AppendLine(" /// Actually, this icon is not empty, but makes it easier to navigate."); + enumMapStringBuilder.AppendLine( + " /// Actually, this icon is not empty, but makes it easier to navigate." + ); enumMapStringBuilder.AppendLine(" /// "); enumMapStringBuilder.AppendLine(" Empty = 0x0,"); enumMapStringBuilder.AppendLine(""); enumMapStringBuilder.AppendLine(" // Automatically generated, may contain bugs."); enumMapStringBuilder.AppendLine(""); - var parsedJsonData = new Dictionary(); - - foreach (var singleItem in jsonData) - { - var iconName = String.Empty; - var iconId = singleItem.Value; - var name = singleItem.Key - .Replace("ic_fluent_", String.Empty) - .Replace("_regular", String.Empty) - .Replace("_filled", String.Empty); - - if (iconId > 65535) - iconId -= 65536; - - foreach (var newPart in name.Split('_')) - { - var charactersArray = newPart.ToCharArray(); - charactersArray[0] = Char.ToUpper(charactersArray[0]); - - iconName += new string(charactersArray); - } - - if (!parsedJsonData.ContainsKey(iconName)) - parsedJsonData.Add(iconName, iconId); - } - - parsedJsonData = parsedJsonData.OrderBy(x => x.Value).ToDictionary(x => x.Key, x => x.Value); - - foreach (var singleIcon in parsedJsonData) + foreach (var singleIcon in singleFont.Contents) { // Older versions if (singleIcon.Value < 32) @@ -128,16 +146,21 @@ enumMapStringBuilder.AppendLine("}"); enumMapStringBuilder.AppendLine(""); enumMapStringBuilder.AppendLine("#pragma warning restore CS1591"); - enumMapStringBuilder.AppendLine(""); + enumMapStringBuilder.Append("\r\n"); var fileInfo = new FileInfo(destinationPath); if (fileInfo.Directory != null && !fileInfo.Directory.Exists) lock (fileInfo.Directory) - { fileInfo.Directory.Create(); } + { + fileInfo.Directory.Create(); + } File.WriteAllText(destinationPath, enumMapStringBuilder.ToString()); -}); +}; + +await writeToFileAsync(regularIcons, workingDirectory); +await writeToFileAsync(filledIcons, workingDirectory); Console.WriteLine("Done."); System.Diagnostics.Debug.WriteLine("INFO | Done.", "Wpf.Ui.FontMapper"); diff --git a/src/Wpf.Ui.FontMapper/Wpf.Ui.FontMapper.csproj b/src/Wpf.Ui.FontMapper/Wpf.Ui.FontMapper.csproj index 1bbfff50a..70403cb84 100644 --- a/src/Wpf.Ui.FontMapper/Wpf.Ui.FontMapper.csproj +++ b/src/Wpf.Ui.FontMapper/Wpf.Ui.FontMapper.csproj @@ -6,6 +6,7 @@ enable enable 10.0 + AnyCPU;x64 diff --git a/src/Wpf.Ui.Gallery.sln b/src/Wpf.Ui.Gallery.sln deleted file mode 100644 index 41888a1a5..000000000 --- a/src/Wpf.Ui.Gallery.sln +++ /dev/null @@ -1,118 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.1.32407.343 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui", "Wpf.Ui\Wpf.Ui.csproj", "{1ADC87D1-8963-4100-845A-18477824718E}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{21DB16AA-40BB-428B-AFE8-DEF4E3F0DC49}" - ProjectSection(SolutionItems) = preProject - .editorconfig = .editorconfig - Directory.Build.props = Directory.Build.props - Directory.Build.targets = Directory.Build.targets - Directory.Packages.props = Directory.Packages.props - ..\LICENSE = ..\LICENSE - ..\README.md = ..\README.md - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Library", "Library", "{BA330FCF-7C4C-4B06-A124-C33BB701B174}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Ui.Gallery", "Wpf.Ui.Gallery\Wpf.Ui.Gallery.csproj", "{3EC786F3-9B6B-4714-B092-59B4A844D884}" -EndProject -Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "Wpf.Ui.Gallery.Package", "Wpf.Ui.Gallery.Package\Wpf.Ui.Gallery.Package.wapproj", "{50C713C3-555E-491F-87EE-C806BEC0579F}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|ARM64 = Debug|ARM64 - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|ARM64 = Release|ARM64 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|ARM.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|ARM.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|ARM64.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|ARM64.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x64.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x64.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x86.ActiveCfg = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Debug|x86.Build.0 = Debug|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|Any CPU.Build.0 = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|ARM.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|ARM.Build.0 = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|ARM64.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|ARM64.Build.0 = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|x64.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|x64.Build.0 = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|x86.ActiveCfg = Release|Any CPU - {1ADC87D1-8963-4100-845A-18477824718E}.Release|x86.Build.0 = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|ARM.ActiveCfg = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|ARM.Build.0 = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|ARM64.ActiveCfg = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|ARM64.Build.0 = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|x64.ActiveCfg = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|x64.Build.0 = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|x86.ActiveCfg = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Debug|x86.Build.0 = Debug|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|Any CPU.Build.0 = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|ARM.ActiveCfg = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|ARM.Build.0 = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|ARM64.ActiveCfg = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|ARM64.Build.0 = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|x64.ActiveCfg = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|x64.Build.0 = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|x86.ActiveCfg = Release|Any CPU - {3EC786F3-9B6B-4714-B092-59B4A844D884}.Release|x86.Build.0 = Release|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|ARM.ActiveCfg = Debug|ARM - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|ARM.Build.0 = Debug|ARM - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|ARM.Deploy.0 = Debug|ARM - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|ARM64.Build.0 = Debug|ARM64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|ARM64.Deploy.0 = Debug|ARM64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x64.ActiveCfg = Debug|x64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x64.Build.0 = Debug|x64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x64.Deploy.0 = Debug|x64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x86.ActiveCfg = Debug|x86 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x86.Build.0 = Debug|x86 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Debug|x86.Deploy.0 = Debug|x86 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|Any CPU.Build.0 = Release|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|Any CPU.Deploy.0 = Release|Any CPU - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|ARM.ActiveCfg = Release|ARM - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|ARM.Build.0 = Release|ARM - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|ARM.Deploy.0 = Release|ARM - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|ARM64.ActiveCfg = Release|ARM64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|ARM64.Build.0 = Release|ARM64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|ARM64.Deploy.0 = Release|ARM64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x64.ActiveCfg = Release|x64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x64.Build.0 = Release|x64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x64.Deploy.0 = Release|x64 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x86.ActiveCfg = Release|x86 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x86.Build.0 = Release|x86 - {50C713C3-555E-491F-87EE-C806BEC0579F}.Release|x86.Deploy.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {1ADC87D1-8963-4100-845A-18477824718E} = {BA330FCF-7C4C-4B06-A124-C33BB701B174} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {234CB3F9-5ADC-433F-BDBD-CB8EA59EB518} - EndGlobalSection -EndGlobal diff --git a/src/Wpf.Ui.Gallery/App.xaml b/src/Wpf.Ui.Gallery/App.xaml index 568d2f0a6..02ca8200f 100644 --- a/src/Wpf.Ui.Gallery/App.xaml +++ b/src/Wpf.Ui.Gallery/App.xaml @@ -15,6 +15,8 @@ + + diff --git a/src/Wpf.Ui.Gallery/App.xaml.cs b/src/Wpf.Ui.Gallery/App.xaml.cs index 95212d006..4845954fd 100644 --- a/src/Wpf.Ui.Gallery/App.xaml.cs +++ b/src/Wpf.Ui.Gallery/App.xaml.cs @@ -24,6 +24,7 @@ using Wpf.Ui.Gallery.Views.Pages.BasicInput; using Wpf.Ui.Gallery.Views.Pages.Collections; using Wpf.Ui.Gallery.Views.Pages.DateAndTime; +using Wpf.Ui.Gallery.Views.Pages.DesignGuidance; using Wpf.Ui.Gallery.Views.Pages.DialogsAndFlyouts; using Wpf.Ui.Gallery.Views.Pages.Icons; using Wpf.Ui.Gallery.Views.Pages.Layout; @@ -72,6 +73,9 @@ public partial class App : Application services.AddTransient(); services.AddTransient(); + //Design guidance + services.AddTransient(); + // Basic Input services.AddTransient(); services.AddTransient(); diff --git a/src/Wpf.Ui.Gallery/CodeSamples/Typography/TypographySample_xaml.txt b/src/Wpf.Ui.Gallery/CodeSamples/Typography/TypographySample_xaml.txt new file mode 100644 index 000000000..ac9be9b15 --- /dev/null +++ b/src/Wpf.Ui.Gallery/CodeSamples/Typography/TypographySample_xaml.txt @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/Wpf.Ui.Gallery/Controls/ControlExample.cs b/src/Wpf.Ui.Gallery/Controls/ControlExample.cs new file mode 100644 index 000000000..702f2c2b7 --- /dev/null +++ b/src/Wpf.Ui.Gallery/Controls/ControlExample.cs @@ -0,0 +1,94 @@ +using System.Diagnostics; +using System.IO; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Markup; + +namespace Wpf.Ui.Gallery.Controls; + +[ContentProperty(nameof(ExampleContent))] +public class ControlExample : Control +{ + public static readonly DependencyProperty ExampleContentProperty = + DependencyProperty.Register(nameof(ExampleContent), + typeof(object), typeof(ControlExample), new PropertyMetadata(null)); + + public static readonly DependencyProperty XamlCodeProperty = + DependencyProperty.Register(nameof(XamlCode), + typeof(string), typeof(ControlExample), new PropertyMetadata(null)); + + public static readonly DependencyProperty XamlCodeSourceProperty = + DependencyProperty.Register(nameof(XamlCodeSource), + typeof(Uri), typeof(ControlExample), + new PropertyMetadata(null, + static (o, args) => ((ControlExample)o).OnXamlCodeSourceChanged((Uri)args.NewValue))); + + public static readonly DependencyProperty CsharpCodeProperty = + DependencyProperty.Register(nameof(CsharpCode), + typeof(string), typeof(ControlExample), new PropertyMetadata(null)); + + public static readonly DependencyProperty CsharpCodeSourceProperty = + DependencyProperty.Register(nameof(CsharpCodeSource), + typeof(Uri), typeof(ControlExample), + new PropertyMetadata(null, + static (o, args) => ((ControlExample)o).OnCsharpCodeSourceChanged((Uri)args.NewValue))); + + public object? ExampleContent + { + get => GetValue(ExampleContentProperty); + set => SetValue(ExampleContentProperty, value); + } + + public string? XamlCode + { + get => (string)GetValue(XamlCodeProperty); + set => SetValue(XamlCodeProperty, value); + } + + public Uri? XamlCodeSource + { + get => (Uri)GetValue(XamlCodeSourceProperty); + set => SetValue(XamlCodeSourceProperty, value); + } + + public string? CsharpCode + { + get => (string)GetValue(CsharpCodeProperty); + set => SetValue(CsharpCodeProperty, value); + } + + public Uri? CsharpCodeSource + { + get => (Uri)GetValue(CsharpCodeSourceProperty); + set => SetValue(CsharpCodeSourceProperty, value); + } + + private void OnXamlCodeSourceChanged(Uri uri) + { + XamlCode = LoadResource(uri); + } + + private void OnCsharpCodeSourceChanged(Uri uri) + { + CsharpCode = LoadResource(uri); + } + + private static string LoadResource(Uri uri) + { + try + { + if (Application.GetResourceStream(uri) is not { } steamInfo) + return string.Empty; + + using StreamReader streamReader = new(steamInfo.Stream, Encoding.UTF8); + return streamReader.ReadToEnd(); + + } + catch (Exception e) + { + Debug.WriteLine(e); + return e.ToString(); + } + } +} diff --git a/src/Wpf.Ui.Gallery/Controls/ControlExample.xaml b/src/Wpf.Ui.Gallery/Controls/ControlExample.xaml new file mode 100644 index 000000000..eaa409154 --- /dev/null +++ b/src/Wpf.Ui.Gallery/Controls/ControlExample.xaml @@ -0,0 +1,89 @@ + + + + + diff --git a/src/Wpf.Ui.Gallery/Controls/GalleryNavigationPresenter.xaml b/src/Wpf.Ui.Gallery/Controls/GalleryNavigationPresenter.xaml index 0c29a6fd1..3ecae5e4d 100644 --- a/src/Wpf.Ui.Gallery/Controls/GalleryNavigationPresenter.xaml +++ b/src/Wpf.Ui.Gallery/Controls/GalleryNavigationPresenter.xaml @@ -25,15 +25,13 @@ Icon="{Binding Icon, Mode=OneTime}" IsChevronVisible="True"> - - @@ -56,4 +54,4 @@ - \ No newline at end of file + diff --git a/src/Wpf.Ui.Gallery/Controls/TermsOfUseContentDialog.xaml b/src/Wpf.Ui.Gallery/Controls/TermsOfUseContentDialog.xaml index 946b7254b..d4fd4773b 100644 --- a/src/Wpf.Ui.Gallery/Controls/TermsOfUseContentDialog.xaml +++ b/src/Wpf.Ui.Gallery/Controls/TermsOfUseContentDialog.xaml @@ -7,11 +7,12 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="Terms of use" - d:DesignHeight="880" - d:DesignWidth="800" + d:DesignHeight="1000" + d:DesignWidth="750" ui:Design.Background="{DynamicResource ApplicationBackgroundBrush}" ui:Design.Foreground="{DynamicResource TextFillColorPrimaryBrush}" CloseButtonText="Close" + DialogMaxWidth="750" mc:Ignorable="d"> @@ -19,43 +20,49 @@ - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus malesuada mollis. Ut placerat dolor ac ligula consectetur, aliquam viverra odio dignissim. Donec in finibus tortor. Suspendisse eget ipsum vel arcu feugiat porttitor. Mauris et arcu pretium ipsum posuere tincidunt at a magna. Nullam finibus, arcu sit amet convallis sollicitudin, odio nisi efficitur mauris, quis aliquam dolor velit ac est. Integer quis ante velit. Etiam tincidunt, purus ut tempus auctor, sem augue congue urna, a vulputate mauris tortor a enim. Sed eros augue, ultrices quis neque eget, bibendum convallis lorem. Etiam luctus finibus consequat. - - Etiam viverra scelerisque risus et scelerisque. Praesent ipsum tellus, iaculis in augue quis, pharetra commodo dolor. In risus nisi, eleifend ut volutpat in, viverra a arcu. Vestibulum congue purus risus, rhoncus viverra ligula tempor in. Pellentesque ornare tempor ex, cursus suscipit mi dignissim a. Vivamus pulvinar at purus et feugiat. Donec consectetur malesuada consequat. Vestibulum est diam, sagittis in vehicula tempor, euismod ac ex. Nam in purus aliquet, ultricies ante at, tempus arcu. Praesent at orci accumsan, tincidunt leo eget, rhoncus nunc. Aenean eget fermentum justo. - - Nullam tincidunt tempor velit, eu commodo ipsum rhoncus sagittis. Nunc vel tortor nec ante pulvinar sagittis. Nullam eget sagittis orci. Nunc tristique nibh eu lacinia finibus. Donec eu volutpat nisi, eget fermentum quam. Aenean ut interdum dolor. Nunc nibh eros, aliquet eget augue tincidunt, congue tincidunt nisl. - - - Cras bibendum varius iaculis. In et rhoncus tortor. Nullam ac malesuada urna, eu gravida ante. Nam dictum consectetur leo. Quisque sem orci, auctor at ornare vulputate, maximus in enim. In in libero ac lorem tristique vulputate a vitae risus. Fusce vitae rhoncus lectus, quis lobortis tortor. Sed suscipit auctor lorem, eget finibus leo elementum et. Sed lobortis felis lectus, quis malesuada lacus sodales sed. Nulla vitae turpis id tellus convallis vulputate sed eu metus. - - + + + + - + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus malesuada mollis. Ut placerat dolor ac ligula consectetur, aliquam viverra odio dignissim. Donec in finibus tortor. Suspendisse eget ipsum vel arcu feugiat porttitor. Mauris et arcu pretium ipsum posuere tincidunt at a magna. Nullam finibus, arcu sit amet convallis sollicitudin, odio nisi efficitur mauris, quis aliquam dolor velit ac est. Integer quis ante velit. Etiam tincidunt, purus ut tempus auctor, sem augue congue urna, a vulputate mauris tortor a enim. Sed eros augue, ultrices quis neque eget, bibendum convallis lorem. Etiam luctus finibus consequat. + + Etiam viverra scelerisque risus et scelerisque. Praesent ipsum tellus, iaculis in augue quis, pharetra commodo dolor. In risus nisi, eleifend ut volutpat in, viverra a arcu. Vestibulum congue purus risus, rhoncus viverra ligula tempor in. Pellentesque ornare tempor ex, cursus suscipit mi dignissim a. Vivamus pulvinar at purus et feugiat. Donec consectetur malesuada consequat. Vestibulum est diam, sagittis in vehicula tempor, euismod ac ex. Nam in purus aliquet, ultricies ante at, tempus arcu. Praesent at orci accumsan, tincidunt leo eget, rhoncus nunc. Aenean eget fermentum justo. + + Nullam tincidunt tempor velit, eu commodo ipsum rhoncus sagittis. Nunc vel tortor nec ante pulvinar sagittis. Nullam eget sagittis orci. Nunc tristique nibh eu lacinia finibus. Donec eu volutpat nisi, eget fermentum quam. Aenean ut interdum dolor. Nunc nibh eros, aliquet eget augue tincidunt, congue tincidunt nisl. + + + Cras bibendum varius iaculis. In et rhoncus tortor. Nullam ac malesuada urna, eu gravida ante. Nam dictum consectetur leo. Quisque sem orci, auctor at ornare vulputate, maximus in enim. In in libero ac lorem tristique vulputate a vitae risus. Fusce vitae rhoncus lectus, quis lobortis tortor. Sed suscipit auctor lorem, eget finibus leo elementum et. Sed lobortis felis lectus, quis malesuada lacus sodales sed. Nulla vitae turpis id tellus convallis vulputate sed eu metus. + + + + - + - - + diff --git a/src/Wpf.Ui.Gallery/Controls/TypographyControl.cs b/src/Wpf.Ui.Gallery/Controls/TypographyControl.cs new file mode 100644 index 000000000..6bee55e95 --- /dev/null +++ b/src/Wpf.Ui.Gallery/Controls/TypographyControl.cs @@ -0,0 +1,65 @@ +using System.Windows; +using System.Windows.Controls; + +namespace Wpf.Ui.Gallery.Controls; + +public class TypographyControl : Control +{ + public static readonly DependencyProperty ExampleProperty = + DependencyProperty.Register(nameof(Example), + typeof(string), typeof(TypographyControl), new PropertyMetadata(string.Empty)); + + public static readonly DependencyProperty ExampleFontTypographyProperty = + DependencyProperty.Register(nameof(ExampleFontTypography), + typeof(FontTypography), typeof(TypographyControl), + new PropertyMetadata(FontTypography.Body, + static (o, args) => + ((TypographyControl)o).OnExampleFontTypographyChanged((FontTypography)args.NewValue))); + + public static readonly DependencyProperty VariableFontProperty = + DependencyProperty.Register(nameof(VariableFont), + typeof(string), typeof(TypographyControl), new PropertyMetadata(string.Empty)); + + public static readonly DependencyProperty SizeLinHeightProperty = + DependencyProperty.Register(nameof(SizeLinHeight), + typeof(string), typeof(TypographyControl), new PropertyMetadata(string.Empty)); + + public static readonly DependencyProperty FontTypographyStyleProperty = + DependencyProperty.Register(nameof(FontTypographyStyle), + typeof(string), typeof(TypographyControl), new PropertyMetadata(FontTypography.Body.ToString())); + + public string Example + { + get => (string)GetValue(ExampleProperty); + set => SetValue(ExampleProperty, value); + } + + public FontTypography ExampleFontTypography + { + get => (FontTypography)GetValue(ExampleFontTypographyProperty); + set => SetValue(ExampleFontTypographyProperty, value); + } + + public string VariableFont + { + get => (string)GetValue(VariableFontProperty); + set => SetValue(VariableFontProperty, value); + } + + public string SizeLinHeight + { + get => (string)GetValue(VariableFontProperty); + set => SetValue(SizeLinHeightProperty, value); + } + + public string FontTypographyStyle + { + get => (string)GetValue(FontTypographyStyleProperty); + set => SetValue(FontTypographyStyleProperty, value); + } + + private void OnExampleFontTypographyChanged(FontTypography fontTypography) + { + FontTypographyStyle = fontTypography.ToString(); + } +} diff --git a/src/Wpf.Ui.Gallery/Controls/TypographyControl.xaml b/src/Wpf.Ui.Gallery/Controls/TypographyControl.xaml new file mode 100644 index 000000000..a398bd240 --- /dev/null +++ b/src/Wpf.Ui.Gallery/Controls/TypographyControl.xaml @@ -0,0 +1,57 @@ + + + + + diff --git a/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/ContentDialogViewModel.cs b/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/ContentDialogViewModel.cs index 5441d0c25..f53c0a47f 100644 --- a/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/ContentDialogViewModel.cs +++ b/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/ContentDialogViewModel.cs @@ -3,11 +3,8 @@ // Copyright (C) Leszek Pomianowski and WPF UI Contributors. // All Rights Reserved. -using System.Windows; -using Wpf.Ui.Controls; using Wpf.Ui.Controls.ContentDialogControl; using Wpf.Ui.Gallery.Controls; -using Wpf.Ui.Gallery.Views.Windows; namespace Wpf.Ui.Gallery.ViewModels.Pages.DialogsAndFlyouts; @@ -26,15 +23,14 @@ public ContentDialogViewModel(IContentDialogService contentDialogService) [RelayCommand] private async Task OnShowDialog(object content) { - var dialog = _contentDialogService.CreateDialog(); - dialog.Title = "Save your work?"; - dialog.Content = content; - dialog.PrimaryButtonText = "Save"; - dialog.SecondaryButtonText = "Don't Save"; - dialog.CloseButtonText = "Cancel"; - dialog.DefaultButton = ContentDialogButton.Primary; - - var result = await dialog.ShowAsync(); + var result = await _contentDialogService.ShowSimpleDialogAsync(new SimpleContentDialogCreateOptions() + { + Title = "Save your work?", + Content = content, + PrimaryButtonText = "Save", + SecondaryButtonText = "Don't Save", + CloseButtonText = "Cancel", + }); DialogResultText = result switch { diff --git a/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/SnackbarViewModel.cs b/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/SnackbarViewModel.cs index d9b8b694c..aa76e0571 100644 --- a/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/SnackbarViewModel.cs +++ b/src/Wpf.Ui.Gallery/ViewModels/Pages/DialogsAndFlyouts/SnackbarViewModel.cs @@ -3,23 +3,23 @@ // Copyright (C) Leszek Pomianowski and WPF UI Contributors. // All Rights Reserved. -using CommunityToolkit.Mvvm.ComponentModel; -using CommunityToolkit.Mvvm.Input; -using Wpf.Ui.Contracts; using Wpf.Ui.Controls; using Wpf.Ui.Controls.IconElements; -using SymbolIcon = Wpf.Ui.Controls.IconElements.SymbolIcon; namespace Wpf.Ui.Gallery.ViewModels.Pages.DialogsAndFlyouts; public partial class SnackbarViewModel : ObservableObject { - private readonly ISnackbarService _snackbarService; + public SnackbarViewModel(ISnackbarService snackbarService) + { + _snackbarService = snackbarService; + } + private readonly ISnackbarService _snackbarService; private ControlAppearance _snackbarAppearance = ControlAppearance.Secondary; [ObservableProperty] - private int _snackbarTimeout = 2000; + private int _snackbarTimeout = 2; private int _snackbarAppearanceComboBoxSelectedIndex = 1; @@ -33,16 +33,11 @@ public int SnackbarAppearanceComboBoxSelectedIndex } } - public SnackbarViewModel(ISnackbarService snackbarService) - { - _snackbarService = snackbarService; - } - [RelayCommand] private void OnOpenSnackbar(object sender) { - _snackbarService.Timeout = SnackbarTimeout; - _snackbarService.Show("Don't Blame Yourself.", "No Witcher's Ever Died In His Bed.", new SymbolIcon(SymbolRegular.Fluent24), _snackbarAppearance); + _snackbarService.Show("Don't Blame Yourself.", "No Witcher's Ever Died In His Bed.", _snackbarAppearance, + new SymbolIcon(SymbolRegular.Fluent24), TimeSpan.FromSeconds(SnackbarTimeout)); } private void UpdateSnackbarAppearance(int appearanceIndex) diff --git a/src/Wpf.Ui.Gallery/ViewModels/Pages/Icons/IconsViewModel.cs b/src/Wpf.Ui.Gallery/ViewModels/Pages/Icons/IconsViewModel.cs index 8c38fdb57..693b2ee3c 100644 --- a/src/Wpf.Ui.Gallery/ViewModels/Pages/Icons/IconsViewModel.cs +++ b/src/Wpf.Ui.Gallery/ViewModels/Pages/Icons/IconsViewModel.cs @@ -125,7 +125,7 @@ private void UpdateSymbolData() var selectedSymbol = IconsCollection.FirstOrDefault(sym => sym.Id == _selectedIconId); SelectedSymbol = selectedSymbol.Icon; - SelectedSymbolCharacter = "\\u" + selectedSymbol.Code; + SelectedSymbolCharacter = "&#x" + selectedSymbol.Code; SelectedSymbolName = selectedSymbol.Name; CodeBlock = $""; } diff --git a/src/Wpf.Ui.Gallery/ViewModels/Windows/MainWindowViewModel.cs b/src/Wpf.Ui.Gallery/ViewModels/Windows/MainWindowViewModel.cs index 9329b1732..1b18e32ab 100644 --- a/src/Wpf.Ui.Gallery/ViewModels/Windows/MainWindowViewModel.cs +++ b/src/Wpf.Ui.Gallery/ViewModels/Windows/MainWindowViewModel.cs @@ -11,6 +11,7 @@ using Wpf.Ui.Gallery.Views.Pages.BasicInput; using Wpf.Ui.Gallery.Views.Pages.Collections; using Wpf.Ui.Gallery.Views.Pages.DateAndTime; +using Wpf.Ui.Gallery.Views.Pages.DesignGuidance; using Wpf.Ui.Gallery.Views.Pages.DialogsAndFlyouts; using Wpf.Ui.Gallery.Views.Pages.Icons; using Wpf.Ui.Gallery.Views.Pages.Layout; @@ -43,9 +44,18 @@ public MainWindowViewModel(IServiceProvider serviceProvider) _menuItems = new ObservableCollection { new NavigationViewItem("Home", SymbolRegular.Home24, typeof(DashboardPage)), + new NavigationViewItem() + { + Content = "Design guidance", + Icon = new SymbolIcon { Symbol = SymbolRegular.DesignIdeas24 }, + MenuItems = new object[] + { + new NavigationViewItem("Typography", SymbolRegular.TextFont24, typeof(TypographyPage)), + } + }, new NavigationViewItem("All Controls", SymbolRegular.List24, typeof(AllControlsPage)), new NavigationViewItemSeparator(), - new NavigationViewItem {Content = "Basic input", Icon = new SymbolIcon { Symbol = SymbolRegular.CheckboxChecked24 }, TargetPageType = typeof(BasicInputPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Basic input", Icon = new SymbolIcon { Symbol = SymbolRegular.CheckboxChecked24 }, TargetPageType = typeof(BasicInputPage), MenuItems = new object[] { new NavigationViewItem { Content = "Anchor", TargetPageType = typeof(AnchorPage) }, new NavigationViewItem { Content = "Button", TargetPageType = typeof(ButtonPage) }, @@ -59,7 +69,7 @@ public MainWindowViewModel(IServiceProvider serviceProvider) new NavigationViewItem { Content = "ThumbRate", TargetPageType = typeof(ThumbRatePage) }, new NavigationViewItem { Content = "Slider", TargetPageType = typeof(SliderPage) }, }}, - new NavigationViewItem {Content = "Collections", Icon = new SymbolIcon { Symbol = SymbolRegular.Table24 }, TargetPageType = typeof(CollectionsPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Collections", Icon = new SymbolIcon { Symbol = SymbolRegular.Table24 }, TargetPageType = typeof(CollectionsPage), MenuItems = new object[] { new NavigationViewItem { Content = "DataGrid", TargetPageType = typeof(DataGridPage) }, new NavigationViewItem { Content = "ListBox", TargetPageType = typeof(ListBoxPage) }, @@ -69,12 +79,12 @@ public MainWindowViewModel(IServiceProvider serviceProvider) new NavigationViewItem { Content = "TreeList", TargetPageType = typeof(TreeListPage) }, #endif }}, - new NavigationViewItem {Content = "Date and Time", Icon = new SymbolIcon { Symbol = SymbolRegular.CalendarClock24 }, TargetPageType = typeof(DateAndTimePage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Date and Time", Icon = new SymbolIcon { Symbol = SymbolRegular.CalendarClock24 }, TargetPageType = typeof(DateAndTimePage), MenuItems = new object[] { new NavigationViewItem { Content = "Calendar", TargetPageType = typeof(CalendarPage) }, new NavigationViewItem { Content = "DatePicker", TargetPageType = typeof(DatePickerPage) }, }}, - new NavigationViewItem {Content = "Dialogs and Flyouts", Icon = new SymbolIcon { Symbol = SymbolRegular.Chat24 }, TargetPageType = typeof(DialogsAndFlyoutsPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Dialogs and Flyouts", Icon = new SymbolIcon { Symbol = SymbolRegular.Chat24 }, TargetPageType = typeof(DialogsAndFlyoutsPage), MenuItems = new object[] { new NavigationViewItem { Content = "Snackbar", TargetPageType = typeof(SnackbarPage) }, new NavigationViewItem { Content = "ContentDialog", TargetPageType = typeof(ContentDialogPage) }, @@ -82,19 +92,19 @@ public MainWindowViewModel(IServiceProvider serviceProvider) new NavigationViewItem { Content = "MessageBox", TargetPageType = typeof(MessageBoxPage) }, }}, #if DEBUG - new NavigationViewItem { Content = "Layout", Icon = new SymbolIcon { Symbol = SymbolRegular.News24}, TargetPageType = typeof(LayoutPage), MenuItems = new ObservableCollection() + new NavigationViewItem { Content = "Layout", Icon = new SymbolIcon { Symbol = SymbolRegular.News24}, TargetPageType = typeof(LayoutPage), MenuItems = new object[] { new NavigationViewItem { Content = "Expander", TargetPageType = typeof(ExpanderPage) }, }}, #endif - new NavigationViewItem {Content = "Media", Icon = new SymbolIcon { Symbol = SymbolRegular.PlayCircle24 }, TargetPageType = typeof(MediaPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Media", Icon = new SymbolIcon { Symbol = SymbolRegular.PlayCircle24 }, TargetPageType = typeof(MediaPage), MenuItems = new object[] { new NavigationViewItem { Content = "Image", TargetPageType = typeof(ImagePage) }, new NavigationViewItem { Content = "Canvas", TargetPageType = typeof(CanvasPage) }, new NavigationViewItem { Content = "WebView", TargetPageType = typeof(WebViewPage) }, new NavigationViewItem { Content = "WebBrowser", TargetPageType = typeof(WebBrowserPage) }, }}, - new NavigationViewItem {Content = "Navigation", Icon = new SymbolIcon { Symbol = SymbolRegular.Navigation24 }, TargetPageType = typeof(NavigationPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Navigation", Icon = new SymbolIcon { Symbol = SymbolRegular.Navigation24 }, TargetPageType = typeof(NavigationPage), MenuItems = new object[] { new NavigationViewItem { Content = "BreadcrumbBar", TargetPageType = typeof(BreadcrumbBarPage) }, new NavigationViewItem { Content = "NavigationView", TargetPageType = typeof(NavigationViewPage) }, @@ -102,14 +112,14 @@ public MainWindowViewModel(IServiceProvider serviceProvider) new NavigationViewItem { Content = "Multilevel navigation", TargetPageType = typeof(MultilevelNavigationPage) }, new NavigationViewItem { Content = "TabControl", TargetPageType = typeof(TabControlPage) }, }}, - new NavigationViewItem {Content = "Status and Info", Icon = new SymbolIcon { Symbol = SymbolRegular.ChatBubblesQuestion24 }, TargetPageType = typeof(StatusAndInfoPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Status and Info", Icon = new SymbolIcon { Symbol = SymbolRegular.ChatBubblesQuestion24 }, TargetPageType = typeof(StatusAndInfoPage), MenuItems = new object[] { new NavigationViewItem { Content = "InfoBar", TargetPageType = typeof(InfoBarPage) }, new NavigationViewItem { Content = "ProgressBar", TargetPageType = typeof(ProgressBarPage) }, new NavigationViewItem { Content = "ProgressRing", TargetPageType = typeof(ProgressRingPage) }, new NavigationViewItem { Content = "ToolTip", TargetPageType = typeof(ToolTipPage) }, }}, - new NavigationViewItem {Content = "Text", Icon = new SymbolIcon { Symbol = SymbolRegular.DrawText24 }, TargetPageType = typeof(TextPage), MenuItems = new ObservableCollection + new NavigationViewItem {Content = "Text", Icon = new SymbolIcon { Symbol = SymbolRegular.DrawText24 }, TargetPageType = typeof(TextPage), MenuItems = new object[] { new NavigationViewItem { Content = "AutoSuggestBox", TargetPageType = typeof(AutoSuggestBoxPage) }, new NavigationViewItem { Content = "NumberBox", TargetPageType = typeof(NumberBoxPage) }, @@ -119,7 +129,7 @@ public MainWindowViewModel(IServiceProvider serviceProvider) new NavigationViewItem { Content = "TextBlock", TargetPageType = typeof(TextBlockPage) }, new NavigationViewItem { Content = "TextBox", TargetPageType = typeof(TextBoxPage) }, }}, - new NavigationViewItem("Icons", SymbolRegular.Fluent24, typeof(IconsPage), new ObservableCollection + new NavigationViewItem("Icons", SymbolRegular.Fluent24, typeof(IconsPage), new object[] { new NavigationViewItem("SymbolIcon", typeof(SymbolIconPage)), new NavigationViewItem("SymbolIcon", typeof(FontIconPage)) diff --git a/src/Wpf.Ui.Gallery/Views/Pages/AllControlsPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/AllControlsPage.xaml index 6890fddd0..92eda7bd3 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/AllControlsPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/AllControlsPage.xaml @@ -17,11 +17,5 @@ Foreground="{DynamicResource TextFillColorPrimaryBrush}" mc:Ignorable="d"> - - - + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/AnchorPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/AnchorPage.xaml index 66057fc10..f88db88c7 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/AnchorPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/AnchorPage.xaml @@ -23,43 +23,40 @@ - - - - - - + + + + - - - - - - - - - - - + + + + + + + + + - - - + + + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml index 3c17cdffd..5ad5c6d8c 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml @@ -18,10 +18,8 @@ Foreground="{DynamicResource TextFillColorPrimaryBrush}" mc:Ignorable="d"> - - - + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/ButtonPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/ButtonPage.xaml index 7c8813f7b..4495b6332 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/ButtonPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/ButtonPage.xaml @@ -23,81 +23,80 @@ - - - - - - - - - - - - + + + + - - - - - - - diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Icons/SymbolIconPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Icons/SymbolIconPage.xaml index b89d034a4..c1d22e02f 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Icons/SymbolIconPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Icons/SymbolIconPage.xaml @@ -23,45 +23,42 @@ - - - - - - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Media/CanvasPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Media/CanvasPage.xaml index 1b3ada983..7119fd89f 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Media/CanvasPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Media/CanvasPage.xaml @@ -24,49 +24,46 @@ - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - <Viewbox Width="200" Height="200" >\n - \t<Canvas Width="47" Height="123">\n - \t\t<Path Data="M0,19H18V84h29v15H0V19Z" Fill="White" />\n - \t\t<Path Data="M46,80H29V15H0V0H46V80Z" Fill="White" />\n - \t</Canvas>\n - </Viewbox> - - - - - - + + + + + + + + + + + + + + + + + + + + <Viewbox Width="200" Height="200" >\n + \t<Canvas Width="47" Height="123">\n + \t\t<Path Data="M0,19H18V84h29v15H0V19Z" Fill="White" />\n + \t\t<Path Data="M46,80H29V15H0V0H46V80Z" Fill="White" />\n + \t</Canvas>\n + </Viewbox> + + + + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Media/ImagePage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Media/ImagePage.xaml index 887db0bfb..fb1623592 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Media/ImagePage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Media/ImagePage.xaml @@ -23,52 +23,49 @@ - - - - - - + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml index 03bba5bc3..65f1261ee 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml @@ -18,10 +18,8 @@ Foreground="{DynamicResource TextFillColorPrimaryBrush}" mc:Ignorable="d"> - - - + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Media/WebBrowserPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Media/WebBrowserPage.xaml index a5654080f..f4cbe42cb 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Media/WebBrowserPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Media/WebBrowserPage.xaml @@ -23,40 +23,38 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - + + + + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Media/WebViewPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Media/WebViewPage.xaml index b11743e1b..b9102fece 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Media/WebViewPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Media/WebViewPage.xaml @@ -24,38 +24,35 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - + + + diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Navigation/BreadcrumbBarPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/Navigation/BreadcrumbBarPage.xaml index 375354232..07bdb4590 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Navigation/BreadcrumbBarPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/Navigation/BreadcrumbBarPage.xaml @@ -50,68 +50,63 @@ - - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - - - - -