From ce3dd40fd927d0d360639ee3fc0f028e2af1ff66 Mon Sep 17 00:00:00 2001 From: Nick Romano Date: Sun, 31 May 2020 12:39:16 -0700 Subject: [PATCH] GitHub migration (#4) --- .github/workflows/pr.yml | 55 ++ .github/workflows/publish.yml | 150 ++++ README.md | 43 +- android/README.md | 2 +- android/build.gradle | 4 +- android/library/gradle.properties | 2 +- android/library/publish.gradle | 21 +- android/sample-showcase/build.gradle | 2 +- .../src/main/res/raw/keep.xml | 2 +- azure-pipelines.yml | 59 -- generate_icons_md.py | 43 + icons.md | 760 ++++++++++++++++++ importer/rtl.txt | 70 +- ios/FluentIcons.podspec | 6 +- ios/README.md | 6 +- pipelines/build-android.yml | 35 - pipelines/build-ios.yml | 24 - pipelines/build-pr.yml | 19 - pipelines/publish-android-demo.yml | 49 -- pipelines/publish-android-lib.yml | 38 - pipelines/publish-ios-lib.yml | 50 -- pipelines/tag-release.yml | 62 -- 22 files changed, 1107 insertions(+), 395 deletions(-) create mode 100644 .github/workflows/pr.yml create mode 100644 .github/workflows/publish.yml delete mode 100644 azure-pipelines.yml create mode 100644 generate_icons_md.py create mode 100644 icons.md delete mode 100644 pipelines/build-android.yml delete mode 100644 pipelines/build-ios.yml delete mode 100644 pipelines/build-pr.yml delete mode 100644 pipelines/publish-android-demo.yml delete mode 100644 pipelines/publish-android-lib.yml delete mode 100644 pipelines/publish-ios-lib.yml delete mode 100644 pipelines/tag-release.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000000..bf0049c0e9 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,55 @@ +name: Pull request validation + +on: pull_request + +jobs: + build-ios: + name: Build iOS library + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Use Node 11 + uses: actions/setup-node@v1 + with: + node-version: 11.x + + - run: npm install + working-directory: importer + + - name: Run generate script + run: npm run deploy:ios + working-directory: importer + + build-android: + name: Build Android library + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Use Node 11 + uses: actions/setup-node@v1 + with: + node-version: 11.x + + - run: npm install + working-directory: importer + + - name: Run generate script + run: npm run deploy:android + working-directory: importer + + - name: Setup Java + uses: actions/setup-java@v1 + with: + java-version: 11 + + # https://github.com/marketplace/actions/gradle-command + - name: Build Android library + uses: eskatos/gradle-command-action@v1 + with: + arguments: assembleRelease + build-root-directory: android + wrapper-directory: android diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000000..3a03a504cf --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,150 @@ +name: Publish library + +on: + push: + branches: [ master ] + +env: + LIBRARY_VERSION: 1.1.${{ github.run_number }} + +jobs: + publish-library: + name: Publish mobile libraries + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Bump version patch + run: | + grep -E "[0-9]+\.[0-9]+\.[0-9]+" FluentIcons.podspec | + python3 -c """ + import sys + current_version = sys.stdin.read().strip().split(\"'\")[1] + major, minor, patch = current_version.split('.') + print(f'::set-env name=NEW_VERSION::{major}.{minor}.{int(patch) + 1}') + """ + + - name: Use Node 11 + uses: actions/setup-node@v1 + with: + node-version: 11.x + + - run: npm install + working-directory: importer + + ## iOS + - name: Run iOS generate script + run: npm run deploy:ios + working-directory: importer + + ## Android + - name: Run Android generate script + run: npm run deploy:android + working-directory: importer + + - name: Setup Java + uses: actions/setup-java@v1 + with: + java-version: 8 + + - name: Build and publish Android library + uses: eskatos/gradle-command-action@v1 + with: + arguments: bintrayUpload -DversionName=${{ env.NEW_VERSION }} -DbintrayUser=${{ secrets.BINTRAY_USER }} -DbintrayKey=${{ secrets.BINTRAY_KEY }} + build-root-directory: android + wrapper-directory: android + + ## Publish + # Needs to be "-E" instead of "-r" on macOS + - name: Replace version numbers in README.md + run: | + sed -i.bk -r "s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" README.md + rm README.md.bk + + # Needs to be "-E" instead of "-r" on macOS + - name: Replace version numbers in ios/README.md + run: | + sed -i.bk -r "s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" ios/README.md + rm ios/README.md.bk + + # Needs to be "-E" instead of "-r" on macOS + - name: Replace version number in Podspec + run: | + sed -i.bk -r "s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" ios/FluentIcons.podspec + rm ios/FluentIcons.podspec.bk + + - name: Update icon sheet + run: python3 generate_icons_md.py + + - name: Config git credentials + run: git config user.email "flubuild@microsoft.com" && git config user.name "Fluent Build System" + + - name: Commit version number change + run: | + git add -A + git commit -m "Release $NEW_VERSION" + + - name: Tag release + run: git tag "$NEW_VERSION" + + - name: Push release + run: | + REMOTE_REPO="https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" + git push $REMOTE_REPO HEAD:master --follow-tags --tags + + publish-android-demo: + name: Publish Android demo app + runs-on: ubuntu-latest + needs: publish-library + + steps: + - uses: actions/checkout@v2 + + - name: Bump version patch + run: | + grep -E "[0-9]+\.[0-9]+\.[0-9]+" FluentIcons.podspec | + python3 -c """ + import sys + current_version = sys.stdin.read().strip().split(\"'\")[1] + major, minor, patch = current_version.split('.') + print(f'::set-env name=NEW_VERSION::{major}.{minor}.{int(patch) + 1}') + """ + + - name: Use Node 11 + uses: actions/setup-node@v1 + with: + node-version: 11.x + + - run: npm install + working-directory: importer + + - name: Run generate script + run: npm run deploy:android + working-directory: importer + + - name: Setup Java + uses: actions/setup-java@v1 + with: + java-version: 8 + + - name: Restore release keystore + run: | + echo "${{ secrets.ANDROID_KEYSTORE }}" > release.keystore.asc + gpg -d --passphrase "${{ secrets.ANDROID_KEYSTORE_PASSWORD }}" --batch release.keystore.asc > release.keystore + + - name: Build Android demo app + uses: eskatos/gradle-command-action@v1 + with: + arguments: ':sample-showcase:assembleRelease -DversionName=${{ env.NEW_VERSION }} -DversionCode=${{ github.run_number }} -Pandroid.injected.signing.store.file=/home/runner/work/fluent-system-icons/fluent-system-icons/release.keystore -Pandroid.injected.signing.store.password=${{ secrets.ANDROID_KEYSTORE_PASSWORD }} -Pandroid.injected.signing.key.alias=${{ secrets.ANDROID_KEYSTORE_ALIAS }} -Pandroid.injected.signing.key.password=${{ secrets.ANDROID_KEYSTORE_PASSWORD }}' + build-root-directory: android + wrapper-directory: android + + - name: Publish apk to App Center + uses: wzieba/AppCenter-Github-Action@v1.0.0 + with: + appName: ${{ secrets.APP_CENTER_DEMO_APP_NAME }} + token: ${{ secrets.APP_CENTER_TOKEN }} + group: Public + file: android/sample-showcase/build/outputs/apk/release/sample-showcase-release.apk + releaseNotes: Please enjoy this latest version(${{ env.NEW_VERSION }}) of Fluent System Icons Demo. diff --git a/README.md b/README.md index 16acb25c85..ac2e0bdee4 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,27 @@ # Fluent System Icons + +![CI](https://github.com/microsoft/fluent-system-icons/workflows/CI/badge.svg) + Fluent System Icons is a set of mobile platform icons from Microsoft. ![fluent system icons](art/readme-asset.png) +## Icon List + +[View the full list of icons](icons.md) + ## Installation ### Android -Add the `microsoftdesign` repository to your project's top level `build.gradle`: +The library is published via JCenter, please ensure that the `jcenter()` repository has been added to the root `build.gradle` file: ```groovy repositories { - maven { - name 'vsts-maven-microsoftdesign' - url 'https://pkgs.dev.azure.com/microsoftdesign/951975d5-69cc-4771-9d98-92a4b1a82b2b/_packaging/fluent-icons/maven/v1' - credentials { - username = [Your VSTS username] - password = [Your VSTS access token] - } - } ... + jcenter() } ``` Include the following dependency in your project's `build.gradle` ```groovy -implementation 'com.microsoft.design:fluent-icons:1.0.226' +implementation 'com.microsoft.design:fluent-system-icons:1.1.2' ``` For library docs, see [android/README.md](android/README.md). @@ -30,13 +30,13 @@ For library docs, see [android/README.md](android/README.md). #### Cocoapods ```ruby -pod "FluentIcons", git: "https://microsoftdesign@dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons", tag: "1.0.226" +pod "FluentIcons", git: "https://github.com/microsoft/fluent-system-icons.git", tag: "1.1.2" ``` #### Carthage ```bash -git "git@ssh.dev.azure.com:v3/microsoftdesign/Design%20System/fluent-mobile-icons" "1.0.226" +git "git@github.com:microsoft/fluent-system-icons.git" "1.1.2" ``` For library docs, see [ios/README.md](ios/README.md). @@ -65,20 +65,17 @@ npm run ### Build Pipeline -Our [build pipeline](https://dev.azure.com/microsoftdesign/Design%20System/_build?definitionId=94&_a=summary) runs `deploy:android` and `deploy:ios` to create the libraries. The build definitions are in `azure-pipelines.yml` and `pipelines`. +Our [build pipeline](https://github.com/microsoft/fluent-system-icons/actions) runs `deploy:android` and `deploy:ios` to create the libraries. The build definitions are located in `.github/workflows/`. ## Demo apps -You can download the demo apps from AppCenter or build them following the steps below. - -### Android ([Download](https://install.appcenter.ms/orgs/Fluent-Design-Mobile/apps/Fluent-Mobile-Icons-Demo)) -1. Open the [android](android) directory in Android Studio -2. Select the `sample-showcase` in the build configuration dropdown -3. Click run +You can build and run the demo apps following the steps below. -### Mac ([Download](https://install.appcenter.ms/orgs/Fluent-Design-Mobile/apps/Fluent-Mac-App)) -1. `open ios/FluentIcons.xcworkspace/` -2. Product > Run +### Android +1. Follow the **Importer** section above and run the command `npm run deploy:android` +2. Open the [android](android) directory in Android Studio +3. Select the `sample-showcase` in the build configuration dropdown +4. Click run ## Contact Please feel free to reach out to the following points of contact with questions or requests. @@ -87,4 +84,4 @@ Please feel free to reach out to the following points of contact with questions * [Will Hou](mailto:wih@microsoft.com) - Android ## Code of Conduct -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct) or contact opencode@microsoft.com with any additional questions or comments. \ No newline at end of file +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct) or contact opencode@microsoft.com with any additional questions or comments. diff --git a/android/README.md b/android/README.md index 9f58febb12..a47f6e366a 100644 --- a/android/README.md +++ b/android/README.md @@ -123,4 +123,4 @@ buildTypes { } } ``` -~~If you prefer to only exclude the Fluent icons, please save the [keep.xml](android/sample-shrinkresources/src/main/res/raw/keep.xml) file at your project's `res/raw` directory. Please see this [Android developer guide](https://developer.android.com/studio/build/shrink-code#shrink-resources) for details about shrinking resources~~ \ No newline at end of file +If you prefer to only exclude the Fluent icons, please save the [keep.xml](sample-shrinkresources/src/main/res/raw/keep.xml) file at your project's `res/raw` directory. Please see this [Android developer guide](https://developer.android.com/studio/build/shrink-code#shrink-resources) for details about shrinking resources. \ No newline at end of file diff --git a/android/build.gradle b/android/build.gradle index 08c7ee2ad7..88b997446f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,8 +1,9 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.50' + ext.kotlin_version = '1.3.71' ext.appCenterSdkVersion = '2.5.1' + ext.bintray_version = '1.8.5' repositories { google() jcenter() @@ -11,6 +12,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.5.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintray_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } diff --git a/android/library/gradle.properties b/android/library/gradle.properties index afb90c4aa2..1f2d2e8c2d 100644 --- a/android/library/gradle.properties +++ b/android/library/gradle.properties @@ -1,3 +1,3 @@ POM_GROUP_ID=com.microsoft.design -POM_ARTIFACT_ID=fluent-icons +POM_ARTIFACT_ID=fluent-system-icons VERSION_NAME=1.0.0 \ No newline at end of file diff --git a/android/library/publish.gradle b/android/library/publish.gradle index 5dba08e36c..699670e2d8 100644 --- a/android/library/publish.gradle +++ b/android/library/publish.gradle @@ -1,4 +1,5 @@ apply plugin: 'maven-publish' +apply plugin: 'com.jfrog.bintray' project.afterEvaluate { publishing { @@ -7,18 +8,22 @@ project.afterEvaluate { groupId project.POM_GROUP_ID artifactId project.POM_ARTIFACT_ID version System.getProperty("versionName", project.VERSION_NAME + "-SNAPSHOT") - artifact bundleReleaseAar } } + } - repositories { - maven { - url 'https://pkgs.dev.azure.com/microsoftdesign/951975d5-69cc-4771-9d98-92a4b1a82b2b/_packaging/fluent-icons/maven/v1' - credentials { - username "microsoftdesign" - password System.getProperty("vstsAccessToken", "") - } + bintray { + user = System.getProperty('bintrayUser') + key = System.getProperty('bintrayKey') + publications = ['fluenticons'] + publish = true + pkg { + repo = 'fluent-design' + name = 'fluent-system-icons' + version { + name = System.getProperty("versionName", project.VERSION_NAME + "-SNAPSHOT") + vcsTag = System.getProperty("versionName", project.VERSION_NAME + "-SNAPSHOT") } } } diff --git a/android/sample-showcase/build.gradle b/android/sample-showcase/build.gradle index 310adc8c31..07d508bea2 100644 --- a/android/sample-showcase/build.gradle +++ b/android/sample-showcase/build.gradle @@ -10,7 +10,7 @@ android { applicationId "com.microsoft.fluent.mobile.icons.sample" minSdkVersion 21 targetSdkVersion 29 - versionCode Integer.parseInt(System.getProperty("versionCode", "1.0.1").substring(4)) + versionCode Integer.parseInt(System.getProperty("versionCode", "1")) versionName System.getProperty("versionName", "1.0.0") testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/android/sample-shrinkresources/src/main/res/raw/keep.xml b/android/sample-shrinkresources/src/main/res/raw/keep.xml index dedcfe15bb..772b1203e5 100644 --- a/android/sample-shrinkresources/src/main/res/raw/keep.xml +++ b/android/sample-shrinkresources/src/main/res/raw/keep.xml @@ -5,7 +5,7 @@ --> \n") + icons_md.write("# Icons\n") + icons_md.write("\n") + icons_md.write("|Name|Icon|iOS|Android|\n") + icons_md.write("|---|---|---|---|\n") + + for asset_dir in sorted(os.listdir("assets")): + if asset_dir == ".DS_Store": + continue + + largest_svg_icon_path = None + + ios_references = [] + android_references = [] + + pdf_dir = os.path.join("assets", asset_dir, "PDF") + for filename in sorted(os.listdir(pdf_dir)): + components = "_".join(filename.replace(".pdf", "").split("_")[2:]) + ios_references.append(f'`{to_camel_case(components)}`') + + svg_dir = os.path.join("assets", asset_dir, "SVG") + for filename in sorted(os.listdir(svg_dir)): + android_references.append(f'`{filename.replace(".svg", "")}`') + largest_svg_icon_path = filename + + icons_md.write( + f"|{asset_dir}" + f'|' + f'|{"
".join(ios_references)}' + f'|{"
".join(android_references)}|\n' + ) diff --git a/icons.md b/icons.md new file mode 100644 index 0000000000..bb7acf29ce --- /dev/null +++ b/icons.md @@ -0,0 +1,760 @@ + +# Icons + +|Name|Icon|iOS|Android| +|---|---|---|---| +|Access Time||`accessTime24Filled`
`accessTime24Regular`|`ic_fluent_access_time_24_filled`
`ic_fluent_access_time_24_regular`| +|Accessibility||`accessibility24Filled`
`accessibility24Regular`|`ic_fluent_accessibility_24_filled`
`ic_fluent_accessibility_24_regular`| +|Activity||`activity24Filled`
`activity24Regular`|`ic_fluent_activity_24_filled`
`ic_fluent_activity_24_regular`| +|Add||`add12Filled`
`add12Regular`
`add16Filled`
`add16Regular`
`add20Filled`
`add20Regular`
`add24Filled`
`add24Regular`
`add28Filled`
`add28Regular`|`ic_fluent_add_12_filled`
`ic_fluent_add_12_regular`
`ic_fluent_add_16_filled`
`ic_fluent_add_16_regular`
`ic_fluent_add_20_filled`
`ic_fluent_add_20_regular`
`ic_fluent_add_24_filled`
`ic_fluent_add_24_regular`
`ic_fluent_add_28_filled`
`ic_fluent_add_28_regular`| +|Add Circle||`addCircle20Filled`
`addCircle20Regular`
`addCircle24Filled`
`addCircle24Regular`
`addCircle28Filled`
`addCircle28Regular`|`ic_fluent_add_circle_20_filled`
`ic_fluent_add_circle_20_regular`
`ic_fluent_add_circle_24_filled`
`ic_fluent_add_circle_24_regular`
`ic_fluent_add_circle_28_filled`
`ic_fluent_add_circle_28_regular`| +|Address Book Number||`addressBookNumber24Filled`
`addressBookNumber24Regular`|`ic_fluent_address_book_number_24_filled`
`ic_fluent_address_book_number_24_regular`| +|Airplane||`airplane20Filled`
`airplane20Regular`
`airplane24Filled`
`airplane24Regular`|`ic_fluent_airplane_20_filled`
`ic_fluent_airplane_20_regular`
`ic_fluent_airplane_24_filled`
`ic_fluent_airplane_24_regular`| +|Alert||`alert20Filled`
`alert20Regular`
`alert24Filled`
`alert24Light`
`alert24Regular`
`alert28Filled`
`alert28Regular`|`ic_fluent_alert_20_filled`
`ic_fluent_alert_20_regular`
`ic_fluent_alert_24_filled`
`ic_fluent_alert_24_regular`
`ic_fluent_alert_28_filled`
`ic_fluent_alert_28_regular`| +|Alert Off||`alertOff20Filled`
`alertOff20Regular`
`alertOff24Filled`
`alertOff24Regular`|`ic_fluent_alert_off_20_filled`
`ic_fluent_alert_off_20_regular`
`ic_fluent_alert_off_24_filled`
`ic_fluent_alert_off_24_regular`| +|Alert On||`alertOn24Filled`
`alertOn24Regular`|`ic_fluent_alert_on_24_filled`
`ic_fluent_alert_on_24_regular`| +|Alert Snooze||`alertSnooze24Filled`
`alertSnooze24Regular`|`ic_fluent_alert_snooze_24_filled`
`ic_fluent_alert_snooze_24_regular`| +|Alert Urgent||`alertUrgent20Filled`
`alertUrgent20Regular`
`alertUrgent24Filled`
`alertUrgent24Regular`|`ic_fluent_alert_urgent_20_filled`
`ic_fluent_alert_urgent_20_regular`
`ic_fluent_alert_urgent_24_filled`
`ic_fluent_alert_urgent_24_regular`| +|App Folder||`appFolder24Filled`
`appFolder24Regular`|`ic_fluent_app_folder_24_filled`
`ic_fluent_app_folder_24_regular`| +|App Generic||`appGeneric24Filled`
`appGeneric24Regular`|`ic_fluent_app_generic_24_filled`
`ic_fluent_app_generic_24_regular`| +|App Recent||`appRecent24Filled`
`appRecent24Regular`|`ic_fluent_app_recent_24_filled`
`ic_fluent_app_recent_24_regular`| +|App Span||`appSpan24Filled`
`appSpan24Regular`|`ic_fluent_app_span_24_filled`
`ic_fluent_app_span_24_regular`| +|App Store||`appStore24Filled`
`appStore24Regular`|`ic_fluent_app_store_24_filled`
`ic_fluent_app_store_24_regular`| +|App Title||`appTitle24Filled`
`appTitle24Regular`|`ic_fluent_app_title_24_filled`
`ic_fluent_app_title_24_regular`| +|App Unspan||`appUnspan24Filled`
`appUnspan24Regular`|`ic_fluent_app_unspan_24_filled`
`ic_fluent_app_unspan_24_regular`| +|Apps||`apps16Filled`
`apps16Regular`
`apps20Filled`
`apps20Regular`
`apps24Filled`
`apps24Light`
`apps24Regular`
`apps28Filled`
`apps28Regular`|`ic_fluent_apps_16_filled`
`ic_fluent_apps_16_regular`
`ic_fluent_apps_20_filled`
`ic_fluent_apps_20_regular`
`ic_fluent_apps_24_filled`
`ic_fluent_apps_24_regular`
`ic_fluent_apps_28_filled`
`ic_fluent_apps_28_regular`| +|Apps Add In||`appsAddIn24Filled`
`appsAddIn24Regular`|`ic_fluent_apps_add_in_24_filled`
`ic_fluent_apps_add_in_24_regular`| +|Apps List||`appsList24Filled`
`appsList24Regular`|`ic_fluent_apps_list_24_filled`
`ic_fluent_apps_list_24_regular`| +|Archive||`archive20Filled`
`archive20Regular`
`archive24Filled`
`archive24Regular`
`archive28Filled`
`archive28Regular`
`archive48Filled`
`archive48Regular`|`ic_fluent_archive_20_filled`
`ic_fluent_archive_20_regular`
`ic_fluent_archive_24_filled`
`ic_fluent_archive_24_regular`
`ic_fluent_archive_28_filled`
`ic_fluent_archive_28_regular`
`ic_fluent_archive_48_filled`
`ic_fluent_archive_48_regular`| +|Arrow Clockwise||`arrowClockwise20Filled`
`arrowClockwise20Regular`
`arrowClockwise24Filled`
`arrowClockwise24Regular`|`ic_fluent_arrow_clockwise_20_filled`
`ic_fluent_arrow_clockwise_20_regular`
`ic_fluent_arrow_clockwise_24_filled`
`ic_fluent_arrow_clockwise_24_regular`| +|Arrow Counterclockwise||`arrowCounterclockwise20Filled`
`arrowCounterclockwise20Regular`
`arrowCounterclockwise24Filled`
`arrowCounterclockwise24Regular`|`ic_fluent_arrow_counterclockwise_20_filled`
`ic_fluent_arrow_counterclockwise_20_regular`
`ic_fluent_arrow_counterclockwise_24_filled`
`ic_fluent_arrow_counterclockwise_24_regular`| +|Arrow Curve Right||`arrowCurveRight24Filled`
`arrowCurveRight24Regular`|`ic_fluent_arrow_curve_right_24_filled`
`ic_fluent_arrow_curve_right_24_regular`| +|Arrow Down||`arrowDown20Filled`
`arrowDown20Regular`
`arrowDown24Filled`
`arrowDown24Light`
`arrowDown24Regular`
`arrowDown28Filled`
`arrowDown28Regular`|`ic_fluent_arrow_down_20_filled`
`ic_fluent_arrow_down_20_regular`
`ic_fluent_arrow_down_24_filled`
`ic_fluent_arrow_down_24_regular`
`ic_fluent_arrow_down_28_filled`
`ic_fluent_arrow_down_28_regular`| +|Arrow Down Left||`arrowDownLeft24Filled`
`arrowDownLeft24Light`
`arrowDownLeft24Regular`|`ic_fluent_arrow_down_left_24_filled`
`ic_fluent_arrow_down_left_24_regular`| +|Arrow Down Right Circle||`arrowDownRightCircle16Filled`
`arrowDownRightCircle16Regular`
`arrowDownRightCircle24Filled`
`arrowDownRightCircle24Regular`|`ic_fluent_arrow_down_right_circle_16_filled`
`ic_fluent_arrow_down_right_circle_16_regular`
`ic_fluent_arrow_down_right_circle_24_filled`
`ic_fluent_arrow_down_right_circle_24_regular`| +|Arrow Download||`arrowDownload16Filled`
`arrowDownload16Regular`
`arrowDownload20Filled`
`arrowDownload20Regular`
`arrowDownload24Filled`
`arrowDownload24Regular`
`arrowDownload48Filled`
`arrowDownload48Regular`|`ic_fluent_arrow_download_16_filled`
`ic_fluent_arrow_download_16_regular`
`ic_fluent_arrow_download_20_filled`
`ic_fluent_arrow_download_20_regular`
`ic_fluent_arrow_download_24_filled`
`ic_fluent_arrow_download_24_regular`
`ic_fluent_arrow_download_48_filled`
`ic_fluent_arrow_download_48_regular`| +|Arrow Enter||`arrowEnter24Filled`
`arrowEnter24Regular`|`ic_fluent_arrow_enter_24_filled`
`ic_fluent_arrow_enter_24_regular`| +|Arrow Expand||`arrowExpand24Filled`
`arrowExpand24Regular`|`ic_fluent_arrow_expand_24_filled`
`ic_fluent_arrow_expand_24_regular`| +|Arrow Export||`arrowExport20Filled`
`arrowExport20Regular`|`ic_fluent_arrow_export_20_filled`
`ic_fluent_arrow_export_20_regular`| +|Arrow Forward||`arrowForward16Filled`
`arrowForward16Regular`
`arrowForward20Filled`
`arrowForward20Regular`
`arrowForward24Filled`
`arrowForward24Regular`|`ic_fluent_arrow_forward_16_filled`
`ic_fluent_arrow_forward_16_regular`
`ic_fluent_arrow_forward_20_filled`
`ic_fluent_arrow_forward_20_regular`
`ic_fluent_arrow_forward_24_filled`
`ic_fluent_arrow_forward_24_regular`| +|Arrow Import||`arrowImport20Filled`
`arrowImport20Regular`
`arrowImport24Filled`
`arrowImport24Regular`|`ic_fluent_arrow_import_20_filled`
`ic_fluent_arrow_import_20_regular`
`ic_fluent_arrow_import_24_filled`
`ic_fluent_arrow_import_24_regular`| +|Arrow Left||`arrowLeft20Filled`
`arrowLeft20Regular`
`arrowLeft24Filled`
`arrowLeft24Light`
`arrowLeft24Regular`
`arrowLeft28Filled`
`arrowLeft28Regular`|`ic_fluent_arrow_left_20_filled`
`ic_fluent_arrow_left_20_regular`
`ic_fluent_arrow_left_24_filled`
`ic_fluent_arrow_left_24_regular`
`ic_fluent_arrow_left_28_filled`
`ic_fluent_arrow_left_28_regular`| +|Arrow Maximize||`arrowMaximize16Filled`
`arrowMaximize16Regular`
`arrowMaximize20Filled`
`arrowMaximize20Regular`
`arrowMaximize24Filled`
`arrowMaximize24Regular`
`arrowMaximize28Filled`
`arrowMaximize28Regular`|`ic_fluent_arrow_maximize_16_filled`
`ic_fluent_arrow_maximize_16_regular`
`ic_fluent_arrow_maximize_20_filled`
`ic_fluent_arrow_maximize_20_regular`
`ic_fluent_arrow_maximize_24_filled`
`ic_fluent_arrow_maximize_24_regular`
`ic_fluent_arrow_maximize_28_filled`
`ic_fluent_arrow_maximize_28_regular`| +|Arrow Minimize||`arrowMinimize16Filled`
`arrowMinimize16Regular`
`arrowMinimize20Filled`
`arrowMinimize20Regular`
`arrowMinimize24Filled`
`arrowMinimize24Regular`
`arrowMinimize28Filled`
`arrowMinimize28Regular`|`ic_fluent_arrow_minimize_16_filled`
`ic_fluent_arrow_minimize_16_regular`
`ic_fluent_arrow_minimize_20_filled`
`ic_fluent_arrow_minimize_20_regular`
`ic_fluent_arrow_minimize_24_filled`
`ic_fluent_arrow_minimize_24_regular`
`ic_fluent_arrow_minimize_28_filled`
`ic_fluent_arrow_minimize_28_regular`| +|Arrow Next||`arrowNext20Filled`
`arrowNext20Regular`
`arrowNext24Filled`
`arrowNext24Regular`|`ic_fluent_arrow_next_20_filled`
`ic_fluent_arrow_next_20_regular`
`ic_fluent_arrow_next_24_filled`
`ic_fluent_arrow_next_24_regular`| +|Arrow Previous||`arrowPrevious20Filled`
`arrowPrevious20Regular`
`arrowPrevious24Filled`
`arrowPrevious24Regular`|`ic_fluent_arrow_previous_20_filled`
`ic_fluent_arrow_previous_20_regular`
`ic_fluent_arrow_previous_24_filled`
`ic_fluent_arrow_previous_24_regular`| +|Arrow Redo||`arrowRedo20Filled`
`arrowRedo20Regular`
`arrowRedo24Filled`
`arrowRedo24Regular`|`ic_fluent_arrow_redo_20_filled`
`ic_fluent_arrow_redo_20_regular`
`ic_fluent_arrow_redo_24_filled`
`ic_fluent_arrow_redo_24_regular`| +|Arrow Repeat All||`arrowRepeatAll16Filled`
`arrowRepeatAll16Regular`
`arrowRepeatAll20Filled`
`arrowRepeatAll20Regular`
`arrowRepeatAll24Filled`
`arrowRepeatAll24Regular`|`ic_fluent_arrow_repeat_all_16_filled`
`ic_fluent_arrow_repeat_all_16_regular`
`ic_fluent_arrow_repeat_all_20_filled`
`ic_fluent_arrow_repeat_all_20_regular`
`ic_fluent_arrow_repeat_all_24_filled`
`ic_fluent_arrow_repeat_all_24_regular`| +|Arrow Repeat All Off||`arrowRepeatAllOff16Filled`
`arrowRepeatAllOff16Regular`
`arrowRepeatAllOff20Filled`
`arrowRepeatAllOff20Regular`
`arrowRepeatAllOff24Filled`
`arrowRepeatAllOff24Regular`|`ic_fluent_arrow_repeat_all_off_16_filled`
`ic_fluent_arrow_repeat_all_off_16_regular`
`ic_fluent_arrow_repeat_all_off_20_filled`
`ic_fluent_arrow_repeat_all_off_20_regular`
`ic_fluent_arrow_repeat_all_off_24_filled`
`ic_fluent_arrow_repeat_all_off_24_regular`| +|Arrow Reply||`arrowReply16Filled`
`arrowReply16Regular`
`arrowReply20Filled`
`arrowReply20Regular`
`arrowReply24Filled`
`arrowReply24Regular`
`arrowReply48Filled`
`arrowReply48Regular`|`ic_fluent_arrow_reply_16_filled`
`ic_fluent_arrow_reply_16_regular`
`ic_fluent_arrow_reply_20_filled`
`ic_fluent_arrow_reply_20_regular`
`ic_fluent_arrow_reply_24_filled`
`ic_fluent_arrow_reply_24_regular`
`ic_fluent_arrow_reply_48_filled`
`ic_fluent_arrow_reply_48_regular`| +|Arrow Reply All||`arrowReplyAll16Filled`
`arrowReplyAll16Regular`
`arrowReplyAll20Filled`
`arrowReplyAll20Regular`
`arrowReplyAll24Filled`
`arrowReplyAll24Regular`
`arrowReplyAll48Filled`
`arrowReplyAll48Regular`|`ic_fluent_arrow_reply_all_16_filled`
`ic_fluent_arrow_reply_all_16_regular`
`ic_fluent_arrow_reply_all_20_filled`
`ic_fluent_arrow_reply_all_20_regular`
`ic_fluent_arrow_reply_all_24_filled`
`ic_fluent_arrow_reply_all_24_regular`
`ic_fluent_arrow_reply_all_48_filled`
`ic_fluent_arrow_reply_all_48_regular`| +|Arrow Right||`arrowRight20Filled`
`arrowRight20Regular`
`arrowRight24Filled`
`arrowRight24Light`
`arrowRight24Regular`
`arrowRight28Filled`
`arrowRight28Regular`|`ic_fluent_arrow_right_20_filled`
`ic_fluent_arrow_right_20_regular`
`ic_fluent_arrow_right_24_filled`
`ic_fluent_arrow_right_24_regular`
`ic_fluent_arrow_right_28_filled`
`ic_fluent_arrow_right_28_regular`| +|Arrow Right Circle||`arrowRightCircle24Filled`
`arrowRightCircle24Regular`|`ic_fluent_arrow_right_circle_24_filled`
`ic_fluent_arrow_right_circle_24_regular`| +|Arrow Rotate Clockwise||`arrowRotateClockwise20Filled`
`arrowRotateClockwise20Regular`
`arrowRotateClockwise24Filled`
`arrowRotateClockwise24Regular`|`ic_fluent_arrow_rotate_clockwise_20_filled`
`ic_fluent_arrow_rotate_clockwise_20_regular`
`ic_fluent_arrow_rotate_clockwise_24_filled`
`ic_fluent_arrow_rotate_clockwise_24_regular`| +|Arrow Sort||`arrowSort20Filled`
`arrowSort20Regular`
`arrowSort24Filled`
`arrowSort24Regular`
`arrowSort28Filled`
`arrowSort28Regular`|`ic_fluent_arrow_sort_20_filled`
`ic_fluent_arrow_sort_20_regular`
`ic_fluent_arrow_sort_24_filled`
`ic_fluent_arrow_sort_24_regular`
`ic_fluent_arrow_sort_28_filled`
`ic_fluent_arrow_sort_28_regular`| +|Arrow Swap||`arrowSwap24Filled`
`arrowSwap24Regular`|`ic_fluent_arrow_swap_24_filled`
`ic_fluent_arrow_swap_24_regular`| +|Arrow Sync||`arrowSync20Filled`
`arrowSync20Regular`
`arrowSync24Filled`
`arrowSync24Regular`|`ic_fluent_arrow_sync_20_filled`
`ic_fluent_arrow_sync_20_regular`
`ic_fluent_arrow_sync_24_filled`
`ic_fluent_arrow_sync_24_regular`| +|Arrow Sync Circle||`arrowSyncCircle16Filled`
`arrowSyncCircle16Regular`
`arrowSyncCircle20Filled`
`arrowSyncCircle20Regular`
`arrowSyncCircle24Filled`
`arrowSyncCircle24Regular`|`ic_fluent_arrow_sync_circle_16_filled`
`ic_fluent_arrow_sync_circle_16_regular`
`ic_fluent_arrow_sync_circle_20_filled`
`ic_fluent_arrow_sync_circle_20_regular`
`ic_fluent_arrow_sync_circle_24_filled`
`ic_fluent_arrow_sync_circle_24_regular`| +|Arrow Trending||`arrowTrending16Filled`
`arrowTrending16Regular`
`arrowTrending24Filled`
`arrowTrending24Regular`|`ic_fluent_arrow_trending_16_filled`
`ic_fluent_arrow_trending_16_regular`
`ic_fluent_arrow_trending_24_filled`
`ic_fluent_arrow_trending_24_regular`| +|Arrow Undo||`arrowUndo20Filled`
`arrowUndo20Regular`
`arrowUndo24Filled`
`arrowUndo24Regular`|`ic_fluent_arrow_undo_20_filled`
`ic_fluent_arrow_undo_20_regular`
`ic_fluent_arrow_undo_24_filled`
`ic_fluent_arrow_undo_24_regular`| +|Arrow Up||`arrowUp20Filled`
`arrowUp20Regular`
`arrowUp24Filled`
`arrowUp24Light`
`arrowUp24Regular`
`arrowUp28Filled`
`arrowUp28Regular`|`ic_fluent_arrow_up_20_filled`
`ic_fluent_arrow_up_20_regular`
`ic_fluent_arrow_up_24_filled`
`ic_fluent_arrow_up_24_regular`
`ic_fluent_arrow_up_28_filled`
`ic_fluent_arrow_up_28_regular`| +|Arrow Up Left||`arrowUpLeft24Filled`
`arrowUpLeft24Regular`|`ic_fluent_arrow_up_left_24_filled`
`ic_fluent_arrow_up_left_24_regular`| +|Arrow Up Right||`arrowUpRight24Filled`
`arrowUpRight24Regular`|`ic_fluent_arrow_up_right_24_filled`
`ic_fluent_arrow_up_right_24_regular`| +|Arrows Bidirectional||`arrowsBidirectional24Filled`
`arrowsBidirectional24Regular`|`ic_fluent_arrows_bidirectional_24_filled`
`ic_fluent_arrows_bidirectional_24_regular`| +|Assignments||`assignments24Filled`
`assignments24Regular`|`ic_fluent_assignments_24_filled`
`ic_fluent_assignments_24_regular`| +|Attach||`attach16Filled`
`attach16Regular`
`attach20Filled`
`attach20Regular`
`attach24Filled`
`attach24Regular`|`ic_fluent_attach_16_filled`
`ic_fluent_attach_16_regular`
`ic_fluent_attach_20_filled`
`ic_fluent_attach_20_regular`
`ic_fluent_attach_24_filled`
`ic_fluent_attach_24_regular`| +|Attach With Text||`attachWithText24Filled`
`attachWithText24Regular`|`ic_fluent_attach_with_text_24_filled`
`ic_fluent_attach_with_text_24_regular`| +|Autocorrect||`autocorrect24Filled`
`autocorrect24Light`
`autocorrect24Regular`|`ic_fluent_autocorrect_24_filled`
`ic_fluent_autocorrect_24_regular`| +|Background Effect||`backgroundEffect24Filled`
`backgroundEffect24Regular`|`ic_fluent_background_effect_24_filled`
`ic_fluent_background_effect_24_regular`| +|Backspace||`backspace24Filled`
`backspace24Light`
`backspace24Regular`|`ic_fluent_backspace_24_filled`
`ic_fluent_backspace_24_regular`| +|Badge||`badge24Filled`
`badge24Regular`|`ic_fluent_badge_24_filled`
`ic_fluent_badge_24_regular`| +|Battery 0||`battery020Filled`
`battery020Regular`
`battery024Filled`
`battery024Regular`|`ic_fluent_battery_0_20_filled`
`ic_fluent_battery_0_20_regular`
`ic_fluent_battery_0_24_filled`
`ic_fluent_battery_0_24_regular`| +|Battery 1||`battery120Filled`
`battery120Regular`
`battery124Filled`
`battery124Regular`|`ic_fluent_battery_1_20_filled`
`ic_fluent_battery_1_20_regular`
`ic_fluent_battery_1_24_filled`
`ic_fluent_battery_1_24_regular`| +|Battery 2||`battery220Filled`
`battery220Regular`
`battery224Filled`
`battery224Regular`|`ic_fluent_battery_2_20_filled`
`ic_fluent_battery_2_20_regular`
`ic_fluent_battery_2_24_filled`
`ic_fluent_battery_2_24_regular`| +|Battery 3||`battery320Filled`
`battery320Regular`
`battery324Filled`
`battery324Regular`|`ic_fluent_battery_3_20_filled`
`ic_fluent_battery_3_20_regular`
`ic_fluent_battery_3_24_filled`
`ic_fluent_battery_3_24_regular`| +|Battery 4||`battery420Filled`
`battery420Regular`
`battery424Filled`
`battery424Regular`|`ic_fluent_battery_4_20_filled`
`ic_fluent_battery_4_20_regular`
`ic_fluent_battery_4_24_filled`
`ic_fluent_battery_4_24_regular`| +|Battery 5||`battery520Filled`
`battery520Regular`
`battery524Filled`
`battery524Regular`|`ic_fluent_battery_5_20_filled`
`ic_fluent_battery_5_20_regular`
`ic_fluent_battery_5_24_filled`
`ic_fluent_battery_5_24_regular`| +|Battery 6||`battery620Filled`
`battery620Regular`
`battery624Filled`
`battery624Regular`|`ic_fluent_battery_6_20_filled`
`ic_fluent_battery_6_20_regular`
`ic_fluent_battery_6_24_filled`
`ic_fluent_battery_6_24_regular`| +|Battery 7||`battery720Filled`
`battery720Regular`
`battery724Filled`
`battery724Regular`|`ic_fluent_battery_7_20_filled`
`ic_fluent_battery_7_20_regular`
`ic_fluent_battery_7_24_filled`
`ic_fluent_battery_7_24_regular`| +|Battery 8||`battery820Filled`
`battery820Regular`
`battery824Filled`
`battery824Regular`|`ic_fluent_battery_8_20_filled`
`ic_fluent_battery_8_20_regular`
`ic_fluent_battery_8_24_filled`
`ic_fluent_battery_8_24_regular`| +|Battery 9||`battery920Filled`
`battery920Regular`
`battery924Filled`
`battery924Regular`|`ic_fluent_battery_9_20_filled`
`ic_fluent_battery_9_20_regular`
`ic_fluent_battery_9_24_filled`
`ic_fluent_battery_9_24_regular`| +|Battery Charge||`batteryCharge20Filled`
`batteryCharge20Regular`
`batteryCharge24Filled`
`batteryCharge24Regular`|`ic_fluent_battery_charge_20_filled`
`ic_fluent_battery_charge_20_regular`
`ic_fluent_battery_charge_24_filled`
`ic_fluent_battery_charge_24_regular`| +|Battery Full||`batteryFull20Filled`
`batteryFull20Regular`
`batteryFull24Filled`
`batteryFull24Regular`|`ic_fluent_battery_full_20_filled`
`ic_fluent_battery_full_20_regular`
`ic_fluent_battery_full_24_filled`
`ic_fluent_battery_full_24_regular`| +|Battery Saver||`batterySaver20Filled`
`batterySaver20Regular`
`batterySaver24Filled`
`batterySaver24Regular`|`ic_fluent_battery_saver_20_filled`
`ic_fluent_battery_saver_20_regular`
`ic_fluent_battery_saver_24_filled`
`ic_fluent_battery_saver_24_regular`| +|Battery Warning||`batteryWarning24Filled`
`batteryWarning24Regular`|`ic_fluent_battery_warning_24_filled`
`ic_fluent_battery_warning_24_regular`| +|Bed||`bed20Filled`
`bed20Regular`
`bed24Filled`
`bed24Regular`|`ic_fluent_bed_20_filled`
`ic_fluent_bed_20_regular`
`ic_fluent_bed_24_filled`
`ic_fluent_bed_24_regular`| +|Block||`block16Filled`
`block16Regular`
`block20Filled`
`block20Regular`
`block24Filled`
`block24Regular`|`ic_fluent_block_16_filled`
`ic_fluent_block_16_regular`
`ic_fluent_block_20_filled`
`ic_fluent_block_20_regular`
`ic_fluent_block_24_filled`
`ic_fluent_block_24_regular`| +|Bluetooth||`bluetooth20Filled`
`bluetooth20Regular`
`bluetooth24Filled`
`bluetooth24Regular`|`ic_fluent_bluetooth_20_filled`
`ic_fluent_bluetooth_20_regular`
`ic_fluent_bluetooth_24_filled`
`ic_fluent_bluetooth_24_regular`| +|Bluetooth Connected||`bluetoothConnected24Filled`
`bluetoothConnected24Regular`|`ic_fluent_bluetooth_connected_24_filled`
`ic_fluent_bluetooth_connected_24_regular`| +|Bluetooth Disabled||`bluetoothDisabled24Filled`
`bluetoothDisabled24Regular`|`ic_fluent_bluetooth_disabled_24_filled`
`ic_fluent_bluetooth_disabled_24_regular`| +|Bluetooth Searching||`bluetoothSearching24Filled`
`bluetoothSearching24Regular`|`ic_fluent_bluetooth_searching_24_filled`
`ic_fluent_bluetooth_searching_24_regular`| +|Board||`board24Filled`
`board24Regular`|`ic_fluent_board_24_filled`
`ic_fluent_board_24_regular`| +|Book Formula Compatibility||`bookFormulaCompatibility24Filled`
`bookFormulaCompatibility24Regular`|`ic_fluent_book_formula_compatibility_24_filled`
`ic_fluent_book_formula_compatibility_24_regular`| +|Book Formula Database||`bookFormulaDatabase24Filled`
`bookFormulaDatabase24Regular`|`ic_fluent_book_formula_database_24_filled`
`ic_fluent_book_formula_database_24_regular`| +|Book Formula Date||`bookFormulaDate24Filled`
`bookFormulaDate24Regular`|`ic_fluent_book_formula_date_24_filled`
`ic_fluent_book_formula_date_24_regular`| +|Book Formula Engineering||`bookFormulaEngineering24Filled`
`bookFormulaEngineering24Regular`|`ic_fluent_book_formula_engineering_24_filled`
`ic_fluent_book_formula_engineering_24_regular`| +|Book Formula Financial||`bookFormulaFinancial24Filled`
`bookFormulaFinancial24Regular`|`ic_fluent_book_formula_financial_24_filled`
`ic_fluent_book_formula_financial_24_regular`| +|Book Formula Information||`bookFormulaInformation24Filled`
`bookFormulaInformation24Regular`|`ic_fluent_book_formula_information_24_filled`
`ic_fluent_book_formula_information_24_regular`| +|Book Formula Logical||`bookFormulaLogical24Filled`
`bookFormulaLogical24Regular`|`ic_fluent_book_formula_logical_24_filled`
`ic_fluent_book_formula_logical_24_regular`| +|Book Formula Lookup||`bookFormulaLookup24Filled`
`bookFormulaLookup24Regular`|`ic_fluent_book_formula_lookup_24_filled`
`ic_fluent_book_formula_lookup_24_regular`| +|Book Formula Math||`bookFormulaMath24Filled`
`bookFormulaMath24Regular`|`ic_fluent_book_formula_math_24_filled`
`ic_fluent_book_formula_math_24_regular`| +|Book Formula Recent||`bookFormulaRecent24Filled`
`bookFormulaRecent24Regular`|`ic_fluent_book_formula_recent_24_filled`
`ic_fluent_book_formula_recent_24_regular`| +|Book Formula Statistics||`bookFormulaStatistics24Filled`
`bookFormulaStatistics24Regular`|`ic_fluent_book_formula_statistics_24_filled`
`ic_fluent_book_formula_statistics_24_regular`| +|Book Formula Text||`bookFormulaText24Filled`
`bookFormulaText24Regular`|`ic_fluent_book_formula_text_24_filled`
`ic_fluent_book_formula_text_24_regular`| +|Bookmark||`bookmark16Filled`
`bookmark16Regular`
`bookmark24Filled`
`bookmark24Regular`|`ic_fluent_bookmark_16_filled`
`ic_fluent_bookmark_16_regular`
`ic_fluent_bookmark_24_filled`
`ic_fluent_bookmark_24_regular`| +|Bot||`bot24Filled`
`bot24Regular`|`ic_fluent_bot_24_filled`
`ic_fluent_bot_24_regular`| +|Bot Add||`botAdd24Filled`
`botAdd24Regular`|`ic_fluent_bot_add_24_filled`
`ic_fluent_bot_add_24_regular`| +|Branch||`branch24Filled`
`branch24Regular`|`ic_fluent_branch_24_filled`
`ic_fluent_branch_24_regular`| +|Briefcase||`briefcase20Filled`
`briefcase20Regular`
`briefcase24Filled`
`briefcase24Regular`|`ic_fluent_briefcase_20_filled`
`ic_fluent_briefcase_20_regular`
`ic_fluent_briefcase_24_filled`
`ic_fluent_briefcase_24_regular`| +|Broad Activity Feed||`broadActivityFeed24Filled`
`broadActivityFeed24Regular`|`ic_fluent_broad_activity_feed_24_filled`
`ic_fluent_broad_activity_feed_24_regular`| +|Bug Report||`bugReport24Filled`
`bugReport24Regular`|`ic_fluent_bug_report_24_filled`
`ic_fluent_bug_report_24_regular`| +|Building||`building24Filled`
`building24Regular`|`ic_fluent_building_24_filled`
`ic_fluent_building_24_regular`| +|Calculator||`calculator20Filled`
`calculator20Regular`|`ic_fluent_calculator_20_filled`
`ic_fluent_calculator_20_regular`| +|Calendar||`calendar20Filled`
`calendar20Regular`
`calendar24Filled`
`calendar24Light`
`calendar24Regular`
`calendar28Filled`
`calendar28Regular`|`ic_fluent_calendar_20_filled`
`ic_fluent_calendar_20_regular`
`ic_fluent_calendar_24_filled`
`ic_fluent_calendar_24_regular`
`ic_fluent_calendar_28_filled`
`ic_fluent_calendar_28_regular`| +|Calendar 3 Day||`calendar3Day20Filled`
`calendar3Day20Regular`
`calendar3Day24Filled`
`calendar3Day24Regular`
`calendar3Day28Filled`
`calendar3Day28Regular`|`ic_fluent_calendar_3_day_20_filled`
`ic_fluent_calendar_3_day_20_regular`
`ic_fluent_calendar_3_day_24_filled`
`ic_fluent_calendar_3_day_24_regular`
`ic_fluent_calendar_3_day_28_filled`
`ic_fluent_calendar_3_day_28_regular`| +|Calendar Add||`calendarAdd20Filled`
`calendarAdd20Regular`
`calendarAdd24Filled`
`calendarAdd24Regular`|`ic_fluent_calendar_add_20_filled`
`ic_fluent_calendar_add_20_regular`
`ic_fluent_calendar_add_24_filled`
`ic_fluent_calendar_add_24_regular`| +|Calendar Agenda||`calendarAgenda20Filled`
`calendarAgenda20Regular`
`calendarAgenda24Filled`
`calendarAgenda24Regular`
`calendarAgenda28Filled`
`calendarAgenda28Regular`|`ic_fluent_calendar_agenda_20_filled`
`ic_fluent_calendar_agenda_20_regular`
`ic_fluent_calendar_agenda_24_filled`
`ic_fluent_calendar_agenda_24_regular`
`ic_fluent_calendar_agenda_28_filled`
`ic_fluent_calendar_agenda_28_regular`| +|Calendar Availability||`calendarAvailability24Filled`
`calendarAvailability24Regular`|`ic_fluent_calendar_availability_24_filled`
`ic_fluent_calendar_availability_24_regular`| +|Calendar Cancel||`calendarCancel20Filled`
`calendarCancel20Regular`
`calendarCancel24Filled`
`calendarCancel24Regular`|`ic_fluent_calendar_cancel_20_filled`
`ic_fluent_calendar_cancel_20_regular`
`ic_fluent_calendar_cancel_24_filled`
`ic_fluent_calendar_cancel_24_regular`| +|Calendar Date||`calendarDate20Filled`
`calendarDate20Regular`
`calendarDate24Filled`
`calendarDate24Regular`
`calendarDate28Filled`
`calendarDate28Regular`|`ic_fluent_calendar_date_20_filled`
`ic_fluent_calendar_date_20_regular`
`ic_fluent_calendar_date_24_filled`
`ic_fluent_calendar_date_24_regular`
`ic_fluent_calendar_date_28_filled`
`ic_fluent_calendar_date_28_regular`| +|Calendar Day||`calendarDay20Filled`
`calendarDay20Regular`
`calendarDay24Filled`
`calendarDay24Regular`
`calendarDay28Filled`
`calendarDay28Regular`|`ic_fluent_calendar_day_20_filled`
`ic_fluent_calendar_day_20_regular`
`ic_fluent_calendar_day_24_filled`
`ic_fluent_calendar_day_24_regular`
`ic_fluent_calendar_day_28_filled`
`ic_fluent_calendar_day_28_regular`| +|Calendar Empty||`calendarEmpty16Filled`
`calendarEmpty16Regular`
`calendarEmpty20Filled`
`calendarEmpty20Regular`
`calendarEmpty24Filled`
`calendarEmpty24Regular`
`calendarEmpty28Filled`
`calendarEmpty28Regular`|`ic_fluent_calendar_empty_16_filled`
`ic_fluent_calendar_empty_16_regular`
`ic_fluent_calendar_empty_20_filled`
`ic_fluent_calendar_empty_20_regular`
`ic_fluent_calendar_empty_24_filled`
`ic_fluent_calendar_empty_24_regular`
`ic_fluent_calendar_empty_28_filled`
`ic_fluent_calendar_empty_28_regular`| +|Calendar Later||`calendarLater24Filled`
`calendarLater24Regular`|`ic_fluent_calendar_later_24_filled`
`ic_fluent_calendar_later_24_regular`| +|Calendar Month||`calendarMonth20Filled`
`calendarMonth20Regular`
`calendarMonth24Filled`
`calendarMonth24Regular`
`calendarMonth28Filled`
`calendarMonth28Regular`|`ic_fluent_calendar_month_20_filled`
`ic_fluent_calendar_month_20_regular`
`ic_fluent_calendar_month_24_filled`
`ic_fluent_calendar_month_24_regular`
`ic_fluent_calendar_month_28_filled`
`ic_fluent_calendar_month_28_regular`| +|Calendar Overdue||`calendarOverdue24Filled`
`calendarOverdue24Regular`|`ic_fluent_calendar_overdue_24_filled`
`ic_fluent_calendar_overdue_24_regular`| +|Calendar Recurring||`calendarRecurring24Filled`
`calendarRecurring24Regular`|`ic_fluent_calendar_recurring_24_filled`
`ic_fluent_calendar_recurring_24_regular`| +|Calendar Starred||`calendarStarred24Filled`
`calendarStarred24Regular`|`ic_fluent_calendar_starred_24_filled`
`ic_fluent_calendar_starred_24_regular`| +|Calendar Week Numbers||`calendarWeekNumbers24Filled`
`calendarWeekNumbers24Regular`|`ic_fluent_calendar_week_numbers_24_filled`
`ic_fluent_calendar_week_numbers_24_regular`| +|Calendar Week Start||`calendarWeekStart20Filled`
`calendarWeekStart20Regular`
`calendarWeekStart24Filled`
`calendarWeekStart24Regular`
`calendarWeekStart28Filled`
`calendarWeekStart28Regular`|`ic_fluent_calendar_week_start_20_filled`
`ic_fluent_calendar_week_start_20_regular`
`ic_fluent_calendar_week_start_24_filled`
`ic_fluent_calendar_week_start_24_regular`
`ic_fluent_calendar_week_start_28_filled`
`ic_fluent_calendar_week_start_28_regular`| +|Call Add||`callAdd24Filled`
`callAdd24Regular`|`ic_fluent_call_add_24_filled`
`ic_fluent_call_add_24_regular`| +|Call End||`callEnd20Filled`
`callEnd20Regular`
`callEnd24Filled`
`callEnd24Regular`|`ic_fluent_call_end_20_filled`
`ic_fluent_call_end_20_regular`
`ic_fluent_call_end_24_filled`
`ic_fluent_call_end_24_regular`| +|Call Forward||`callForward24Filled`
`callForward24Regular`|`ic_fluent_call_forward_24_filled`
`ic_fluent_call_forward_24_regular`| +|Call Inbound||`callInbound24Filled`
`callInbound24Regular`|`ic_fluent_call_inbound_24_filled`
`ic_fluent_call_inbound_24_regular`| +|Call Missed||`callMissed24Filled`
`callMissed24Regular`|`ic_fluent_call_missed_24_filled`
`ic_fluent_call_missed_24_regular`| +|Call Outbound||`callOutbound24Filled`
`callOutbound24Regular`|`ic_fluent_call_outbound_24_filled`
`ic_fluent_call_outbound_24_regular`| +|Call Park||`callPark24Filled`
`callPark24Regular`|`ic_fluent_call_park_24_filled`
`ic_fluent_call_park_24_regular`| +|Camera||`camera20Filled`
`camera20Regular`
`camera24Filled`
`camera24Light`
`camera24Regular`
`camera28Filled`
`camera28Regular`|`ic_fluent_camera_20_filled`
`ic_fluent_camera_20_regular`
`ic_fluent_camera_24_filled`
`ic_fluent_camera_24_regular`
`ic_fluent_camera_28_filled`
`ic_fluent_camera_28_regular`| +|Camera Add||`cameraAdd24Filled`
`cameraAdd24Regular`|`ic_fluent_camera_add_24_filled`
`ic_fluent_camera_add_24_regular`| +|Camera Switch||`cameraSwitch24Filled`
`cameraSwitch24Light`
`cameraSwitch24Regular`|`ic_fluent_camera_switch_24_filled`
`ic_fluent_camera_switch_24_regular`| +|Cast||`cast20Filled`
`cast20Regular`
`cast24Filled`
`cast24Regular`|`ic_fluent_cast_20_filled`
`ic_fluent_cast_20_regular`
`ic_fluent_cast_24_filled`
`ic_fluent_cast_24_regular`| +|Cellular 3G||`cellular3G24Filled`
`cellular3G24Regular`|`ic_fluent_cellular_3g_24_filled`
`ic_fluent_cellular_3g_24_regular`| +|Cellular 4G||`cellular4G24Filled`
`cellular4G24Regular`|`ic_fluent_cellular_4g_24_filled`
`ic_fluent_cellular_4g_24_regular`| +|Cellular Data 1||`cellularData120Filled`
`cellularData120Regular`
`cellularData124Filled`
`cellularData124Regular`|`ic_fluent_cellular_data_1_20_filled`
`ic_fluent_cellular_data_1_20_regular`
`ic_fluent_cellular_data_1_24_filled`
`ic_fluent_cellular_data_1_24_regular`| +|Cellular Data 2||`cellularData220Filled`
`cellularData220Regular`
`cellularData224Filled`
`cellularData224Regular`|`ic_fluent_cellular_data_2_20_filled`
`ic_fluent_cellular_data_2_20_regular`
`ic_fluent_cellular_data_2_24_filled`
`ic_fluent_cellular_data_2_24_regular`| +|Cellular Data 3||`cellularData320Filled`
`cellularData320Regular`
`cellularData324Filled`
`cellularData324Regular`|`ic_fluent_cellular_data_3_20_filled`
`ic_fluent_cellular_data_3_20_regular`
`ic_fluent_cellular_data_3_24_filled`
`ic_fluent_cellular_data_3_24_regular`| +|Cellular Data 4||`cellularData420Filled`
`cellularData420Regular`
`cellularData424Filled`
`cellularData424Regular`|`ic_fluent_cellular_data_4_20_filled`
`ic_fluent_cellular_data_4_20_regular`
`ic_fluent_cellular_data_4_24_filled`
`ic_fluent_cellular_data_4_24_regular`| +|Cellular Data 5||`cellularData520Filled`
`cellularData520Regular`
`cellularData524Filled`
`cellularData524Regular`|`ic_fluent_cellular_data_5_20_filled`
`ic_fluent_cellular_data_5_20_regular`
`ic_fluent_cellular_data_5_24_filled`
`ic_fluent_cellular_data_5_24_regular`| +|Cellular Off||`cellularOff24Filled`
`cellularOff24Regular`|`ic_fluent_cellular_off_24_filled`
`ic_fluent_cellular_off_24_regular`| +|Cellular Unavailable||`cellularUnavailable24Filled`
`cellularUnavailable24Regular`|`ic_fluent_cellular_unavailable_24_filled`
`ic_fluent_cellular_unavailable_24_regular`| +|Certificate||`certificate20Filled`
`certificate20Regular`
`certificate24Filled`
`certificate24Regular`|`ic_fluent_certificate_20_filled`
`ic_fluent_certificate_20_regular`
`ic_fluent_certificate_24_filled`
`ic_fluent_certificate_24_regular`| +|Channel||`channel24Filled`
`channel24Regular`|`ic_fluent_channel_24_filled`
`ic_fluent_channel_24_regular`| +|Channel Follow||`channelFollow24Filled`
`channelFollow24Regular`|`ic_fluent_channel_follow_24_filled`
`ic_fluent_channel_follow_24_regular`| +|Channel Notifications||`channelNotifications24Filled`
`channelNotifications24Regular`|`ic_fluent_channel_notifications_24_filled`
`ic_fluent_channel_notifications_24_regular`| +|Channel Unfollow||`channelUnfollow24Filled`
`channelUnfollow24Regular`|`ic_fluent_channel_unfollow_24_filled`
`ic_fluent_channel_unfollow_24_regular`| +|Chat||`chat20Filled`
`chat20Regular`
`chat24Filled`
`chat24Light`
`chat24Regular`
`chat28Filled`
`chat28Regular`|`ic_fluent_chat_20_filled`
`ic_fluent_chat_20_regular`
`ic_fluent_chat_24_filled`
`ic_fluent_chat_24_regular`
`ic_fluent_chat_28_filled`
`ic_fluent_chat_28_regular`| +|Chat Help||`chatHelp24Filled`
`chatHelp24Regular`|`ic_fluent_chat_help_24_filled`
`ic_fluent_chat_help_24_regular`| +|Checkbox Checked||`checkboxChecked24Filled`
`checkboxChecked24Regular`|`ic_fluent_checkbox_checked_24_filled`
`ic_fluent_checkbox_checked_24_regular`| +|Checkbox Unchecked||`checkboxUnchecked12Filled`
`checkboxUnchecked12Regular`
`checkboxUnchecked16Filled`
`checkboxUnchecked16Regular`
`checkboxUnchecked20Filled`
`checkboxUnchecked20Regular`
`checkboxUnchecked24Filled`
`checkboxUnchecked24Regular`|`ic_fluent_checkbox_unchecked_12_filled`
`ic_fluent_checkbox_unchecked_12_regular`
`ic_fluent_checkbox_unchecked_16_filled`
`ic_fluent_checkbox_unchecked_16_regular`
`ic_fluent_checkbox_unchecked_20_filled`
`ic_fluent_checkbox_unchecked_20_regular`
`ic_fluent_checkbox_unchecked_24_filled`
`ic_fluent_checkbox_unchecked_24_regular`| +|Checkmark||`checkmark12Filled`
`checkmark12Regular`
`checkmark20Filled`
`checkmark20Regular`
`checkmark24Filled`
`checkmark24Regular`
`checkmark28Filled`
`checkmark28Regular`|`ic_fluent_checkmark_12_filled`
`ic_fluent_checkmark_12_regular`
`ic_fluent_checkmark_20_filled`
`ic_fluent_checkmark_20_regular`
`ic_fluent_checkmark_24_filled`
`ic_fluent_checkmark_24_regular`
`ic_fluent_checkmark_28_filled`
`ic_fluent_checkmark_28_regular`| +|Checkmark Circle||`checkmarkCircle16Filled`
`checkmarkCircle16Regular`
`checkmarkCircle20Filled`
`checkmarkCircle20Regular`
`checkmarkCircle24Filled`
`checkmarkCircle24Light`
`checkmarkCircle24Regular`
`checkmarkCircle48Filled`
`checkmarkCircle48Regular`|`ic_fluent_checkmark_circle_16_filled`
`ic_fluent_checkmark_circle_16_regular`
`ic_fluent_checkmark_circle_20_filled`
`ic_fluent_checkmark_circle_20_regular`
`ic_fluent_checkmark_circle_24_filled`
`ic_fluent_checkmark_circle_24_regular`
`ic_fluent_checkmark_circle_48_filled`
`ic_fluent_checkmark_circle_48_regular`| +|Checkmark Lock||`checkmarkLock16Filled`
`checkmarkLock16Regular`
`checkmarkLock20Filled`
`checkmarkLock20Regular`
`checkmarkLock24Filled`
`checkmarkLock24Regular`|`ic_fluent_checkmark_lock_16_filled`
`ic_fluent_checkmark_lock_16_regular`
`ic_fluent_checkmark_lock_20_filled`
`ic_fluent_checkmark_lock_20_regular`
`ic_fluent_checkmark_lock_24_filled`
`ic_fluent_checkmark_lock_24_regular`| +|Checkmark Square||`checkmarkSquare24Filled`
`checkmarkSquare24Regular`|`ic_fluent_checkmark_square_24_filled`
`ic_fluent_checkmark_square_24_regular`| +|Chevron Down||`chevronDown12Filled`
`chevronDown12Regular`
`chevronDown16Filled`
`chevronDown16Regular`
`chevronDown20Filled`
`chevronDown20Regular`
`chevronDown24Filled`
`chevronDown24Light`
`chevronDown24Regular`|`ic_fluent_chevron_down_12_filled`
`ic_fluent_chevron_down_12_regular`
`ic_fluent_chevron_down_16_filled`
`ic_fluent_chevron_down_16_regular`
`ic_fluent_chevron_down_20_filled`
`ic_fluent_chevron_down_20_regular`
`ic_fluent_chevron_down_24_filled`
`ic_fluent_chevron_down_24_regular`| +|Chevron Down Circle||`chevronDownCircle24Filled`
`chevronDownCircle24Light`
`chevronDownCircle24Regular`|`ic_fluent_chevron_down_circle_24_filled`
`ic_fluent_chevron_down_circle_24_regular`| +|Chevron Left||`chevronLeft12Filled`
`chevronLeft12Regular`
`chevronLeft16Filled`
`chevronLeft16Regular`
`chevronLeft20Filled`
`chevronLeft20Regular`
`chevronLeft24Filled`
`chevronLeft24Light`
`chevronLeft24Regular`
`chevronLeft28Filled`
`chevronLeft28Regular`|`ic_fluent_chevron_left_12_filled`
`ic_fluent_chevron_left_12_regular`
`ic_fluent_chevron_left_16_filled`
`ic_fluent_chevron_left_16_regular`
`ic_fluent_chevron_left_20_filled`
`ic_fluent_chevron_left_20_regular`
`ic_fluent_chevron_left_24_filled`
`ic_fluent_chevron_left_24_regular`
`ic_fluent_chevron_left_28_filled`
`ic_fluent_chevron_left_28_regular`| +|Chevron Right||`chevronRight12Filled`
`chevronRight12Regular`
`chevronRight16Filled`
`chevronRight16Regular`
`chevronRight20Filled`
`chevronRight20Regular`
`chevronRight24Filled`
`chevronRight24Light`
`chevronRight24Regular`|`ic_fluent_chevron_right_12_filled`
`ic_fluent_chevron_right_12_regular`
`ic_fluent_chevron_right_16_filled`
`ic_fluent_chevron_right_16_regular`
`ic_fluent_chevron_right_20_filled`
`ic_fluent_chevron_right_20_regular`
`ic_fluent_chevron_right_24_filled`
`ic_fluent_chevron_right_24_regular`| +|Chevron Up||`chevronUp12Filled`
`chevronUp12Regular`
`chevronUp16Filled`
`chevronUp16Regular`
`chevronUp20Filled`
`chevronUp20Regular`
`chevronUp24Filled`
`chevronUp24Light`
`chevronUp24Regular`|`ic_fluent_chevron_up_12_filled`
`ic_fluent_chevron_up_12_regular`
`ic_fluent_chevron_up_16_filled`
`ic_fluent_chevron_up_16_regular`
`ic_fluent_chevron_up_20_filled`
`ic_fluent_chevron_up_20_regular`
`ic_fluent_chevron_up_24_filled`
`ic_fluent_chevron_up_24_regular`| +|Class||`class24Filled`
`class24Light`
`class24Regular`|`ic_fluent_class_24_filled`
`ic_fluent_class_24_regular`| +|Classification||`classification20Filled`
`classification20Regular`
`classification24Filled`
`classification24Regular`|`ic_fluent_classification_20_filled`
`ic_fluent_classification_20_regular`
`ic_fluent_classification_24_filled`
`ic_fluent_classification_24_regular`| +|Clear Formatting||`clearFormatting24Filled`
`clearFormatting24Regular`|`ic_fluent_clear_formatting_24_filled`
`ic_fluent_clear_formatting_24_regular`| +|Clipboard||`clipboard20Filled`
`clipboard20Regular`
`clipboard24Filled`
`clipboard24Light`
`clipboard24Regular`|`ic_fluent_clipboard_20_filled`
`ic_fluent_clipboard_20_regular`
`ic_fluent_clipboard_24_filled`
`ic_fluent_clipboard_24_regular`| +|Clipboard Paste||`clipboardPaste20Filled`
`clipboardPaste20Regular`
`clipboardPaste24Filled`
`clipboardPaste24Regular`|`ic_fluent_clipboard_paste_20_filled`
`ic_fluent_clipboard_paste_20_regular`
`ic_fluent_clipboard_paste_24_filled`
`ic_fluent_clipboard_paste_24_regular`| +|Clipboard Search||`clipboardSearch20Filled`
`clipboardSearch20Regular`
`clipboardSearch24Filled`
`clipboardSearch24Regular`|`ic_fluent_clipboard_search_20_filled`
`ic_fluent_clipboard_search_20_regular`
`ic_fluent_clipboard_search_24_filled`
`ic_fluent_clipboard_search_24_regular`| +|Clipboard Text||`clipboardText20Filled`
`clipboardText20Regular`
`clipboardText24Filled`
`clipboardText24Light`
`clipboardText24Regular`|`ic_fluent_clipboard_text_20_filled`
`ic_fluent_clipboard_text_20_regular`
`ic_fluent_clipboard_text_24_filled`
`ic_fluent_clipboard_text_24_regular`| +|Clock||`clock12Filled`
`clock12Regular`
`clock16Filled`
`clock16Regular`
`clock20Filled`
`clock20Regular`
`clock24Filled`
`clock24Light`
`clock24Regular`
`clock28Filled`
`clock28Regular`
`clock48Filled`
`clock48Regular`|`ic_fluent_clock_12_filled`
`ic_fluent_clock_12_regular`
`ic_fluent_clock_16_filled`
`ic_fluent_clock_16_regular`
`ic_fluent_clock_20_filled`
`ic_fluent_clock_20_regular`
`ic_fluent_clock_24_filled`
`ic_fluent_clock_24_regular`
`ic_fluent_clock_28_filled`
`ic_fluent_clock_28_regular`
`ic_fluent_clock_48_filled`
`ic_fluent_clock_48_regular`| +|Closed Caption||`closedCaption24Filled`
`closedCaption24Regular`|`ic_fluent_closed_caption_24_filled`
`ic_fluent_closed_caption_24_regular`| +|Cloud||`cloud20Filled`
`cloud20Regular`
`cloud24Filled`
`cloud24Regular`
`cloud48Filled`
`cloud48Regular`|`ic_fluent_cloud_20_filled`
`ic_fluent_cloud_20_regular`
`ic_fluent_cloud_24_filled`
`ic_fluent_cloud_24_regular`
`ic_fluent_cloud_48_filled`
`ic_fluent_cloud_48_regular`| +|Cloud Backup||`cloudBackup24Filled`
`cloudBackup24Regular`
`cloudBackup48Filled`
`cloudBackup48Regular`|`ic_fluent_cloud_backup_24_filled`
`ic_fluent_cloud_backup_24_regular`
`ic_fluent_cloud_backup_48_filled`
`ic_fluent_cloud_backup_48_regular`| +|Cloud Download||`cloudDownload24Filled`
`cloudDownload24Regular`|`ic_fluent_cloud_download_24_filled`
`ic_fluent_cloud_download_24_regular`| +|Cloud Off||`cloudOff24Filled`
`cloudOff24Regular`
`cloudOff48Filled`
`cloudOff48Regular`|`ic_fluent_cloud_off_24_filled`
`ic_fluent_cloud_off_24_regular`
`ic_fluent_cloud_off_48_filled`
`ic_fluent_cloud_off_48_regular`| +|Cloud Offline||`cloudOffline24Filled`
`cloudOffline24Regular`|`ic_fluent_cloud_offline_24_filled`
`ic_fluent_cloud_offline_24_regular`| +|Cloud Sync Complete||`cloudSyncComplete24Filled`
`cloudSyncComplete24Regular`
`cloudSyncComplete48Filled`
`cloudSyncComplete48Regular`|`ic_fluent_cloud_sync_complete_24_filled`
`ic_fluent_cloud_sync_complete_24_regular`
`ic_fluent_cloud_sync_complete_48_filled`
`ic_fluent_cloud_sync_complete_48_regular`| +|Code||`code20Filled`
`code20Regular`
`code24Filled`
`code24Regular`|`ic_fluent_code_20_filled`
`ic_fluent_code_20_regular`
`ic_fluent_code_24_filled`
`ic_fluent_code_24_regular`| +|Collections||`collections20Filled`
`collections20Regular`
`collections24Filled`
`collections24Regular`|`ic_fluent_collections_20_filled`
`ic_fluent_collections_20_regular`
`ic_fluent_collections_24_filled`
`ic_fluent_collections_24_regular`| +|Collections Add||`collectionsAdd20Filled`
`collectionsAdd20Regular`
`collectionsAdd24Filled`
`collectionsAdd24Regular`|`ic_fluent_collections_add_20_filled`
`ic_fluent_collections_add_20_regular`
`ic_fluent_collections_add_24_filled`
`ic_fluent_collections_add_24_regular`| +|Color||`color20Filled`
`color20Regular`
`color24Filled`
`color24Light`
`color24Regular`|`ic_fluent_color_20_filled`
`ic_fluent_color_20_regular`
`ic_fluent_color_24_filled`
`ic_fluent_color_24_regular`| +|Comment||`comment20Filled`
`comment20Regular`
`comment24Filled`
`comment24Regular`|`ic_fluent_comment_20_filled`
`ic_fluent_comment_20_regular`
`ic_fluent_comment_24_filled`
`ic_fluent_comment_24_regular`| +|Comment Add||`commentAdd24Filled`
`commentAdd24Regular`|`ic_fluent_comment_add_24_filled`
`ic_fluent_comment_add_24_regular`| +|Comment Delete||`commentDelete24Filled`
`commentDelete24Regular`|`ic_fluent_comment_delete_24_filled`
`ic_fluent_comment_delete_24_regular`| +|Comment Next||`commentNext24Filled`
`commentNext24Regular`|`ic_fluent_comment_next_24_filled`
`ic_fluent_comment_next_24_regular`| +|Comment Previous||`commentPrevious24Filled`
`commentPrevious24Regular`|`ic_fluent_comment_previous_24_filled`
`ic_fluent_comment_previous_24_regular`| +|Comment Resolve||`commentResolve24Filled`
`commentResolve24Regular`|`ic_fluent_comment_resolve_24_filled`
`ic_fluent_comment_resolve_24_regular`| +|Compose||`compose20Filled`
`compose20Regular`
`compose24Filled`
`compose24Regular`
`compose28Filled`
`compose28Regular`|`ic_fluent_compose_20_filled`
`ic_fluent_compose_20_regular`
`ic_fluent_compose_24_filled`
`ic_fluent_compose_24_regular`
`ic_fluent_compose_28_filled`
`ic_fluent_compose_28_regular`| +|Conference Room||`conferenceRoom16Filled`
`conferenceRoom16Regular`
`conferenceRoom20Filled`
`conferenceRoom20Regular`
`conferenceRoom24Filled`
`conferenceRoom24Regular`
`conferenceRoom28Filled`
`conferenceRoom28Regular`
`conferenceRoom48Filled`
`conferenceRoom48Regular`|`ic_fluent_conference_room_16_filled`
`ic_fluent_conference_room_16_regular`
`ic_fluent_conference_room_20_filled`
`ic_fluent_conference_room_20_regular`
`ic_fluent_conference_room_24_filled`
`ic_fluent_conference_room_24_regular`
`ic_fluent_conference_room_28_filled`
`ic_fluent_conference_room_28_regular`
`ic_fluent_conference_room_48_filled`
`ic_fluent_conference_room_48_regular`| +|Connector||`connector16Filled`
`connector16Regular`
`connector20Filled`
`connector20Regular`
`connector24Filled`
`connector24Regular`|`ic_fluent_connector_16_filled`
`ic_fluent_connector_16_regular`
`ic_fluent_connector_20_filled`
`ic_fluent_connector_20_regular`
`ic_fluent_connector_24_filled`
`ic_fluent_connector_24_regular`| +|Contact Card||`contactCard24Filled`
`contactCard24Regular`|`ic_fluent_contact_card_24_filled`
`ic_fluent_contact_card_24_regular`| +|Contact Card Group||`contactCardGroup24Filled`
`contactCardGroup24Regular`|`ic_fluent_contact_card_group_24_filled`
`ic_fluent_contact_card_group_24_regular`| +|Contacts||`contacts24Filled`
`contacts24Regular`|`ic_fluent_contacts_24_filled`
`ic_fluent_contacts_24_regular`| +|Content Settings||`contentSettings16Filled`
`contentSettings16Regular`
`contentSettings20Filled`
`contentSettings20Regular`
`contentSettings24Filled`
`contentSettings24Regular`|`ic_fluent_content_settings_16_filled`
`ic_fluent_content_settings_16_regular`
`ic_fluent_content_settings_20_filled`
`ic_fluent_content_settings_20_regular`
`ic_fluent_content_settings_24_filled`
`ic_fluent_content_settings_24_regular`| +|Convert To Table||`convertToTable24Filled`
`convertToTable24Regular`|`ic_fluent_convert_to_table_24_filled`
`ic_fluent_convert_to_table_24_regular`| +|Convert To Text||`convertToText24Filled`
`convertToText24Regular`|`ic_fluent_convert_to_text_24_filled`
`ic_fluent_convert_to_text_24_regular`| +|Cookies||`cookies20Filled`
`cookies20Regular`
`cookies24Filled`
`cookies24Regular`|`ic_fluent_cookies_20_filled`
`ic_fluent_cookies_20_regular`
`ic_fluent_cookies_24_filled`
`ic_fluent_cookies_24_regular`| +|Copy||`copy16Filled`
`copy16Regular`
`copy20Filled`
`copy20Regular`
`copy24Filled`
`copy24Light`
`copy24Regular`|`ic_fluent_copy_16_filled`
`ic_fluent_copy_16_regular`
`ic_fluent_copy_20_filled`
`ic_fluent_copy_20_regular`
`ic_fluent_copy_24_filled`
`ic_fluent_copy_24_regular`| +|Copy Image||`copyImage24Filled`
`copyImage24Regular`|`ic_fluent_copy_image_24_filled`
`ic_fluent_copy_image_24_regular`| +|Copy Link||`copyLink24Filled`
`copyLink24Regular`|`ic_fluent_copy_link_24_filled`
`ic_fluent_copy_link_24_regular`| +|Copy Move||`copyMove16Filled`
`copyMove16Regular`
`copyMove24Filled`
`copyMove24Regular`|`ic_fluent_copy_move_16_filled`
`ic_fluent_copy_move_16_regular`
`ic_fluent_copy_move_24_filled`
`ic_fluent_copy_move_24_regular`| +|Crop||`crop24Filled`
`crop24Light`
`crop24Regular`|`ic_fluent_crop_24_filled`
`ic_fluent_crop_24_regular`| +|Crop Interim||`cropInterim24Filled`
`cropInterim24Regular`|`ic_fluent_crop_interim_24_filled`
`ic_fluent_crop_interim_24_regular`| +|Crop Interim Off||`cropInterimOff24Filled`
`cropInterimOff24Regular`|`ic_fluent_crop_interim_off_24_filled`
`ic_fluent_crop_interim_off_24_regular`| +|Currency||`currency16Filled`
`currency16Regular`
`currency20Filled`
`currency20Regular`
`currency24Filled`
`currency24Regular`|`ic_fluent_currency_16_filled`
`ic_fluent_currency_16_regular`
`ic_fluent_currency_20_filled`
`ic_fluent_currency_20_regular`
`ic_fluent_currency_24_filled`
`ic_fluent_currency_24_regular`| +|Cut||`cut20Filled`
`cut20Regular`|`ic_fluent_cut_20_filled`
`ic_fluent_cut_20_regular`| +|Dark Theme||`darkTheme24Filled`
`darkTheme24Regular`|`ic_fluent_dark_theme_24_filled`
`ic_fluent_dark_theme_24_regular`| +|Data Area||`dataArea24Filled`
`dataArea24Regular`|`ic_fluent_data_area_24_filled`
`ic_fluent_data_area_24_regular`| +|Data Bar Horizontal||`dataBarHorizontal24Filled`
`dataBarHorizontal24Regular`|`ic_fluent_data_bar_horizontal_24_filled`
`ic_fluent_data_bar_horizontal_24_regular`| +|Data Bar Vertical||`dataBarVertical20Filled`
`dataBarVertical20Regular`
`dataBarVertical24Filled`
`dataBarVertical24Regular`|`ic_fluent_data_bar_vertical_20_filled`
`ic_fluent_data_bar_vertical_20_regular`
`ic_fluent_data_bar_vertical_24_filled`
`ic_fluent_data_bar_vertical_24_regular`| +|Data Funnel||`dataFunnel24Filled`
`dataFunnel24Regular`|`ic_fluent_data_funnel_24_filled`
`ic_fluent_data_funnel_24_regular`| +|Data Histogram||`dataHistogram24Filled`
`dataHistogram24Regular`|`ic_fluent_data_histogram_24_filled`
`ic_fluent_data_histogram_24_regular`| +|Data Line||`dataLine24Filled`
`dataLine24Regular`|`ic_fluent_data_line_24_filled`
`ic_fluent_data_line_24_regular`| +|Data Pie||`dataPie20Filled`
`dataPie20Regular`
`dataPie24Filled`
`dataPie24Regular`|`ic_fluent_data_pie_20_filled`
`ic_fluent_data_pie_20_regular`
`ic_fluent_data_pie_24_filled`
`ic_fluent_data_pie_24_regular`| +|Data Scatter||`dataScatter24Filled`
`dataScatter24Regular`|`ic_fluent_data_scatter_24_filled`
`ic_fluent_data_scatter_24_regular`| +|Data Sunburst||`dataSunburst24Filled`
`dataSunburst24Regular`|`ic_fluent_data_sunburst_24_filled`
`ic_fluent_data_sunburst_24_regular`| +|Data Treemap||`dataTreemap24Filled`
`dataTreemap24Regular`|`ic_fluent_data_treemap_24_filled`
`ic_fluent_data_treemap_24_regular`| +|Data Usage||`dataUsage24Filled`
`dataUsage24Regular`|`ic_fluent_data_usage_24_filled`
`ic_fluent_data_usage_24_regular`| +|Data Waterfall||`dataWaterfall24Filled`
`dataWaterfall24Regular`|`ic_fluent_data_waterfall_24_filled`
`ic_fluent_data_waterfall_24_regular`| +|Data Whisker||`dataWhisker24Filled`
`dataWhisker24Regular`|`ic_fluent_data_whisker_24_filled`
`ic_fluent_data_whisker_24_regular`| +|Delete||`delete20Filled`
`delete20Regular`
`delete24Filled`
`delete24Regular`
`delete28Filled`
`delete28Regular`
`delete48Filled`
`delete48Regular`|`ic_fluent_delete_20_filled`
`ic_fluent_delete_20_regular`
`ic_fluent_delete_24_filled`
`ic_fluent_delete_24_regular`
`ic_fluent_delete_28_filled`
`ic_fluent_delete_28_regular`
`ic_fluent_delete_48_filled`
`ic_fluent_delete_48_regular`| +|Delete Forever||`deleteForever24Filled`
`deleteForever24Regular`
`deleteForever28Filled`
`deleteForever28Regular`|`ic_fluent_delete_forever_24_filled`
`ic_fluent_delete_forever_24_regular`
`ic_fluent_delete_forever_28_filled`
`ic_fluent_delete_forever_28_regular`| +|Delete Off||`deleteOff20Filled`
`deleteOff20Regular`
`deleteOff24Filled`
`deleteOff24Regular`|`ic_fluent_delete_off_20_filled`
`ic_fluent_delete_off_20_regular`
`ic_fluent_delete_off_24_filled`
`ic_fluent_delete_off_24_regular`| +|Design Ideas||`designIdeas24Filled`
`designIdeas24Regular`|`ic_fluent_design_ideas_24_filled`
`ic_fluent_design_ideas_24_regular`| +|Desktop||`desktop16Filled`
`desktop16Regular`
`desktop20Filled`
`desktop20Regular`
`desktop24Filled`
`desktop24Regular`
`desktop28Filled`
`desktop28Regular`|`ic_fluent_desktop_16_filled`
`ic_fluent_desktop_16_regular`
`ic_fluent_desktop_20_filled`
`ic_fluent_desktop_20_regular`
`ic_fluent_desktop_24_filled`
`ic_fluent_desktop_24_regular`
`ic_fluent_desktop_28_filled`
`ic_fluent_desktop_28_regular`| +|Developer Board||`developerBoard24Filled`
`developerBoard24Regular`|`ic_fluent_developer_board_24_filled`
`ic_fluent_developer_board_24_regular`| +|Device EQ||`deviceEq24Filled`
`deviceEq24Regular`|`ic_fluent_device_eq_24_filled`
`ic_fluent_device_eq_24_regular`| +|Dialpad||`dialpad24Filled`
`dialpad24Regular`|`ic_fluent_dialpad_24_filled`
`ic_fluent_dialpad_24_regular`| +|Dialpad Off||`dialpadOff24Filled`
`dialpadOff24Regular`|`ic_fluent_dialpad_off_24_filled`
`ic_fluent_dialpad_off_24_regular`| +|Dictionary||`dictionary20Filled`
`dictionary20Regular`
`dictionary24Filled`
`dictionary24Regular`|`ic_fluent_dictionary_20_filled`
`ic_fluent_dictionary_20_regular`
`ic_fluent_dictionary_24_filled`
`ic_fluent_dictionary_24_regular`| +|Dictionary Add||`dictionaryAdd20Filled`
`dictionaryAdd20Regular`
`dictionaryAdd24Filled`
`dictionaryAdd24Regular`|`ic_fluent_dictionary_add_20_filled`
`ic_fluent_dictionary_add_20_regular`
`ic_fluent_dictionary_add_24_filled`
`ic_fluent_dictionary_add_24_regular`| +|Directions||`directions24Filled`
`directions24Regular`|`ic_fluent_directions_24_filled`
`ic_fluent_directions_24_regular`| +|Dismiss||`dismiss12Filled`
`dismiss12Regular`
`dismiss16Filled`
`dismiss16Regular`
`dismiss20Filled`
`dismiss20Regular`
`dismiss24Filled`
`dismiss24Light`
`dismiss24Regular`
`dismiss28Filled`
`dismiss28Regular`|`ic_fluent_dismiss_12_filled`
`ic_fluent_dismiss_12_regular`
`ic_fluent_dismiss_16_filled`
`ic_fluent_dismiss_16_regular`
`ic_fluent_dismiss_20_filled`
`ic_fluent_dismiss_20_regular`
`ic_fluent_dismiss_24_filled`
`ic_fluent_dismiss_24_regular`
`ic_fluent_dismiss_28_filled`
`ic_fluent_dismiss_28_regular`| +|Dismiss Circle||`dismissCircle16Filled`
`dismissCircle16Regular`
`dismissCircle20Filled`
`dismissCircle20Regular`
`dismissCircle24Filled`
`dismissCircle24Regular`
`dismissCircle48Filled`
`dismissCircle48Regular`|`ic_fluent_dismiss_circle_16_filled`
`ic_fluent_dismiss_circle_16_regular`
`ic_fluent_dismiss_circle_20_filled`
`ic_fluent_dismiss_circle_20_regular`
`ic_fluent_dismiss_circle_24_filled`
`ic_fluent_dismiss_circle_24_regular`
`ic_fluent_dismiss_circle_48_filled`
`ic_fluent_dismiss_circle_48_regular`| +|Divider Short||`dividerShort24Filled`
`dividerShort24Regular`|`ic_fluent_divider_short_24_filled`
`ic_fluent_divider_short_24_regular`| +|Divider Tall||`dividerTall24Filled`
`dividerTall24Regular`|`ic_fluent_divider_tall_24_filled`
`ic_fluent_divider_tall_24_regular`| +|Dock||`dock24Filled`
`dock24Regular`|`ic_fluent_dock_24_filled`
`ic_fluent_dock_24_regular`| +|Dock Left||`dockLeft16Filled`
`dockLeft16Regular`
`dockLeft20Filled`
`dockLeft20Regular`
`dockLeft24Filled`
`dockLeft24Regular`|`ic_fluent_dock_left_16_filled`
`ic_fluent_dock_left_16_regular`
`ic_fluent_dock_left_20_filled`
`ic_fluent_dock_left_20_regular`
`ic_fluent_dock_left_24_filled`
`ic_fluent_dock_left_24_regular`| +|Dock Row||`dockRow24Filled`
`dockRow24Regular`|`ic_fluent_dock_row_24_filled`
`ic_fluent_dock_row_24_regular`| +|Document||`document20Filled`
`document20Regular`
`document24Filled`
`document24Light`
`document24Regular`
`document28Filled`
`document28Regular`|`ic_fluent_document_20_filled`
`ic_fluent_document_20_regular`
`ic_fluent_document_24_filled`
`ic_fluent_document_24_regular`
`ic_fluent_document_28_filled`
`ic_fluent_document_28_regular`| +|Document Autosave||`documentAutosave24Filled`
`documentAutosave24Regular`|`ic_fluent_document_autosave_24_filled`
`ic_fluent_document_autosave_24_regular`| +|Document Catch Up||`documentCatchUp24Filled`
`documentCatchUp24Regular`|`ic_fluent_document_catch_up_24_filled`
`ic_fluent_document_catch_up_24_regular`| +|Document Copy||`documentCopy24Filled`
`documentCopy24Regular`
`documentCopy48Filled`
`documentCopy48Regular`|`ic_fluent_document_copy_24_filled`
`ic_fluent_document_copy_24_regular`
`ic_fluent_document_copy_48_filled`
`ic_fluent_document_copy_48_regular`| +|Document Discard||`documentDiscard24Filled`
`documentDiscard24Regular`|`ic_fluent_document_discard_24_filled`
`ic_fluent_document_discard_24_regular`| +|Document Edit||`documentEdit16Filled`
`documentEdit16Regular`
`documentEdit20Filled`
`documentEdit20Regular`
`documentEdit24Filled`
`documentEdit24Regular`|`ic_fluent_document_edit_16_filled`
`ic_fluent_document_edit_16_regular`
`ic_fluent_document_edit_20_filled`
`ic_fluent_document_edit_20_regular`
`ic_fluent_document_edit_24_filled`
`ic_fluent_document_edit_24_regular`| +|Document Footer||`documentFooter24Filled`
`documentFooter24Regular`|`ic_fluent_document_footer_24_filled`
`ic_fluent_document_footer_24_regular`| +|Document Header||`documentHeader24Filled`
`documentHeader24Regular`|`ic_fluent_document_header_24_filled`
`ic_fluent_document_header_24_regular`| +|Document Header Footer||`documentHeaderFooter24Filled`
`documentHeaderFooter24Regular`|`ic_fluent_document_header_footer_24_filled`
`ic_fluent_document_header_footer_24_regular`| +|Document Landscape||`documentLandscape24Filled`
`documentLandscape24Regular`|`ic_fluent_document_landscape_24_filled`
`ic_fluent_document_landscape_24_regular`| +|Document None||`documentNone24Filled`
`documentNone24Regular`|`ic_fluent_document_none_24_filled`
`ic_fluent_document_none_24_regular`| +|Document One Page||`documentOnePage24Filled`
`documentOnePage24Regular`|`ic_fluent_document_one_page_24_filled`
`ic_fluent_document_one_page_24_regular`| +|Document PDF||`documentPdf16Filled`
`documentPdf16Regular`
`documentPdf20Filled`
`documentPdf20Regular`
`documentPdf24Filled`
`documentPdf24Regular`|`ic_fluent_document_pdf_16_filled`
`ic_fluent_document_pdf_16_regular`
`ic_fluent_document_pdf_20_filled`
`ic_fluent_document_pdf_20_regular`
`ic_fluent_document_pdf_24_filled`
`ic_fluent_document_pdf_24_regular`| +|Document Page||`documentPage24Filled`
`documentPage24Regular`|`ic_fluent_document_page_24_filled`
`ic_fluent_document_page_24_regular`| +|Document Page Bottom Center||`documentPageBottomCenter24Filled`
`documentPageBottomCenter24Regular`|`ic_fluent_document_page_bottom_center_24_filled`
`ic_fluent_document_page_bottom_center_24_regular`| +|Document Page Bottom Left||`documentPageBottomLeft24Filled`
`documentPageBottomLeft24Regular`|`ic_fluent_document_page_bottom_left_24_filled`
`ic_fluent_document_page_bottom_left_24_regular`| +|Document Page Bottom Right||`documentPageBottomRight24Filled`
`documentPageBottomRight24Regular`|`ic_fluent_document_page_bottom_right_24_filled`
`ic_fluent_document_page_bottom_right_24_regular`| +|Document Page Break||`documentPageBreak24Filled`
`documentPageBreak24Regular`|`ic_fluent_document_page_break_24_filled`
`ic_fluent_document_page_break_24_regular`| +|Document Page Top Center||`documentPageTopCenter24Filled`
`documentPageTopCenter24Regular`|`ic_fluent_document_page_top_center_24_filled`
`ic_fluent_document_page_top_center_24_regular`| +|Document Page Top Left||`documentPageTopLeft24Filled`
`documentPageTopLeft24Regular`|`ic_fluent_document_page_top_left_24_filled`
`ic_fluent_document_page_top_left_24_regular`| +|Document Page Top Right||`documentPageTopRight24Filled`
`documentPageTopRight24Regular`|`ic_fluent_document_page_top_right_24_filled`
`ic_fluent_document_page_top_right_24_regular`| +|Document Search||`documentSearch20Filled`
`documentSearch20Regular`
`documentSearch24Filled`
`documentSearch24Regular`|`ic_fluent_document_search_20_filled`
`ic_fluent_document_search_20_regular`
`ic_fluent_document_search_24_filled`
`ic_fluent_document_search_24_regular`| +|Document Toolbox||`documentToolbox20Filled`
`documentToolbox20Regular`
`documentToolbox24Filled`
`documentToolbox24Regular`|`ic_fluent_document_toolbox_20_filled`
`ic_fluent_document_toolbox_20_regular`
`ic_fluent_document_toolbox_24_filled`
`ic_fluent_document_toolbox_24_regular`| +|Document Width||`documentWidth24Filled`
`documentWidth24Regular`|`ic_fluent_document_width_24_filled`
`ic_fluent_document_width_24_regular`| +|Double Swipe Down||`doubleSwipeDown24Filled`
`doubleSwipeDown24Regular`|`ic_fluent_double_swipe_down_24_filled`
`ic_fluent_double_swipe_down_24_regular`| +|Double Swipe Up||`doubleSwipeUp24Filled`
`doubleSwipeUp24Regular`|`ic_fluent_double_swipe_up_24_filled`
`ic_fluent_double_swipe_up_24_regular`| +|Double Tap Swipe Down||`doubleTapSwipeDown24Filled`
`doubleTapSwipeDown24Regular`|`ic_fluent_double_tap_swipe_down_24_filled`
`ic_fluent_double_tap_swipe_down_24_regular`| +|Double Tap Swipe Up||`doubleTapSwipeUp24Filled`
`doubleTapSwipeUp24Regular`|`ic_fluent_double_tap_swipe_up_24_filled`
`ic_fluent_double_tap_swipe_up_24_regular`| +|Drafts||`drafts24Filled`
`drafts24Regular`|`ic_fluent_drafts_24_filled`
`ic_fluent_drafts_24_regular`| +|Drag||`drag24Filled`
`drag24Light`
`drag24Regular`|`ic_fluent_drag_24_filled`
`ic_fluent_drag_24_regular`| +|Drink||`drink24Filled`
`drink24Light`
`drink24Regular`|`ic_fluent_drink_24_filled`
`ic_fluent_drink_24_regular`| +|Drive Mode||`driveMode16Filled`
`driveMode16Regular`
`driveMode20Filled`
`driveMode20Regular`
`driveMode24Filled`
`driveMode24Light`
`driveMode24Regular`|`ic_fluent_drive_mode_16_filled`
`ic_fluent_drive_mode_16_regular`
`ic_fluent_drive_mode_20_filled`
`ic_fluent_drive_mode_20_regular`
`ic_fluent_drive_mode_24_filled`
`ic_fluent_drive_mode_24_regular`| +|Duo||`duo24Filled`
`duo24Regular`|`ic_fluent_duo_24_filled`
`ic_fluent_duo_24_regular`| +|Duo Add||`duoAdd24Filled`
`duoAdd24Regular`|`ic_fluent_duo_add_24_filled`
`ic_fluent_duo_add_24_regular`| +|Duo Desktop||`duoDesktop24Filled`
`duoDesktop24Regular`|`ic_fluent_duo_desktop_24_filled`
`ic_fluent_duo_desktop_24_regular`| +|Duo Error||`duoError24Filled`
`duoError24Regular`|`ic_fluent_duo_error_24_filled`
`ic_fluent_duo_error_24_regular`| +|Duo Group||`duoGroup24Filled`
`duoGroup24Regular`|`ic_fluent_duo_group_24_filled`
`ic_fluent_duo_group_24_regular`| +|Duo Home Lock||`duoHomeLock24Filled`
`duoHomeLock24Regular`|`ic_fluent_duo_home_lock_24_filled`
`ic_fluent_duo_home_lock_24_regular`| +|Duo Link Setup||`duoLinkSetup24Filled`
`duoLinkSetup24Regular`|`ic_fluent_duo_link_setup_24_filled`
`ic_fluent_duo_link_setup_24_regular`| +|Duo Page Header||`duoPageHeader24Filled`
`duoPageHeader24Regular`|`ic_fluent_duo_page_header_24_filled`
`ic_fluent_duo_page_header_24_regular`| +|Duo Pagination||`duoPagination24Filled`
`duoPagination24Regular`|`ic_fluent_duo_pagination_24_filled`
`ic_fluent_duo_pagination_24_regular`| +|Duo Screen Time||`duoScreenTime24Filled`
`duoScreenTime24Regular`|`ic_fluent_duo_screen_time_24_filled`
`ic_fluent_duo_screen_time_24_regular`| +|Duo Status Bar||`duoStatusBar24Filled`
`duoStatusBar24Regular`|`ic_fluent_duo_status_bar_24_filled`
`ic_fluent_duo_status_bar_24_regular`| +|Duo Tablet||`duoTablet24Filled`
`duoTablet24Regular`|`ic_fluent_duo_tablet_24_filled`
`ic_fluent_duo_tablet_24_regular`| +|Duo To PC||`duoToPc24Filled`
`duoToPc24Regular`|`ic_fluent_duo_to_pc_24_filled`
`ic_fluent_duo_to_pc_24_regular`| +|Duo Update||`duoUpdate24Filled`
`duoUpdate24Regular`|`ic_fluent_duo_update_24_filled`
`ic_fluent_duo_update_24_regular`| +|Duo Vertical Scroll||`duoVerticalScroll24Filled`
`duoVerticalScroll24Regular`|`ic_fluent_duo_vertical_scroll_24_filled`
`ic_fluent_duo_vertical_scroll_24_regular`| +|Duo Vibrate||`duoVibrate24Filled`
`duoVibrate24Regular`|`ic_fluent_duo_vibrate_24_filled`
`ic_fluent_duo_vibrate_24_regular`| +|Edit||`edit16Filled`
`edit16Regular`
`edit20Filled`
`edit20Regular`
`edit24Filled`
`edit24Light`
`edit24Regular`|`ic_fluent_edit_16_filled`
`ic_fluent_edit_16_regular`
`ic_fluent_edit_20_filled`
`ic_fluent_edit_20_regular`
`ic_fluent_edit_24_filled`
`ic_fluent_edit_24_regular`| +|Emoji||`emoji16Filled`
`emoji16Regular`
`emoji20Filled`
`emoji20Regular`
`emoji24Filled`
`emoji24Light`
`emoji24Regular`|`ic_fluent_emoji_16_filled`
`ic_fluent_emoji_16_regular`
`ic_fluent_emoji_20_filled`
`ic_fluent_emoji_20_regular`
`ic_fluent_emoji_24_filled`
`ic_fluent_emoji_24_regular`| +|Emoji Add||`emojiAdd24Filled`
`emojiAdd24Regular`|`ic_fluent_emoji_add_24_filled`
`ic_fluent_emoji_add_24_regular`| +|Emoji Angry||`emojiAngry24Filled`
`emojiAngry24Regular`|`ic_fluent_emoji_angry_24_filled`
`ic_fluent_emoji_angry_24_regular`| +|Emoji Sad||`emojiSad24Filled`
`emojiSad24Regular`|`ic_fluent_emoji_sad_24_filled`
`ic_fluent_emoji_sad_24_regular`| +|Emoji Surprise||`emojiSurprise24Filled`
`emojiSurprise24Regular`|`ic_fluent_emoji_surprise_24_filled`
`ic_fluent_emoji_surprise_24_regular`| +|Erase||`erase20Filled`
`erase20Regular`
`erase24Filled`
`erase24Regular`|`ic_fluent_erase_20_filled`
`ic_fluent_erase_20_regular`
`ic_fluent_erase_24_filled`
`ic_fluent_erase_24_regular`| +|Eraser Tool||`eraserTool24Filled`
`eraserTool24Regular`|`ic_fluent_eraser_tool_24_filled`
`ic_fluent_eraser_tool_24_regular`| +|Error Circle||`errorCircle16Filled`
`errorCircle16Regular`
`errorCircle20Filled`
`errorCircle20Regular`
`errorCircle24Filled`
`errorCircle24Regular`|`ic_fluent_error_circle_16_filled`
`ic_fluent_error_circle_16_regular`
`ic_fluent_error_circle_20_filled`
`ic_fluent_error_circle_20_regular`
`ic_fluent_error_circle_24_filled`
`ic_fluent_error_circle_24_regular`| +|Export||`export24Filled`
`export24Regular`|`ic_fluent_export_24_filled`
`ic_fluent_export_24_regular`| +|Extended Dock||`extendedDock24Filled`
`extendedDock24Regular`|`ic_fluent_extended_dock_24_filled`
`ic_fluent_extended_dock_24_regular`| +|Extension||`extension20Filled`
`extension20Regular`
`extension24Filled`
`extension24Regular`|`ic_fluent_extension_20_filled`
`ic_fluent_extension_20_regular`
`ic_fluent_extension_24_filled`
`ic_fluent_extension_24_regular`| +|Eye Hide||`eyeHide24Filled`
`eyeHide24Regular`|`ic_fluent_eye_hide_24_filled`
`ic_fluent_eye_hide_24_regular`| +|Eye Show||`eyeShow20Filled`
`eyeShow20Regular`
`eyeShow24Filled`
`eyeShow24Regular`|`ic_fluent_eye_show_20_filled`
`ic_fluent_eye_show_20_regular`
`ic_fluent_eye_show_24_filled`
`ic_fluent_eye_show_24_regular`| +|FPS 240||`fps24024Filled`
`fps24024Regular`|`ic_fluent_fps_240_24_filled`
`ic_fluent_fps_240_24_regular`| +|FPS 960||`fps96024Filled`
`fps96024Regular`|`ic_fluent_fps_960_24_filled`
`ic_fluent_fps_960_24_regular`| +|Fast Acceleration||`fastAcceleration24Filled`
`fastAcceleration24Regular`|`ic_fluent_fast_acceleration_24_filled`
`ic_fluent_fast_acceleration_24_regular`| +|Fast Forward||`fastForward20Filled`
`fastForward20Regular`
`fastForward24Filled`
`fastForward24Regular`|`ic_fluent_fast_forward_20_filled`
`ic_fluent_fast_forward_20_regular`
`ic_fluent_fast_forward_24_filled`
`ic_fluent_fast_forward_24_regular`| +|Fast Mode||`fastMode16Filled`
`fastMode16Regular`
`fastMode20Filled`
`fastMode20Regular`
`fastMode24Filled`
`fastMode24Regular`
`fastMode28Filled`
`fastMode28Regular`|`ic_fluent_fast_mode_16_filled`
`ic_fluent_fast_mode_16_regular`
`ic_fluent_fast_mode_20_filled`
`ic_fluent_fast_mode_20_regular`
`ic_fluent_fast_mode_24_filled`
`ic_fluent_fast_mode_24_regular`
`ic_fluent_fast_mode_28_filled`
`ic_fluent_fast_mode_28_regular`| +|Filter||`filter20Filled`
`filter20Regular`
`filter24Filled`
`filter24Regular`
`filter28Filled`
`filter28Regular`|`ic_fluent_filter_20_filled`
`ic_fluent_filter_20_regular`
`ic_fluent_filter_24_filled`
`ic_fluent_filter_24_regular`
`ic_fluent_filter_28_filled`
`ic_fluent_filter_28_regular`| +|Fingerprint||`fingerprint24Filled`
`fingerprint24Regular`|`ic_fluent_fingerprint_24_filled`
`ic_fluent_fingerprint_24_regular`| +|Fit Width||`fitWidth16Filled`
`fitWidth16Regular`
`fitWidth20Filled`
`fitWidth20Regular`
`fitWidth24Filled`
`fitWidth24Regular`|`ic_fluent_fit_width_16_filled`
`ic_fluent_fit_width_16_regular`
`ic_fluent_fit_width_20_filled`
`ic_fluent_fit_width_20_regular`
`ic_fluent_fit_width_24_filled`
`ic_fluent_fit_width_24_regular`| +|Flag||`flag16Filled`
`flag16Regular`
`flag20Filled`
`flag20Regular`
`flag24Filled`
`flag24Light`
`flag24Regular`
`flag28Filled`
`flag28Regular`
`flag48Filled`
`flag48Regular`|`ic_fluent_flag_16_filled`
`ic_fluent_flag_16_regular`
`ic_fluent_flag_20_filled`
`ic_fluent_flag_20_regular`
`ic_fluent_flag_24_filled`
`ic_fluent_flag_24_regular`
`ic_fluent_flag_28_filled`
`ic_fluent_flag_28_regular`
`ic_fluent_flag_48_filled`
`ic_fluent_flag_48_regular`| +|Flag Off||`flagOff24Filled`
`flagOff24Regular`
`flagOff28Filled`
`flagOff28Regular`
`flagOff48Filled`
`flagOff48Regular`|`ic_fluent_flag_off_24_filled`
`ic_fluent_flag_off_24_regular`
`ic_fluent_flag_off_28_filled`
`ic_fluent_flag_off_28_regular`
`ic_fluent_flag_off_48_filled`
`ic_fluent_flag_off_48_regular`| +|Flash Auto||`flashAuto24Filled`
`flashAuto24Regular`|`ic_fluent_flash_auto_24_filled`
`ic_fluent_flash_auto_24_regular`| +|Flash Off||`flashOff24Filled`
`flashOff24Regular`|`ic_fluent_flash_off_24_filled`
`ic_fluent_flash_off_24_regular`| +|Flash On||`flashOn24Filled`
`flashOn24Regular`|`ic_fluent_flash_on_24_filled`
`ic_fluent_flash_on_24_regular`| +|Flashlight||`flashlight24Filled`
`flashlight24Regular`|`ic_fluent_flashlight_24_filled`
`ic_fluent_flashlight_24_regular`| +|Flashlight Off||`flashlightOff24Filled`
`flashlightOff24Regular`|`ic_fluent_flashlight_off_24_filled`
`ic_fluent_flashlight_off_24_regular`| +|Folder||`folder20Filled`
`folder20Regular`
`folder24Filled`
`folder24Regular`
`folder28Filled`
`folder28Regular`
`folder48Filled`
`folder48Regular`|`ic_fluent_folder_20_filled`
`ic_fluent_folder_20_regular`
`ic_fluent_folder_24_filled`
`ic_fluent_folder_24_regular`
`ic_fluent_folder_28_filled`
`ic_fluent_folder_28_regular`
`ic_fluent_folder_48_filled`
`ic_fluent_folder_48_regular`| +|Folder Add||`folderAdd20Filled`
`folderAdd20Regular`
`folderAdd24Filled`
`folderAdd24Regular`
`folderAdd28Filled`
`folderAdd28Regular`
`folderAdd48Filled`
`folderAdd48Regular`|`ic_fluent_folder_add_20_filled`
`ic_fluent_folder_add_20_regular`
`ic_fluent_folder_add_24_filled`
`ic_fluent_folder_add_24_regular`
`ic_fluent_folder_add_28_filled`
`ic_fluent_folder_add_28_regular`
`ic_fluent_folder_add_48_filled`
`ic_fluent_folder_add_48_regular`| +|Folder Junk||`folderJunk20Filled`
`folderJunk20Regular`
`folderJunk24Filled`
`folderJunk24Regular`
`folderJunk28Filled`
`folderJunk28Regular`
`folderJunk48Filled`
`folderJunk48Regular`|`ic_fluent_folder_junk_20_filled`
`ic_fluent_folder_junk_20_regular`
`ic_fluent_folder_junk_24_filled`
`ic_fluent_folder_junk_24_regular`
`ic_fluent_folder_junk_28_filled`
`ic_fluent_folder_junk_28_regular`
`ic_fluent_folder_junk_48_filled`
`ic_fluent_folder_junk_48_regular`| +|Folder Link||`folderLink20Filled`
`folderLink20Regular`
`folderLink24Filled`
`folderLink24Regular`
`folderLink28Filled`
`folderLink28Regular`
`folderLink48Filled`
`folderLink48Regular`|`ic_fluent_folder_link_20_filled`
`ic_fluent_folder_link_20_regular`
`ic_fluent_folder_link_24_filled`
`ic_fluent_folder_link_24_regular`
`ic_fluent_folder_link_28_filled`
`ic_fluent_folder_link_28_regular`
`ic_fluent_folder_link_48_filled`
`ic_fluent_folder_link_48_regular`| +|Folder Move||`folderMove20Filled`
`folderMove20Regular`
`folderMove24Filled`
`folderMove24Regular`
`folderMove28Filled`
`folderMove28Regular`
`folderMove48Filled`
`folderMove48Regular`|`ic_fluent_folder_move_20_filled`
`ic_fluent_folder_move_20_regular`
`ic_fluent_folder_move_24_filled`
`ic_fluent_folder_move_24_regular`
`ic_fluent_folder_move_28_filled`
`ic_fluent_folder_move_28_regular`
`ic_fluent_folder_move_48_filled`
`ic_fluent_folder_move_48_regular`| +|Folder Open||`folderOpen24Filled`
`folderOpen24Regular`|`ic_fluent_folder_open_24_filled`
`ic_fluent_folder_open_24_regular`| +|Folder Open Vertical||`folderOpenVertical20Filled`
`folderOpenVertical20Regular`|`ic_fluent_folder_open_vertical_20_filled`
`ic_fluent_folder_open_vertical_20_regular`| +|Folder Public||`folderPublic16Filled`
`folderPublic16Regular`
`folderPublic20Filled`
`folderPublic20Regular`
`folderPublic24Filled`
`folderPublic24Regular`|`ic_fluent_folder_public_16_filled`
`ic_fluent_folder_public_16_regular`
`ic_fluent_folder_public_20_filled`
`ic_fluent_folder_public_20_regular`
`ic_fluent_folder_public_24_filled`
`ic_fluent_folder_public_24_regular`| +|Folder Zip||`folderZip16Filled`
`folderZip16Regular`
`folderZip20Filled`
`folderZip20Regular`
`folderZip24Filled`
`folderZip24Regular`|`ic_fluent_folder_zip_16_filled`
`ic_fluent_folder_zip_16_regular`
`ic_fluent_folder_zip_20_filled`
`ic_fluent_folder_zip_20_regular`
`ic_fluent_folder_zip_24_filled`
`ic_fluent_folder_zip_24_regular`| +|Font Decrease||`fontDecrease20Filled`
`fontDecrease20Regular`
`fontDecrease24Filled`
`fontDecrease24Regular`|`ic_fluent_font_decrease_20_filled`
`ic_fluent_font_decrease_20_regular`
`ic_fluent_font_decrease_24_filled`
`ic_fluent_font_decrease_24_regular`| +|Font Increase||`fontIncrease20Filled`
`fontIncrease20Regular`
`fontIncrease24Filled`
`fontIncrease24Regular`|`ic_fluent_font_increase_20_filled`
`ic_fluent_font_increase_20_regular`
`ic_fluent_font_increase_24_filled`
`ic_fluent_font_increase_24_regular`| +|Font Space Tracking In||`fontSpaceTrackingIn16Filled`
`fontSpaceTrackingIn16Regular`
`fontSpaceTrackingIn20Filled`
`fontSpaceTrackingIn20Regular`
`fontSpaceTrackingIn24Filled`
`fontSpaceTrackingIn24Regular`
`fontSpaceTrackingIn28Filled`
`fontSpaceTrackingIn28Regular`|`ic_fluent_font_space_tracking_in_16_filled`
`ic_fluent_font_space_tracking_in_16_regular`
`ic_fluent_font_space_tracking_in_20_filled`
`ic_fluent_font_space_tracking_in_20_regular`
`ic_fluent_font_space_tracking_in_24_filled`
`ic_fluent_font_space_tracking_in_24_regular`
`ic_fluent_font_space_tracking_in_28_filled`
`ic_fluent_font_space_tracking_in_28_regular`| +|Font Space Tracking Out||`fontSpaceTrackingOut16Filled`
`fontSpaceTrackingOut16Regular`
`fontSpaceTrackingOut20Filled`
`fontSpaceTrackingOut20Regular`
`fontSpaceTrackingOut24Filled`
`fontSpaceTrackingOut24Regular`
`fontSpaceTrackingOut28Filled`
`fontSpaceTrackingOut28Regular`|`ic_fluent_font_space_tracking_out_16_filled`
`ic_fluent_font_space_tracking_out_16_regular`
`ic_fluent_font_space_tracking_out_20_filled`
`ic_fluent_font_space_tracking_out_20_regular`
`ic_fluent_font_space_tracking_out_24_filled`
`ic_fluent_font_space_tracking_out_24_regular`
`ic_fluent_font_space_tracking_out_28_filled`
`ic_fluent_font_space_tracking_out_28_regular`| +|Food||`food20Filled`
`food20Regular`
`food24Filled`
`food24Regular`|`ic_fluent_food_20_filled`
`ic_fluent_food_20_regular`
`ic_fluent_food_24_filled`
`ic_fluent_food_24_regular`| +|Full Screen Zoom||`fullScreenZoom24Filled`
`fullScreenZoom24Regular`|`ic_fluent_full_screen_zoom_24_filled`
`ic_fluent_full_screen_zoom_24_regular`| +|GIF||`gif20Filled`
`gif20Regular`
`gif24Filled`
`gif24Light`
`gif24Regular`|`ic_fluent_gif_20_filled`
`ic_fluent_gif_20_regular`
`ic_fluent_gif_24_filled`
`ic_fluent_gif_24_regular`| +|Games||`games24Filled`
`games24Regular`|`ic_fluent_games_24_filled`
`ic_fluent_games_24_regular`| +|Gesture||`gesture24Filled`
`gesture24Light`
`gesture24Regular`|`ic_fluent_gesture_24_filled`
`ic_fluent_gesture_24_regular`| +|Gift||`gift20Filled`
`gift20Regular`
`gift24Filled`
`gift24Regular`|`ic_fluent_gift_20_filled`
`ic_fluent_gift_20_regular`
`ic_fluent_gift_24_filled`
`ic_fluent_gift_24_regular`| +|Glance||`glance24Filled`
`glance24Regular`|`ic_fluent_glance_24_filled`
`ic_fluent_glance_24_regular`| +|Globe||`globe20Filled`
`globe20Regular`
`globe24Filled`
`globe24Light`
`globe24Regular`|`ic_fluent_globe_20_filled`
`ic_fluent_globe_20_regular`
`ic_fluent_globe_24_filled`
`ic_fluent_globe_24_regular`| +|Globe Add||`globeAdd24Filled`
`globeAdd24Light`
`globeAdd24Regular`|`ic_fluent_globe_add_24_filled`
`ic_fluent_globe_add_24_regular`| +|Globe Desktop||`globeDesktop24Filled`
`globeDesktop24Regular`|`ic_fluent_globe_desktop_24_filled`
`ic_fluent_globe_desktop_24_regular`| +|Globe Location||`globeLocation24Filled`
`globeLocation24Regular`|`ic_fluent_globe_location_24_filled`
`ic_fluent_globe_location_24_regular`| +|Globe Video||`globeVideo24Filled`
`globeVideo24Regular`|`ic_fluent_globe_video_24_filled`
`ic_fluent_globe_video_24_regular`| +|Grid||`grid20Filled`
`grid20Regular`
`grid24Filled`
`grid24Regular`
`grid28Filled`
`grid28Regular`|`ic_fluent_grid_20_filled`
`ic_fluent_grid_20_regular`
`ic_fluent_grid_24_filled`
`ic_fluent_grid_24_regular`
`ic_fluent_grid_28_filled`
`ic_fluent_grid_28_regular`| +|Group||`group24Filled`
`group24Regular`|`ic_fluent_group_24_filled`
`ic_fluent_group_24_regular`| +|Group List||`groupList24Filled`
`groupList24Regular`|`ic_fluent_group_list_24_filled`
`ic_fluent_group_list_24_regular`| +|Guest||`guest24Filled`
`guest24Regular`|`ic_fluent_guest_24_filled`
`ic_fluent_guest_24_regular`| +|HDR||`hdr24Filled`
`hdr24Regular`|`ic_fluent_hdr_24_filled`
`ic_fluent_hdr_24_regular`| +|Hand Raise||`handRaise24Regular`|`ic_fluent_hand_raise_24_regular`| +|Headphones||`headphones24Filled`
`headphones24Regular`
`headphones28Filled`
`headphones28Regular`|`ic_fluent_headphones_24_filled`
`ic_fluent_headphones_24_regular`
`ic_fluent_headphones_28_filled`
`ic_fluent_headphones_28_regular`| +|Headset||`headset24Filled`
`headset24Regular`
`headset28Filled`
`headset28Regular`|`ic_fluent_headset_24_filled`
`ic_fluent_headset_24_regular`
`ic_fluent_headset_28_filled`
`ic_fluent_headset_28_regular`| +|Headset VR||`headsetVr20Filled`
`headsetVr20Regular`
`headsetVr24Filled`
`headsetVr24Regular`|`ic_fluent_headset_vr_20_filled`
`ic_fluent_headset_vr_20_regular`
`ic_fluent_headset_vr_24_filled`
`ic_fluent_headset_vr_24_regular`| +|Heart||`heart16Filled`
`heart16Regular`
`heart24Filled`
`heart24Regular`|`ic_fluent_heart_16_filled`
`ic_fluent_heart_16_regular`
`ic_fluent_heart_24_filled`
`ic_fluent_heart_24_regular`| +|Help Circle||`helpCircle16Filled`
`helpCircle16Regular`
`helpCircle20Filled`
`helpCircle20Regular`
`helpCircle24Filled`
`helpCircle24Regular`
`helpCircle28Filled`
`helpCircle28Regular`
`helpCircle48Filled`
`helpCircle48Regular`|`ic_fluent_help_circle_16_filled`
`ic_fluent_help_circle_16_regular`
`ic_fluent_help_circle_20_filled`
`ic_fluent_help_circle_20_regular`
`ic_fluent_help_circle_24_filled`
`ic_fluent_help_circle_24_regular`
`ic_fluent_help_circle_28_filled`
`ic_fluent_help_circle_28_regular`
`ic_fluent_help_circle_48_filled`
`ic_fluent_help_circle_48_regular`| +|Highlight||`highlight20Filled`
`highlight20Regular`
`highlight24Filled`
`highlight24Regular`|`ic_fluent_highlight_20_filled`
`ic_fluent_highlight_20_regular`
`ic_fluent_highlight_24_filled`
`ic_fluent_highlight_24_regular`| +|History||`history20Filled`
`history20Regular`
`history24Filled`
`history24Regular`|`ic_fluent_history_20_filled`
`ic_fluent_history_20_regular`
`ic_fluent_history_24_filled`
`ic_fluent_history_24_regular`| +|Home||`home20Filled`
`home20Regular`
`home24Filled`
`home24Regular`
`home28Filled`
`home28Regular`|`ic_fluent_home_20_filled`
`ic_fluent_home_20_regular`
`ic_fluent_home_24_filled`
`ic_fluent_home_24_regular`
`ic_fluent_home_28_filled`
`ic_fluent_home_28_regular`| +|Home Add||`homeAdd24Filled`
`homeAdd24Regular`|`ic_fluent_home_add_24_filled`
`ic_fluent_home_add_24_regular`| +|Hub||`hub20Filled`
`hub20Regular`
`hub24Filled`
`hub24Regular`|`ic_fluent_hub_20_filled`
`ic_fluent_hub_20_regular`
`ic_fluent_hub_24_filled`
`ic_fluent_hub_24_regular`| +|Icons||`icons24Filled`
`icons24Regular`|`ic_fluent_icons_24_filled`
`ic_fluent_icons_24_regular`| +|Image||`image20Filled`
`image20Regular`
`image24Filled`
`image24Light`
`image24Regular`
`image28Filled`
`image28Regular`|`ic_fluent_image_20_filled`
`ic_fluent_image_20_regular`
`ic_fluent_image_24_filled`
`ic_fluent_image_24_regular`
`ic_fluent_image_28_filled`
`ic_fluent_image_28_regular`| +|Image Add||`imageAdd24Filled`
`imageAdd24Regular`|`ic_fluent_image_add_24_filled`
`ic_fluent_image_add_24_regular`| +|Image Alt Text||`imageAltText24Filled`
`imageAltText24Regular`|`ic_fluent_image_alt_text_24_filled`
`ic_fluent_image_alt_text_24_regular`| +|Image Edit||`imageEdit16Filled`
`imageEdit16Regular`
`imageEdit20Filled`
`imageEdit20Regular`
`imageEdit24Filled`
`imageEdit24Regular`|`ic_fluent_image_edit_16_filled`
`ic_fluent_image_edit_16_regular`
`ic_fluent_image_edit_20_filled`
`ic_fluent_image_edit_20_regular`
`ic_fluent_image_edit_24_filled`
`ic_fluent_image_edit_24_regular`| +|Image Library||`imageLibrary20Filled`
`imageLibrary20Regular`
`imageLibrary24Filled`
`imageLibrary24Regular`
`imageLibrary28Filled`
`imageLibrary28Regular`|`ic_fluent_image_library_20_filled`
`ic_fluent_image_library_20_regular`
`ic_fluent_image_library_24_filled`
`ic_fluent_image_library_24_regular`
`ic_fluent_image_library_28_filled`
`ic_fluent_image_library_28_regular`| +|Image Search||`imageSearch20Filled`
`imageSearch20Regular`
`imageSearch24Filled`
`imageSearch24Regular`|`ic_fluent_image_search_20_filled`
`ic_fluent_image_search_20_regular`
`ic_fluent_image_search_24_filled`
`ic_fluent_image_search_24_regular`| +|Immersive Reader||`immersiveReader20Filled`
`immersiveReader20Regular`
`immersiveReader24Filled`
`immersiveReader24Regular`|`ic_fluent_immersive_reader_20_filled`
`ic_fluent_immersive_reader_20_regular`
`ic_fluent_immersive_reader_24_filled`
`ic_fluent_immersive_reader_24_regular`| +|Important||`important20Filled`
`important20Regular`
`important24Filled`
`important24Regular`|`ic_fluent_important_20_filled`
`ic_fluent_important_20_regular`
`ic_fluent_important_24_filled`
`ic_fluent_important_24_regular`| +|InPrivate Account||`inprivateAccount16Filled`
`inprivateAccount16Regular`
`inprivateAccount20Filled`
`inprivateAccount20Regular`
`inprivateAccount24Filled`
`inprivateAccount24Regular`
`inprivateAccount28Filled`
`inprivateAccount28Regular`|`ic_fluent_inprivate_account_16_filled`
`ic_fluent_inprivate_account_16_regular`
`ic_fluent_inprivate_account_20_filled`
`ic_fluent_inprivate_account_20_regular`
`ic_fluent_inprivate_account_24_filled`
`ic_fluent_inprivate_account_24_regular`
`ic_fluent_inprivate_account_28_filled`
`ic_fluent_inprivate_account_28_regular`| +|Incognito||`incognito24Filled`
`incognito24Light`
`incognito24Regular`|`ic_fluent_incognito_24_filled`
`ic_fluent_incognito_24_regular`| +|Incoming Video||`incomingVideo24Filled`
`incomingVideo24Regular`|`ic_fluent_incoming_video_24_filled`
`ic_fluent_incoming_video_24_regular`| +|Incoming Video Off||`incomingVideoOff24Filled`
`incomingVideoOff24Regular`|`ic_fluent_incoming_video_off_24_filled`
`ic_fluent_incoming_video_off_24_regular`| +|Info||`info20Filled`
`info20Regular`
`info24Filled`
`info24Light`
`info24Regular`
`info28Filled`
`info28Regular`|`ic_fluent_info_20_filled`
`ic_fluent_info_20_regular`
`ic_fluent_info_24_filled`
`ic_fluent_info_24_regular`
`ic_fluent_info_28_filled`
`ic_fluent_info_28_regular`| +|Inking Tool||`inkingTool20Filled`
`inkingTool20Regular`
`inkingTool24Filled`
`inkingTool24Regular`|`ic_fluent_inking_tool_20_filled`
`ic_fluent_inking_tool_20_regular`
`ic_fluent_inking_tool_24_filled`
`ic_fluent_inking_tool_24_regular`| +|Insert||`insert20Filled`
`insert20Regular`|`ic_fluent_insert_20_filled`
`ic_fluent_insert_20_regular`| +|Inspect||`inspect20Filled`
`inspect20Regular`
`inspect24Filled`
`inspect24Regular`|`ic_fluent_inspect_20_filled`
`ic_fluent_inspect_20_regular`
`ic_fluent_inspect_24_filled`
`ic_fluent_inspect_24_regular`| +|JavaScript||`javascript16Filled`
`javascript16Regular`
`javascript20Filled`
`javascript20Regular`
`javascript24Filled`
`javascript24Regular`|`ic_fluent_javascript_16_filled`
`ic_fluent_javascript_16_regular`
`ic_fluent_javascript_20_filled`
`ic_fluent_javascript_20_regular`
`ic_fluent_javascript_24_filled`
`ic_fluent_javascript_24_regular`| +|Key||`key20Filled`
`key20Regular`
`key24Filled`
`key24Regular`|`ic_fluent_key_20_filled`
`ic_fluent_key_20_regular`
`ic_fluent_key_24_filled`
`ic_fluent_key_24_regular`| +|Keyboard||`keyboard20Filled`
`keyboard20Regular`
`keyboard24Filled`
`keyboard24Light`
`keyboard24Regular`|`ic_fluent_keyboard_20_filled`
`ic_fluent_keyboard_20_regular`
`ic_fluent_keyboard_24_filled`
`ic_fluent_keyboard_24_regular`| +|Keyboard Dock||`keyboardDock24Filled`
`keyboardDock24Light`
`keyboardDock24Regular`|`ic_fluent_keyboard_dock_24_filled`
`ic_fluent_keyboard_dock_24_regular`| +|Keyboard Layout Float||`keyboardLayoutFloat24Filled`
`keyboardLayoutFloat24Light`
`keyboardLayoutFloat24Regular`|`ic_fluent_keyboard_layout_float_24_filled`
`ic_fluent_keyboard_layout_float_24_regular`| +|Keyboard Layout One Handed Left||`keyboardLayoutOneHandedLeft24Filled`
`keyboardLayoutOneHandedLeft24Light`
`keyboardLayoutOneHandedLeft24Regular`|`ic_fluent_keyboard_layout_one_handed_left_24_filled`
`ic_fluent_keyboard_layout_one_handed_left_24_regular`| +|Keyboard Layout Resize||`keyboardLayoutResize24Filled`
`keyboardLayoutResize24Light`
`keyboardLayoutResize24Regular`|`ic_fluent_keyboard_layout_resize_24_filled`
`ic_fluent_keyboard_layout_resize_24_regular`| +|Keyboard Layout Split||`keyboardLayoutSplit24Filled`
`keyboardLayoutSplit24Light`
`keyboardLayoutSplit24Regular`|`ic_fluent_keyboard_layout_split_24_filled`
`ic_fluent_keyboard_layout_split_24_regular`| +|Keyboard Shift||`keyboardShift24Filled`
`keyboardShift24Regular`|`ic_fluent_keyboard_shift_24_filled`
`ic_fluent_keyboard_shift_24_regular`| +|Keyboard Shift Uppercase||`keyboardShiftUppercase24Filled`
`keyboardShiftUppercase24Regular`|`ic_fluent_keyboard_shift_uppercase_24_filled`
`ic_fluent_keyboard_shift_uppercase_24_regular`| +|Keyboard Tab||`keyboardTab24Filled`
`keyboardTab24Light`
`keyboardTab24Regular`|`ic_fluent_keyboard_tab_24_filled`
`ic_fluent_keyboard_tab_24_regular`| +|Laptop||`laptop16Filled`
`laptop16Regular`
`laptop20Filled`
`laptop20Regular`
`laptop24Filled`
`laptop24Regular`
`laptop28Filled`
`laptop28Regular`|`ic_fluent_laptop_16_filled`
`ic_fluent_laptop_16_regular`
`ic_fluent_laptop_20_filled`
`ic_fluent_laptop_20_regular`
`ic_fluent_laptop_24_filled`
`ic_fluent_laptop_24_regular`
`ic_fluent_laptop_28_filled`
`ic_fluent_laptop_28_regular`| +|Lasso||`lasso24Filled`
`lasso24Regular`|`ic_fluent_lasso_24_filled`
`ic_fluent_lasso_24_regular`| +|Launcher Settings||`launcherSettings24Filled`
`launcherSettings24Regular`|`ic_fluent_launcher_settings_24_filled`
`ic_fluent_launcher_settings_24_regular`| +|Layer||`layer20Filled`
`layer20Regular`
`layer24Filled`
`layer24Regular`|`ic_fluent_layer_20_filled`
`ic_fluent_layer_20_regular`
`ic_fluent_layer_24_filled`
`ic_fluent_layer_24_regular`| +|Library||`library24Filled`
`library24Regular`
`library28Filled`
`library28Regular`|`ic_fluent_library_24_filled`
`ic_fluent_library_24_regular`
`ic_fluent_library_28_filled`
`ic_fluent_library_28_regular`| +|Lightbulb||`lightbulb20Filled`
`lightbulb20Regular`
`lightbulb24Filled`
`lightbulb24Light`
`lightbulb24Regular`|`ic_fluent_lightbulb_20_filled`
`ic_fluent_lightbulb_20_regular`
`ic_fluent_lightbulb_24_filled`
`ic_fluent_lightbulb_24_regular`| +|Lightbulb Circle||`lightbulbCircle24Filled`
`lightbulbCircle24Light`
`lightbulbCircle24Regular`|`ic_fluent_lightbulb_circle_24_filled`
`ic_fluent_lightbulb_circle_24_regular`| +|Link||`link16Filled`
`link16Regular`
`link20Filled`
`link20Regular`
`link24Filled`
`link24Regular`
`link28Filled`
`link28Regular`
`link48Filled`
`link48Regular`|`ic_fluent_link_16_filled`
`ic_fluent_link_16_regular`
`ic_fluent_link_20_filled`
`ic_fluent_link_20_regular`
`ic_fluent_link_24_filled`
`ic_fluent_link_24_regular`
`ic_fluent_link_28_filled`
`ic_fluent_link_28_regular`
`ic_fluent_link_48_filled`
`ic_fluent_link_48_regular`| +|Link Edit||`linkEdit16Filled`
`linkEdit16Regular`
`linkEdit20Filled`
`linkEdit20Regular`|`ic_fluent_link_edit_16_filled`
`ic_fluent_link_edit_16_regular`
`ic_fluent_link_edit_20_filled`
`ic_fluent_link_edit_20_regular`| +|Link Remove||`linkRemove20Filled`
`linkRemove20Regular`|`ic_fluent_link_remove_20_filled`
`ic_fluent_link_remove_20_regular`| +|List||`list20Filled`
`list20Regular`
`list24Filled`
`list24Regular`
`list28Filled`
`list28Regular`|`ic_fluent_list_20_filled`
`ic_fluent_list_20_regular`
`ic_fluent_list_24_filled`
`ic_fluent_list_24_regular`
`ic_fluent_list_28_filled`
`ic_fluent_list_28_regular`| +|Live||`live24Filled`
`live24Regular`|`ic_fluent_live_24_filled`
`ic_fluent_live_24_regular`| +|Local Language||`localLanguage16Filled`
`localLanguage16Regular`
`localLanguage20Filled`
`localLanguage20Regular`
`localLanguage24Filled`
`localLanguage24Light`
`localLanguage24Regular`
`localLanguage28Filled`
`localLanguage28Regular`|`ic_fluent_local_language_16_filled`
`ic_fluent_local_language_16_regular`
`ic_fluent_local_language_20_filled`
`ic_fluent_local_language_20_regular`
`ic_fluent_local_language_24_filled`
`ic_fluent_local_language_24_regular`
`ic_fluent_local_language_28_filled`
`ic_fluent_local_language_28_regular`| +|Location||`location12Filled`
`location12Regular`
`location16Filled`
`location16Regular`
`location20Filled`
`location20Regular`
`location24Filled`
`location24Light`
`location24Regular`
`location28Filled`
`location28Regular`|`ic_fluent_location_12_filled`
`ic_fluent_location_12_regular`
`ic_fluent_location_16_filled`
`ic_fluent_location_16_regular`
`ic_fluent_location_20_filled`
`ic_fluent_location_20_regular`
`ic_fluent_location_24_filled`
`ic_fluent_location_24_regular`
`ic_fluent_location_28_filled`
`ic_fluent_location_28_regular`| +|Location Not Found||`locationNotFound24Filled`
`locationNotFound24Regular`|`ic_fluent_location_not_found_24_filled`
`ic_fluent_location_not_found_24_regular`| +|Lock||`lock16Filled`
`lock16Regular`
`lock20Filled`
`lock20Regular`
`lock24Filled`
`lock24Regular`|`ic_fluent_lock_16_filled`
`ic_fluent_lock_16_regular`
`ic_fluent_lock_20_filled`
`ic_fluent_lock_20_regular`
`ic_fluent_lock_24_filled`
`ic_fluent_lock_24_regular`| +|Lock Shield||`lockShield24Filled`
`lockShield24Regular`|`ic_fluent_lock_shield_24_filled`
`ic_fluent_lock_shield_24_regular`| +|Magic Wand||`magicWand24Filled`
`magicWand24Regular`|`ic_fluent_magic_wand_24_filled`
`ic_fluent_magic_wand_24_regular`| +|Mail||`mail20Filled`
`mail20Regular`
`mail24Filled`
`mail24Regular`
`mail28Filled`
`mail28Regular`
`mail48Filled`
`mail48Regular`|`ic_fluent_mail_20_filled`
`ic_fluent_mail_20_regular`
`ic_fluent_mail_24_filled`
`ic_fluent_mail_24_regular`
`ic_fluent_mail_28_filled`
`ic_fluent_mail_28_regular`
`ic_fluent_mail_48_filled`
`ic_fluent_mail_48_regular`| +|Mail Add||`mailAdd24Filled`
`mailAdd24Regular`|`ic_fluent_mail_add_24_filled`
`ic_fluent_mail_add_24_regular`| +|Mail All||`mailAll20Filled`
`mailAll20Regular`
`mailAll24Filled`
`mailAll24Regular`|`ic_fluent_mail_all_20_filled`
`ic_fluent_mail_all_20_regular`
`ic_fluent_mail_all_24_filled`
`ic_fluent_mail_all_24_regular`| +|Mail All Accounts||`mailAllAccounts24Filled`
`mailAllAccounts24Regular`|`ic_fluent_mail_all_accounts_24_filled`
`ic_fluent_mail_all_accounts_24_regular`| +|Mail Inbox||`mailInbox24Filled`
`mailInbox24Regular`
`mailInbox28Filled`
`mailInbox28Regular`|`ic_fluent_mail_inbox_24_filled`
`ic_fluent_mail_inbox_24_regular`
`ic_fluent_mail_inbox_28_filled`
`ic_fluent_mail_inbox_28_regular`| +|Mail Move To Focussed||`mailMoveToFocussed24Filled`
`mailMoveToFocussed24Regular`|`ic_fluent_mail_move_to_focussed_24_filled`
`ic_fluent_mail_move_to_focussed_24_regular`| +|Mail Outbox||`mailOutbox24Filled`
`mailOutbox24Regular`|`ic_fluent_mail_outbox_24_filled`
`ic_fluent_mail_outbox_24_regular`| +|Mail Read||`mailRead24Filled`
`mailRead24Regular`
`mailRead28Filled`
`mailRead28Regular`
`mailRead48Filled`
`mailRead48Regular`|`ic_fluent_mail_read_24_filled`
`ic_fluent_mail_read_24_regular`
`ic_fluent_mail_read_28_filled`
`ic_fluent_mail_read_28_regular`
`ic_fluent_mail_read_48_filled`
`ic_fluent_mail_read_48_regular`| +|Mail Unread||`mailUnread16Filled`
`mailUnread16Regular`
`mailUnread20Filled`
`mailUnread20Regular`
`mailUnread24Filled`
`mailUnread24Regular`
`mailUnread28Filled`
`mailUnread28Regular`
`mailUnread48Filled`
`mailUnread48Regular`|`ic_fluent_mail_unread_16_filled`
`ic_fluent_mail_unread_16_regular`
`ic_fluent_mail_unread_20_filled`
`ic_fluent_mail_unread_20_regular`
`ic_fluent_mail_unread_24_filled`
`ic_fluent_mail_unread_24_regular`
`ic_fluent_mail_unread_28_filled`
`ic_fluent_mail_unread_28_regular`
`ic_fluent_mail_unread_48_filled`
`ic_fluent_mail_unread_48_regular`| +|Mail Unsubscribe||`mailUnsubscribe24Filled`
`mailUnsubscribe24Regular`|`ic_fluent_mail_unsubscribe_24_filled`
`ic_fluent_mail_unsubscribe_24_regular`| +|Malware Detected||`malwareDetected16Filled`
`malwareDetected16Regular`
`malwareDetected24Filled`
`malwareDetected24Regular`|`ic_fluent_malware_detected_16_filled`
`ic_fluent_malware_detected_16_regular`
`ic_fluent_malware_detected_24_filled`
`ic_fluent_malware_detected_24_regular`| +|Manufacturer||`manufacturer24Filled`
`manufacturer24Regular`|`ic_fluent_manufacturer_24_filled`
`ic_fluent_manufacturer_24_regular`| +|Map||`map24Filled`
`map24Regular`|`ic_fluent_map_24_filled`
`ic_fluent_map_24_regular`| +|Mark Read||`markRead24Filled`
`markRead24Regular`|`ic_fluent_mark_read_24_filled`
`ic_fluent_mark_read_24_regular`| +|Mark Unread||`markUnread24Filled`
`markUnread24Regular`|`ic_fluent_mark_unread_24_filled`
`ic_fluent_mark_unread_24_regular`| +|Match App Layout||`matchAppLayout24Filled`
`matchAppLayout24Regular`|`ic_fluent_match_app_layout_24_filled`
`ic_fluent_match_app_layout_24_regular`| +|Meet Now||`meetNow24Filled`
`meetNow24Regular`|`ic_fluent_meet_now_24_filled`
`ic_fluent_meet_now_24_regular`| +|Megaphone||`megaphone24Filled`
`megaphone24Regular`|`ic_fluent_megaphone_24_filled`
`ic_fluent_megaphone_24_regular`| +|Megaphone Off||`megaphoneOff24Filled`
`megaphoneOff24Regular`|`ic_fluent_megaphone_off_24_filled`
`ic_fluent_megaphone_off_24_regular`| +|Mention||`mention16Filled`
`mention16Regular`
`mention20Filled`
`mention20Regular`
`mention24Filled`
`mention24Regular`|`ic_fluent_mention_16_filled`
`ic_fluent_mention_16_regular`
`ic_fluent_mention_20_filled`
`ic_fluent_mention_20_regular`
`ic_fluent_mention_24_filled`
`ic_fluent_mention_24_regular`| +|Mic Off||`micOff24Filled`
`micOff24Light`
`micOff24Regular`|`ic_fluent_mic_off_24_filled`
`ic_fluent_mic_off_24_regular`| +|Mic On||`micOn20Filled`
`micOn20Regular`
`micOn24Filled`
`micOn24Regular`
`micOn28Filled`
`micOn28Regular`
`micOn48Filled`
`micOn48Regular`|`ic_fluent_mic_on_20_filled`
`ic_fluent_mic_on_20_regular`
`ic_fluent_mic_on_24_filled`
`ic_fluent_mic_on_24_regular`
`ic_fluent_mic_on_28_filled`
`ic_fluent_mic_on_28_regular`
`ic_fluent_mic_on_48_filled`
`ic_fluent_mic_on_48_regular`| +|Mic Settings||`micSettings24Filled`
`micSettings24Regular`|`ic_fluent_mic_settings_24_filled`
`ic_fluent_mic_settings_24_regular`| +|Midi||`midi20Filled`
`midi20Regular`
`midi24Filled`
`midi24Regular`|`ic_fluent_midi_20_filled`
`ic_fluent_midi_20_regular`
`ic_fluent_midi_24_filled`
`ic_fluent_midi_24_regular`| +|Missing Metadata||`missingMetadata16Filled`
`missingMetadata16Regular`
`missingMetadata24Filled`
`missingMetadata24Regular`|`ic_fluent_missing_metadata_16_filled`
`ic_fluent_missing_metadata_16_regular`
`ic_fluent_missing_metadata_24_filled`
`ic_fluent_missing_metadata_24_regular`| +|Mobile Optimized||`mobileOptimized24Filled`
`mobileOptimized24Regular`|`ic_fluent_mobile_optimized_24_filled`
`ic_fluent_mobile_optimized_24_regular`| +|More||`more16Filled`
`more16Regular`
`more20Filled`
`more20Regular`
`more24Filled`
`more24Regular`
`more28Filled`
`more28Regular`
`more48Filled`
`more48Regular`|`ic_fluent_more_16_filled`
`ic_fluent_more_16_regular`
`ic_fluent_more_20_filled`
`ic_fluent_more_20_regular`
`ic_fluent_more_24_filled`
`ic_fluent_more_24_regular`
`ic_fluent_more_28_filled`
`ic_fluent_more_28_regular`
`ic_fluent_more_48_filled`
`ic_fluent_more_48_regular`| +|More Vertical||`moreVertical20Filled`
`moreVertical20Regular`
`moreVertical24Filled`
`moreVertical24Regular`
`moreVertical28Filled`
`moreVertical28Regular`
`moreVertical48Filled`
`moreVertical48Regular`|`ic_fluent_more_vertical_20_filled`
`ic_fluent_more_vertical_20_regular`
`ic_fluent_more_vertical_24_filled`
`ic_fluent_more_vertical_24_regular`
`ic_fluent_more_vertical_28_filled`
`ic_fluent_more_vertical_28_regular`
`ic_fluent_more_vertical_48_filled`
`ic_fluent_more_vertical_48_regular`| +|Movies and TV||`moviesAndTv24Filled`
`moviesAndTv24Regular`|`ic_fluent_movies_and_tv_24_filled`
`ic_fluent_movies_and_tv_24_regular`| +|Multiselect||`multiselect20Filled`
`multiselect20Regular`
`multiselect24Filled`
`multiselect24Regular`|`ic_fluent_multiselect_20_filled`
`ic_fluent_multiselect_20_regular`
`ic_fluent_multiselect_24_filled`
`ic_fluent_multiselect_24_regular`| +|Music||`music20Filled`
`music20Regular`
`music24Filled`
`music24Regular`|`ic_fluent_music_20_filled`
`ic_fluent_music_20_regular`
`ic_fluent_music_24_filled`
`ic_fluent_music_24_regular`| +|My Location||`myLocation24Filled`
`myLocation24Light`
`myLocation24Regular`|`ic_fluent_my_location_24_filled`
`ic_fluent_my_location_24_regular`| +|Navigation||`navigation20Filled`
`navigation20Regular`
`navigation24Filled`
`navigation24Light`
`navigation24Regular`|`ic_fluent_navigation_20_filled`
`ic_fluent_navigation_20_regular`
`ic_fluent_navigation_24_filled`
`ic_fluent_navigation_24_regular`| +|Network Check||`networkCheck24Filled`
`networkCheck24Regular`|`ic_fluent_network_check_24_filled`
`ic_fluent_network_check_24_regular`| +|New||`new16Filled`
`new16Regular`
`new24Filled`
`new24Regular`|`ic_fluent_new_16_filled`
`ic_fluent_new_16_regular`
`ic_fluent_new_24_filled`
`ic_fluent_new_24_regular`| +|News||`news24Filled`
`news24Regular`
`news28Filled`
`news28Regular`|`ic_fluent_news_24_filled`
`ic_fluent_news_24_regular`
`ic_fluent_news_28_filled`
`ic_fluent_news_28_regular`| +|Next||`next16Filled`
`next16Regular`
`next20Filled`
`next20Regular`
`next24Filled`
`next24Regular`|`ic_fluent_next_16_filled`
`ic_fluent_next_16_regular`
`ic_fluent_next_20_filled`
`ic_fluent_next_20_regular`
`ic_fluent_next_24_filled`
`ic_fluent_next_24_regular`| +|None||`none20Filled`
`none20Regular`
`none24Filled`
`none24Regular`
`none28Filled`
`none28Regular`
`none48Filled`
`none48Regular`|`ic_fluent_none_20_filled`
`ic_fluent_none_20_regular`
`ic_fluent_none_24_filled`
`ic_fluent_none_24_regular`
`ic_fluent_none_28_filled`
`ic_fluent_none_28_regular`
`ic_fluent_none_48_filled`
`ic_fluent_none_48_regular`| +|Note||`note20Filled`
`note20Regular`
`note24Filled`
`note24Regular`|`ic_fluent_note_20_filled`
`ic_fluent_note_20_regular`
`ic_fluent_note_24_filled`
`ic_fluent_note_24_regular`| +|Note Add||`noteAdd16Filled`
`noteAdd16Regular`
`noteAdd20Filled`
`noteAdd20Regular`
`noteAdd24Filled`
`noteAdd24Regular`|`ic_fluent_note_add_16_filled`
`ic_fluent_note_add_16_regular`
`ic_fluent_note_add_20_filled`
`ic_fluent_note_add_20_regular`
`ic_fluent_note_add_24_filled`
`ic_fluent_note_add_24_regular`| +|Notebook||`notebook24Filled`
`notebook24Regular`|`ic_fluent_notebook_24_filled`
`ic_fluent_notebook_24_regular`| +|Notebook Error||`notebookError24Filled`
`notebookError24Regular`|`ic_fluent_notebook_error_24_filled`
`ic_fluent_notebook_error_24_regular`| +|Notebook Lightning||`notebookLightning24Filled`
`notebookLightning24Regular`|`ic_fluent_notebook_lightning_24_filled`
`ic_fluent_notebook_lightning_24_regular`| +|Notebook Question Mark||`notebookQuestionMark24Filled`
`notebookQuestionMark24Regular`|`ic_fluent_notebook_question_mark_24_filled`
`ic_fluent_notebook_question_mark_24_regular`| +|Notebook Section||`notebookSection24Filled`
`notebookSection24Regular`|`ic_fluent_notebook_section_24_filled`
`ic_fluent_notebook_section_24_regular`| +|Notebook Sync||`notebookSync24Filled`
`notebookSync24Regular`|`ic_fluent_notebook_sync_24_filled`
`ic_fluent_notebook_sync_24_regular`| +|Notepad||`notepad24Filled`
`notepad24Regular`|`ic_fluent_notepad_24_filled`
`ic_fluent_notepad_24_regular`| +|Number Row||`numberRow24Filled`
`numberRow24Light`
`numberRow24Regular`|`ic_fluent_number_row_24_filled`
`ic_fluent_number_row_24_regular`| +|Number Symbol||`numberSymbol16Filled`
`numberSymbol16Regular`
`numberSymbol20Filled`
`numberSymbol20Regular`
`numberSymbol24Filled`
`numberSymbol24Regular`|`ic_fluent_number_symbol_16_filled`
`ic_fluent_number_symbol_16_regular`
`ic_fluent_number_symbol_20_filled`
`ic_fluent_number_symbol_20_regular`
`ic_fluent_number_symbol_24_filled`
`ic_fluent_number_symbol_24_regular`| +|Office Apps||`officeApps24Filled`
`officeApps24Regular`
`officeApps28Filled`
`officeApps28Regular`|`ic_fluent_office_apps_24_filled`
`ic_fluent_office_apps_24_regular`
`ic_fluent_office_apps_28_filled`
`ic_fluent_office_apps_28_regular`| +|Open||`open20Filled`
`open20Regular`
`open24Filled`
`open24Regular`|`ic_fluent_open_20_filled`
`ic_fluent_open_20_regular`
`ic_fluent_open_24_filled`
`ic_fluent_open_24_regular`| +|Open Folder||`openFolder24Filled`
`openFolder24Regular`|`ic_fluent_open_folder_24_filled`
`ic_fluent_open_folder_24_regular`| +|Open In Browser||`openInBrowser24Filled`
`openInBrowser24Regular`|`ic_fluent_open_in_browser_24_filled`
`ic_fluent_open_in_browser_24_regular`| +|Organization Chart||`organizationChart24Filled`
`organizationChart24Regular`|`ic_fluent_organization_chart_24_filled`
`ic_fluent_organization_chart_24_regular`| +|Owner||`owner24Filled`
`owner24Regular`|`ic_fluent_owner_24_filled`
`ic_fluent_owner_24_regular`| +|PSTN Call||`pstnCall24Filled`
`pstnCall24Regular`|`ic_fluent_pstn_call_24_filled`
`ic_fluent_pstn_call_24_regular`| +|Page Fit||`pageFit16Filled`
`pageFit16Regular`
`pageFit20Filled`
`pageFit20Regular`
`pageFit24Filled`
`pageFit24Regular`|`ic_fluent_page_fit_16_filled`
`ic_fluent_page_fit_16_regular`
`ic_fluent_page_fit_20_filled`
`ic_fluent_page_fit_20_regular`
`ic_fluent_page_fit_24_filled`
`ic_fluent_page_fit_24_regular`| +|Page View||`pageView24Filled`
`pageView24Regular`|`ic_fluent_page_view_24_filled`
`ic_fluent_page_view_24_regular`| +|Paint Brush||`paintBrush16Filled`
`paintBrush16Regular`
`paintBrush20Filled`
`paintBrush20Regular`
`paintBrush24Filled`
`paintBrush24Regular`|`ic_fluent_paint_brush_16_filled`
`ic_fluent_paint_brush_16_regular`
`ic_fluent_paint_brush_20_filled`
`ic_fluent_paint_brush_20_regular`
`ic_fluent_paint_brush_24_filled`
`ic_fluent_paint_brush_24_regular`| +|Pair||`pair24Filled`
`pair24Regular`|`ic_fluent_pair_24_filled`
`ic_fluent_pair_24_regular`| +|Pane Close||`paneClose16Filled`
`paneClose16Regular`
`paneClose20Filled`
`paneClose20Regular`
`paneClose24Filled`
`paneClose24Regular`|`ic_fluent_pane_close_16_filled`
`ic_fluent_pane_close_16_regular`
`ic_fluent_pane_close_20_filled`
`ic_fluent_pane_close_20_regular`
`ic_fluent_pane_close_24_filled`
`ic_fluent_pane_close_24_regular`| +|Pane Open||`paneOpen16Filled`
`paneOpen16Regular`
`paneOpen20Filled`
`paneOpen20Regular`
`paneOpen24Filled`
`paneOpen24Regular`|`ic_fluent_pane_open_16_filled`
`ic_fluent_pane_open_16_regular`
`ic_fluent_pane_open_20_filled`
`ic_fluent_pane_open_20_regular`
`ic_fluent_pane_open_24_filled`
`ic_fluent_pane_open_24_regular`| +|Patient||`patient24Filled`
`patient24Regular`|`ic_fluent_patient_24_filled`
`ic_fluent_patient_24_regular`| +|Pause||`pause20Filled`
`pause20Regular`
`pause24Filled`
`pause24Regular`
`pause48Filled`
`pause48Regular`|`ic_fluent_pause_20_filled`
`ic_fluent_pause_20_regular`
`ic_fluent_pause_24_filled`
`ic_fluent_pause_24_regular`
`ic_fluent_pause_48_filled`
`ic_fluent_pause_48_regular`| +|Payment||`payment20Filled`
`payment20Regular`
`payment24Filled`
`payment24Regular`|`ic_fluent_payment_20_filled`
`ic_fluent_payment_20_regular`
`ic_fluent_payment_24_filled`
`ic_fluent_payment_24_regular`| +|Pen Settings||`penSettings24Filled`
`penSettings24Regular`|`ic_fluent_pen_settings_24_filled`
`ic_fluent_pen_settings_24_regular`| +|People||`people16Filled`
`people16Regular`
`people20Filled`
`people20Regular`
`people24Filled`
`people24Light`
`people24Regular`
`people28Filled`
`people28Regular`|`ic_fluent_people_16_filled`
`ic_fluent_people_16_regular`
`ic_fluent_people_20_filled`
`ic_fluent_people_20_regular`
`ic_fluent_people_24_filled`
`ic_fluent_people_24_regular`
`ic_fluent_people_28_filled`
`ic_fluent_people_28_regular`| +|People Add||`peopleAdd16Filled`
`peopleAdd16Regular`
`peopleAdd20Filled`
`peopleAdd20Regular`
`peopleAdd24Filled`
`peopleAdd24Regular`|`ic_fluent_people_add_16_filled`
`ic_fluent_people_add_16_regular`
`ic_fluent_people_add_20_filled`
`ic_fluent_people_add_20_regular`
`ic_fluent_people_add_24_filled`
`ic_fluent_people_add_24_regular`| +|People Community||`peopleCommunity24Filled`
`peopleCommunity24Regular`
`peopleCommunity28Filled`
`peopleCommunity28Regular`|`ic_fluent_people_community_24_filled`
`ic_fluent_people_community_24_regular`
`ic_fluent_people_community_28_filled`
`ic_fluent_people_community_28_regular`| +|People Community Add||`peopleCommunityAdd24Filled`
`peopleCommunityAdd24Regular`|`ic_fluent_people_community_add_24_filled`
`ic_fluent_people_community_add_24_regular`| +|People Search||`peopleSearch24Filled`
`peopleSearch24Regular`|`ic_fluent_people_search_24_filled`
`ic_fluent_people_search_24_regular`| +|People Team||`peopleTeam20Filled`
`peopleTeam20Regular`
`peopleTeam24Filled`
`peopleTeam24Regular`
`peopleTeam28Filled`
`peopleTeam28Regular`|`ic_fluent_people_team_20_filled`
`ic_fluent_people_team_20_regular`
`ic_fluent_people_team_24_filled`
`ic_fluent_people_team_24_regular`
`ic_fluent_people_team_28_filled`
`ic_fluent_people_team_28_regular`| +|Person||`person12Filled`
`person12Regular`
`person16Filled`
`person16Regular`
`person20Filled`
`person20Regular`
`person24Filled`
`person24Light`
`person24Regular`
`person28Filled`
`person28Regular`
`person48Filled`
`person48Regular`|`ic_fluent_person_12_filled`
`ic_fluent_person_12_regular`
`ic_fluent_person_16_filled`
`ic_fluent_person_16_regular`
`ic_fluent_person_20_filled`
`ic_fluent_person_20_regular`
`ic_fluent_person_24_filled`
`ic_fluent_person_24_regular`
`ic_fluent_person_28_filled`
`ic_fluent_person_28_regular`
`ic_fluent_person_48_filled`
`ic_fluent_person_48_regular`| +|Person Accounts||`personAccounts24Filled`
`personAccounts24Regular`|`ic_fluent_person_accounts_24_filled`
`ic_fluent_person_accounts_24_regular`| +|Person Add||`personAdd20Filled`
`personAdd20Regular`
`personAdd24Filled`
`personAdd24Regular`|`ic_fluent_person_add_20_filled`
`ic_fluent_person_add_20_regular`
`ic_fluent_person_add_24_filled`
`ic_fluent_person_add_24_regular`| +|Person Arrow Right||`personArrowRight16Filled`
`personArrowRight16Regular`
`personArrowRight20Filled`
`personArrowRight20Regular`
`personArrowRight24Filled`
`personArrowRight24Regular`|`ic_fluent_person_arrow_right_16_filled`
`ic_fluent_person_arrow_right_16_regular`
`ic_fluent_person_arrow_right_20_filled`
`ic_fluent_person_arrow_right_20_regular`
`ic_fluent_person_arrow_right_24_filled`
`ic_fluent_person_arrow_right_24_regular`| +|Person Available||`personAvailable16Filled`
`personAvailable16Regular`
`personAvailable24Filled`
`personAvailable24Regular`|`ic_fluent_person_available_16_filled`
`ic_fluent_person_available_16_regular`
`ic_fluent_person_available_24_filled`
`ic_fluent_person_available_24_regular`| +|Person Block||`personBlock24Filled`
`personBlock24Regular`|`ic_fluent_person_block_24_filled`
`ic_fluent_person_block_24_regular`| +|Person Board||`personBoard16Filled`
`personBoard16Regular`
`personBoard20Filled`
`personBoard20Regular`
`personBoard24Filled`
`personBoard24Regular`|`ic_fluent_person_board_16_filled`
`ic_fluent_person_board_16_regular`
`ic_fluent_person_board_20_filled`
`ic_fluent_person_board_20_regular`
`ic_fluent_person_board_24_filled`
`ic_fluent_person_board_24_regular`| +|Person Delete||`personDelete16Filled`
`personDelete16Regular`
`personDelete24Filled`
`personDelete24Regular`|`ic_fluent_person_delete_16_filled`
`ic_fluent_person_delete_16_regular`
`ic_fluent_person_delete_24_filled`
`ic_fluent_person_delete_24_regular`| +|Person Feedback||`personFeedback20Filled`
`personFeedback20Regular`
`personFeedback24Filled`
`personFeedback24Regular`|`ic_fluent_person_feedback_20_filled`
`ic_fluent_person_feedback_20_regular`
`ic_fluent_person_feedback_24_filled`
`ic_fluent_person_feedback_24_regular`| +|Person Leave||`personLeave24Filled`
`personLeave24Regular`|`ic_fluent_person_leave_24_filled`
`ic_fluent_person_leave_24_regular`| +|Person Tentative||`personTentative16Filled`
`personTentative16Regular`
`personTentative24Filled`
`personTentative24Regular`|`ic_fluent_person_tentative_16_filled`
`ic_fluent_person_tentative_16_regular`
`ic_fluent_person_tentative_24_filled`
`ic_fluent_person_tentative_24_regular`| +|Person Voice||`personVoice24Filled`
`personVoice24Regular`|`ic_fluent_person_voice_24_filled`
`ic_fluent_person_voice_24_regular`| +|Phone||`phone20Filled`
`phone20Regular`
`phone24Filled`
`phone24Regular`
`phone28Filled`
`phone28Regular`|`ic_fluent_phone_20_filled`
`ic_fluent_phone_20_regular`
`ic_fluent_phone_24_filled`
`ic_fluent_phone_24_regular`
`ic_fluent_phone_28_filled`
`ic_fluent_phone_28_regular`| +|Phone Add New App||`phoneAddNewApp24Filled`
`phoneAddNewApp24Regular`|`ic_fluent_phone_add_new_app_24_filled`
`ic_fluent_phone_add_new_app_24_regular`| +|Phone Desktop||`phoneDesktop16Filled`
`phoneDesktop16Regular`
`phoneDesktop20Filled`
`phoneDesktop20Regular`
`phoneDesktop24Filled`
`phoneDesktop24Regular`
`phoneDesktop28Filled`
`phoneDesktop28Regular`|`ic_fluent_phone_desktop_16_filled`
`ic_fluent_phone_desktop_16_regular`
`ic_fluent_phone_desktop_20_filled`
`ic_fluent_phone_desktop_20_regular`
`ic_fluent_phone_desktop_24_filled`
`ic_fluent_phone_desktop_24_regular`
`ic_fluent_phone_desktop_28_filled`
`ic_fluent_phone_desktop_28_regular`| +|Phone Error||`phoneError24Filled`
`phoneError24Regular`|`ic_fluent_phone_error_24_filled`
`ic_fluent_phone_error_24_regular`| +|Phone Home Lock||`phoneHomeLock24Filled`
`phoneHomeLock24Regular`|`ic_fluent_phone_home_lock_24_filled`
`ic_fluent_phone_home_lock_24_regular`| +|Phone Laptop||`phoneLaptop20Filled`
`phoneLaptop20Regular`
`phoneLaptop24Filled`
`phoneLaptop24Regular`|`ic_fluent_phone_laptop_20_filled`
`ic_fluent_phone_laptop_20_regular`
`ic_fluent_phone_laptop_24_filled`
`ic_fluent_phone_laptop_24_regular`| +|Phone Link Setup||`phoneLinkSetup24Filled`
`phoneLinkSetup24Regular`|`ic_fluent_phone_link_setup_24_filled`
`ic_fluent_phone_link_setup_24_regular`| +|Phone Mobile||`phoneMobile20Filled`
`phoneMobile20Regular`
`phoneMobile24Filled`
`phoneMobile24Regular`|`ic_fluent_phone_mobile_20_filled`
`ic_fluent_phone_mobile_20_regular`
`ic_fluent_phone_mobile_24_filled`
`ic_fluent_phone_mobile_24_regular`| +|Phone Page Header||`phonePageHeader24Filled`
`phonePageHeader24Regular`|`ic_fluent_phone_page_header_24_filled`
`ic_fluent_phone_page_header_24_regular`| +|Phone Pagination||`phonePagination24Filled`
`phonePagination24Regular`|`ic_fluent_phone_pagination_24_filled`
`ic_fluent_phone_pagination_24_regular`| +|Phone Screen Time||`phoneScreenTime24Filled`
`phoneScreenTime24Regular`|`ic_fluent_phone_screen_time_24_filled`
`ic_fluent_phone_screen_time_24_regular`| +|Phone Shake||`phoneShake24Filled`
`phoneShake24Regular`|`ic_fluent_phone_shake_24_filled`
`ic_fluent_phone_shake_24_regular`| +|Phone Status Bar||`phoneStatusBar24Filled`
`phoneStatusBar24Regular`|`ic_fluent_phone_status_bar_24_filled`
`ic_fluent_phone_status_bar_24_regular`| +|Phone Tablet||`phoneTablet20Filled`
`phoneTablet20Regular`
`phoneTablet24Filled`
`phoneTablet24Regular`|`ic_fluent_phone_tablet_20_filled`
`ic_fluent_phone_tablet_20_regular`
`ic_fluent_phone_tablet_24_filled`
`ic_fluent_phone_tablet_24_regular`| +|Phone To Pc||`phoneToPc24Filled`
`phoneToPc24Regular`|`ic_fluent_phone_to_pc_24_filled`
`ic_fluent_phone_to_pc_24_regular`| +|Phone Update||`phoneUpdate24Filled`
`phoneUpdate24Regular`|`ic_fluent_phone_update_24_filled`
`ic_fluent_phone_update_24_regular`| +|Phone Vertical Scroll||`phoneVerticalScroll24Filled`
`phoneVerticalScroll24Regular`|`ic_fluent_phone_vertical_scroll_24_filled`
`ic_fluent_phone_vertical_scroll_24_regular`| +|Phone Vibrate||`phoneVibrate24Filled`
`phoneVibrate24Regular`|`ic_fluent_phone_vibrate_24_filled`
`ic_fluent_phone_vibrate_24_regular`| +|Photo Filter||`photoFilter24Filled`
`photoFilter24Regular`|`ic_fluent_photo_filter_24_filled`
`ic_fluent_photo_filter_24_regular`| +|Picture In Picture||`pictureInPicture16Filled`
`pictureInPicture16Regular`
`pictureInPicture20Filled`
`pictureInPicture20Regular`
`pictureInPicture24Filled`
`pictureInPicture24Regular`|`ic_fluent_picture_in_picture_16_filled`
`ic_fluent_picture_in_picture_16_regular`
`ic_fluent_picture_in_picture_20_filled`
`ic_fluent_picture_in_picture_20_regular`
`ic_fluent_picture_in_picture_24_filled`
`ic_fluent_picture_in_picture_24_regular`| +|Pin||`pin20Filled`
`pin20Regular`
`pin24Filled`
`pin24Light`
`pin24Regular`|`ic_fluent_pin_20_filled`
`ic_fluent_pin_20_regular`
`ic_fluent_pin_24_filled`
`ic_fluent_pin_24_regular`| +|Pin Off||`pinOff20Filled`
`pinOff20Regular`
`pinOff24Filled`
`pinOff24Regular`|`ic_fluent_pin_off_20_filled`
`ic_fluent_pin_off_20_regular`
`ic_fluent_pin_off_24_filled`
`ic_fluent_pin_off_24_regular`| +|Play||`play20Filled`
`play20Regular`
`play24Filled`
`play24Regular`
`play48Filled`
`play48Regular`|`ic_fluent_play_20_filled`
`ic_fluent_play_20_regular`
`ic_fluent_play_24_filled`
`ic_fluent_play_24_regular`
`ic_fluent_play_48_filled`
`ic_fluent_play_48_regular`| +|Play Circle||`playCircle24Filled`
`playCircle24Regular`|`ic_fluent_play_circle_24_filled`
`ic_fluent_play_circle_24_regular`| +|Point Scan||`pointScan24Filled`
`pointScan24Regular`|`ic_fluent_point_scan_24_filled`
`ic_fluent_point_scan_24_regular`| +|Poll||`poll24Filled`
`poll24Light`
`poll24Regular`|`ic_fluent_poll_24_filled`
`ic_fluent_poll_24_regular`| +|Power||`power20Filled`
`power20Regular`
`power24Filled`
`power24Regular`
`power28Filled`
`power28Regular`|`ic_fluent_power_20_filled`
`ic_fluent_power_20_regular`
`ic_fluent_power_24_filled`
`ic_fluent_power_24_regular`
`ic_fluent_power_28_filled`
`ic_fluent_power_28_regular`| +|Predictions||`predictions24Filled`
`predictions24Light`
`predictions24Regular`|`ic_fluent_predictions_24_filled`
`ic_fluent_predictions_24_regular`| +|Premium||`premium24Filled`
`premium24Regular`
`premium28Filled`
`premium28Regular`|`ic_fluent_premium_24_filled`
`ic_fluent_premium_24_regular`
`ic_fluent_premium_28_filled`
`ic_fluent_premium_28_regular`| +|Presenter||`presenter24Filled`
`presenter24Regular`|`ic_fluent_presenter_24_filled`
`ic_fluent_presenter_24_regular`| +|Previous||`previous16Filled`
`previous16Regular`
`previous20Filled`
`previous20Regular`
`previous24Filled`
`previous24Regular`|`ic_fluent_previous_16_filled`
`ic_fluent_previous_16_regular`
`ic_fluent_previous_20_filled`
`ic_fluent_previous_20_regular`
`ic_fluent_previous_24_filled`
`ic_fluent_previous_24_regular`| +|Print||`print20Filled`
`print20Regular`
`print24Filled`
`print24Regular`
`print48Filled`
`print48Regular`|`ic_fluent_print_20_filled`
`ic_fluent_print_20_regular`
`ic_fluent_print_24_filled`
`ic_fluent_print_24_regular`
`ic_fluent_print_48_filled`
`ic_fluent_print_48_regular`| +|Protocol Handler||`protocolHandler16Filled`
`protocolHandler16Regular`
`protocolHandler20Filled`
`protocolHandler20Regular`
`protocolHandler24Filled`
`protocolHandler24Regular`|`ic_fluent_protocol_handler_16_filled`
`ic_fluent_protocol_handler_16_regular`
`ic_fluent_protocol_handler_20_filled`
`ic_fluent_protocol_handler_20_regular`
`ic_fluent_protocol_handler_24_filled`
`ic_fluent_protocol_handler_24_regular`| +|QR Code||`qrCode24Filled`
`qrCode24Regular`
`qrCode28Filled`
`qrCode28Regular`|`ic_fluent_qr_code_24_filled`
`ic_fluent_qr_code_24_regular`
`ic_fluent_qr_code_28_filled`
`ic_fluent_qr_code_28_regular`| +|Radio Button||`radioButton24Filled`
`radioButton24Regular`|`ic_fluent_radio_button_24_filled`
`ic_fluent_radio_button_24_regular`| +|Re Order||`reOrder16Filled`
`reOrder16Regular`
`reOrder24Filled`
`reOrder24Regular`|`ic_fluent_re_order_16_filled`
`ic_fluent_re_order_16_regular`
`ic_fluent_re_order_24_filled`
`ic_fluent_re_order_24_regular`| +|Read Aloud||`readAloud20Filled`
`readAloud20Regular`
`readAloud24Filled`
`readAloud24Regular`|`ic_fluent_read_aloud_20_filled`
`ic_fluent_read_aloud_20_regular`
`ic_fluent_read_aloud_24_filled`
`ic_fluent_read_aloud_24_regular`| +|Read Only||`readOnly16Filled`
`readOnly16Regular`
`readOnly24Filled`
`readOnly24Regular`|`ic_fluent_read_only_16_filled`
`ic_fluent_read_only_16_regular`
`ic_fluent_read_only_24_filled`
`ic_fluent_read_only_24_regular`| +|Reading List||`readingList16Filled`
`readingList16Regular`
`readingList20Filled`
`readingList20Regular`
`readingList24Filled`
`readingList24Light`
`readingList24Regular`
`readingList28Filled`
`readingList28Regular`|`ic_fluent_reading_list_16_filled`
`ic_fluent_reading_list_16_regular`
`ic_fluent_reading_list_20_filled`
`ic_fluent_reading_list_20_regular`
`ic_fluent_reading_list_24_filled`
`ic_fluent_reading_list_24_regular`
`ic_fluent_reading_list_28_filled`
`ic_fluent_reading_list_28_regular`| +|Reading List Add||`readingListAdd16Filled`
`readingListAdd16Regular`
`readingListAdd20Filled`
`readingListAdd20Regular`
`readingListAdd24Filled`
`readingListAdd24Light`
`readingListAdd24Regular`
`readingListAdd28Filled`
`readingListAdd28Regular`|`ic_fluent_reading_list_add_16_filled`
`ic_fluent_reading_list_add_16_regular`
`ic_fluent_reading_list_add_20_filled`
`ic_fluent_reading_list_add_20_regular`
`ic_fluent_reading_list_add_24_filled`
`ic_fluent_reading_list_add_24_regular`
`ic_fluent_reading_list_add_28_filled`
`ic_fluent_reading_list_add_28_regular`| +|Reading Mode||`readingMode20Filled`
`readingMode20Regular`
`readingMode24Filled`
`readingMode24Regular`|`ic_fluent_reading_mode_20_filled`
`ic_fluent_reading_mode_20_regular`
`ic_fluent_reading_mode_24_filled`
`ic_fluent_reading_mode_24_regular`| +|Reading Mode Mobile||`readingModeMobile20Filled`
`readingModeMobile20Regular`
`readingModeMobile24Filled`
`readingModeMobile24Regular`|`ic_fluent_reading_mode_mobile_20_filled`
`ic_fluent_reading_mode_mobile_20_regular`
`ic_fluent_reading_mode_mobile_24_filled`
`ic_fluent_reading_mode_mobile_24_regular`| +|Recommended||`recommended24Filled`
`recommended24Regular`|`ic_fluent_recommended_24_filled`
`ic_fluent_recommended_24_regular`| +|Record||`record16Filled`
`record16Regular`
`record20Filled`
`record20Regular`
`record24Filled`
`record24Regular`|`ic_fluent_record_16_filled`
`ic_fluent_record_16_regular`
`ic_fluent_record_20_filled`
`ic_fluent_record_20_regular`
`ic_fluent_record_24_filled`
`ic_fluent_record_24_regular`| +|Remove||`remove12Filled`
`remove12Regular`
`remove16Filled`
`remove16Regular`
`remove20Filled`
`remove20Regular`
`remove24Filled`
`remove24Regular`|`ic_fluent_remove_12_filled`
`ic_fluent_remove_12_regular`
`ic_fluent_remove_16_filled`
`ic_fluent_remove_16_regular`
`ic_fluent_remove_20_filled`
`ic_fluent_remove_20_regular`
`ic_fluent_remove_24_filled`
`ic_fluent_remove_24_regular`| +|Remove Recent||`removeRecent24Filled`
`removeRecent24Regular`|`ic_fluent_remove_recent_24_filled`
`ic_fluent_remove_recent_24_regular`| +|Rename||`rename16Filled`
`rename16Regular`
`rename20Filled`
`rename20Regular`
`rename24Filled`
`rename24Regular`
`rename28Filled`
`rename28Regular`|`ic_fluent_rename_16_filled`
`ic_fluent_rename_16_regular`
`ic_fluent_rename_20_filled`
`ic_fluent_rename_20_regular`
`ic_fluent_rename_24_filled`
`ic_fluent_rename_24_regular`
`ic_fluent_rename_28_filled`
`ic_fluent_rename_28_regular`| +|Resize||`resize20Filled`
`resize20Regular`|`ic_fluent_resize_20_filled`
`ic_fluent_resize_20_regular`| +|Resize Image||`resizeImage24Filled`
`resizeImage24Regular`|`ic_fluent_resize_image_24_filled`
`ic_fluent_resize_image_24_regular`| +|Resize Video||`resizeVideo24Filled`
`resizeVideo24Regular`|`ic_fluent_resize_video_24_filled`
`ic_fluent_resize_video_24_regular`| +|Reward||`reward20Filled`
`reward20Regular`
`reward24Filled`
`reward24Regular`|`ic_fluent_reward_20_filled`
`ic_fluent_reward_20_regular`
`ic_fluent_reward_24_filled`
`ic_fluent_reward_24_regular`| +|Rewind||`rewind20Filled`
`rewind20Regular`
`rewind24Filled`
`rewind24Regular`|`ic_fluent_rewind_20_filled`
`ic_fluent_rewind_20_regular`
`ic_fluent_rewind_24_filled`
`ic_fluent_rewind_24_regular`| +|Rocket||`rocket16Filled`
`rocket16Regular`
`rocket20Filled`
`rocket20Regular`
`rocket24Filled`
`rocket24Regular`|`ic_fluent_rocket_16_filled`
`ic_fluent_rocket_16_regular`
`ic_fluent_rocket_20_filled`
`ic_fluent_rocket_20_regular`
`ic_fluent_rocket_24_filled`
`ic_fluent_rocket_24_regular`| +|Router||`router24Filled`
`router24Regular`|`ic_fluent_router_24_filled`
`ic_fluent_router_24_regular`| +|Ruler||`ruler16Filled`
`ruler16Regular`
`ruler20Filled`
`ruler20Regular`
`ruler24Filled`
`ruler24Regular`|`ic_fluent_ruler_16_filled`
`ic_fluent_ruler_16_regular`
`ic_fluent_ruler_20_filled`
`ic_fluent_ruler_20_regular`
`ic_fluent_ruler_24_filled`
`ic_fluent_ruler_24_regular`| +|Safe||`safe24Filled`
`safe24Regular`|`ic_fluent_safe_24_filled`
`ic_fluent_safe_24_regular`| +|Save||`save20Filled`
`save20Regular`
`save24Filled`
`save24Light`
`save24Regular`|`ic_fluent_save_20_filled`
`ic_fluent_save_20_regular`
`ic_fluent_save_24_filled`
`ic_fluent_save_24_regular`| +|Save As||`saveAs20Filled`
`saveAs20Regular`
`saveAs24Filled`
`saveAs24Regular`|`ic_fluent_save_as_20_filled`
`ic_fluent_save_as_20_regular`
`ic_fluent_save_as_24_filled`
`ic_fluent_save_as_24_regular`| +|Save Copy||`saveCopy24Filled`
`saveCopy24Regular`|`ic_fluent_save_copy_24_filled`
`ic_fluent_save_copy_24_regular`| +|Scan||`scan24Filled`
`scan24Regular`|`ic_fluent_scan_24_filled`
`ic_fluent_scan_24_regular`| +|Scratchpad||`scratchpad24Filled`
`scratchpad24Regular`|`ic_fluent_scratchpad_24_filled`
`ic_fluent_scratchpad_24_regular`| +|Screenshot||`screenshot20Filled`
`screenshot20Regular`
`screenshot24Filled`
`screenshot24Light`
`screenshot24Regular`|`ic_fluent_screenshot_20_filled`
`ic_fluent_screenshot_20_regular`
`ic_fluent_screenshot_24_filled`
`ic_fluent_screenshot_24_regular`| +|Search||`search20Filled`
`search20Regular`
`search24Filled`
`search24Light`
`search24Regular`
`search28Filled`
`search28Regular`|`ic_fluent_search_20_filled`
`ic_fluent_search_20_regular`
`ic_fluent_search_24_filled`
`ic_fluent_search_24_regular`
`ic_fluent_search_28_filled`
`ic_fluent_search_28_regular`| +|Search Square||`searchSquare24Filled`
`searchSquare24Light`
`searchSquare24Regular`|`ic_fluent_search_square_24_filled`
`ic_fluent_search_square_24_regular`| +|Select All||`selectAll24Filled`
`selectAll24Regular`|`ic_fluent_select_all_24_filled`
`ic_fluent_select_all_24_regular`| +|Select All Off||`selectAllOff24Filled`
`selectAllOff24Regular`|`ic_fluent_select_all_off_24_filled`
`ic_fluent_select_all_off_24_regular`| +|Select Object||`selectObject24Filled`
`selectObject24Regular`|`ic_fluent_select_object_24_filled`
`ic_fluent_select_object_24_regular`| +|Send||`send20Filled`
`send20Regular`
`send24Filled`
`send24Light`
`send24Regular`
`send28Filled`
`send28Regular`|`ic_fluent_send_20_filled`
`ic_fluent_send_20_regular`
`ic_fluent_send_24_filled`
`ic_fluent_send_24_regular`
`ic_fluent_send_28_filled`
`ic_fluent_send_28_regular`| +|Send Copy||`sendCopy24Filled`
`sendCopy24Regular`|`ic_fluent_send_copy_24_filled`
`ic_fluent_send_copy_24_regular`| +|Send Logging||`sendLogging24Filled`
`sendLogging24Regular`|`ic_fluent_send_logging_24_filled`
`ic_fluent_send_logging_24_regular`| +|Serial Port||`serialPort16Filled`
`serialPort16Regular`
`serialPort20Filled`
`serialPort20Regular`
`serialPort24Filled`
`serialPort24Regular`|`ic_fluent_serial_port_16_filled`
`ic_fluent_serial_port_16_regular`
`ic_fluent_serial_port_20_filled`
`ic_fluent_serial_port_20_regular`
`ic_fluent_serial_port_24_filled`
`ic_fluent_serial_port_24_regular`| +|Set Top Stack||`setTopStack16Filled`
`setTopStack16Regular`
`setTopStack20Filled`
`setTopStack20Regular`
`setTopStack24Filled`
`setTopStack24Regular`|`ic_fluent_set_top_stack_16_filled`
`ic_fluent_set_top_stack_16_regular`
`ic_fluent_set_top_stack_20_filled`
`ic_fluent_set_top_stack_20_regular`
`ic_fluent_set_top_stack_24_filled`
`ic_fluent_set_top_stack_24_regular`| +|Settings||`settings16Filled`
`settings16Regular`
`settings20Filled`
`settings20Regular`
`settings24Filled`
`settings24Light`
`settings24Regular`
`settings28Filled`
`settings28Regular`|`ic_fluent_settings_16_filled`
`ic_fluent_settings_16_regular`
`ic_fluent_settings_20_filled`
`ic_fluent_settings_20_regular`
`ic_fluent_settings_24_filled`
`ic_fluent_settings_24_regular`
`ic_fluent_settings_28_filled`
`ic_fluent_settings_28_regular`| +|Settings Dev||`settingsDev16Filled`
`settingsDev16Regular`
`settingsDev20Filled`
`settingsDev20Regular`
`settingsDev24Filled`
`settingsDev24Regular`|`ic_fluent_settings_dev_16_filled`
`ic_fluent_settings_dev_16_regular`
`ic_fluent_settings_dev_20_filled`
`ic_fluent_settings_dev_20_regular`
`ic_fluent_settings_dev_24_filled`
`ic_fluent_settings_dev_24_regular`| +|Shapes||`shapes16Filled`
`shapes16Regular`
`shapes20Filled`
`shapes20Regular`
`shapes24Filled`
`shapes24Regular`|`ic_fluent_shapes_16_filled`
`ic_fluent_shapes_16_regular`
`ic_fluent_shapes_20_filled`
`ic_fluent_shapes_20_regular`
`ic_fluent_shapes_24_filled`
`ic_fluent_shapes_24_regular`| +|Share||`share20Filled`
`share20Regular`
`share24Filled`
`share24Regular`|`ic_fluent_share_20_filled`
`ic_fluent_share_20_regular`
`ic_fluent_share_24_filled`
`ic_fluent_share_24_regular`| +|Share Android||`shareAndroid20Filled`
`shareAndroid20Regular`
`shareAndroid24Filled`
`shareAndroid24Light`
`shareAndroid24Regular`|`ic_fluent_share_android_20_filled`
`ic_fluent_share_android_20_regular`
`ic_fluent_share_android_24_filled`
`ic_fluent_share_android_24_regular`| +|Share Close Tray||`shareCloseTray24Filled`
`shareCloseTray24Regular`|`ic_fluent_share_close_tray_24_filled`
`ic_fluent_share_close_tray_24_regular`| +|Share Desktop||`shareDesktop24Filled`
`shareDesktop24Regular`|`ic_fluent_share_desktop_24_filled`
`ic_fluent_share_desktop_24_regular`| +|Share Screen||`shareScreen24Filled`
`shareScreen24Regular`
`shareScreen28Filled`
`shareScreen28Regular`|`ic_fluent_share_screen_24_filled`
`ic_fluent_share_screen_24_regular`
`ic_fluent_share_screen_28_filled`
`ic_fluent_share_screen_28_regular`| +|Share Stop||`shareStop24Filled`
`shareStop24Regular`
`shareStop28Filled`
`shareStop28Regular`|`ic_fluent_share_stop_24_filled`
`ic_fluent_share_stop_24_regular`
`ic_fluent_share_stop_28_filled`
`ic_fluent_share_stop_28_regular`| +|Share iOS||`shareIos20Filled`
`shareIos20Regular`
`shareIos24Filled`
`shareIos24Light`
`shareIos24Regular`
`shareIos28Filled`
`shareIos28Regular`
`shareIos48Filled`
`shareIos48Regular`|`ic_fluent_share_ios_20_filled`
`ic_fluent_share_ios_20_regular`
`ic_fluent_share_ios_24_filled`
`ic_fluent_share_ios_24_regular`
`ic_fluent_share_ios_28_filled`
`ic_fluent_share_ios_28_regular`
`ic_fluent_share_ios_48_filled`
`ic_fluent_share_ios_48_regular`| +|Shield||`shield20Filled`
`shield20Regular`
`shield24Filled`
`shield24Regular`|`ic_fluent_shield_20_filled`
`ic_fluent_shield_20_regular`
`ic_fluent_shield_24_filled`
`ic_fluent_shield_24_regular`| +|Shifts||`shifts24Filled`
`shifts24Regular`|`ic_fluent_shifts_24_filled`
`ic_fluent_shifts_24_regular`| +|Shifts Pending||`shiftsPending24Filled`
`shiftsPending24Regular`|`ic_fluent_shifts_pending_24_filled`
`ic_fluent_shifts_pending_24_regular`| +|Shifts Team||`shiftsTeam24Filled`
`shiftsTeam24Regular`|`ic_fluent_shifts_team_24_filled`
`ic_fluent_shifts_team_24_regular`| +|Sign Out||`signOut24Filled`
`signOut24Regular`|`ic_fluent_sign_out_24_filled`
`ic_fluent_sign_out_24_regular`| +|Signature||`signature24Filled`
`signature24Regular`
`signature28Filled`
`signature28Regular`|`ic_fluent_signature_24_filled`
`ic_fluent_signature_24_regular`
`ic_fluent_signature_28_filled`
`ic_fluent_signature_28_regular`| +|Signed||`signed16Filled`
`signed16Regular`
`signed20Filled`
`signed20Regular`
`signed24Filled`
`signed24Regular`|`ic_fluent_signed_16_filled`
`ic_fluent_signed_16_regular`
`ic_fluent_signed_20_filled`
`ic_fluent_signed_20_regular`
`ic_fluent_signed_24_filled`
`ic_fluent_signed_24_regular`| +|Site Blocked||`siteBlocked20Filled`
`siteBlocked20Regular`
`siteBlocked24Filled`
`siteBlocked24Regular`|`ic_fluent_site_blocked_20_filled`
`ic_fluent_site_blocked_20_regular`
`ic_fluent_site_blocked_24_filled`
`ic_fluent_site_blocked_24_regular`| +|Site Warning||`siteWarning20Filled`
`siteWarning20Regular`
`siteWarning24Filled`
`siteWarning24Regular`|`ic_fluent_site_warning_20_filled`
`ic_fluent_site_warning_20_regular`
`ic_fluent_site_warning_24_filled`
`ic_fluent_site_warning_24_regular`| +|Sleep||`sleep24Filled`
`sleep24Regular`|`ic_fluent_sleep_24_filled`
`ic_fluent_sleep_24_regular`| +|Slide Add||`slideAdd24Filled`
`slideAdd24Regular`|`ic_fluent_slide_add_24_filled`
`ic_fluent_slide_add_24_regular`| +|Slide Hide||`slideHide24Filled`
`slideHide24Regular`|`ic_fluent_slide_hide_24_filled`
`ic_fluent_slide_hide_24_regular`| +|Slide Layout||`slideLayout24Filled`
`slideLayout24Regular`|`ic_fluent_slide_layout_24_filled`
`ic_fluent_slide_layout_24_regular`| +|Slide Text||`slideText24Filled`
`slideText24Regular`|`ic_fluent_slide_text_24_filled`
`ic_fluent_slide_text_24_regular`| +|Slow Mode||`slowMode16Filled`
`slowMode16Regular`
`slowMode20Filled`
`slowMode20Regular`
`slowMode24Filled`
`slowMode24Regular`
`slowMode28Filled`
`slowMode28Regular`|`ic_fluent_slow_mode_16_filled`
`ic_fluent_slow_mode_16_regular`
`ic_fluent_slow_mode_20_filled`
`ic_fluent_slow_mode_20_regular`
`ic_fluent_slow_mode_24_filled`
`ic_fluent_slow_mode_24_regular`
`ic_fluent_slow_mode_28_filled`
`ic_fluent_slow_mode_28_regular`| +|Snooze||`snooze16Filled`
`snooze16Regular`
`snooze24Filled`
`snooze24Regular`|`ic_fluent_snooze_16_filled`
`ic_fluent_snooze_16_regular`
`ic_fluent_snooze_24_filled`
`ic_fluent_snooze_24_regular`| +|Sound Source||`soundSource24Filled`
`soundSource24Regular`
`soundSource28Filled`
`soundSource28Regular`|`ic_fluent_sound_source_24_filled`
`ic_fluent_sound_source_24_regular`
`ic_fluent_sound_source_28_filled`
`ic_fluent_sound_source_28_regular`| +|Spacebar||`spacebar24Filled`
`spacebar24Light`
`spacebar24Regular`|`ic_fluent_spacebar_24_filled`
`ic_fluent_spacebar_24_regular`| +|Speaker||`speaker16Filled`
`speaker16Regular`
`speaker20Filled`
`speaker20Regular`
`speaker24Filled`
`speaker24Light`
`speaker24Regular`|`ic_fluent_speaker_16_filled`
`ic_fluent_speaker_16_regular`
`ic_fluent_speaker_20_filled`
`ic_fluent_speaker_20_regular`
`ic_fluent_speaker_24_filled`
`ic_fluent_speaker_24_regular`| +|Speaker 0||`speaker024Filled`
`speaker024Regular`|`ic_fluent_speaker_0_24_filled`
`ic_fluent_speaker_0_24_regular`| +|Speaker 1||`speaker124Filled`
`speaker124Regular`|`ic_fluent_speaker_1_24_filled`
`ic_fluent_speaker_1_24_regular`| +|Speaker Bluetooth||`speakerBluetooth24Filled`
`speakerBluetooth24Regular`|`ic_fluent_speaker_bluetooth_24_filled`
`ic_fluent_speaker_bluetooth_24_regular`| +|Speaker Edit||`speakerEdit16Filled`
`speakerEdit16Regular`
`speakerEdit20Filled`
`speakerEdit20Regular`
`speakerEdit24Filled`
`speakerEdit24Regular`|`ic_fluent_speaker_edit_16_filled`
`ic_fluent_speaker_edit_16_regular`
`ic_fluent_speaker_edit_20_filled`
`ic_fluent_speaker_edit_20_regular`
`ic_fluent_speaker_edit_24_filled`
`ic_fluent_speaker_edit_24_regular`| +|Speaker None||`speakerNone20Filled`
`speakerNone20Regular`
`speakerNone24Filled`
`speakerNone24Light`
`speakerNone24Regular`|`ic_fluent_speaker_none_20_filled`
`ic_fluent_speaker_none_20_regular`
`ic_fluent_speaker_none_24_filled`
`ic_fluent_speaker_none_24_regular`| +|Speaker Off||`speakerOff24Filled`
`speakerOff24Light`
`speakerOff24Regular`|`ic_fluent_speaker_off_24_filled`
`ic_fluent_speaker_off_24_regular`| +|Speaker Settings||`speakerSettings24Filled`
`speakerSettings24Regular`|`ic_fluent_speaker_settings_24_filled`
`ic_fluent_speaker_settings_24_regular`| +|Spinner iOS||`spinnerIos20Filled`
`spinnerIos20Regular`|`ic_fluent_spinner_ios_20_filled`
`ic_fluent_spinner_ios_20_regular`| +|Star||`star12Filled`
`star12Regular`
`star16Filled`
`star16Regular`
`star20Filled`
`star20Regular`
`star24Filled`
`star24Light`
`star24Regular`
`star28Filled`
`star28Regular`|`ic_fluent_star_12_filled`
`ic_fluent_star_12_regular`
`ic_fluent_star_16_filled`
`ic_fluent_star_16_regular`
`ic_fluent_star_20_filled`
`ic_fluent_star_20_regular`
`ic_fluent_star_24_filled`
`ic_fluent_star_24_regular`
`ic_fluent_star_28_filled`
`ic_fluent_star_28_regular`| +|Star Add||`starAdd16Filled`
`starAdd16Regular`
`starAdd20Filled`
`starAdd20Regular`
`starAdd24Filled`
`starAdd24Light`
`starAdd24Regular`|`ic_fluent_star_add_16_filled`
`ic_fluent_star_add_16_regular`
`ic_fluent_star_add_20_filled`
`ic_fluent_star_add_20_regular`
`ic_fluent_star_add_24_filled`
`ic_fluent_star_add_24_regular`| +|Star Half||`starHalf12Filled`
`starHalf16Filled`
`starHalf20Filled`
`starHalf24Filled`
`starHalf28Filled`|`ic_fluent_star_half_12_filled`
`ic_fluent_star_half_16_filled`
`ic_fluent_star_half_20_filled`
`ic_fluent_star_half_24_filled`
`ic_fluent_star_half_28_filled`| +|Star Off||`starOff12Filled`
`starOff12Regular`
`starOff16Filled`
`starOff16Regular`
`starOff20Filled`
`starOff20Regular`
`starOff24Filled`
`starOff24Regular`
`starOff28Filled`
`starOff28Regular`|`ic_fluent_star_off_12_filled`
`ic_fluent_star_off_12_regular`
`ic_fluent_star_off_16_filled`
`ic_fluent_star_off_16_regular`
`ic_fluent_star_off_20_filled`
`ic_fluent_star_off_20_regular`
`ic_fluent_star_off_24_filled`
`ic_fluent_star_off_24_regular`
`ic_fluent_star_off_28_filled`
`ic_fluent_star_off_28_regular`| +|Status||`status24Filled`
`status24Regular`|`ic_fluent_status_24_filled`
`ic_fluent_status_24_regular`| +|Sticker||`sticker20Filled`
`sticker20Regular`
`sticker24Filled`
`sticker24Light`
`sticker24Regular`|`ic_fluent_sticker_20_filled`
`ic_fluent_sticker_20_regular`
`ic_fluent_sticker_24_filled`
`ic_fluent_sticker_24_regular`| +|Sticker Add||`stickerAdd24Filled`
`stickerAdd24Light`
`stickerAdd24Regular`|`ic_fluent_sticker_add_24_filled`
`ic_fluent_sticker_add_24_regular`| +|Stop||`stop16Filled`
`stop16Regular`
`stop20Filled`
`stop20Regular`
`stop24Filled`
`stop24Regular`|`ic_fluent_stop_16_filled`
`ic_fluent_stop_16_regular`
`ic_fluent_stop_20_filled`
`ic_fluent_stop_20_regular`
`ic_fluent_stop_24_filled`
`ic_fluent_stop_24_regular`| +|Storage||`storage24Filled`
`storage24Regular`|`ic_fluent_storage_24_filled`
`ic_fluent_storage_24_regular`| +|Store||`store16Filled`
`store16Regular`
`store20Filled`
`store20Regular`
`store24Filled`
`store24Regular`|`ic_fluent_store_16_filled`
`ic_fluent_store_16_regular`
`ic_fluent_store_20_filled`
`ic_fluent_store_20_regular`
`ic_fluent_store_24_filled`
`ic_fluent_store_24_regular`| +|Store Microsoft||`storeMicrosoft16Filled`
`storeMicrosoft16Regular`
`storeMicrosoft20Filled`
`storeMicrosoft20Regular`
`storeMicrosoft24Filled`
`storeMicrosoft24Regular`|`ic_fluent_store_microsoft_16_filled`
`ic_fluent_store_microsoft_16_regular`
`ic_fluent_store_microsoft_20_filled`
`ic_fluent_store_microsoft_20_regular`
`ic_fluent_store_microsoft_24_filled`
`ic_fluent_store_microsoft_24_regular`| +|Style Guide||`styleGuide24Filled`
`styleGuide24Regular`|`ic_fluent_style_guide_24_filled`
`ic_fluent_style_guide_24_regular`| +|Sub Grid||`subGrid24Filled`
`subGrid24Regular`|`ic_fluent_sub_grid_24_filled`
`ic_fluent_sub_grid_24_regular`| +|Subway||`subway20Filled`
`subway20Regular`
`subway24Filled`
`subway24Regular`|`ic_fluent_subway_20_filled`
`ic_fluent_subway_20_regular`
`ic_fluent_subway_24_filled`
`ic_fluent_subway_24_regular`| +|Suggestion||`suggestion24Filled`
`suggestion24Regular`|`ic_fluent_suggestion_24_filled`
`ic_fluent_suggestion_24_regular`| +|Surface Earbuds||`surfaceEarbuds20Filled`
`surfaceEarbuds20Regular`
`surfaceEarbuds24Filled`
`surfaceEarbuds24Regular`|`ic_fluent_surface_earbuds_20_filled`
`ic_fluent_surface_earbuds_20_regular`
`ic_fluent_surface_earbuds_24_filled`
`ic_fluent_surface_earbuds_24_regular`| +|Surface Hub||`surfaceHub20Filled`
`surfaceHub20Regular`
`surfaceHub24Filled`
`surfaceHub24Regular`|`ic_fluent_surface_hub_20_filled`
`ic_fluent_surface_hub_20_regular`
`ic_fluent_surface_hub_24_filled`
`ic_fluent_surface_hub_24_regular`| +|Swipe Down||`swipeDown24Filled`
`swipeDown24Regular`|`ic_fluent_swipe_down_24_filled`
`ic_fluent_swipe_down_24_regular`| +|Swipe Right||`swipeRight24Filled`
`swipeRight24Regular`|`ic_fluent_swipe_right_24_filled`
`ic_fluent_swipe_right_24_regular`| +|Swipe Up||`swipeUp24Filled`
`swipeUp24Regular`|`ic_fluent_swipe_up_24_filled`
`ic_fluent_swipe_up_24_regular`| +|Switch Video||`switchVideo24Filled`
`switchVideo24Regular`|`ic_fluent_switch_video_24_filled`
`ic_fluent_switch_video_24_regular`| +|Symbols||`symbols24Filled`
`symbols24Light`
`symbols24Regular`|`ic_fluent_symbols_24_filled`
`ic_fluent_symbols_24_regular`| +|System||`system24Filled`
`system24Regular`|`ic_fluent_system_24_filled`
`ic_fluent_system_24_regular`| +|Tab||`tab16Filled`
`tab16Regular`
`tab20Filled`
`tab20Regular`
`tab24Filled`
`tab24Regular`
`tab28Filled`
`tab28Regular`|`ic_fluent_tab_16_filled`
`ic_fluent_tab_16_regular`
`ic_fluent_tab_20_filled`
`ic_fluent_tab_20_regular`
`ic_fluent_tab_24_filled`
`ic_fluent_tab_24_regular`
`ic_fluent_tab_28_filled`
`ic_fluent_tab_28_regular`| +|Tab Desktop||`tabDesktop20Filled`
`tabDesktop20Regular`|`ic_fluent_tab_desktop_20_filled`
`ic_fluent_tab_desktop_20_regular`| +|Tab In Private||`tabInPrivate16Filled`
`tabInPrivate16Regular`
`tabInPrivate20Filled`
`tabInPrivate20Regular`
`tabInPrivate24Filled`
`tabInPrivate24Regular`
`tabInPrivate28Filled`
`tabInPrivate28Regular`|`ic_fluent_tab_in_private_16_filled`
`ic_fluent_tab_in_private_16_regular`
`ic_fluent_tab_in_private_20_filled`
`ic_fluent_tab_in_private_20_regular`
`ic_fluent_tab_in_private_24_filled`
`ic_fluent_tab_in_private_24_regular`
`ic_fluent_tab_in_private_28_filled`
`ic_fluent_tab_in_private_28_regular`| +|Tab New||`tabNew20Filled`
`tabNew20Regular`
`tabNew24Filled`
`tabNew24Regular`|`ic_fluent_tab_new_20_filled`
`ic_fluent_tab_new_20_regular`
`ic_fluent_tab_new_24_filled`
`ic_fluent_tab_new_24_regular`| +|Tab Sweep||`tabSweep24Filled`
`tabSweep24Regular`|`ic_fluent_tab_sweep_24_filled`
`ic_fluent_tab_sweep_24_regular`| +|Tab Tracking Prevention||`tabTrackingPrevention20Filled`
`tabTrackingPrevention20Regular`
`tabTrackingPrevention24Filled`
`tabTrackingPrevention24Regular`|`ic_fluent_tab_tracking_prevention_20_filled`
`ic_fluent_tab_tracking_prevention_20_regular`
`ic_fluent_tab_tracking_prevention_24_filled`
`ic_fluent_tab_tracking_prevention_24_regular`| +|Table||`table20Filled`
`table20Regular`
`table24Filled`
`table24Regular`|`ic_fluent_table_20_filled`
`ic_fluent_table_20_regular`
`ic_fluent_table_24_filled`
`ic_fluent_table_24_regular`| +|Table Add||`tableAdd24Filled`
`tableAdd24Regular`|`ic_fluent_table_add_24_filled`
`ic_fluent_table_add_24_regular`| +|Table Delete||`tableDelete24Filled`
`tableDelete24Regular`|`ic_fluent_table_delete_24_filled`
`ic_fluent_table_delete_24_regular`| +|Table Edit||`tableEdit24Filled`
`tableEdit24Regular`|`ic_fluent_table_edit_24_filled`
`ic_fluent_table_edit_24_regular`| +|Table Settings||`tableSettings24Filled`
`tableSettings24Regular`|`ic_fluent_table_settings_24_filled`
`ic_fluent_table_settings_24_regular`| +|Tablet||`tablet20Filled`
`tablet20Regular`
`tablet24Filled`
`tablet24Regular`|`ic_fluent_tablet_20_filled`
`ic_fluent_tablet_20_regular`
`ic_fluent_tablet_24_filled`
`ic_fluent_tablet_24_regular`| +|Tabs||`tabs24Filled`
`tabs24Regular`|`ic_fluent_tabs_24_filled`
`ic_fluent_tabs_24_regular`| +|Tag||`tag20Filled`
`tag20Regular`
`tag24Filled`
`tag24Regular`|`ic_fluent_tag_20_filled`
`ic_fluent_tag_20_regular`
`ic_fluent_tag_24_filled`
`ic_fluent_tag_24_regular`| +|Tap Double||`tapDouble24Filled`
`tapDouble24Regular`|`ic_fluent_tap_double_24_filled`
`ic_fluent_tap_double_24_regular`| +|Tap Single||`tapSingle24Filled`
`tapSingle24Regular`|`ic_fluent_tap_single_24_filled`
`ic_fluent_tap_single_24_regular`| +|Target||`target16Filled`
`target16Regular`
`target20Filled`
`target20Regular`
`target24Filled`
`target24Regular`|`ic_fluent_target_16_filled`
`ic_fluent_target_16_regular`
`ic_fluent_target_20_filled`
`ic_fluent_target_20_regular`
`ic_fluent_target_24_filled`
`ic_fluent_target_24_regular`| +|Team Add||`teamAdd24Filled`
`teamAdd24Regular`|`ic_fluent_team_add_24_filled`
`ic_fluent_team_add_24_regular`| +|Team Delete||`teamDelete24Filled`
`teamDelete24Regular`|`ic_fluent_team_delete_24_filled`
`ic_fluent_team_delete_24_regular`| +|Teddy||`teddy24Filled`
`teddy24Light`
`teddy24Regular`|`ic_fluent_teddy_24_filled`
`ic_fluent_teddy_24_regular`| +|Temperature||`temperature24Filled`
`temperature24Regular`|`ic_fluent_temperature_24_filled`
`ic_fluent_temperature_24_regular`| +|Test Call||`testCall24Filled`
`testCall24Regular`|`ic_fluent_test_call_24_filled`
`ic_fluent_test_call_24_regular`| +|Text||`text24Filled`
`text24Light`
`text24Regular`|`ic_fluent_text_24_filled`
`ic_fluent_text_24_regular`| +|Text Add||`textAdd24Filled`
`textAdd24Regular`|`ic_fluent_text_add_24_filled`
`ic_fluent_text_add_24_regular`| +|Text Add Space After||`textAddSpaceAfter20Filled`
`textAddSpaceAfter20Regular`
`textAddSpaceAfter24Filled`
`textAddSpaceAfter24Regular`|`ic_fluent_text_add_space_after_20_filled`
`ic_fluent_text_add_space_after_20_regular`
`ic_fluent_text_add_space_after_24_filled`
`ic_fluent_text_add_space_after_24_regular`| +|Text Add Space Before||`textAddSpaceBefore20Filled`
`textAddSpaceBefore20Regular`
`textAddSpaceBefore24Filled`
`textAddSpaceBefore24Regular`|`ic_fluent_text_add_space_before_20_filled`
`ic_fluent_text_add_space_before_20_regular`
`ic_fluent_text_add_space_before_24_filled`
`ic_fluent_text_add_space_before_24_regular`| +|Text Align Center||`textAlignCenter20Filled`
`textAlignCenter20Regular`
`textAlignCenter24Filled`
`textAlignCenter24Regular`|`ic_fluent_text_align_center_20_filled`
`ic_fluent_text_align_center_20_regular`
`ic_fluent_text_align_center_24_filled`
`ic_fluent_text_align_center_24_regular`| +|Text Align Distributed||`textAlignDistributed20Filled`
`textAlignDistributed20Regular`
`textAlignDistributed24Filled`
`textAlignDistributed24Regular`|`ic_fluent_text_align_distributed_20_filled`
`ic_fluent_text_align_distributed_20_regular`
`ic_fluent_text_align_distributed_24_filled`
`ic_fluent_text_align_distributed_24_regular`| +|Text Align Justify||`textAlignJustify20Filled`
`textAlignJustify20Regular`
`textAlignJustify24Filled`
`textAlignJustify24Regular`|`ic_fluent_text_align_justify_20_filled`
`ic_fluent_text_align_justify_20_regular`
`ic_fluent_text_align_justify_24_filled`
`ic_fluent_text_align_justify_24_regular`| +|Text Align Left||`textAlignLeft20Filled`
`textAlignLeft20Regular`
`textAlignLeft24Filled`
`textAlignLeft24Regular`|`ic_fluent_text_align_left_20_filled`
`ic_fluent_text_align_left_20_regular`
`ic_fluent_text_align_left_24_filled`
`ic_fluent_text_align_left_24_regular`| +|Text Align Right||`textAlignRight20Filled`
`textAlignRight20Regular`
`textAlignRight24Filled`
`textAlignRight24Regular`|`ic_fluent_text_align_right_20_filled`
`ic_fluent_text_align_right_20_regular`
`ic_fluent_text_align_right_24_filled`
`ic_fluent_text_align_right_24_regular`| +|Text Bold||`textBold20Filled`
`textBold20Regular`
`textBold24Filled`
`textBold24Regular`|`ic_fluent_text_bold_20_filled`
`ic_fluent_text_bold_20_regular`
`ic_fluent_text_bold_24_filled`
`ic_fluent_text_bold_24_regular`| +|Text Bullet List||`textBulletList20Filled`
`textBulletList20Regular`
`textBulletList24Filled`
`textBulletList24Regular`|`ic_fluent_text_bullet_list_20_filled`
`ic_fluent_text_bullet_list_20_regular`
`ic_fluent_text_bullet_list_24_filled`
`ic_fluent_text_bullet_list_24_regular`| +|Text Bullet List Square||`textBulletListSquare24Filled`
`textBulletListSquare24Regular`|`ic_fluent_text_bullet_list_square_24_filled`
`ic_fluent_text_bullet_list_square_24_regular`| +|Text Bullet List Tree||`textBulletListTree16Filled`
`textBulletListTree16Regular`
`textBulletListTree20Filled`
`textBulletListTree20Regular`
`textBulletListTree24Filled`
`textBulletListTree24Regular`|`ic_fluent_text_bullet_list_tree_16_filled`
`ic_fluent_text_bullet_list_tree_16_regular`
`ic_fluent_text_bullet_list_tree_20_filled`
`ic_fluent_text_bullet_list_tree_20_regular`
`ic_fluent_text_bullet_list_tree_24_filled`
`ic_fluent_text_bullet_list_tree_24_regular`| +|Text Color||`textColor20Filled`
`textColor20Regular`
`textColor24Filled`
`textColor24Regular`|`ic_fluent_text_color_20_filled`
`ic_fluent_text_color_20_regular`
`ic_fluent_text_color_24_filled`
`ic_fluent_text_color_24_regular`| +|Text Column One||`textColumnOne24Filled`
`textColumnOne24Regular`|`ic_fluent_text_column_one_24_filled`
`ic_fluent_text_column_one_24_regular`| +|Text Column Three||`textColumnThree24Filled`
`textColumnThree24Regular`|`ic_fluent_text_column_three_24_filled`
`ic_fluent_text_column_three_24_regular`| +|Text Column Two||`textColumnTwo24Filled`
`textColumnTwo24Regular`|`ic_fluent_text_column_two_24_filled`
`ic_fluent_text_column_two_24_regular`| +|Text Column Two Left||`textColumnTwoLeft24Filled`
`textColumnTwoLeft24Regular`|`ic_fluent_text_column_two_left_24_filled`
`ic_fluent_text_column_two_left_24_regular`| +|Text Column Two Right||`textColumnTwoRight24Filled`
`textColumnTwoRight24Regular`|`ic_fluent_text_column_two_right_24_filled`
`ic_fluent_text_column_two_right_24_regular`| +|Text Description||`textDescription20Filled`
`textDescription20Regular`
`textDescription24Filled`
`textDescription24Regular`|`ic_fluent_text_description_20_filled`
`ic_fluent_text_description_20_regular`
`ic_fluent_text_description_24_filled`
`ic_fluent_text_description_24_regular`| +|Text Direction Horizontal LTR||`textDirectionHorizontalLtr20Filled`
`textDirectionHorizontalLtr20Regular`
`textDirectionHorizontalLtr24Filled`
`textDirectionHorizontalLtr24Regular`|`ic_fluent_text_direction_horizontal_ltr_20_filled`
`ic_fluent_text_direction_horizontal_ltr_20_regular`
`ic_fluent_text_direction_horizontal_ltr_24_filled`
`ic_fluent_text_direction_horizontal_ltr_24_regular`| +|Text Direction Rotate 270||`textDirectionRotate27020Filled`
`textDirectionRotate27020Regular`
`textDirectionRotate27024Filled`
`textDirectionRotate27024Regular`|`ic_fluent_text_direction_rotate_270_20_filled`
`ic_fluent_text_direction_rotate_270_20_regular`
`ic_fluent_text_direction_rotate_270_24_filled`
`ic_fluent_text_direction_rotate_270_24_regular`| +|Text Direction Rotate 270 AC||`textDirectionRotate270Ac20Filled`
`textDirectionRotate270Ac20Regular`
`textDirectionRotate270Ac24Filled`
`textDirectionRotate270Ac24Regular`|`ic_fluent_text_direction_rotate_270_ac_20_filled`
`ic_fluent_text_direction_rotate_270_ac_20_regular`
`ic_fluent_text_direction_rotate_270_ac_24_filled`
`ic_fluent_text_direction_rotate_270_ac_24_regular`| +|Text Direction Rotate 90||`textDirectionRotate9020Filled`
`textDirectionRotate9020Regular`
`textDirectionRotate9024Filled`
`textDirectionRotate9024Regular`|`ic_fluent_text_direction_rotate_90_20_filled`
`ic_fluent_text_direction_rotate_90_20_regular`
`ic_fluent_text_direction_rotate_90_24_filled`
`ic_fluent_text_direction_rotate_90_24_regular`| +|Text Direction Vertical||`textDirectionVertical20Filled`
`textDirectionVertical20Regular`
`textDirectionVertical24Filled`
`textDirectionVertical24Regular`|`ic_fluent_text_direction_vertical_20_filled`
`ic_fluent_text_direction_vertical_20_regular`
`ic_fluent_text_direction_vertical_24_filled`
`ic_fluent_text_direction_vertical_24_regular`| +|Text Edit Style||`textEditStyle20Filled`
`textEditStyle20Regular`
`textEditStyle24Filled`
`textEditStyle24Regular`|`ic_fluent_text_edit_style_20_filled`
`ic_fluent_text_edit_style_20_regular`
`ic_fluent_text_edit_style_24_filled`
`ic_fluent_text_edit_style_24_regular`| +|Text First Line||`textFirstLine20Filled`
`textFirstLine20Regular`
`textFirstLine24Filled`
`textFirstLine24Regular`|`ic_fluent_text_first_line_20_filled`
`ic_fluent_text_first_line_20_regular`
`ic_fluent_text_first_line_24_filled`
`ic_fluent_text_first_line_24_regular`| +|Text Font||`textFont16Filled`
`textFont16Regular`
`textFont20Filled`
`textFont20Regular`
`textFont24Filled`
`textFont24Regular`|`ic_fluent_text_font_16_filled`
`ic_fluent_text_font_16_regular`
`ic_fluent_text_font_20_filled`
`ic_fluent_text_font_20_regular`
`ic_fluent_text_font_24_filled`
`ic_fluent_text_font_24_regular`| +|Text Font Size||`textFontSize20Filled`
`textFontSize20Regular`
`textFontSize24Filled`
`textFontSize24Regular`|`ic_fluent_text_font_size_20_filled`
`ic_fluent_text_font_size_20_regular`
`ic_fluent_text_font_size_24_filled`
`ic_fluent_text_font_size_24_regular`| +|Text Grammar Options||`textGrammarOptions16Filled`
`textGrammarOptions16Regular`
`textGrammarOptions20Filled`
`textGrammarOptions20Regular`
`textGrammarOptions24Filled`
`textGrammarOptions24Regular`|`ic_fluent_text_grammar_options_16_filled`
`ic_fluent_text_grammar_options_16_regular`
`ic_fluent_text_grammar_options_20_filled`
`ic_fluent_text_grammar_options_20_regular`
`ic_fluent_text_grammar_options_24_filled`
`ic_fluent_text_grammar_options_24_regular`| +|Text Hanging||`textHanging20Filled`
`textHanging20Regular`
`textHanging24Filled`
`textHanging24Regular`|`ic_fluent_text_hanging_20_filled`
`ic_fluent_text_hanging_20_regular`
`ic_fluent_text_hanging_24_filled`
`ic_fluent_text_hanging_24_regular`| +|Text Header 1||`textHeader120Filled`
`textHeader120Regular`|`ic_fluent_text_header_1_20_filled`
`ic_fluent_text_header_1_20_regular`| +|Text Header 2||`textHeader220Filled`
`textHeader220Regular`|`ic_fluent_text_header_2_20_filled`
`ic_fluent_text_header_2_20_regular`| +|Text Header 3||`textHeader320Filled`
`textHeader320Regular`|`ic_fluent_text_header_3_20_filled`
`ic_fluent_text_header_3_20_regular`| +|Text Indent Decrease||`textIndentDecrease24Filled`
`textIndentDecrease24Regular`|`ic_fluent_text_indent_decrease_24_filled`
`ic_fluent_text_indent_decrease_24_regular`| +|Text Indent Increase||`textIndentIncrease24Filled`
`textIndentIncrease24Regular`|`ic_fluent_text_indent_increase_24_filled`
`ic_fluent_text_indent_increase_24_regular`| +|Text Italic||`textItalic20Filled`
`textItalic20Regular`
`textItalic24Filled`
`textItalic24Regular`|`ic_fluent_text_italic_20_filled`
`ic_fluent_text_italic_20_regular`
`ic_fluent_text_italic_24_filled`
`ic_fluent_text_italic_24_regular`| +|Text Line Spacing||`textLineSpacing20Filled`
`textLineSpacing20Regular`
`textLineSpacing24Filled`
`textLineSpacing24Regular`|`ic_fluent_text_line_spacing_20_filled`
`ic_fluent_text_line_spacing_20_regular`
`ic_fluent_text_line_spacing_24_filled`
`ic_fluent_text_line_spacing_24_regular`| +|Text Number List LTR||`textNumberListLtr20Filled`
`textNumberListLtr20Regular`
`textNumberListLtr24Filled`
`textNumberListLtr24Regular`|`ic_fluent_text_number_list_ltr_20_filled`
`ic_fluent_text_number_list_ltr_20_regular`
`ic_fluent_text_number_list_ltr_24_filled`
`ic_fluent_text_number_list_ltr_24_regular`| +|Text Number List RTL||`textNumberListRtl24Filled`
`textNumberListRtl24Regular`|`ic_fluent_text_number_list_rtl_24_filled`
`ic_fluent_text_number_list_rtl_24_regular`| +|Text Quote||`textQuote24Filled`
`textQuote24Regular`|`ic_fluent_text_quote_24_filled`
`ic_fluent_text_quote_24_regular`| +|Text Sort Ascending||`textSortAscending20Filled`
`textSortAscending20Regular`|`ic_fluent_text_sort_ascending_20_filled`
`ic_fluent_text_sort_ascending_20_regular`| +|Text Sort Descending||`textSortDescending20Filled`
`textSortDescending20Regular`|`ic_fluent_text_sort_descending_20_filled`
`ic_fluent_text_sort_descending_20_regular`| +|Text Strikethrough||`textStrikethrough20Fiiled`
`textStrikethrough20Regular`
`textStrikethrough24Filled`
`textStrikethrough24Regular`|`ic_fluent_text_strikethrough_20_fiiled`
`ic_fluent_text_strikethrough_20_regular`
`ic_fluent_text_strikethrough_24_filled`
`ic_fluent_text_strikethrough_24_regular`| +|Text Underline||`textUnderline20Filled`
`textUnderline20Regular`
`textUnderline24Filled`
`textUnderline24Regular`|`ic_fluent_text_underline_20_filled`
`ic_fluent_text_underline_20_regular`
`ic_fluent_text_underline_24_filled`
`ic_fluent_text_underline_24_regular`| +|Thinking||`thinking20Filled`
`thinking20Regular`
`thinking24Filled`
`thinking24Regular`|`ic_fluent_thinking_20_filled`
`ic_fluent_thinking_20_regular`
`ic_fluent_thinking_24_filled`
`ic_fluent_thinking_24_regular`| +|Thumb Dislike||`thumbDislike20Filled`
`thumbDislike20Regular`|`ic_fluent_thumb_dislike_20_filled`
`ic_fluent_thumb_dislike_20_regular`| +|Thumb Like||`thumbLike20Filled`
`thumbLike20Regular`|`ic_fluent_thumb_like_20_filled`
`ic_fluent_thumb_like_20_regular`| +|Ticket||`ticket20Filled`
`ticket20Regular`
`ticket24Filled`
`ticket24Regular`|`ic_fluent_ticket_20_filled`
`ic_fluent_ticket_20_regular`
`ic_fluent_ticket_24_filled`
`ic_fluent_ticket_24_regular`| +|Time And Weather||`timeAndWeather24Filled`
`timeAndWeather24Regular`|`ic_fluent_time_and_weather_24_filled`
`ic_fluent_time_and_weather_24_regular`| +|Time Picker||`timePicker24Filled`
`timePicker24Regular`|`ic_fluent_time_picker_24_filled`
`ic_fluent_time_picker_24_regular`| +|Timeline||`timeline24Filled`
`timeline24Regular`|`ic_fluent_timeline_24_filled`
`ic_fluent_timeline_24_regular`| +|Timer||`timer24Filled`
`timer24Regular`|`ic_fluent_timer_24_filled`
`ic_fluent_timer_24_regular`| +|Timer 10||`timer1024Filled`
`timer1024Regular`|`ic_fluent_timer_10_24_filled`
`ic_fluent_timer_10_24_regular`| +|Timer 2||`timer224Filled`
`timer224Regular`|`ic_fluent_timer_2_24_filled`
`ic_fluent_timer_2_24_regular`| +|Timer Off||`timerOff24Filled`
`timerOff24Regular`|`ic_fluent_timer_off_24_filled`
`ic_fluent_timer_off_24_regular`| +|Toolbox||`toolbox16Filled`
`toolbox16Regular`
`toolbox20Filled`
`toolbox20Regular`
`toolbox24Filled`
`toolbox24Regular`|`ic_fluent_toolbox_16_filled`
`ic_fluent_toolbox_16_regular`
`ic_fluent_toolbox_20_filled`
`ic_fluent_toolbox_20_regular`
`ic_fluent_toolbox_24_filled`
`ic_fluent_toolbox_24_regular`| +|Top Speed||`topSpeed24Filled`
`topSpeed24Light`
`topSpeed24Regular`|`ic_fluent_top_speed_24_filled`
`ic_fluent_top_speed_24_regular`| +|Translate||`translate16Regular`
`translate20Filled`
`translate20Regular`
`translate24Filled`
`translate24Light`
`translate24Regular`|`ic_fluent_translate_16_regular`
`ic_fluent_translate_20_filled`
`ic_fluent_translate_20_regular`
`ic_fluent_translate_24_filled`
`ic_fluent_translate_24_regular`| +|Triple Column||`tripleColumn24Filled`
`tripleColumn24Regular`|`ic_fluent_triple_column_24_filled`
`ic_fluent_triple_column_24_regular`| +|Trophy||`trophy24Filled`
`trophy24Light`
`trophy24Regular`|`ic_fluent_trophy_24_filled`
`ic_fluent_trophy_24_regular`| +|Uninstall App||`uninstallApp24Filled`
`uninstallApp24Regular`|`ic_fluent_uninstall_app_24_filled`
`ic_fluent_uninstall_app_24_regular`| +|Unlock||`unlock20Filled`
`unlock20Regular`
`unlock24Filled`
`unlock24Regular`
`unlock28Filled`
`unlock28Regular`|`ic_fluent_unlock_20_filled`
`ic_fluent_unlock_20_regular`
`ic_fluent_unlock_24_filled`
`ic_fluent_unlock_24_regular`
`ic_fluent_unlock_28_filled`
`ic_fluent_unlock_28_regular`| +|Unsave||`unsave24Filled`
`unsave24Regular`|`ic_fluent_unsave_24_filled`
`ic_fluent_unsave_24_regular`| +|Upgrade||`upgrade24Filled`
`upgrade24Regular`|`ic_fluent_upgrade_24_filled`
`ic_fluent_upgrade_24_regular`| +|Upload||`upload24Filled`
`upload24Regular`|`ic_fluent_upload_24_filled`
`ic_fluent_upload_24_regular`| +|Usb Port||`usbPort20Filled`
`usbPort20Regular`
`usbPort24Filled`
`usbPort24Regular`|`ic_fluent_usb_port_20_filled`
`ic_fluent_usb_port_20_regular`
`ic_fluent_usb_port_24_filled`
`ic_fluent_usb_port_24_regular`| +|Usb Stick||`usbStick20Filled`
`usbStick20Regular`
`usbStick24Filled`
`usbStick24Regular`|`ic_fluent_usb_stick_20_filled`
`ic_fluent_usb_stick_20_regular`
`ic_fluent_usb_stick_24_filled`
`ic_fluent_usb_stick_24_regular`| +|Video||`video16Filled`
`video16Regular`
`video20Filled`
`video20Regular`
`video24Filled`
`video24Regular`|`ic_fluent_video_16_filled`
`ic_fluent_video_16_regular`
`ic_fluent_video_20_filled`
`ic_fluent_video_20_regular`
`ic_fluent_video_24_filled`
`ic_fluent_video_24_regular`| +|Video Clip||`videoClip24Filled`
`videoClip24Regular`|`ic_fluent_video_clip_24_filled`
`ic_fluent_video_clip_24_regular`| +|Video Off||`videoOff24Filled`
`videoOff24Regular`|`ic_fluent_video_off_24_filled`
`ic_fluent_video_off_24_regular`| +|Video Play Pause||`videoPlayPause24Filled`
`videoPlayPause24Regular`|`ic_fluent_video_play_pause_24_filled`
`ic_fluent_video_play_pause_24_regular`| +|Video Security||`videoSecurity20Filled`
`videoSecurity20Regular`
`videoSecurity24Filled`
`videoSecurity24Regular`|`ic_fluent_video_security_20_filled`
`ic_fluent_video_security_20_regular`
`ic_fluent_video_security_24_filled`
`ic_fluent_video_security_24_regular`| +|View Desktop||`viewDesktop24Filled`
`viewDesktop24Regular`|`ic_fluent_view_desktop_24_filled`
`ic_fluent_view_desktop_24_regular`| +|View Desktop Mobile||`viewDesktopMobile24Filled`
`viewDesktopMobile24Regular`|`ic_fluent_view_desktop_mobile_24_filled`
`ic_fluent_view_desktop_mobile_24_regular`| +|Voicemail||`voicemail24Filled`
`voicemail24Regular`|`ic_fluent_voicemail_24_filled`
`ic_fluent_voicemail_24_regular`| +|Wallpaper||`wallpaper24Filled`
`wallpaper24Regular`|`ic_fluent_wallpaper_24_filled`
`ic_fluent_wallpaper_24_regular`| +|Warning||`warning16Filled`
`warning16Regular`
`warning20Filled`
`warning20Regular`
`warning24Filled`
`warning24Regular`|`ic_fluent_warning_16_filled`
`ic_fluent_warning_16_regular`
`ic_fluent_warning_20_filled`
`ic_fluent_warning_20_regular`
`ic_fluent_warning_24_filled`
`ic_fluent_warning_24_regular`| +|Weather Blowing Snow||`weatherBlowingSnow20Filled`
`weatherBlowingSnow20Regular`
`weatherBlowingSnow24Filled`
`weatherBlowingSnow24Regular`
`weatherBlowingSnow48Filled`
`weatherBlowingSnow48Regular`|`ic_fluent_weather_blowing_snow_20_filled`
`ic_fluent_weather_blowing_snow_20_regular`
`ic_fluent_weather_blowing_snow_24_filled`
`ic_fluent_weather_blowing_snow_24_regular`
`ic_fluent_weather_blowing_snow_48_filled`
`ic_fluent_weather_blowing_snow_48_regular`| +|Weather Cloudy||`weatherCloudy20Filled`
`weatherCloudy20Regular`
`weatherCloudy24Filled`
`weatherCloudy24Regular`
`weatherCloudy48Filled`
`weatherCloudy48Regular`|`ic_fluent_weather_cloudy_20_filled`
`ic_fluent_weather_cloudy_20_regular`
`ic_fluent_weather_cloudy_24_filled`
`ic_fluent_weather_cloudy_24_regular`
`ic_fluent_weather_cloudy_48_filled`
`ic_fluent_weather_cloudy_48_regular`| +|Weather Duststorm||`weatherDuststorm20Filled`
`weatherDuststorm20Regular`
`weatherDuststorm24Filled`
`weatherDuststorm24Regular`
`weatherDuststorm48Filled`
`weatherDuststorm48Regular`|`ic_fluent_weather_duststorm_20_filled`
`ic_fluent_weather_duststorm_20_regular`
`ic_fluent_weather_duststorm_24_filled`
`ic_fluent_weather_duststorm_24_regular`
`ic_fluent_weather_duststorm_48_filled`
`ic_fluent_weather_duststorm_48_regular`| +|Weather Fog||`weatherFog20Filled`
`weatherFog20Regular`
`weatherFog24Filled`
`weatherFog24Regular`
`weatherFog48Filled`
`weatherFog48Regular`|`ic_fluent_weather_fog_20_filled`
`ic_fluent_weather_fog_20_regular`
`ic_fluent_weather_fog_24_filled`
`ic_fluent_weather_fog_24_regular`
`ic_fluent_weather_fog_48_filled`
`ic_fluent_weather_fog_48_regular`| +|Weather Hail Day||`weatherHailDay20Filled`
`weatherHailDay20Regular`
`weatherHailDay24Filled`
`weatherHailDay24Regular`
`weatherHailDay48Filled`
`weatherHailDay48Regular`|`ic_fluent_weather_hail_day_20_filled`
`ic_fluent_weather_hail_day_20_regular`
`ic_fluent_weather_hail_day_24_filled`
`ic_fluent_weather_hail_day_24_regular`
`ic_fluent_weather_hail_day_48_filled`
`ic_fluent_weather_hail_day_48_regular`| +|Weather Hail Night||`weatherHailNight20Filled`
`weatherHailNight20Regular`
`weatherHailNight24Filled`
`weatherHailNight24Regular`
`weatherHailNight48Filled`
`weatherHailNight48Regular`|`ic_fluent_weather_hail_night_20_filled`
`ic_fluent_weather_hail_night_20_regular`
`ic_fluent_weather_hail_night_24_filled`
`ic_fluent_weather_hail_night_24_regular`
`ic_fluent_weather_hail_night_48_filled`
`ic_fluent_weather_hail_night_48_regular`| +|Weather Moon||`weatherMoon20Filled`
`weatherMoon20Regular`
`weatherMoon24Filled`
`weatherMoon24Regular`
`weatherMoon48Filled`
`weatherMoon48Regular`|`ic_fluent_weather_moon_20_filled`
`ic_fluent_weather_moon_20_regular`
`ic_fluent_weather_moon_24_filled`
`ic_fluent_weather_moon_24_regular`
`ic_fluent_weather_moon_48_filled`
`ic_fluent_weather_moon_48_regular`| +|Weather Partly Cloudy Day||`weatherPartlyCloudyDay20Filled`
`weatherPartlyCloudyDay20Regular`
`weatherPartlyCloudyDay24Filled`
`weatherPartlyCloudyDay24Regular`
`weatherPartlyCloudyDay48Filled`
`weatherPartlyCloudyDay48Regular`|`ic_fluent_weather_partly_cloudy_day_20_filled`
`ic_fluent_weather_partly_cloudy_day_20_regular`
`ic_fluent_weather_partly_cloudy_day_24_filled`
`ic_fluent_weather_partly_cloudy_day_24_regular`
`ic_fluent_weather_partly_cloudy_day_48_filled`
`ic_fluent_weather_partly_cloudy_day_48_regular`| +|Weather Partly Cloudy Night||`weatherPartlyCloudyNight20Filled`
`weatherPartlyCloudyNight20Regular`
`weatherPartlyCloudyNight24Filled`
`weatherPartlyCloudyNight24Regular`
`weatherPartlyCloudyNight48Filled`
`weatherPartlyCloudyNight48Regular`|`ic_fluent_weather_partly_cloudy_night_20_filled`
`ic_fluent_weather_partly_cloudy_night_20_regular`
`ic_fluent_weather_partly_cloudy_night_24_filled`
`ic_fluent_weather_partly_cloudy_night_24_regular`
`ic_fluent_weather_partly_cloudy_night_48_filled`
`ic_fluent_weather_partly_cloudy_night_48_regular`| +|Weather Rain||`weatherRain20Filled`
`weatherRain20Regular`
`weatherRain24Filled`
`weatherRain24Regular`
`weatherRain48Filled`
`weatherRain48Regular`|`ic_fluent_weather_rain_20_filled`
`ic_fluent_weather_rain_20_regular`
`ic_fluent_weather_rain_24_filled`
`ic_fluent_weather_rain_24_regular`
`ic_fluent_weather_rain_48_filled`
`ic_fluent_weather_rain_48_regular`| +|Weather Rain Showers Day||`weatherRainShowersDay20Filled`
`weatherRainShowersDay20Regular`
`weatherRainShowersDay24Filled`
`weatherRainShowersDay24Regular`
`weatherRainShowersDay48Filled`
`weatherRainShowersDay48Regular`|`ic_fluent_weather_rain_showers_day_20_filled`
`ic_fluent_weather_rain_showers_day_20_regular`
`ic_fluent_weather_rain_showers_day_24_filled`
`ic_fluent_weather_rain_showers_day_24_regular`
`ic_fluent_weather_rain_showers_day_48_filled`
`ic_fluent_weather_rain_showers_day_48_regular`| +|Weather Rain Showers Night||`weatherRainShowersNight20Filled`
`weatherRainShowersNight20Regular`
`weatherRainShowersNight24Filled`
`weatherRainShowersNight24Regular`
`weatherRainShowersNight48Filled`
`weatherRainShowersNight48Regular`|`ic_fluent_weather_rain_showers_night_20_filled`
`ic_fluent_weather_rain_showers_night_20_regular`
`ic_fluent_weather_rain_showers_night_24_filled`
`ic_fluent_weather_rain_showers_night_24_regular`
`ic_fluent_weather_rain_showers_night_48_filled`
`ic_fluent_weather_rain_showers_night_48_regular`| +|Weather Rain Snow||`weatherRainSnow20Filled`
`weatherRainSnow20Regular`
`weatherRainSnow24Filled`
`weatherRainSnow24Regular`
`weatherRainSnow48Filled`
`weatherRainSnow48Regular`|`ic_fluent_weather_rain_snow_20_filled`
`ic_fluent_weather_rain_snow_20_regular`
`ic_fluent_weather_rain_snow_24_filled`
`ic_fluent_weather_rain_snow_24_regular`
`ic_fluent_weather_rain_snow_48_filled`
`ic_fluent_weather_rain_snow_48_regular`| +|Weather Snow||`weatherSnow20Filled`
`weatherSnow20Regular`
`weatherSnow24Filled`
`weatherSnow24Regular`
`weatherSnow48Filled`
`weatherSnow48Regular`|`ic_fluent_weather_snow_20_filled`
`ic_fluent_weather_snow_20_regular`
`ic_fluent_weather_snow_24_filled`
`ic_fluent_weather_snow_24_regular`
`ic_fluent_weather_snow_48_filled`
`ic_fluent_weather_snow_48_regular`| +|Weather Snow Shower Day||`weatherSnowShowerDay20Filled`
`weatherSnowShowerDay20Regular`
`weatherSnowShowerDay24Filled`
`weatherSnowShowerDay24Regular`
`weatherSnowShowerDay48Filled`
`weatherSnowShowerDay48Regular`|`ic_fluent_weather_snow_shower_day_20_filled`
`ic_fluent_weather_snow_shower_day_20_regular`
`ic_fluent_weather_snow_shower_day_24_filled`
`ic_fluent_weather_snow_shower_day_24_regular`
`ic_fluent_weather_snow_shower_day_48_filled`
`ic_fluent_weather_snow_shower_day_48_regular`| +|Weather Snow Shower Night||`weatherSnowShowerNight20Filled`
`weatherSnowShowerNight20Regular`
`weatherSnowShowerNight24Filled`
`weatherSnowShowerNight24Regular`
`weatherSnowShowerNight48Filled`
`weatherSnowShowerNight48Regular`|`ic_fluent_weather_snow_shower_night_20_filled`
`ic_fluent_weather_snow_shower_night_20_regular`
`ic_fluent_weather_snow_shower_night_24_filled`
`ic_fluent_weather_snow_shower_night_24_regular`
`ic_fluent_weather_snow_shower_night_48_filled`
`ic_fluent_weather_snow_shower_night_48_regular`| +|Weather Snowflake||`weatherSnowflake20Filled`
`weatherSnowflake20Regular`
`weatherSnowflake24Filled`
`weatherSnowflake24Regular`
`weatherSnowflake48Filled`
`weatherSnowflake48Regular`|`ic_fluent_weather_snowflake_20_filled`
`ic_fluent_weather_snowflake_20_regular`
`ic_fluent_weather_snowflake_24_filled`
`ic_fluent_weather_snowflake_24_regular`
`ic_fluent_weather_snowflake_48_filled`
`ic_fluent_weather_snowflake_48_regular`| +|Weather Squalls||`weatherSqualls20Filled`
`weatherSqualls20Regular`
`weatherSqualls24Filled`
`weatherSqualls24Regular`
`weatherSqualls48Filled`
`weatherSqualls48Regular`|`ic_fluent_weather_squalls_20_filled`
`ic_fluent_weather_squalls_20_regular`
`ic_fluent_weather_squalls_24_filled`
`ic_fluent_weather_squalls_24_regular`
`ic_fluent_weather_squalls_48_filled`
`ic_fluent_weather_squalls_48_regular`| +|Weather Sunny||`weatherSunny20Filled`
`weatherSunny20Regular`
`weatherSunny24Filled`
`weatherSunny24Regular`
`weatherSunny48Filled`
`weatherSunny48Regular`|`ic_fluent_weather_sunny_20_filled`
`ic_fluent_weather_sunny_20_regular`
`ic_fluent_weather_sunny_24_filled`
`ic_fluent_weather_sunny_24_regular`
`ic_fluent_weather_sunny_48_filled`
`ic_fluent_weather_sunny_48_regular`| +|Weather Thunderstorm||`weatherThunderstorm20Filled`
`weatherThunderstorm20Regular`
`weatherThunderstorm24Filled`
`weatherThunderstorm24Regular`
`weatherThunderstorm48Filled`
`weatherThunderstorm48Regular`|`ic_fluent_weather_thunderstorm_20_filled`
`ic_fluent_weather_thunderstorm_20_regular`
`ic_fluent_weather_thunderstorm_24_filled`
`ic_fluent_weather_thunderstorm_24_regular`
`ic_fluent_weather_thunderstorm_48_filled`
`ic_fluent_weather_thunderstorm_48_regular`| +|Web Asset||`webAsset24Filled`
`webAsset24Regular`|`ic_fluent_web_asset_24_filled`
`ic_fluent_web_asset_24_regular`| +|Weekend||`weekend24Filled`
`weekend24Regular`|`ic_fluent_weekend_24_filled`
`ic_fluent_weekend_24_regular`| +|Whiteboard||`whiteboard20Filled`
`whiteboard20Regular`
`whiteboard24Filled`
`whiteboard24Regular`|`ic_fluent_whiteboard_20_filled`
`ic_fluent_whiteboard_20_regular`
`ic_fluent_whiteboard_24_filled`
`ic_fluent_whiteboard_24_regular`| +|WiFi 1||`wifi120Filled`
`wifi120Regular`
`wifi124Filled`
`wifi124Regular`|`ic_fluent_wifi_1_20_filled`
`ic_fluent_wifi_1_20_regular`
`ic_fluent_wifi_1_24_filled`
`ic_fluent_wifi_1_24_regular`| +|WiFi 2||`wifi220Filled`
`wifi220Regular`
`wifi224Filled`
`wifi224Regular`|`ic_fluent_wifi_2_20_filled`
`ic_fluent_wifi_2_20_regular`
`ic_fluent_wifi_2_24_filled`
`ic_fluent_wifi_2_24_regular`| +|WiFi 3||`wifi320Filled`
`wifi320Regular`
`wifi324Filled`
`wifi324Regular`|`ic_fluent_wifi_3_20_filled`
`ic_fluent_wifi_3_20_regular`
`ic_fluent_wifi_3_24_filled`
`ic_fluent_wifi_3_24_regular`| +|WiFi 4||`wifi420Filled`
`wifi420Regular`
`wifi424Filled`
`wifi424Regular`|`ic_fluent_wifi_4_20_filled`
`ic_fluent_wifi_4_20_regular`
`ic_fluent_wifi_4_24_filled`
`ic_fluent_wifi_4_24_regular`| +|WiFi Protected||`wifiProtected24Filled`
`wifiProtected24Regular`|`ic_fluent_wifi_protected_24_filled`
`ic_fluent_wifi_protected_24_regular`| +|Window||`window20Filled`
`window20Regular`|`ic_fluent_window_20_filled`
`ic_fluent_window_20_regular`| +|Window Dev Tools||`windowDevTools16Filled`
`windowDevTools16Regular`
`windowDevTools20Filled`
`windowDevTools20Regular`
`windowDevTools24Filled`
`windowDevTools24Regular`|`ic_fluent_window_dev_tools_16_filled`
`ic_fluent_window_dev_tools_16_regular`
`ic_fluent_window_dev_tools_20_filled`
`ic_fluent_window_dev_tools_20_regular`
`ic_fluent_window_dev_tools_24_filled`
`ic_fluent_window_dev_tools_24_regular`| +|Window New||`windowNew20Filled`
`windowNew20Regular`|`ic_fluent_window_new_20_filled`
`ic_fluent_window_new_20_regular`| +|Xbox Console||`xboxConsole20Filled`
`xboxConsole20Regular`
`xboxConsole24Filled`
`xboxConsole24Regular`|`ic_fluent_xbox_console_20_filled`
`ic_fluent_xbox_console_20_regular`
`ic_fluent_xbox_console_24_filled`
`ic_fluent_xbox_console_24_regular`| +|Zoom In||`zoomIn20Filled`
`zoomIn20Regular`
`zoomIn24Filled`
`zoomIn24Regular`|`ic_fluent_zoom_in_20_filled`
`ic_fluent_zoom_in_20_regular`
`ic_fluent_zoom_in_24_filled`
`ic_fluent_zoom_in_24_regular`| +|Zoom Out||`zoomOut20Filled`
`zoomOut20Regular`
`zoomOut24Filled`
`zoomOut24Regular`|`ic_fluent_zoom_out_20_filled`
`ic_fluent_zoom_out_20_regular`
`ic_fluent_zoom_out_24_filled`
`ic_fluent_zoom_out_24_regular`| +|iOS Arrow Left||`iosArrowLeft24Filled`
`iosArrowLeft24Regular`|`ic_fluent_ios_arrow_left_24_filled`
`ic_fluent_ios_arrow_left_24_regular`| +|iOS Chevron||`iosChevron24Filled`
`iosChevron24Regular`|`ic_fluent_ios_chevron_24_filled`
`ic_fluent_ios_chevron_24_regular`| +|iOS Chevron Right||`iosChevronRight20Filled`
`iosChevronRight20Regular`|`ic_fluent_ios_chevron_right_20_filled`
`ic_fluent_ios_chevron_right_20_regular`| diff --git a/importer/rtl.txt b/importer/rtl.txt index 730c9b7281..66d03e6786 100644 --- a/importer/rtl.txt +++ b/importer/rtl.txt @@ -1,27 +1,35 @@ +ic_fluent_arrow_curve_right_24_filled +ic_fluent_arrow_curve_right_24_regular ic_fluent_arrow_down_left_24_filled ic_fluent_arrow_down_left_24_regular +ic_fluent_arrow_down_right_circle_16_filled +ic_fluent_arrow_down_right_circle_16_regular +ic_fluent_arrow_down_right_circle_24_filled +ic_fluent_arrow_down_right_circle_24_regular +ic_fluent_arrow_forward_16_filled +ic_fluent_arrow_forward_16_regular +ic_fluent_arrow_forward_20_filled +ic_fluent_arrow_forward_20_regular +ic_fluent_arrow_forward_24_filled +ic_fluent_arrow_forward_24_regular +ic_fluent_arrow_import_20_filled +ic_fluent_arrow_import_20_regular +ic_fluent_arrow_import_24_filled +ic_fluent_arrow_import_24_regular ic_fluent_arrow_left_20_filled ic_fluent_arrow_left_20_regular ic_fluent_arrow_left_24_filled ic_fluent_arrow_left_24_regular ic_fluent_arrow_left_28_filled ic_fluent_arrow_left_28_regular -ic_fluent_chevron_left_12_filled -ic_fluent_chevron_left_12_regular -ic_fluent_chevron_left_16_filled -ic_fluent_chevron_left_16_regular -ic_fluent_chevron_left_20_filled -ic_fluent_chevron_left_20_regular -ic_fluent_chevron_left_24_filled -ic_fluent_chevron_left_24_regular -ic_fluent_chevron_left_28_filled -ic_fluent_chevron_left_28_regular -ic_fluent_ios_arrow_left_24_filled -ic_fluent_ios_arrow_left_24_regular -ic_fluent_arrow_down_right_circle_16_filled -ic_fluent_arrow_down_right_circle_16_regular -ic_fluent_arrow_down_right_circle_24_filled -ic_fluent_arrow_down_right_circle_24_regular +ic_fluent_arrow_next_20_filled +ic_fluent_arrow_next_20_regular +ic_fluent_arrow_next_24_filled +ic_fluent_arrow_next_24_regular +ic_fluent_arrow_previous_20_filled +ic_fluent_arrow_previous_20_regular +ic_fluent_arrow_previous_24_filled +ic_fluent_arrow_previous_24_regular ic_fluent_arrow_right_20_filled ic_fluent_arrow_right_20_regular ic_fluent_arrow_right_24_filled @@ -30,8 +38,20 @@ ic_fluent_arrow_right_28_filled ic_fluent_arrow_right_28_regular ic_fluent_arrow_right_circle_24_filled ic_fluent_arrow_right_circle_24_regular +ic_fluent_arrow_up_left_24_filled +ic_fluent_arrow_up_left_24_regular ic_fluent_arrow_up_right_24_filled ic_fluent_arrow_up_right_24_regular +ic_fluent_chevron_left_12_filled +ic_fluent_chevron_left_12_regular +ic_fluent_chevron_left_16_filled +ic_fluent_chevron_left_16_regular +ic_fluent_chevron_left_20_filled +ic_fluent_chevron_left_20_regular +ic_fluent_chevron_left_24_filled +ic_fluent_chevron_left_24_regular +ic_fluent_chevron_left_28_filled +ic_fluent_chevron_left_28_regular ic_fluent_chevron_right_12_filled ic_fluent_chevron_right_12_regular ic_fluent_chevron_right_16_filled @@ -40,7 +60,23 @@ ic_fluent_chevron_right_20_filled ic_fluent_chevron_right_20_regular ic_fluent_chevron_right_24_filled ic_fluent_chevron_right_24_regular +ic_fluent_ios_arrow_left_24_filled +ic_fluent_ios_arrow_left_24_regular +ic_fluent_ios_chevron_24_filled +ic_fluent_ios_chevron_24_regular ic_fluent_ios_chevron_right_20_filled ic_fluent_ios_chevron_right_20_regular ic_fluent_swipe_right_24_filled -ic_fluent_swipe_right_24_regular \ No newline at end of file +ic_fluent_swipe_right_24_regular +ic_fluent_text_align_left_20_filled +ic_fluent_text_align_left_20_regular +ic_fluent_text_align_left_24_filled +ic_fluent_text_align_left_24_regular +ic_fluent_text_align_right_20_filled +ic_fluent_text_align_right_20_regular +ic_fluent_text_align_right_24_filled +ic_fluent_text_align_right_24_regular +ic_fluent_text_column_two_left_24_filled +ic_fluent_text_column_two_left_24_regular +ic_fluent_text_column_two_right_24_filled +ic_fluent_text_column_two_right_24_regular \ No newline at end of file diff --git a/ios/FluentIcons.podspec b/ios/FluentIcons.podspec index 98ea8a8af3..7df9b6d8ff 100644 --- a/ios/FluentIcons.podspec +++ b/ios/FluentIcons.podspec @@ -8,17 +8,17 @@ Pod::Spec.new do |s| s.name = 'FluentIcons' - s.version = '1.0.226' + s.version = '1.1.2' s.summary = 'FluentIcons' s.description = <<-DESC FluentIcons DESC - s.homepage = 'https://dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons' + s.homepage = 'https://github.com/microsoft/fluent-system-icons' s.license = { :type => 'Microsoft', :file => 'LICENSE' } s.author = { 'Microsoft, Inc.' => 'nicroma@microsoft.com' } - s.source = { :git => 'https://microsoftdesign@dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/microsoft/fluent-system-icons.git', :tag => s.version.to_s } s.ios.deployment_target = '8.0' s.osx.deployment_target = '10.12' diff --git a/ios/README.md b/ios/README.md index a479f783fe..146fc466a1 100644 --- a/ios/README.md +++ b/ios/README.md @@ -8,13 +8,13 @@ ```ruby use_frameworks! -pod "FluentIcons", git: "https://microsoftdesign@dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons", tag: "1.0.226" +pod "FluentIcons", git: "https://github.com/microsoft/fluent-system-icons.git", tag: "1.1.2" ``` ### Carthage ```bash -git "git@ssh.dev.azure.com:v3/microsoftdesign/Design%20System/fluent-mobile-icons" "1.0.226" +git "git@github.com:microsoft/fluent-system-icons.git" "1.1.2" ``` ## Usage @@ -93,4 +93,4 @@ No, but please remember to set setup the script using the instructions above ^ t #### 2. Why are their assets of different sizes? Can't all PDFs be scaled? -Technically they can! But design has tailored each icon to each specific size. For example, smaller icons generally have less detail in the image. \ No newline at end of file +Technically they can! But design has tailored each icon to each specific size. For example, smaller icons generally have less detail in the image. diff --git a/pipelines/build-android.yml b/pipelines/build-android.yml deleted file mode 100644 index 13d4377572..0000000000 --- a/pipelines/build-android.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -steps: -- checkout: self - clean: true - persistCredentials: true - -- task: UseNode@1 - inputs: - version: '11.x' - -- task: Npm@1 - displayName: Run npm install - inputs: - command: 'install' - workingDir: 'importer' - -- task: Npm@1 - displayName: Run generate script - inputs: - command: 'custom' - workingDir: 'importer' - customCommand: 'run deploy:android' - -- task: Gradle@2 - displayName: Build Android - inputs: - gradleWrapperFile: 'android/gradlew' - workingDirectory: 'android' - options: '-DversionName=$(Build.BuildNumber) -DvstsAccessToken=$(System.AccessToken)' - tasks: 'assembleRelease' - publishJUnitResults: false - javaHomeOption: 'JDKVersion' - sonarQubeRunAnalysis: false \ No newline at end of file diff --git a/pipelines/build-ios.yml b/pipelines/build-ios.yml deleted file mode 100644 index 7d5aa4a139..0000000000 --- a/pipelines/build-ios.yml +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -steps: -- checkout: self - clean: true - persistCredentials: true - -- task: UseNode@1 - inputs: - version: '11.x' - -- task: Npm@1 - displayName: Run npm install - inputs: - command: 'install' - workingDir: 'importer' - -- task: Npm@1 - displayName: Run generate script - inputs: - command: 'custom' - workingDir: 'importer' - customCommand: 'run deploy:ios' \ No newline at end of file diff --git a/pipelines/build-pr.yml b/pipelines/build-pr.yml deleted file mode 100644 index f96d0ca68a..0000000000 --- a/pipelines/build-pr.yml +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -pool: - vmImage: 'ubuntu-latest' - -name: 1.0.$(Rev:r) - -jobs: -- job: build_android - displayName: Build Android - steps: - - template: build-android.yml - -- job: build_ios - displayName: Build iOS - steps: - - template: build-ios.yml - \ No newline at end of file diff --git a/pipelines/publish-android-demo.yml b/pipelines/publish-android-demo.yml deleted file mode 100644 index cbdd3984b5..0000000000 --- a/pipelines/publish-android-demo.yml +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -steps: -- task: UseNode@1 - inputs: - version: '11.x' - -- task: Npm@1 - displayName: Run npm install - inputs: - command: 'install' - workingDir: 'importer' - -- task: Npm@1 - displayName: Run generate script - inputs: - command: 'custom' - workingDir: 'importer' - customCommand: 'run deploy:android' - -- task: DownloadSecureFile@1 - displayName: 'Get Keystore' - name: keystore - inputs: - secureFile: 'debug.keystore' - -- task: Gradle@2 - displayName: Gradle build demo app - inputs: - gradleWrapperFile: 'android/gradlew' - workingDirectory: 'android' - options: '-DversionName=$(Build.BuildNumber) -DversionCode=$(Build.BuildNumber) -DvstsAccessToken=$(System.AccessToken) -Pandroid.injected.signing.store.file=$(keystore.secureFilePath) -Pandroid.injected.signing.store.password=$(store.password) -Pandroid.injected.signing.key.alias=$(key.alias) -Pandroid.injected.signing.key.password=$(key.password)' - tasks: ':sample-showcase:assembleRelease' - publishJUnitResults: false - javaHomeOption: 'JDKVersion' - sonarQubeRunAnalysis: false - -- task: AppCenterDistribute@3 - displayName: Publish demo app to App Center - inputs: - serverEndpoint: 'Fluent mobile icons demo' - appSlug: 'Fluent-Design-Mobile/Fluent-Mobile-Icons-Demo' - appFile: 'android/sample-showcase/build/outputs/apk/release/sample-showcase-release.apk' - symbolsOption: 'Android' - releaseNotesOption: 'input' - releaseNotesInput: 'Please enjoy this latest version of Fluent Mobile Icons Demo.' - destinationType: 'groups' - distributionGroupId: '11111111-1111-1111-1111-111111111111' \ No newline at end of file diff --git a/pipelines/publish-android-lib.yml b/pipelines/publish-android-lib.yml deleted file mode 100644 index 365b1b4a03..0000000000 --- a/pipelines/publish-android-lib.yml +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -steps: -- task: UseNode@1 - inputs: - version: '11.x' - -- task: Npm@1 - displayName: Run npm install - inputs: - command: 'install' - workingDir: 'importer' - -- task: Npm@1 - displayName: Run generate script - inputs: - command: 'custom' - workingDir: 'importer' - customCommand: 'run deploy:android' - -- task: Gradle@2 - displayName: Gradle publish - inputs: - gradleWrapperFile: 'android/gradlew' - workingDirectory: 'android' - options: '-DversionName=$(Build.BuildNumber) -DvstsAccessToken=$(System.AccessToken)' - tasks: 'publish' - publishJUnitResults: false - javaHomeOption: 'JDKVersion' - sonarQubeRunAnalysis: false - -- task: PublishPipelineArtifact@1 - displayName: Publish library artifact to pipeline - inputs: - targetPath: 'android/library/build/outputs/aar/library-release.aar' - artifact: 'aar' - publishLocation: 'pipeline' \ No newline at end of file diff --git a/pipelines/publish-ios-lib.yml b/pipelines/publish-ios-lib.yml deleted file mode 100644 index c990a6a67f..0000000000 --- a/pipelines/publish-ios-lib.yml +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -steps: -- checkout: self - clean: true - persistCredentials: true - -- task: Bash@3 - displayName: Checkout the master branch - inputs: - targetType: 'inline' - script: 'git checkout master --' - -- task: UseNode@1 - inputs: - version: '11.x' - -- task: Npm@1 - displayName: Run npm install - inputs: - command: 'install' - workingDir: 'importer' - -- task: Npm@1 - displayName: Run generate script - inputs: - command: 'custom' - workingDir: 'importer' - customCommand: 'run deploy:ios' - -- task: Bash@3 - displayName: Config git credentials - inputs: - targetType: 'inline' - script: 'git config user.email "flubuild@microsoft.com" && git config user.name "Fluent Build System"' - -# Allow empty commits for now so we can make changes to the pod without new assets -- bash: | - git add -A - git commit --allow-empty -m 'Update iOS asset catalog' - displayName: Commit generated iOS asset catalog - -- task: Bash@3 - displayName: Push commit - inputs: - targetType: 'inline' - script: git push https://Personal%20Access%20Token:${SECURE_PAT}@dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons master - env: - SECURE_PAT: $(PAT) diff --git a/pipelines/tag-release.yml b/pipelines/tag-release.yml deleted file mode 100644 index acc561d2a8..0000000000 --- a/pipelines/tag-release.yml +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT license. - -steps: -- checkout: self - clean: true - persistCredentials: true - -- task: Bash@3 - displayName: Checkout the master branch - inputs: - targetType: 'inline' - script: 'git checkout master --' - -# Needs to be "-E" instead of "-r" on macOS -- bash: | - sed -i.bk -r "s/[0-9]+\.[0-9]+\.[0-9]+/$(Build.BuildNumber)/g" $(System.DefaultWorkingDirectory)/README.md - rm $(System.DefaultWorkingDirectory)/README.md.bk - displayName: Replace version numbers in README.md - -# Needs to be "-E" instead of "-r" on macOS -- bash: | - sed -i.bk -r "s/[0-9]+\.[0-9]+\.[0-9]+/$(Build.BuildNumber)/g" $(System.DefaultWorkingDirectory)/ios/README.md - rm $(System.DefaultWorkingDirectory)/ios/README.md.bk - displayName: Replace version numbers in ios/README.md - -# Needs to be "-E" instead of "-r" on macOS -- bash: | - sed -i.bk -r "s/[0-9]+\.[0-9]+\.[0-9]+/$(Build.BuildNumber)/g" $(System.DefaultWorkingDirectory)/ios/FluentIcons.podspec - rm $(System.DefaultWorkingDirectory)/ios/FluentIcons.podspec.bk - displayName: Replace version number in Podspec - -- task: Bash@3 - displayName: Config git credentials - inputs: - targetType: 'inline' - script: 'git config user.email "flubuild@microsoft.com" && git config user.name "Fluent Build System"' - -- bash: | - git add -A - git commit -m 'Prepare release $(Build.BuildNumber)' - displayName: Commit version number change - -- task: Bash@3 - displayName: Push commit - inputs: - targetType: 'inline' - script: git push https://Personal%20Access%20Token:${SECURE_PAT}@dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons master - env: - SECURE_PAT: $(PAT) - -- bash: | - git tag $(Build.BuildNumber) - displayName: Tag release - -- task: Bash@3 - displayName: Push tags - inputs: - targetType: 'inline' - script: git push https://Personal%20Access%20Token:${SECURE_PAT}@dev.azure.com/microsoftdesign/Design%20System/_git/fluent-mobile-icons --tags - env: - SECURE_PAT: $(PAT)